exhibitor-item.scss 1.9 KB

123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596979899100
  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: $fontSize3;
  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: $fontSize2;
  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: $fontSize4;
  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: $fontSize1;
  71. color: #555555;
  72. &>view, &>button{
  73. display: flex;
  74. align-items: center;
  75. }
  76. button{
  77. font-size: $fontSize1;
  78. white-space: nowrap;
  79. line-height: inherit;
  80. view{
  81. display: flex;
  82. align-items: center;
  83. font-size: $fontSize1;
  84. }
  85. }
  86. .iconfont{
  87. font-size: 28rpx;
  88. margin-right: 4rpx;
  89. }
  90. }
  91. .exhibitor-views{
  92. font-weight: 400;
  93. font-size: $fontSize1;
  94. color: #555555;
  95. line-height: 20rpx;
  96. margin-right: 57rpx;
  97. }
  98. }
  99. }