73 lines
1.6 KiB
Plaintext
73 lines
1.6 KiB
Plaintext
/* template/territorySelect/territorySelect.wxss */
|
|
.territory {
|
|
width: 100vw;
|
|
height: 100vh;
|
|
background-color: rgba(0, 0, 0, 0.70588235);
|
|
position: fixed;
|
|
top: 0;
|
|
left: 0;
|
|
z-index: 100;
|
|
display: flex;
|
|
align-items: flex-end;
|
|
}
|
|
.territory .box {
|
|
width: 100vw;
|
|
background-color: #ffffff;
|
|
border-radius: 45rpx 45rpx 0 0;
|
|
padding-top: 48rpx;
|
|
padding-bottom: 80rpx;
|
|
}
|
|
.territory .box .title {
|
|
font-family: 'PingFangSC-Semibold', 'PingFang SC Semibold', 'PingFang SC', sans-serif;
|
|
font-weight: 650;
|
|
font-size: 30rpx;
|
|
color: #000000;
|
|
text-align: center;
|
|
margin-bottom: 31.5rpx;
|
|
}
|
|
.territory .box .list .item {
|
|
height: 84rpx;
|
|
padding-left: 37.5rpx;
|
|
display: flex;
|
|
align-items: center;
|
|
}
|
|
.territory .box .list .item.pitch {
|
|
font-family: 'PingFangSC-Semibold', 'PingFang SC Semibold', 'PingFang SC', sans-serif;
|
|
font-weight: 650;
|
|
font-size: 24rpx;
|
|
color: #9A9D02;
|
|
}
|
|
.territory .box .list .item:not(:last-of-type) .content {
|
|
border-bottom: 1rpx dotted #ebebeb;
|
|
}
|
|
.territory .box .list .item .dot {
|
|
width: 12rpx;
|
|
height: 12rpx;
|
|
background-color: #f6f6bd;
|
|
border: 1rpx solid #ccd003;
|
|
border-radius: 58.5rpx;
|
|
margin-right: 33rpx;
|
|
}
|
|
.territory .box .list .item .content {
|
|
height: 100%;
|
|
padding-right: 37.5rpx;
|
|
display: flex;
|
|
align-items: center;
|
|
flex: 1;
|
|
}
|
|
.territory .box .list .item .content .name {
|
|
font-size: 27rpx;
|
|
color: #333333;
|
|
flex: 1;
|
|
}
|
|
.territory .box .list .item .content .sum {
|
|
height: 33rpx;
|
|
line-height: 33rpx;
|
|
background-color: #cff7ff;
|
|
border: 1rpx solid #badee6;
|
|
border-radius: 225rpx;
|
|
font-size: 21rpx;
|
|
color: #026277;
|
|
padding: 0 12rpx;
|
|
}
|