index.module.less 1.0 KB

123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354
  1. .woringBook {
  2. min-height: 100vh;
  3. background: url('./images/woring-bg.png') no-repeat top center;
  4. background-size: contain;
  5. }
  6. .woringHeader {
  7. display: flex;
  8. align-items: center;
  9. height: var(--van-nav-bar-height);
  10. .leftArrow {
  11. padding: 0 var(--k-padding-md);
  12. }
  13. .title {
  14. position: relative;
  15. z-index: 1;
  16. i {
  17. width: 60px;
  18. height: 20px;
  19. display: inline-block;
  20. background: url('./images/woring-title.png') no-repeat center;
  21. background-size: contain;
  22. }
  23. &::after {
  24. content: ' ';
  25. display: inline-block;
  26. position: absolute;
  27. left: 0;
  28. bottom: -2px;
  29. width: 48px;
  30. height: 6px;
  31. background: linear-gradient(270deg, rgba(119, 255, 239, 0.59) 0%, #42CDFF 100%);
  32. opacity: 0.5;
  33. z-index: -1;
  34. }
  35. }
  36. }
  37. .woringSecgtion {
  38. min-height: calc(100vh - var(--header-height) - 110px);
  39. margin-top: 110px;
  40. background: #FFFFFF;
  41. border-radius: 16px 16px 0 0;
  42. padding: 20px 14px;
  43. .woringImg {
  44. margin-bottom: 16px;
  45. width: 100%;
  46. }
  47. }