index.wxss 1.5 KB

1234567891011121314151617181920212223242526272829303132333435363738394041424344454647484950515253545556575859606162636465666768697071727374757677787980818283848586878889
  1. page {
  2. background-color: #fff;
  3. font-family: -apple-system, BlinkMacSystemFont, "Helvetica Neue", Helvetica,
  4. Segoe UI, Arial, Roboto, "PingFang SC", "miui", "Hiragino Sans GB",
  5. "Microsoft Yahei", sans-serif;
  6. }
  7. .container {
  8. padding: 24px;
  9. position: relative;
  10. }
  11. .top-bg {
  12. position: absolute;
  13. top: 0;
  14. left: 0;
  15. width: 100%;
  16. height: 220px;
  17. background: linear-gradient(180deg, #9f7fff 0%, #7b68ee 100%);
  18. z-index: 0;
  19. }
  20. .intro-section {
  21. margin-top: 20px;
  22. margin-bottom: 40px;
  23. position: relative;
  24. z-index: 1;
  25. }
  26. .intro-text {
  27. font-size: 14px;
  28. color: #fff;
  29. line-height: 1.8;
  30. text-align: justify;
  31. }
  32. .team-section {
  33. width: 100%;
  34. margin-top: 40px;
  35. position: relative;
  36. z-index: 1;
  37. display: flex;
  38. flex-direction: column;
  39. align-items: flex-start;
  40. justify-content: flex-start;
  41. }
  42. .section-header {
  43. width: 100%;
  44. border-bottom: 1px solid #eee;
  45. padding-bottom: 12px;
  46. margin-bottom: 24px;
  47. }
  48. .section-title {
  49. font-size: 18px;
  50. color: #333;
  51. font-weight: 500;
  52. }
  53. .advantage-list {
  54. display: flex;
  55. flex-direction: column;
  56. }
  57. .advantage-item {
  58. width: 100%;
  59. background-color: #fff;
  60. border: 1px solid #eee;
  61. border-radius: 12px;
  62. padding: 20px;
  63. display: flex;
  64. align-items: center;
  65. justify-content: flex-start;
  66. margin-bottom: 15px;
  67. box-shadow: 0 2px 6px rgba(0, 0, 0, 0.02);
  68. box-sizing: border-box;
  69. }
  70. .adv-icon {
  71. width: 24px;
  72. height: 24px;
  73. margin-right: 12px;
  74. }
  75. .adv-text {
  76. font-size: 16px;
  77. color: #333;
  78. }