index.scss 1.2KB

123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657
  1. .components.LiveSale {
  2. position: relative;
  3. overflow: visible;
  4. padding: 0 30px;
  5. margin-top: 40px;
  6. > view {
  7. position: relative;
  8. overflow: hidden;
  9. > .Menu {
  10. position: relative;
  11. overflow: hidden;
  12. font-size: 0;
  13. white-space: nowrap;
  14. > view {
  15. display: inline-block;
  16. vertical-align: middle;
  17. font-size: 28px;
  18. font-weight: bold;
  19. line-height: 70px;
  20. padding: 0 23px;
  21. background: rgba(0, 0, 0, 0.056);
  22. border-radius: 8px;
  23. margin-right: 30px;
  24. color: #383838;
  25. &.active {
  26. color: #193c83;
  27. }
  28. }
  29. }
  30. > .Content {
  31. position: relative;
  32. overflow: hidden;
  33. margin-top: 20px;
  34. > scroll-view {
  35. font-size: 0;
  36. white-space: nowrap;
  37. width: 100%;
  38. height: 201px;
  39. .ListItem {
  40. display: inline-block;
  41. vertical-align: middle;
  42. width: 335px;
  43. height: 100%;
  44. border-radius: 8px;
  45. background: #eee;
  46. position: relative;
  47. overflow: hidden;
  48. margin-right: 20px;
  49. > image {
  50. width: 100%;
  51. height: 100%;
  52. }
  53. }
  54. }
  55. }
  56. }
  57. }