1234567891011121314151617181920212223242526272829303132333435363738394041424344454647484950515253545556575859606162636465666768697071 |
- /* pages/set_time/set_time.wxss */
- .li{
- margin: 0;
- padding: 0;
- }
- .li-select{
- display: flex;
- justify-content: space-around;
- margin: 40rpx 50rpx;
- font-size:30rpx;
- font-family:PingFang SC;
- font-weight:bold;
- color:rgba(57,57,57,1);
- }
- .li-select-btn{
- padding: 10rpx 0;
- border-bottom: 5rpx solid transparent;
- transition: all 0.3s;
- }
- .li-select-btn-active{
- border-bottom: 5rpx solid #FF6465;
- color: #FF6465;
- }
- .li-items{
- display: flex;
- justify-content: space-between;
- color: #393939;
- font-size: 30rpx;
- padding: 65rpx 25rpx;
- }
- .li-items-day{
- color: #8489A3;
- font-size: 24rpx;
- margin-top: 10rpx;
- }
- .li-items-img{
- width: 88rpx;
- height: 59rpx;
- margin: auto 0;
- }
- .li-items-red{
- color: #FF6465;
- font-size: 24rpx;
- }
- .li-active{
- background: #F8F8F8;
- }
- .li-time{
- margin: 84rpx 50rpx;
- padding: 0;
- color: #8489A3;
- font-size: 30rpx;
- }
- .li-time-item{
- display: flex;
- justify-content: center;
- }
- .li-time-star{
- color: #B7B7B7;
- font-size: 34rpx;
- padding: 20rpx 30rpx;
- border-bottom: 1rpx solid #B7B7B7;
- }
- .li-time-word{
- margin: auto 30rpx;
- }
- .li-items-arrows{
- width: 10rpx;
- height: 18rpx;
- margin-left: 15rpx;
- }
|