appMarket.less 2.7 KB

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