index.wxss 1.5 KB

12345678910111213141516171819202122232425262728293031323334353637383940414243444546474849505152535455565758596061626364656667686970717273747576777879808182838485
  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: 10rpx 10rpx 20rpx 0px rgba(0, 0, 0, 0.05);
  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. box-shadow: 10rpx 10rpx 20rpx 0px rgba(0, 0, 0, 0.05);
  57. }
  58. .exhibition-bottom {
  59. flex: 1;
  60. width: 100%;
  61. display: flex;
  62. justify-content: space-between;
  63. align-items: center;
  64. padding: 0 12rpx;
  65. box-sizing: border-box;
  66. }
  67. .exhibition-bottom-title {
  68. font-size: 28rpx;
  69. color: #000000;
  70. }
  71. .exhibition-bottom-data{
  72. font-size: 24rpx;
  73. font-weight: 500;
  74. color: #4DC2D4;
  75. }