1234567891011121314151617181920212223242526272829303132333435363738394041424344454647484950515253545556575859606162636465666768697071727374757677787980818283848586878889909192 |
- .box {
- width: 100vw;
- background-color: #fff;
- box-sizing: border-box;
- .item {
- display: flex;
- width: 100%;
- padding-left: 30rpx;
- box-sizing: border-box;
- .checkbox {
- display: flex;
- align-items: center;
- width: 58rpx;
- height: 120rpx;
- }
- .user {
- display: flex;
- align-items: center;
- width: 100%;
- height: 120rpx;
- border-bottom: 1px solid #ddd;
- box-sizing: border-box;
- .portrait {
- width: 80rpx;
- height: 80rpx;
- background: #3874F6;
- border-radius: 50%;
- text-align: center;
- line-height: 80rpx;
- font-size: 28rpx;
- font-family: PingFang SC-Regular, PingFang SC;
- color: #FFFFFF;
- flex-shrink: 0;
- }
- .exp {
- width: 100%;
- margin-left: 20rpx;
- .line-1 {
- height: 42rpx;
- font-size: 30rpx;
- font-family: PingFang SC-Regular, PingFang SC;
- color: #333333;
- }
- .phone {
- font-size: 24rpx;
- font-family: PingFang SC-Regular, PingFang SC;
- color: #999999;
- margin-top: 4rpx;
- }
- }
- }
- }
- }
- .footer {
- display: flex;
- justify-content: space-between;
- align-items: center;
- padding: 0 30rpx;
- position: fixed;
- width: 100vw;
- height: 130rpx;
- background: #FFFFFF;
- box-shadow: 0px -4rpx 16rpx 2rpx rgba(150, 157, 165, 0.16);
- bottom: 0;
- box-sizing: border-box;
- .count {
- font-size: 28rpx;
- font-family: PingFang SC-Regular, PingFang SC;
- color: #333333;
- }
- .but {
- width: 156rpx;
- height: 90rpx;
- background: #3874F6;
- border-radius: 8rpx;
- font-size: 28rpx;
- font-family: PingFang SC-Bold, PingFang SC;
- font-weight: bold;
- color: #FFFFFF;
- }
- }
|