| 123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596979899100101102103104105106107108109110111112113114115116117118119120121122123124125126127128129130131132133 |
- /* pages/userlist/index.wxss */
- page{
- width: 100%;
- height: 100vh;
- background: linear-gradient(to bottom, #F0F5F5 -40%, #F0F5F5 40%,#F0F5F5 100%);
- padding: 0rpx 22rpx;
- box-sizing: border-box;
-
- }
- .setup{
- width: 100%;
- padding-bottom: 180rpx;
- box-sizing: border-box;
- }
- .driver-info {
- width: 100%;
- background-color: white;
- border-radius: 16rpx;
- padding:20rpx 30rpx 20rpx 0rpx;
- box-shadow: 0 4rpx 16rpx rgba(0, 0, 0, 0.1);
- display: flex;
- align-items: center;
- margin-top: 26rpx;
- box-sizing: border-box;
- }
-
- .driver-avatar {
- width: 100rpx;
- height: 100rpx;
- border-radius: 50%;
- }
-
- .driver-details {
- margin-left: 24rpx;
- flex: 1;
- }
-
- .driver-name {
- font-size: 32rpx;
- font-weight: bold;
- padding: 20rpx 0rpx;
- }
- .driver-car {
- font-size: 28rpx;
- color: #999999;
- margin-top: 8rpx;
- }
-
- .driver-arrive {
- font-size: 28rpx;
- /* color: #2C85FF; */
- /* color: #666; */
- color: #999999;
-
- margin-top: 28rpx;
- }
-
- .cancel-btn {
- width: 160rpx;
- height: 64rpx;
- line-height: 64rpx;
- font-size: 28rpx;
- color: #FF5252;
- border: 1rpx solid #FF5252;
- background-color: white;
- border-radius: 32rpx;
- }
-
- .address{
- width: 100%;
- height: 140rpx;
- display: flex;
- /* align-items: center; */
- padding-top:10rpx;
- justify-content: center;
- background-color: #ffffff;
- position: fixed;
- bottom: 0rpx;
- left: 0rpx;
- box-sizing: border-box;
- }
- .addressbox{
- width: 400rpx;
- height: 80rpx;
- display: flex;
- align-items: center;
- justify-content: center;
- color: #ffffff;
- border-radius: 10rpx;
- background-color: #2C85FF;
-
- box-sizing: border-box;
- }
- .btn-wrapper {
- height: 100%;
- }
-
- .btn {
- display: inline-flex;
- justify-content: center;
- align-items: center;
- width: 120rpx;
- height: 100%;
- color: white;
- }
-
- .delete-btn {
- background-color: #e34d59;
- }
-
- .edit-btn {
- background-color: #ed7b2f;
- }
-
- .favor-btn {
- background-color: var(--td-brand-color, #0052d9);
- }
- .driver-operation{
- display: flex;
- /* justify-content: space-between; */
- justify-content: space-around;
- margin-top: 30rpx;
- }
- .cancel-btn1 {
- width: 160rpx;
- height: 64rpx;
- line-height: 64rpx;
- font-size: 28rpx;
- color: #0F80DC;
- border: 1rpx solid #0F80DC;
- background-color: white;
- border-radius: 32rpx;
- }
|