exhibitor-detail.scss 1.7 KB

123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687
  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: grid;
  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. display: flex;
  58. align-items: center;
  59. white-space: nowrap;
  60. cursor: pointer;
  61. }
  62. .iconfont {
  63. font-size: 30rpx;
  64. margin-right: 9rpx;
  65. }
  66. }
  67. .exhibitor-views {
  68. font-weight: 400;
  69. font-size: $fontSize2;
  70. color: #555555;
  71. line-height: $fontSize2;
  72. margin-right: 57rpx;
  73. display: flex;
  74. align-items: center;
  75. grid-gap: 9rpx;
  76. flex: 1;
  77. min-width: 1rpx;
  78. z-index: 7;
  79. }
  80. }
  81. }