电速宝
您最多选择25个主题 主题必须以字母或数字开头,可以包含连字符 (-),并且长度不得超过35个字符

index.wxss 2.2KB

123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596979899100101102103104105106107108109110111112113114115116117118119120121122123124125126127128129130131132133
  1. /* pages/userlist/index.wxss */
  2. page{
  3. width: 100%;
  4. height: 100vh;
  5. background: linear-gradient(to bottom, #F0F5F5 -40%, #F0F5F5 40%,#F0F5F5 100%);
  6. padding: 0rpx 22rpx;
  7. box-sizing: border-box;
  8. }
  9. .setup{
  10. width: 100%;
  11. padding-bottom: 180rpx;
  12. box-sizing: border-box;
  13. }
  14. .driver-info {
  15. width: 100%;
  16. background-color: white;
  17. border-radius: 16rpx;
  18. padding:20rpx 30rpx 20rpx 0rpx;
  19. box-shadow: 0 4rpx 16rpx rgba(0, 0, 0, 0.1);
  20. display: flex;
  21. align-items: center;
  22. margin-top: 26rpx;
  23. box-sizing: border-box;
  24. }
  25. .driver-avatar {
  26. width: 100rpx;
  27. height: 100rpx;
  28. border-radius: 50%;
  29. }
  30. .driver-details {
  31. margin-left: 24rpx;
  32. flex: 1;
  33. }
  34. .driver-name {
  35. font-size: 32rpx;
  36. font-weight: bold;
  37. padding: 20rpx 0rpx;
  38. }
  39. .driver-car {
  40. font-size: 28rpx;
  41. color: #999999;
  42. margin-top: 8rpx;
  43. }
  44. .driver-arrive {
  45. font-size: 28rpx;
  46. /* color: #2C85FF; */
  47. /* color: #666; */
  48. color: #999999;
  49. margin-top: 28rpx;
  50. }
  51. .cancel-btn {
  52. width: 160rpx;
  53. height: 64rpx;
  54. line-height: 64rpx;
  55. font-size: 28rpx;
  56. color: #FF5252;
  57. border: 1rpx solid #FF5252;
  58. background-color: white;
  59. border-radius: 32rpx;
  60. }
  61. .address{
  62. width: 100%;
  63. height: 140rpx;
  64. display: flex;
  65. /* align-items: center; */
  66. padding-top:10rpx;
  67. justify-content: center;
  68. background-color: #ffffff;
  69. position: fixed;
  70. bottom: 0rpx;
  71. left: 0rpx;
  72. box-sizing: border-box;
  73. }
  74. .addressbox{
  75. width: 400rpx;
  76. height: 80rpx;
  77. display: flex;
  78. align-items: center;
  79. justify-content: center;
  80. color: #ffffff;
  81. border-radius: 10rpx;
  82. background-color: #2C85FF;
  83. box-sizing: border-box;
  84. }
  85. .btn-wrapper {
  86. height: 100%;
  87. }
  88. .btn {
  89. display: inline-flex;
  90. justify-content: center;
  91. align-items: center;
  92. width: 120rpx;
  93. height: 100%;
  94. color: white;
  95. }
  96. .delete-btn {
  97. background-color: #e34d59;
  98. }
  99. .edit-btn {
  100. background-color: #ed7b2f;
  101. }
  102. .favor-btn {
  103. background-color: var(--td-brand-color, #0052d9);
  104. }
  105. .driver-operation{
  106. display: flex;
  107. /* justify-content: space-between; */
  108. justify-content: space-around;
  109. margin-top: 30rpx;
  110. }
  111. .cancel-btn1 {
  112. width: 160rpx;
  113. height: 64rpx;
  114. line-height: 64rpx;
  115. font-size: 28rpx;
  116. color: #0F80DC;
  117. border: 1rpx solid #0F80DC;
  118. background-color: white;
  119. border-radius: 32rpx;
  120. }