index.wxss 2.4 KB

123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596979899100101102103104105106107108109110111112113114115116117118119120121122123124125126127128129130131132133134135136137
  1. /* 数据展示 */
  2. .data-display {
  3. display: flex;
  4. justify-content: space-around;
  5. width: 100vw;
  6. height: 142rpx;
  7. background-color: #FFFFFF;
  8. padding: 0 30rpx;
  9. box-sizing: border-box;
  10. text-align: center;
  11. }
  12. .data-display-title {
  13. font-size: 24rpx;
  14. color: #333333;
  15. line-height: 34rpx;
  16. opacity: .7;
  17. margin-top: 20rpx;
  18. }
  19. .data-display-num {
  20. font-size: 42rpx;
  21. font-weight: 500;
  22. color: #4DC2D4;
  23. line-height: 58rpx;
  24. margin-top: 10rpx;
  25. }
  26. .display-title_image {
  27. width: 32rpx;
  28. height: 32rpx;
  29. margin: 0 6rpx;
  30. }
  31. /* 直播大厅和热门展商 */
  32. .exhibition-swiper {
  33. height: 700rpx;
  34. }
  35. .exhibition-swiper-item {
  36. display: flex;
  37. flex-wrap: wrap;
  38. height: 650rpx !important;
  39. }
  40. /* 盒子 */
  41. .exhibition {
  42. display: flex;
  43. flex-direction: column;
  44. width: 322rpx;
  45. height: 308rpx;
  46. background: #FFFFFF;
  47. box-shadow: 0px 4rpx 8rpx 0px rgba(170, 170, 170, 0.1);
  48. border-radius: 10rpx;
  49. border: 2rpx solid rgba(0, 0, 0, 0.05);
  50. overflow: hidden;
  51. margin-right: 10rpx;
  52. }
  53. .exhibition:nth-child(2n){
  54. margin-right: 0;
  55. }
  56. .exhibition-img {
  57. width: 100%;
  58. height: 240rpx;
  59. }
  60. .exhibition-bottom {
  61. flex: 1;
  62. width: 100%;
  63. display: flex;
  64. justify-content: space-between;
  65. align-items: center;
  66. padding: 0 12rpx;
  67. box-sizing: border-box;
  68. }
  69. .exhibition-bottom-title {
  70. font-size: 28rpx;
  71. color: #000000;
  72. }
  73. .exhibition-bottom-data {
  74. font-size: 24rpx;
  75. font-weight: 500;
  76. color: #4DC2D4;
  77. }
  78. /* 分类和搜索盒子 */
  79. .classify-and-search {
  80. display: flex;
  81. justify-content: space-between;
  82. height: 40rpx;
  83. margin-bottom: 20rpx;
  84. padding: 0 3rpx;
  85. }
  86. /* 分类 */
  87. .classify {
  88. display: flex;
  89. align-items: center;
  90. justify-content: space-between;
  91. min-width: 120rpx;
  92. height: 100%;
  93. border-radius: 40rpx;
  94. border: 2rpx solid #4DC2D4;
  95. font-size: 20rpx;
  96. color: #4DC2D4;
  97. padding: 0 12rpx;
  98. box-sizing: border-box;
  99. }
  100. .liveSearch {
  101. display: flex;
  102. justify-content: space-between;
  103. width: 176rpx;
  104. height: 100%;
  105. background: #FFFFFF;
  106. border-radius: 49rpx;
  107. opacity: 0.7;
  108. border: 2rpx solid #979797;
  109. box-sizing: border-box;
  110. padding: 0 12rpx 0 16rpx;
  111. }
  112. .liveSearch-input {
  113. height: 100%;
  114. min-height: 100%;
  115. font-size: 20rpx;
  116. color: #000000;
  117. }
  118. .liveSearch-icon {
  119. height: 100%;
  120. margin-left: 10rpx;
  121. }