exhibitor-detail.scss 1.1 KB

12345678910111213141516171819202122232425262728293031323334353637383940414243444546474849505152535455565758
  1. .exhibitor-detail{
  2. .exhibitor-tags{
  3. display: flex;
  4. align-items: flex-start;
  5. font-size: 18rpx;
  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. @extend .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. .iconfont{
  46. font-size: 28rpx;
  47. margin-right: 4rpx;
  48. }
  49. }
  50. .exhibitor-views{
  51. font-weight: 400;
  52. font-size: $fontSize0;
  53. color: #555555;
  54. line-height: 20rpx;
  55. margin-right: 57rpx;
  56. }
  57. }
  58. }