exhibitor-item.scss 1.9 KB

123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596979899100101102103
  1. .exhibitor-item{
  2. border-radius: 8rpx;
  3. background: #FFFFFF;
  4. box-shadow: 0rpx 4rpx 20rpx 0rpx rgba(0,0,0,0.15);
  5. padding: 26rpx 23rpx;
  6. border: 1rpx solid #D9D9D9;
  7. &.active{
  8. border: 4rpx solid rgba(232,116,0,0.34);
  9. padding: 24rpx 21rpx;
  10. }
  11. .exhibitor-body{
  12. display: flex;
  13. .exhibitor-name{
  14. flex: 1;
  15. color: #333333;
  16. font-weight: bold;
  17. line-height: 38rpx;
  18. font-size: $fontSize4;
  19. margin-left: 12rpx;
  20. margin-right: 28rpx;
  21. &>view{
  22. width: 100%;
  23. @include text-ellipsis-line;
  24. -webkit-line-clamp: 2;
  25. }
  26. }
  27. .exhibitor-name-cn{
  28. font-family: Poppins, Poppins;
  29. }
  30. .exhibitor-name-en{
  31. font-family: Poppins, Poppins;
  32. font-weight: normal;
  33. font-size: $fontSize3;
  34. }
  35. .exhibitor-number{
  36. flex-shrink: 0;
  37. justify-content: flex-end;
  38. margin-top: 12rpx;
  39. }
  40. .exhibitor-number-label{
  41. font-size: $fontSize0;
  42. color: #555555;
  43. }
  44. .exhibitor-number-text{
  45. font-family: Poppins, Poppins;
  46. font-weight: bold;
  47. font-size: $fontSize5;
  48. color: #E57519;
  49. letter-spacing: 2rpx;
  50. }
  51. .exhibitor-logo{
  52. width: 90rpx;
  53. height: 90rpx;
  54. border-radius: 6rpx;
  55. border: 1rpx solid #E1E1E1;
  56. }
  57. image{
  58. width: 100%;
  59. height: 100%;
  60. }
  61. }
  62. .exhibitor-footer{
  63. display: flex;
  64. align-items: center;
  65. padding-top: 33rpx;
  66. .exhibitor-action{
  67. display: grid;
  68. flex: 1;
  69. grid-template-columns: repeat(4, 1fr);
  70. font-size: $fontSize2;
  71. color: #555555;
  72. &>view, &>button{
  73. display: flex;
  74. align-items: center;
  75. cursor: pointer;
  76. }
  77. button{
  78. font-size: $fontSize2;
  79. white-space: nowrap;
  80. line-height: inherit;
  81. border: none;
  82. background-color: transparent;
  83. view{
  84. display: flex;
  85. align-items: center;
  86. font-size: $fontSize2;
  87. }
  88. }
  89. .iconfont{
  90. font-size: 28rpx;
  91. margin-right: 4rpx;
  92. }
  93. }
  94. .exhibitor-views{
  95. font-weight: 400;
  96. font-size: $fontSize2;
  97. color: #555555;
  98. line-height: 20rpx;
  99. margin-right: 57rpx;
  100. }
  101. }
  102. }