123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596979899100101102103104105106107108109110111112113114115116117118119120121122 |
- /* miniprogram/checkdesigner/checkdesigner.wxss */
- .selectMask {
- width: 100%;
- height: 100vh;
- position: fixed;
- background-color: rgba(0,0,0,0.5);
- top: 0rpx;
- left: 0rpx;
- z-index: 999;
- }
- .selectBlock {
- width: 100%;
- height: 70%;
- background-color: #fff;
- position: absolute;
- bottom: 0rpx;
- left: 0rpx;
- box-sizing: border-box;
- padding: 88rpx 0rpx 88rpx;
- }
- .selectTitle {
- width: 100%;
- height: 88rpx;
- background-color: #d4e4ed;
- text-align: center;
- line-height: 88rpx;
- font-size: 28rpx;
- position: absolute;
- top: 0rpx;
- left: 0rpx;
- }
- .selectBtn {
- width: 100%;
- height: 88rpx;
- background-color: #249EFB;
- font-size: 28rpx;
- color: #fff;
- text-align: center;
- line-height: 88rpx;
- border-radius: 0rpx;
- position: absolute;
- bottom: 0rpx;
- left: 0rpx;
- }
- .selectContent {
- width: 100%;
- height: 100%;
- overflow: auto;
- position: relative;
- box-sizing: border-box;
- padding: 20rpx;
- }
- .departBox {
- width: 100%;
- height: 120rpx;
- display: flex;
- align-items: center;
- border-bottom: 2rpx solid #d8d8d8;
- }
- .departImage {
- width: 100rpx;
- height: 100rpx;
- background-color: #d4e4ed;
- display: flex;
- align-items: center;
- border-radius: 8rpx;
- justify-content: center;
- }
- .departImage > image {
- width: 50rpx;
- }
- .designerImage {
- width: 100rpx;
- height: 100rpx;
- background-color: #d4e4ed;
- border-radius: 8rpx;
- }
- .designerImage > image {
- width: 100%;
- height: 100%;
- }
- .departMsg {
- width: calc(100% - 130rpx);
- height: 100%;
- line-height: 120rpx;
- box-sizing: border-box;
- padding-left: 20rpx;
- font-size: 30rpx;
- }
- checkbox {
- width: 100%;
- height: 120rpx;
- border-bottom: 2rpx solid #d8d8d8;
- display: flex;
- align-items: center;
- }
- .van-checkbox {
- width: 100%;
- height: 120rpx;
- border-bottom: 2rpx solid #d8d8d8;
- }
- .designer {
- width: 100%;
- height: 100%;
- display: flex;
- align-items: center;
- }
- .designerName {
- margin-left: 20rpx;
- color: #333333;
- font-size: 28rpx;
- }
- .departNum {
- margin-left: 10rpx;
- }
- .lastStep {
- width: 35rpx;
- position: absolute;
- left: 30rpx;
- top: 50%;
- transform: translateY(-50%);
- }
|