appMarket.css 2.8 KB

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