exhibitor-detail.scss 3.3 KB

123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596979899100101102103104105106107108109110111112113114115116117118119120121122123124125126127128129130131132133134135136137138139140141142143144145146147148149150151152153154155156157
  1. .main-container {
  2. padding-bottom: 150rpx;
  3. }
  4. .exhibitor-detail {
  5. .exhibitor-tags {
  6. display: flex;
  7. align-items: flex-start;
  8. font-size: $fontSize2;
  9. margin-top: 28rpx;
  10. .exhibitor-tags-list {
  11. display: flex;
  12. align-items: center;
  13. flex-wrap: wrap;
  14. grid-gap: 9rpx 16rpx;
  15. }
  16. .exhibitor-tags-category {
  17. color: #555555;
  18. line-height: 46rpx;
  19. flex-shrink: 0;
  20. //padding-top: 4rpx;
  21. }
  22. .exhibitor-tag {
  23. @include display-flex-center;
  24. //height: 29rpx;
  25. padding: 8rpx;
  26. font-size: $fontSize1;
  27. background-color: #E3E9F1;
  28. border-radius: 4rpx;
  29. //margin-right: 16rpx;
  30. color: #333333;
  31. white-space: nowrap;
  32. //margin-top: 9rpx;
  33. }
  34. }
  35. .exhibitor-operation {
  36. display: flex;
  37. align-items: center;
  38. //padding-top: 33rpx;
  39. //margin-top: 60rpx;
  40. position: fixed;
  41. width: 100%;
  42. left: 0;
  43. bottom: 0;
  44. padding: 30rpx;
  45. background-color: #ffffff;
  46. z-index: 7;
  47. justify-content: flex-end;
  48. border-top: 1px solid #eeeeee;
  49. .exhibitor-action {
  50. display: flex;
  51. //grid-template-columns: 1fr 1fr 1fr 1fr;
  52. font-size: $fontSize2;
  53. color: #555555;
  54. grid-gap: 45rpx;
  55. width: 100%;
  56. & > view {
  57. flex: 1;
  58. min-width: 1rpx;
  59. justify-content: center;
  60. display: flex;
  61. align-items: center;
  62. white-space: nowrap;
  63. cursor: pointer;
  64. }
  65. .iconfont {
  66. font-size: 30rpx;
  67. margin-right: 9rpx;
  68. }
  69. }
  70. .exhibitor-views {
  71. font-weight: 400;
  72. font-size: $fontSize2;
  73. color: #555555;
  74. line-height: $fontSize2;
  75. margin-right: 57rpx;
  76. display: flex;
  77. align-items: center;
  78. grid-gap: 9rpx;
  79. flex: 1;
  80. min-width: 1rpx;
  81. z-index: 7;
  82. }
  83. }
  84. .exhibitor-module {
  85. background-color: #ffffff;
  86. .exhibitor-title {
  87. font-size: $fontSize4;
  88. line-height: 1.5;
  89. padding: 40rpx 40rpx 0 40rpx;
  90. }
  91. .exhibitor-module-info {
  92. display: flex;
  93. padding: 0 40rpx 20rpx 40rpx;
  94. align-items: center;
  95. grid-gap: 20rpx;
  96. .exhibitor-info-left {
  97. flex: 1;
  98. min-width: 1rpx;
  99. .title {
  100. font-weight: bold;
  101. font-size: $fontSize3;
  102. color: #7d7d7d;
  103. }
  104. .website {
  105. color: #e57519;
  106. margin-top: 12rpx;
  107. font-size: $fontSize2;
  108. display: flex;
  109. align-items: start;
  110. grid-gap: 10rpx;
  111. .iconfont {
  112. margin-top: 6rpx;
  113. font-size: $fontSize2;
  114. }
  115. text {
  116. font-size: $fontSize2;
  117. word-break: break-word;
  118. text-decoration: underline;
  119. }
  120. }
  121. }
  122. .exhibitor-info-right {
  123. image {
  124. width: 250rpx;
  125. height: 250rpx;
  126. }
  127. }
  128. }
  129. .exhibitor-hall-booth {
  130. background-color: #e57519;
  131. text-align: center;
  132. color: #ffffff;
  133. display: flex;
  134. flex-direction: column;
  135. grid-gap: 32rpx;
  136. min-height: 400rpx;
  137. justify-content: center;
  138. align-items: center;
  139. .title {
  140. font-size: $fontSize4;
  141. }
  142. .content {
  143. font-size: 80rpx;
  144. font-weight: bold;
  145. }
  146. }
  147. }
  148. }