1234567891011121314151617181920212223242526272829303132333435363738394041424344454647484950515253545556575859606162636465666768697071727374757677787980818283848586878889909192939495 |
- .item {
- display: flex;
- width: 100vw;
- height: 120rpx;
- background: #FFFFFF;
- align-items: center;
- .radio {
- padding: 0 30rpx;
- flex-shrink: 0;
- }
- .user {
- display: flex;
- flex: 1;
- align-items: center;
- height: 100%;
- box-sizing: border-box;
- border-bottom: 1px solid #ddd;
- .portrait {
- width: 80rpx;
- height: 80rpx;
- background-color: #E7EEFF;
- border-radius: 50%;
- text-align: center;
- line-height: 80rpx;
- font-size: 28rpx;
- font-family: PingFang SC-Regular, PingFang SC;
- color: #3874F6;
- flex-shrink: 0;
- }
- .main {
- height: 80rpx;
- margin-left: 20rpx;
- .label {
- height: 42rpx;
- font-size: 30rpx;
- font-family: PingFang SC-Regular, PingFang SC;
- color: #333333;
- }
- .phone {
- height: 34rpx;
- font-size: 24rpx;
- font-family: PingFang SC-Regular, PingFang SC;
- color: #999999;
- margin-top: 4rpx;
- }
- }
- }
- }
- .footer {
- width: 750rpx;
- height: 130rpx;
- display: flex;
- align-items: center;
- justify-content: flex-end;
- box-sizing: border-box;
- position: fixed;
- background: #FFFFFF;
- box-shadow: 0px -4rpx 16rpx 2rpx rgba(150, 157, 165, 0.16);
- bottom: 0;
- padding-right: 30rpx;
- .base {
- width: 156rpx;
- height: 90rpx;
- border-radius: 8rpx;
- box-sizing: border-box;
- }
- .add {
- background: #FFFFFF;
- border-radius: 8rpx;
- border: 2rpx solid #CCCCCC;
- font-size: 28rpx;
- font-family: PingFang SC-Bold, PingFang SC;
- font-weight: bold;
- color: #666666;
- margin-right: 20rpx;
- }
- .confirm {
- background: #3874F6;
- font-size: 28rpx;
- font-family: PingFang SC-Bold, PingFang SC;
- font-weight: bold;
- color: #FFFFFF;
- padding: 0;
- }
- }
|