205 lines
3.5 KiB
Plaintext
205 lines
3.5 KiB
Plaintext
/* template/selectMore/selectMore.wxss */
|
|
.text{
|
|
line-height: 80rpx;
|
|
}
|
|
.bold{
|
|
font-weight: bold;
|
|
}
|
|
.color-c{
|
|
color: #ccc;
|
|
}
|
|
.order{
|
|
width: 18rpx;
|
|
height: 20rpx;
|
|
margin-left:8rpx;
|
|
}
|
|
.tobottom{
|
|
width: 12rpx;
|
|
height: 7rpx;
|
|
margin-left:8rpx;
|
|
/* transform: rotateZ(180deg) */
|
|
}
|
|
.active .tobottom{
|
|
transform: rotateZ(0)
|
|
}
|
|
|
|
.text{
|
|
display: flex;
|
|
align-items: center;
|
|
}
|
|
.block-back{
|
|
position: fixed;
|
|
left: 0;
|
|
top: 0;
|
|
width: 100vw;
|
|
height: 100vh;
|
|
z-index: 1001;
|
|
background: rgba(0,0,0,0.5)
|
|
}
|
|
.inner{
|
|
position: fixed;
|
|
left: 0;
|
|
bottom: 0;
|
|
width: 100vw;
|
|
|
|
background: #fff;
|
|
z-index: 1002;
|
|
display: block;
|
|
}
|
|
.left{
|
|
display: inline-flex;
|
|
width: 140rpx;
|
|
background: #ebebeb;
|
|
flex-direction: column;
|
|
text-align: center;
|
|
-webkit-overflow-scrolling: touch;
|
|
height: calc(100vh - 500rpx);
|
|
overflow-y: scroll;
|
|
}
|
|
.center{
|
|
display: inline-flex;
|
|
width: 140rpx;
|
|
background: #f9f9f9;
|
|
flex-direction: column;
|
|
text-align: center;
|
|
-webkit-overflow-scrolling: touch;
|
|
height: calc(100vh - 500rpx);
|
|
overflow-y: scroll;
|
|
justify-content: center
|
|
}
|
|
.left .item.active{
|
|
background: #f9f9f9
|
|
}
|
|
.center .item{
|
|
justify-content: center
|
|
}
|
|
.title{
|
|
|
|
background: #fff;
|
|
width: 100%;
|
|
height: 100rpx;
|
|
line-height: 100rpx;
|
|
font-size: 32rpx;
|
|
color: #000;
|
|
text-align: center;
|
|
font-weight: bold;
|
|
border-bottom: 1px solid #e8e8e8;
|
|
|
|
}
|
|
.title .l{
|
|
width: 160rpx;
|
|
text-align: center;
|
|
}
|
|
.title .r{
|
|
padding-left: 60rpx;
|
|
}
|
|
.list{
|
|
display: flex;
|
|
}
|
|
.item{
|
|
display:flex;
|
|
height: 108rpx;
|
|
align-items: center;
|
|
font-size: 28rpx;
|
|
color: #999;
|
|
}
|
|
.left .item{
|
|
align-items: center;
|
|
justify-content: center;
|
|
|
|
}
|
|
.left .item.ischeck{
|
|
flex-direction: column;
|
|
font-size: 20rpx;
|
|
}
|
|
.item.active{
|
|
background: #fff;
|
|
color: #333;
|
|
}
|
|
.color-red{
|
|
color: #bc302e;
|
|
}
|
|
.color-3{
|
|
color: #333;
|
|
}
|
|
.right{
|
|
display: inline-flex;
|
|
flex: 1;
|
|
padding-left: 60rpx;
|
|
box-sizing: border-box;
|
|
flex-direction: column;
|
|
|
|
}
|
|
.right.grey{
|
|
background: #f9f9f9
|
|
}
|
|
.box{
|
|
display: block;
|
|
-webkit-overflow-scrolling: touch;
|
|
height: calc(100vh - 500rpx);
|
|
overflow-y: scroll;
|
|
padding-bottom: 10rpx;
|
|
box-sizing: border-box;
|
|
}
|
|
.right .item{
|
|
padding-right: 30rpx;
|
|
border-bottom: 1px solid #e8e8e8;
|
|
justify-content: space-between;
|
|
}
|
|
.right .item:last-child,.left .item:last-child{
|
|
border-bottom: none
|
|
}
|
|
|
|
.btn-box{
|
|
border-top: 1px solid #e8e8e8;
|
|
padding: 40rpx 30rpx;
|
|
display: flex;
|
|
justify-content: space-between
|
|
}
|
|
.btn-box .btn{
|
|
display: inline-flex;
|
|
width: calc(50% - 15rpx);
|
|
background-color: rgb(188, 48, 46);
|
|
border:1px solid rgb(188, 48, 46);
|
|
color: #fff;
|
|
height: 88rpx;
|
|
align-items: center;
|
|
justify-content: center;
|
|
border-radius: 10rpx;
|
|
font-size: 28rpx;
|
|
}
|
|
.btn.cle{
|
|
background: #fff;
|
|
border-color: #e8e8e8;
|
|
color: #333;
|
|
}
|
|
.checked{
|
|
display: inline-flex;
|
|
width: 26rpx;
|
|
height: 26rpx;
|
|
}
|
|
.check-box{
|
|
width: 32rpx;
|
|
height: 32rpx;
|
|
border-radius: 10rpx;
|
|
border: 1px solid #e8e8e8;
|
|
display: inline-flex;
|
|
align-items: center;
|
|
justify-content: center;
|
|
|
|
}
|
|
.ischeck-logo{
|
|
display: block;
|
|
width: 38rpx;
|
|
height: 29rpx;
|
|
margin-bottom: 6rpx;
|
|
}
|
|
.lists{
|
|
display: block;
|
|
-webkit-overflow-scrolling: touch;
|
|
height: calc(100vh - 500rpx);
|
|
overflow-y: scroll;
|
|
padding-bottom: 10rpx;
|
|
box-sizing: border-box;
|
|
|
|
} |