mounted.css 6.9 KB

123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596979899100101102103104105106107108109110111112113114115116117118119120121122123124125126127128129130131132133134135136137138139140141142143144145146147148149150151152153154155156157158159160161162163164165166167168169170171172173174175176177178179180181182183184185186187188189190191192193194195196197198199200201202203204205206207208209210211212213214215216217218219220221222223224225226227228229230231232233234235236237238239240241242243244245246247248249250251252253254255256257258259260261262263264265266267268269270271272273274275276277278279280281282283284285286287288289290291292293294295296297298299300301302303304305306307308309310311312313314315316317318319320321322323324325326327328329330331332333334335336337338339340341342343344345346347348349350351352353354355356357358359360361362363364365366367368369370371372373374375376377378379380381382383384385386387388389390391392393394395396397398399400401402403404405406407408409410411412413414415416
  1. :root {
  2. --theme: #4153ff;
  3. --radius-1: 4px;
  4. --radius-2: 6px;
  5. }
  6. button {
  7. border-radius: var(--radius-1);
  8. border: none;
  9. }
  10. body {
  11. position: relative;
  12. background-color: #F6F6F6;
  13. }
  14. .mounted {
  15. background-color: #F6F6F6;
  16. display: flex;
  17. align-items: center;
  18. justify-content: center;
  19. flex-direction: column;
  20. margin-bottom: 17px;
  21. }
  22. .header {
  23. display: flex;
  24. flex-direction: row;
  25. background-color: #F6F6F6;
  26. padding: 14px 39px;
  27. }
  28. .mounted-box {
  29. display: flex;
  30. width: 940px;
  31. /*min-height: 611px;*/
  32. background-color: white;
  33. padding: 15px 30px 24px;
  34. flex-direction: column;
  35. align-items: center;
  36. border-radius: 8px;
  37. box-shadow: 3px 2px 20px rgba(0, 0, 0, 0.02);
  38. }
  39. .mounted-title {
  40. font-size: 18px;
  41. color: #222222;
  42. font-weight: Bold;
  43. }
  44. .mounted-container {
  45. width: 940px;
  46. display: flex;
  47. flex-direction: column;
  48. justify-content: center;
  49. }
  50. .mounted-nav-container {
  51. display: flex;
  52. justify-content: center;
  53. }
  54. .mounted-nav {
  55. display: flex;
  56. margin-top: 15px;
  57. padding: 4px;
  58. background-color: #f6f6f6;
  59. border-radius: var(--radius-2);
  60. }
  61. .mounted-nav li {
  62. width: 140px;
  63. height: 36px;
  64. cursor: pointer;
  65. display: flex;
  66. justify-content: center;
  67. align-items: center;
  68. font-size: 14px;
  69. font-family: PingFang SC;
  70. }
  71. .mounted-nav .active {
  72. color: white;
  73. background-color: var(--theme);
  74. border-radius: var(--radius-2);
  75. }
  76. .mounted-content-item {
  77. margin-top: 15px;
  78. /* border:1px solid #E9E9E9; */
  79. display: none;
  80. }
  81. .content-header {
  82. background-color: #E9E9E9;
  83. padding: 8px 16px;
  84. font-family: PingFang SC;
  85. border-radius: 4px 4px 0 0;
  86. }
  87. .content {
  88. padding: 16px;
  89. height: 392px;
  90. border: 1px solid #E9E9E9;
  91. overflow-y: auto;
  92. border-radius: 0 0 4px 4px;
  93. }
  94. .content h2 {
  95. font-size: 20px;
  96. }
  97. .content p {
  98. font-size: 14px;
  99. line-height: 1.7;
  100. }
  101. .content h3 {
  102. font-size: 16px;
  103. }
  104. .mt6 {
  105. margin-top: 6px;
  106. }
  107. .mt16 {
  108. margin-top: 16px;
  109. }
  110. .content-form {
  111. padding: 23px 60px;
  112. border: 1px solid #E9E9E9;
  113. border-radius: 0 0 4px 4px;
  114. }
  115. .form-box-item {
  116. display: flex;
  117. align-items: center;
  118. height: 40px;
  119. }
  120. .form-box-item:not(:nth-of-type(1)) {
  121. display: flex;
  122. align-items: center;
  123. height: 40px;
  124. margin-top: 16px;
  125. }
  126. .form-desc {
  127. width: 60px;
  128. font-size: 12px;
  129. margin-right: 16px;
  130. text-align: right;
  131. }
  132. .form-box-item div input {
  133. width: 328px;
  134. height: 32px;
  135. padding-left: 20px;
  136. border: 1px solid #e2e2e2;
  137. border-radius: var(--radius-1);
  138. }
  139. .form-box-item div input:focus {
  140. border: 1px solid var(--theme);
  141. box-shadow: 0 0 0 2px rgba(65, 83, 255, 0.2);
  142. transition: all 0.1s ease-in-out;
  143. }
  144. .cancel-btn {
  145. padding: 7px 28px;
  146. background-color: white;
  147. border: 1px solid #D7D7D7;
  148. cursor: pointer;
  149. }
  150. .accept-btn {
  151. padding: 7px 28px;
  152. color: white;
  153. background-color: var(--theme);
  154. flex: none;
  155. cursor: pointer;
  156. }
  157. .disabled-btn {
  158. padding: 7px 28px;
  159. color: #222222;
  160. background-color: #D7D7D7;
  161. flex: none;
  162. display: flex;
  163. align-items: center;
  164. border: 1px solid #D7D7D7;
  165. }
  166. .item-btn-group {
  167. display: none;
  168. margin-top: 20px;
  169. }
  170. .show {
  171. display: block !important;
  172. }
  173. .hidden {
  174. display: none !important;
  175. }
  176. .form-box-check {
  177. display: flex;
  178. align-items: center;
  179. margin-top: 12px;
  180. }
  181. footer {
  182. font-size: 12px;
  183. margin-bottom: 20px;
  184. color: #707070;
  185. font-weight: 400;
  186. display: flex;
  187. justify-content: center;
  188. background-color: #F6F6F6;
  189. }
  190. .layui-table {
  191. margin: 0;
  192. }
  193. .layui-table tr {
  194. background-color: white !important;
  195. }
  196. .layui-table tr td {
  197. font-size: 12px;
  198. font-family: PingFang SC;
  199. line-height: 20px;
  200. background-color: white !important;
  201. }
  202. .layui-table tr th {
  203. font-size: 14px;
  204. font-family: PingFang SC;
  205. font-weight: bold;
  206. line-height: 20px;
  207. }
  208. .mounted-env-container {
  209. height: 440px;
  210. padding-bottom: 20px;
  211. overflow-y: auto;
  212. }
  213. .mounted-tips {
  214. padding: 12px 20px;
  215. color: var(--theme);
  216. background-color: #eef4ff;
  217. border-radius: var(--radius-1);
  218. }
  219. .mounting-container {
  220. padding: 16px;
  221. height: 479px;
  222. max-height: 479px;
  223. border: 1px solid #E9E9E9;
  224. overflow-y: auto;
  225. }
  226. .item-cell {
  227. padding: 4px 16px;
  228. display: flex;
  229. justify-content: space-between;
  230. align-items: center;
  231. flex-wrap: wrap;
  232. }
  233. .green {
  234. color: #11d55c;
  235. }
  236. .wrong {
  237. color: #FC4D4D;
  238. }
  239. .layui-icon {
  240. font-size: 18px !important;
  241. }
  242. .success-content {
  243. display: flex;
  244. flex-direction: column;
  245. align-items: center;
  246. justify-content: center;
  247. height: 392px;
  248. border: 1px solid #E9E9E9;
  249. border-radius: 0 0 4px 4px;
  250. }
  251. img {
  252. width: 100%;
  253. height: 100%;
  254. }
  255. .success-content .tips {
  256. width: 400px;
  257. /*height: 80px;*/
  258. padding: 18px;
  259. border-radius: 8px;
  260. background-color: #F8F8F8;
  261. font-size: 12px;
  262. margin-top: 20px;
  263. }
  264. .success-content .btn-group {
  265. display: flex;
  266. align-items: center;
  267. margin-top: 40px;
  268. }
  269. .success-content .result {
  270. font-size: 20px;
  271. font-family: PingFang SC;
  272. font-weight: bold;
  273. line-height: 28px;
  274. }
  275. .success-content .btn-group .store-btn {
  276. padding: 7px 35px;
  277. border: 1px solid var(--theme);
  278. background-color: white;
  279. color: var(--theme);
  280. cursor: pointer;
  281. }
  282. .success-content .btn-group .btn {
  283. padding: 7px 35px;
  284. border: 1px solid var(--theme);
  285. background-color: var(--theme);
  286. color: white;
  287. cursor: pointer;
  288. border-radius: var(--radius-2);
  289. }
  290. .mounted-footer {
  291. width: 940px;
  292. background-color: white;
  293. padding: 16px 30px 23px;
  294. margin-top: 16px;
  295. box-shadow: 3px 2px 20px rgba(0, 0, 0, 0.08);
  296. display: none;
  297. }
  298. .mounted-footer-title {
  299. font-size: 18px;
  300. line-height: 25px;
  301. margin-bottom: 16px;
  302. }
  303. .mounted-recommend-box {
  304. display: flex;
  305. flex-direction: row;
  306. justify-content: space-between;
  307. flex-wrap: wrap;
  308. }
  309. .mounted-recommend-item {
  310. display: flex;
  311. justify-content: center;
  312. align-items: center;
  313. width: 224px;
  314. height: 140px;
  315. border: 1px solid #D7D7D7;
  316. cursor: pointer;
  317. }
  318. .mounted-recommend-item .icon {
  319. width: 128px;
  320. height: 36px;
  321. }
  322. .mounted-recommend-item:hover {
  323. background-color: #F6F9FF;
  324. display: flex;
  325. flex-direction: column;
  326. align-items: flex-start;
  327. justify-content: flex-start;
  328. width: 224px;
  329. height: 140px;
  330. }
  331. .mounted-recommend-item:hover .icon {
  332. display: none;
  333. }
  334. .recommend-content {
  335. display: none;
  336. }
  337. .mounted-recommend-item:hover .recommend-content {
  338. display: block;
  339. padding: 6px 10px 10px;
  340. }
  341. .mounted-recommend-item:hover .recommend-content .title {
  342. font-size: 16px;
  343. line-height: 22px;
  344. font-weight: bold;
  345. }
  346. .mounted-recommend-item:hover .recommend-content ul {
  347. list-style-type: disc;
  348. margin-left: 20px;
  349. }
  350. .mounted-recommend-item:hover .recommend-content li {
  351. list-style-type: disc;
  352. }