12345678910111213141516171819202122232425262728293031323334353637383940 |
- /* required by usingComponents */
- /* pages/my_mobile/my_mobile.wxss */
- .phone {
- width: 100%;
- /* height: auto; */
- }
- .phone-num {
- text-align: center;
- font-size: 34rpx;
- font-weight: bold;
- margin-top: 30rpx;
- margin-bottom: 80rpx;
- }
- .tips {
- display: flex;
- width: 70%;
- margin: 0 auto;
- font-size: 28rpx;
- line-height:46rpx;
- color: #868686;
- margin-top: 30rpx;
- }
- .left {
- flex: 0 0 20rpx;
- }
- .change-mobile{
- width: 50%;
- height: 100rpx;
- line-height:100rpx;
- margin: 0 auto;
- border-radius: 50rpx;
- text-align: center;
- font-size: 34rpx;
- font-weight: 500;
- margin-top:150rpx;
- background-color: var(--globleColor);
- }
|