travelingTrack.css 2.0 KB

123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596979899100101102103104105106107108109110111112113114115116117118119120121122123124125126
  1. .container {
  2. }
  3. .car-info {
  4. width: 100%;
  5. /* height: 725rpx; */
  6. background-color: #ffffff;
  7. border-radius: 32rpx 32rpx 0 0;
  8. position: fixed;
  9. bottom: 0;
  10. z-index: 1000;
  11. padding: 44rpx 32rpx 120rpx;
  12. }
  13. .info-top {
  14. padding-bottom: 32rpx;
  15. border-bottom: 2rpx solid #F4F5F6;
  16. margin-bottom: 32rpx;
  17. }
  18. .info-top img {
  19. width: 125rpx;
  20. height: 125rpx;
  21. border-radius: 16rpx;
  22. }
  23. .top-left > view:nth-of-type(1) {
  24. color: #2A3A5A;
  25. font-size: 36rpx;
  26. margin-bottom: 16rpx;
  27. font-weight: bold;
  28. }
  29. .top-left > view:nth-of-type(2) {
  30. color: #5E6F90;
  31. background-color: #F3F8FF;
  32. border-radius: 40rpx;
  33. padding-top: 12rpx;
  34. padding-bottom: 12rpx;
  35. width: 208rpx;
  36. text-align: center;
  37. }
  38. .ctime {
  39. color: #9FA7B7;
  40. font-size: 30rpx;
  41. margin-bottom: 40rpx;
  42. }
  43. .center-left {
  44. flex-direction: column;
  45. align-items: center;
  46. }
  47. .center-left > view:nth-of-type(1) {
  48. width: 16rpx;
  49. height: 16rpx;
  50. background-color: #2A3A5A;
  51. border-radius: 50%;
  52. margin-bottom: 4rpx;
  53. }
  54. .center-left > view:nth-of-type(2) {
  55. height: 54rpx;
  56. border: 2rpx dashed #CEE4FF;
  57. }
  58. .center-left > view:nth-of-type(3) {
  59. width: 16rpx;
  60. height: 16rpx;
  61. background-color: #0074FF;
  62. border-radius: 50%;
  63. margin-top: 4rpx;
  64. }
  65. .center-right {
  66. color: #2A3A5A;
  67. font-size: 28rpx;
  68. display: flex;
  69. flex-direction: column;
  70. height: 100%;
  71. margin-left: 16rpx;
  72. }
  73. .center-right > view:nth-of-type(1) {
  74. margin-bottom: 40rpx;
  75. }
  76. .info-bottom {
  77. background-color: #F3F8FF;
  78. border-radius: 16rpx;
  79. margin-top: 40rpx;
  80. padding: 32rpx 20rpx;
  81. }
  82. .bottom-item {
  83. display: flex;
  84. flex-direction: column;
  85. align-items: center;
  86. }
  87. .bottom-item > view:nth-of-type(1) {
  88. color: #2A3A5A;
  89. font-size: 40rpx;
  90. font-weight: bold;
  91. margin-bottom: 12rpx;
  92. }
  93. .bottom-item text {
  94. color: #2A3A5A;
  95. font-size: 28rpx;
  96. margin-left: 4rpx;
  97. }
  98. .bottom-item > view:nth-of-type(2) {
  99. color: #5E6F90;
  100. font-size: 24rpx;
  101. }
  102. .address-name-style{
  103. width: 640rpx;
  104. white-space: nowrap; /* 保持文本在一行内显示 */
  105. overflow: hidden; /* 隐藏溢出的内容 */
  106. text-overflow: ellipsis; /* 使用省略号表示溢出的文本 */
  107. }