appMarket.less 3.1 KB

123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596979899100101102103104105106107108109110111112113114115116117118119120121122123124125126127128129130131132133134135136137138139140141142143144145146147148149150151152153154155156157158159160161
  1. html,
  2. body {
  3. width: 100%;
  4. height: 100%;
  5. background-color: #f6f7fb;
  6. }
  7. div {
  8. box-sizing: border-box;
  9. }
  10. .applicationMarket {
  11. height: 100%;
  12. .applicationMarket-title {
  13. width: 100%;
  14. padding: 80px 0 60px;
  15. display: flex;
  16. flex-direction: column;
  17. justify-content: center;
  18. .ourServices {
  19. width: 160px;
  20. text-align: center;
  21. font-size: 14px;
  22. padding: 8px 0;
  23. color: #63aefb;
  24. border: 1px solid #63aefb;
  25. border-radius: 6px;
  26. background-color: rgba(99, 174, 251, 0.2);
  27. margin: auto;
  28. margin-bottom: 20px;
  29. }
  30. .applicationEncyclopedia {
  31. text-align: center;
  32. font-size: 28px;
  33. font-weight: bold;
  34. color: #000000;
  35. margin-bottom: 0px;
  36. }
  37. }
  38. .topicContent {
  39. width: 70%;
  40. margin: auto;
  41. display: flex;
  42. justify-content: space-between;
  43. flex-wrap: wrap;
  44. margin-bottom: 60px;
  45. .bigCircle {
  46. width: 49.3%;
  47. background-color: #fff;
  48. border-radius: 6px;
  49. height: 320px;
  50. padding: 25px;
  51. cursor: pointer;
  52. border: 1px solid #fff;
  53. a {
  54. width: 100%;
  55. height: 100%;
  56. display: flex;
  57. flex-direction: row;
  58. box-sizing: border-box;
  59. box-sizing: border-box;
  60. }
  61. .bigCircle-icon {
  62. width: 20%;
  63. height: 100%;
  64. display: flex;
  65. justify-content: center;
  66. align-items: center;
  67. padding-right: 25px;
  68. }
  69. .textTitle {
  70. width: 100%;
  71. display: flex;
  72. flex-direction: column;
  73. justify-content: center;
  74. .textTitle-title {
  75. font-size: 24px;
  76. color: #000000;
  77. font-weight: bold;
  78. display: flex;
  79. align-items: center;
  80. justify-content: space-between;
  81. .textTitle-title-icon {
  82. width: 30px;
  83. height: 30px;
  84. border-radius: 50%;
  85. background-color: rgba(99, 174, 251, 0.2);
  86. display: flex;
  87. justify-content: center;
  88. align-items: center;
  89. img {
  90. width: 50%;
  91. height: 50%;
  92. }
  93. }
  94. }
  95. .textTitle-text {
  96. font-size: 16px;
  97. color: #999999;
  98. margin-top: 15px;
  99. line-height: 1.4;
  100. }
  101. }
  102. &:hover {
  103. border: 1px solid #86bffb;
  104. background-color: rgba(99, 174, 251, 0.2);
  105. .textTitle-title-icon {
  106. background-color: #fff !important;
  107. }
  108. }
  109. &{
  110. margin-bottom: 20px;
  111. }
  112. }
  113. }
  114. img {
  115. width: 100%;
  116. }
  117. }
  118. // 媒体查询
  119. @media only screen and (max-width: 768px) {
  120. .applicationMarket {
  121. .applicationMarket-title {
  122. padding-bottom: 30px !important;
  123. .applicationEncyclopedia {
  124. font-size: 22px !important;
  125. }
  126. }
  127. .topicContent {
  128. width: 85% !important;
  129. }
  130. .bigCircle-icon {
  131. width: 0 !important;
  132. overflow: hidden !important;
  133. padding: 0 !important;
  134. }
  135. .topicContent {
  136. display: flex;
  137. flex-direction: column;
  138. justify-content: center;
  139. .bigCircle {
  140. width: 100%;
  141. }
  142. }
  143. }
  144. }