| 12345678910111213141516171819202122232425262728293031323334353637383940414243444546474849505152535455565758596061 |
- .u-switch--disabled{
- opacity: 1!important;
- }
- .content{
- background: #F1F1F1;
- min-height: 100vh;
- padding: 0 32rpx;
- padding-top: 24rpx;
- padding-bottom: 24rpx;
- .item{
- // height: 432rpx;
- background: #FFFFFF;
- border-radius: 0rpx 24rpx 0rpx 24rpx;
- // margin-top: 24rpx;
- padding: 0 24rpx;
- display: flex;
- flex-direction: column;
- // justify-content: space-around;
- margin-bottom: 24rpx;
- .line:last-child{
- border-bottom: none;
- }
- .line{
- display: flex;
- justify-content:space-between;
- align-items: center;
- border-bottom:2rpx solid #E6E6E6 ;
- height: 140rpx;
- .left{
- font-size: 32rpx;
- font-family: PingFang-SC-Bold, PingFang-SC;
- // font-weight: bold;
- color: #333333;
- }
- .right{
- font-size: 32rpx;
- font-family: PingFang-SC-Medium, PingFang-SC;
- font-weight: 500;
- color: #333333;
- display: flex;
- align-items: center;
- .avatar{
- width: 100rpx;
- height: 100rpx;
- border-radius: 50%;
- margin-right: 20rpx;
- }
- .arr{
- width: 14rpx;
- height: 24rpx;
- }
- }
- }
- }
- }
- switch{
- // width: 83rpx;
- // height: 40rpx;
- }
|