exhibitor-detail.scss 1.4 KB

1234567891011121314151617181920212223242526272829303132333435363738394041424344454647484950515253545556575859606162636465666768697071727374
  1. .exhibitor-detail{
  2. .exhibitor-tags{
  3. display: flex;
  4. align-items: flex-start;
  5. font-size: $fontSize1;
  6. margin-top: 28rpx;
  7. .exhibitor-tags-list{
  8. display: flex;
  9. align-items: center;
  10. flex-wrap: wrap;
  11. }
  12. .exhibitor-tags-category{
  13. color: #555555;
  14. line-height: 21rpx;
  15. flex-shrink: 0;
  16. padding-top: 4rpx;
  17. }
  18. .exhibitor-tag{
  19. @include display-flex-center;
  20. height: 29rpx;
  21. padding: 8rpx;
  22. background-color: #E3E9F1;
  23. border-radius: 4;
  24. margin-right: 16rpx;
  25. color: #333333;
  26. white-space: nowrap;
  27. margin-bottom: 9rpx;
  28. }
  29. }
  30. .exhibitor-operation{
  31. display: flex;
  32. align-items: center;
  33. padding-top: 33rpx;
  34. .exhibitor-action{
  35. display: grid;
  36. flex: 1;
  37. grid-template-columns: 1.5fr 1fr 1fr 1fr 1fr;
  38. font-size: $fontSize0;
  39. color: #555555;
  40. &>view{
  41. display: flex;
  42. align-items: center;
  43. white-space: nowrap;
  44. cursor: pointer;
  45. &:first-child{
  46. cursor: default;
  47. }
  48. }
  49. button{
  50. font-size: $fontSize0;
  51. white-space: nowrap;
  52. line-height: inherit;
  53. background-color: transparent;
  54. border: none;
  55. view{
  56. display: flex;
  57. align-items: center;
  58. font-size: $fontSize0;
  59. }
  60. }
  61. .iconfont{
  62. font-size: 28rpx;
  63. margin-right: 4rpx;
  64. }
  65. }
  66. .exhibitor-views{
  67. font-weight: 400;
  68. font-size: $fontSize0;
  69. color: #555555;
  70. line-height: 20rpx;
  71. margin-right: 57rpx;
  72. }
  73. }
  74. }