/* template/territorySelect/territorySelect.wxss */ .territory { width: 100vw; height: 100vh; background-color: rgba(0, 0, 0, 0.705882352941177); position: fixed; top: 0; left: 0; z-index: 100; display: flex; align-items: flex-end; .box { width: 100vw; background-color: rgba(255, 255, 255, 1); border-radius: 45rpx 45rpx 0 0; padding-top: 48rpx; padding-bottom: 80rpx; .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; } .list { .item { height: 84rpx; padding-left: 37.5rpx; display: flex; align-items: center; &.pitch { font-family: 'PingFangSC-Semibold', 'PingFang SC Semibold', 'PingFang SC', sans-serif; font-weight: 650; font-size: 24rpx; color: #9A9D02; } &:not(:last-of-type) { .content { border-bottom: 1rpx dotted #ebebeb; } } .dot { width: 12rpx; height: 12rpx; background-color: rgba(246, 246, 189, 1); border: 1rpx solid rgba(204, 208, 3, 1); border-radius: 58.5rpx; margin-right: 33rpx; } .content { height: 100%; padding-right: 37.5rpx; display: flex; align-items: center; flex: 1; .name { font-size: 27rpx; color: #333333; flex: 1; } .sum { // width: 32px; height: 33rpx; line-height: 33rpx; background-color: rgba(207, 247, 255, 1); border: 1rpx solid rgba(186, 222, 230, 1); border-radius: 225rpx; font-size: 21rpx; color: #026277; padding: 0 12rpx; } } } } } }