exhibitor-detail.scss 1.3 KB

12345678910111213141516171819202122232425262728293031323334353637383940414243444546474849505152535455565758596061626364656667686970
  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. }
  45. button{
  46. font-size: $fontSize0;
  47. white-space: nowrap;
  48. line-height: inherit;
  49. background-color: transparent;
  50. border: none;
  51. view{
  52. display: flex;
  53. align-items: center;
  54. font-size: $fontSize0;
  55. }
  56. }
  57. .iconfont{
  58. font-size: 28rpx;
  59. margin-right: 4rpx;
  60. }
  61. }
  62. .exhibitor-views{
  63. font-weight: 400;
  64. font-size: $fontSize0;
  65. color: #555555;
  66. line-height: 20rpx;
  67. margin-right: 57rpx;
  68. }
  69. }
  70. }