1234567891011121314151617181920212223242526272829303132333435363738394041424344454647
  1. .page.ZiXunXiangQing {
  2. width: 100%;
  3. height: 100%;
  4. overflow-y: scroll;
  5. background: #fff;
  6. > .MainTitle {
  7. position: relative;
  8. overflow: hidden;
  9. margin-top: 20px;
  10. > text {
  11. &:nth-child(1) {
  12. display: block;
  13. text-align: center;
  14. font-size: 52px;
  15. font-weight: bold;
  16. line-height: 80px;
  17. z-index: 1;
  18. position: relative;
  19. }
  20. &:nth-child(2) {
  21. font-size: 24px;
  22. display: inline-block;
  23. position: absolute;
  24. z-index: 2;
  25. right: 40px;
  26. top: 50%;
  27. transform: translateY(-50%);
  28. -webkit-transform: translateY(-50%);
  29. }
  30. }
  31. }
  32. > .Container {
  33. margin-top: 40px;
  34. padding: 0 20px;
  35. padding-bottom: 40px;
  36. > image {
  37. width: 100%;
  38. }
  39. > text {
  40. display: block;
  41. font-size: 28px;
  42. line-break: 40px;
  43. color: #666;
  44. margin-top: 20px;
  45. }
  46. }
  47. }