index.wxss 2.3 KB

123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596979899100101102103104105106107108109110111112113114115116117118119120121122123124125126127128129130131132133
  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. justify-content: space-around;
  38. flex-wrap: wrap;
  39. height: 650rpx !important;
  40. }
  41. /* 盒子 */
  42. .exhibition {
  43. display: flex;
  44. flex-direction: column;
  45. width: 322rpx;
  46. height: 308rpx;
  47. background: #FFFFFF;
  48. box-shadow: 0px 4rpx 8rpx 0px rgba(170, 170, 170, 0.1);
  49. border-radius: 10rpx;
  50. border: 2rpx solid rgba(0, 0, 0, 0.05);
  51. overflow: hidden;
  52. }
  53. .exhibition-img {
  54. width: 100%;
  55. height: 240rpx;
  56. }
  57. .exhibition-bottom {
  58. flex: 1;
  59. width: 100%;
  60. display: flex;
  61. justify-content: space-between;
  62. align-items: center;
  63. padding: 0 12rpx;
  64. box-sizing: border-box;
  65. }
  66. .exhibition-bottom-title {
  67. font-size: 28rpx;
  68. color: #000000;
  69. }
  70. .exhibition-bottom-data {
  71. font-size: 24rpx;
  72. font-weight: 500;
  73. color: #4DC2D4;
  74. }
  75. /* 分类和搜索盒子 */
  76. .classify-and-search {
  77. display: flex;
  78. justify-content: space-between;
  79. height: 40rpx;
  80. margin-bottom: 20rpx;
  81. padding: 0 3rpx;
  82. }
  83. /* 分类 */
  84. .classify {
  85. display: flex;
  86. align-items: center;
  87. justify-content: space-between;
  88. min-width: 120rpx;
  89. height: 100%;
  90. border-radius: 40rpx;
  91. border: 2rpx solid #4DC2D4;
  92. font-size: 20rpx;
  93. color: #4DC2D4;
  94. padding: 0 12rpx;
  95. box-sizing: border-box;
  96. }
  97. .liveSearch {
  98. display: flex;
  99. justify-content: space-between;
  100. width: 176rpx;
  101. height: 100%;
  102. background: #FFFFFF;
  103. border-radius: 49rpx;
  104. opacity: 0.7;
  105. border: 2rpx solid #979797;
  106. box-sizing: border-box;
  107. padding: 0 12rpx 0 16rpx;
  108. }
  109. .liveSearch-input {
  110. height: 100%;
  111. min-height: 100%;
  112. font-size: 20rpx;
  113. color: #000000;
  114. }
  115. .liveSearch-icon {
  116. height: 100%;
  117. margin-left: 10rpx;
  118. }