myCars.scss 2.6 KB

123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596979899100101102103104105106107108109110111112113114115116117118119120121122123124125126127128129130131132
  1. .header {
  2. height: 296rpx;
  3. overflow: hidden;
  4. background: url(../../static/img/myCars-header-bg.png) no-repeat;
  5. background-size: contain;
  6. color: $my-main-color;
  7. }
  8. .header .header-title {
  9. margin-top: 80rpx;
  10. color: #fff;
  11. font-size: 50rpx;
  12. text-align: center;
  13. }
  14. .statistics {
  15. margin: -78rpx 0 59rpx;
  16. background-color: #fff;
  17. box-shadow: 0px 6rpx 10px 0px rgba(0, 0, 0, 0.06);
  18. border-radius: 15rpx;
  19. height: 182rpx;
  20. display: flex;
  21. align-items: center;
  22. justify-content: center;
  23. color: #323232;
  24. }
  25. .statistics-title {
  26. font-size: 60rpx;
  27. letter-spacing: 2rpx;
  28. }
  29. .statistics-center {
  30. width: 4rpx;
  31. height: 106rpx;
  32. margin: 0 103rpx;
  33. box-shadow: 0px 6rpx 10rpx 0rx rgba(0, 0, 0, 0.06);
  34. opacity: 0.5;
  35. border: 1px solid #979797;
  36. }
  37. .statistics-number-wrap {
  38. font-size: 28rpx;
  39. }
  40. .statistics-number-wrap .number {
  41. margin-right: 4rpx;
  42. font-size: 72rpx;
  43. }
  44. .add-car-btn {
  45. height: 100rpx;
  46. line-height: 100rpx;
  47. background: #008cff;
  48. color: #fff;
  49. font-size: 28rpx;
  50. text-align: center;
  51. box-shadow: 0px 7rpx 13rpx 0px rgba(16, 153, 250, 0.31);
  52. border-radius: 10rpx;
  53. margin-bottom: 50rpx;
  54. }
  55. .new-plate-number {
  56. margin-bottom: 70rpx;
  57. }
  58. .message-input-wrap {
  59. margin: 0 -40rpx;
  60. }
  61. .message-input-wrap /deep/ .u-input ~ uni-view:last-of-type .u-char-item {
  62. background-color: #e8ffe8;
  63. }
  64. .mycars {
  65. padding-bottom: 30rpx;
  66. }
  67. .mycars-item {
  68. display: flex;
  69. align-items: center;
  70. height: 111rpx;
  71. border-bottom: 1px solid #eaeaea;
  72. }
  73. .mycars-item:nth-last-child(2) {
  74. margin-bottom: 30rpx;
  75. }
  76. .mycars-item-name {
  77. // margin-right: 43rpx;
  78. width: 258rpx;
  79. font-size: 36rpx;
  80. color: #4b4b4b;
  81. }
  82. .mycars-item-type {
  83. font-size: 26rpx;
  84. color: #959595;
  85. }
  86. .mycars-item-sign {
  87. line-height: 40rpx;
  88. text-align: center;
  89. border-radius: 5rpx;
  90. color: #fff;
  91. font-size: 22rpx;
  92. padding: 0 15rpx;
  93. border: solid 1px #ff6d6d;
  94. background-color: #ff6d6d;
  95. margin-left: 40rpx;
  96. }
  97. .mycars-item-sign1 {
  98. line-height: 40rpx;
  99. text-align: center;
  100. border-radius: 5rpx;
  101. color: #fff;
  102. font-size: 22rpx;
  103. padding: 0 15rpx;
  104. border: solid 1px #d8d8d8;
  105. background-color: #d8d8d8;
  106. margin-left: 40rpx;
  107. }
  108. .mycars-item-tool {
  109. flex: 1;
  110. font-size: 22rpx;
  111. color: #c9c9c9;
  112. text-align: right;
  113. }
  114. .mycars-item-tool .default {
  115. display: inline-block;
  116. box-sizing: border-box;
  117. // width: 75rpx;
  118. height: 38rpx;
  119. line-height: 34rpx;
  120. border-radius: 5rpx;
  121. border: 1px solid #e3e3e3;
  122. text-align: center;
  123. margin-right: 17rpx;
  124. font-size: 18rpx;
  125. color: #cdcdcd;
  126. }
  127. .mycars-item-tool .default.isDefault {
  128. background-color: #ffeee3;
  129. border-color: #ffeee3;
  130. color: #fa6400;
  131. }