123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596979899100101102103104105106107108109110111112113114115116 |
- .content{
- text-align: center;
- background: #fff;
- width: 550rpx;
- position: absolute;
- top: 25%;
- right: 0;
- left: 0;
- margin: auto;
- border-radius: 20rpx;
- font-size: 28rpx;
- box-shadow: 0 5rpx 10rpx rgba(0,0,0,.4);
- padding: 0 40rpx;
- }
- .content .modu{
- padding: 30rpx 0;
- border-bottom: 1rpx solid #ccc;
- }
- .popup-title{
- display: flex;
- align-items: center;
- justify-content: space-between;
- font-size: 30rpx;
- margin-bottom: 30rpx;
- width: 100%;
- padding: 0;
- font-weight: 700;
- }
- .time-list{
- display: flex;
- align-content: center;
- justify-content: space-between;
- }
- .time-list .list-item{
- border: 1px solid #ee3a43;
- padding: 0 20rpx;
- color: #ee3a43;
- line-height: 1.8;
- border-radius: 30rpx;
- }
- .popup-content{
- width: 100%;
- }
- .popup-content .content-item{
- display: flex;
- align-items: center;
- justify-content: space-between;
- line-height: 2;
- }
- .tip{
- margin-bottom: 30rpx;
- color: #878787;
- font-size: 24rpx;
- }
- .ins-icon{
- display: flex;
- align-items: center;
- font-weight: 500;
- color: #717071;
- }
- .none-accord{
- color: #C7C8C9;
- }
- .none-accord .item-value-icon{
- background-image: linear-gradient(to top,rgb(199,200,201,.7) 0% ,rgb(199,200,201,.4) 30%, rgb(199,200,201,0));
- }
- .none-accord .item-value-icon .icon{
- color: #C7C8C9;
- }
- /* 底部按钮 */
- button[disabled][type=warn]{
- background:rgba(199,200,201,1);
- color:#fff
- }
- .bottom-btn button{
- width: 40%;
- border-radius: 15rpx;
- font-size: 28rpx;
- }
- .bottom-btn .cancel{
- background:#fff;
- color: #ee3a43;
- border: 1rpx solid #ee3a43;
- }
- .bottom-btn button::after{
- border: none;
- }
- .bottom-btn{
- display: flex;
- align-items: center;
- justify-content: space-around;
- width: 100%;
- margin-top: 20rpx;
- }
- .time-list .checkedTime{
- background: #ee3a43;
- color: #fff;
- }
- .item-value-icon{
- display: inline-block;
- padding: 1px;
- height: 26rpx;
- width: 26rpx;
- border-radius: 50%;
- background-image: linear-gradient(to top,rgb(237,58,67,.35) 0% ,rgb(237,58,67,.2) 30%, rgb(255, 255, 255,0));
- margin-left: .2rem;
- }
- .item-value-icon .icon{
- border-radius: 50%;
- background: #fff;
- color: #ee3a43;
- display: block;
- line-height: 26rpx;
- font-size: 22rpx;
- font-weight: 700;
- }
|