index.module.less 2.3 KB

123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596979899100101
  1. .bgWhite {
  2. background-color: #fff;
  3. background: url('./images/downBg.png') no-repeat center;
  4. background-size: cover;
  5. .wall {
  6. height: 60px;
  7. }
  8. .container {
  9. width: 1200px;
  10. margin: 0 auto;
  11. padding: 127px 0 122px;
  12. display: flex;
  13. flex-direction: row;
  14. // align-items: center;
  15. justify-content: space-between;
  16. .imgWrap {
  17. position: relative;
  18. .finch {
  19. width: 200px;
  20. height: 250px;
  21. position: absolute;
  22. bottom: -32px;
  23. left: -126px;
  24. }
  25. .demo {
  26. width: 427px;
  27. }
  28. }
  29. .textWrap {
  30. h4 {
  31. font-size: 32px;
  32. font-weight: 600;
  33. color: #333333;
  34. line-height: 45px;
  35. margin-bottom: 24px;
  36. }
  37. .subtitle {
  38. font-size: 18px;
  39. font-weight: 400;
  40. color: #666666;
  41. line-height: 25px;
  42. margin-bottom: 7px;
  43. .dot {
  44. display: inline-block;
  45. width: 14px;
  46. height: 14px;
  47. background: #2dc7aa;
  48. border: 4px solid #e0f7f3;
  49. border-radius: 50%;
  50. margin-right: 10px;
  51. }
  52. }
  53. .codeList {
  54. display: flex;
  55. flex-direction: row;
  56. margin-top: 60px;
  57. .codeItem {
  58. background-color: #fff;
  59. box-shadow: 0px 1px 4px 0px rgba(0, 0, 0, 0.08);
  60. border-radius: 14px;
  61. margin-right: 40px;
  62. h5 {
  63. color: #333;
  64. font-size: 20px;
  65. margin-bottom: 16px;
  66. font-weight: 500;
  67. line-height: 28px;
  68. text-align: center;
  69. }
  70. padding: 20px 42px;
  71. .code {
  72. width: 140px;
  73. height: 140px;
  74. background-color: #666;
  75. }
  76. .iconWrap {
  77. display: flex;
  78. flex-direction: row;
  79. align-items: center;
  80. .iconItem {
  81. display: flex;
  82. flex-direction: row;
  83. align-items: center;
  84. margin-top: 16px;
  85. font-size: 12px;
  86. font-family: PingFangSC-Regular, PingFang SC;
  87. font-weight: 400;
  88. color: #666666;
  89. line-height: 17px;
  90. img {
  91. width: 20px;
  92. height: 20px;
  93. margin-right: 5px;
  94. }
  95. }
  96. }
  97. }
  98. }
  99. }
  100. }
  101. }