index.css 9.1 KB

123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596979899100101102103104105106107108109110111112113114115116117118119120121122123124125126127128129130131132133134135136137138139140141142143144145146147148149150151152153154155156157158159160161162163164165166167168169170171172173174175176177178179180181182183184185186187188189190191192193194195196197198199200201202203204205206207208209210211212213214215216217218219220221222223224225226227228229230231232233234235236237238239240241242243244245246247248249250251252253254255256257258259260261262263264265266267268269270271272273274275276277278279280281282283284285286287288289290291292293294295296297298299300301302303304305306307308309310311312313314315316317318319320321322323324325326327328329330331332333334335336337338339340341342343344345346347348349350351352353354355356357358359360361362363364365366367368369370371372373374375376377378379380381382383384385386387388389390391392393394395396397398399400401402403404405406407408409410411412413414415416417418419420421422423424425426427428429430431432433434435436437438439440441442443444445446447448449450451452453454455456457458459460461462463464465466467468469470471472473474475476477
  1. body {
  2. line-height: 1.6;
  3. background:#f7f7f7;
  4. }
  5. .cert-check-title {
  6. font-size: 36px;
  7. font-weight: 500;
  8. }
  9. .wrapper {
  10. background-color: #edf1f4;
  11. }
  12. .inner-content {
  13. background-color: #fff;
  14. border: 1px solid #eaeaea;
  15. border-radius: 3px;
  16. padding-top: 80px;
  17. padding-bottom: 120px;
  18. margin: 0px auto;
  19. margin-bottom: 60px;
  20. }
  21. .cursor-pointer {
  22. cursor: pointer;
  23. }
  24. .flex-start-center {
  25. display: flex;
  26. flex-flow: row nowrap;
  27. justify-content: flex-start;
  28. align-items: center;
  29. }
  30. .flex-between-center {
  31. display: flex;
  32. flex-flow: row nowrap;
  33. justify-content: space-between;
  34. align-items: center;
  35. }
  36. .flex-col-center {
  37. display: flex;
  38. flex-flow: column nowrap;
  39. justify-content: center;
  40. align-items: center;
  41. }
  42. .flex-center-o {
  43. display: flex;
  44. flex-flow: row nowrap;
  45. justify-content: center;
  46. align-items: center;
  47. flex-direction: column;
  48. }
  49. .v-hide {
  50. visibility: hidden;
  51. height: 0px;
  52. overflow: hidden;
  53. border: none;
  54. margin: 0 !important;
  55. padding: 0 !important;
  56. }
  57. .label-lg {
  58. font-size: 16px;
  59. font-weight: 500;
  60. color: #4a4a4a;
  61. }
  62. .label-md {
  63. font-size: 14px;
  64. font-weight: 400;
  65. color: #4a4a4a;
  66. }
  67. .label-sm {
  68. font-size: 12px;
  69. font-weight: 400;
  70. color: #666;
  71. }
  72. .sky-form {
  73. border: none;
  74. }
  75. .sky-form .checkbox input:checked + i {
  76. border-color: #1abc9c;
  77. }
  78. .sky-form .checkbox input:checked + i:after {
  79. color: #1abc9c;
  80. }
  81. .upload-img-init,
  82. #checkStatus input#password,
  83. #checkStatus input#password + hr {
  84. margin-left: auto;
  85. margin-right: auto;
  86. }
  87. .upload-img-init {
  88. height: 245px;
  89. border: 1px dashed #dddddd;
  90. border-radius: 6px;
  91. color: #dddddd;
  92. cursor: pointer;
  93. text-align: center;
  94. margin: 0 auto;
  95. margin-top: 0px;
  96. padding: 10px;
  97. padding-top: 25px;
  98. display: flex;
  99. flex-direction: column;
  100. align-items: center;
  101. justify-content: center;
  102. position: relative;
  103. margin-bottom: 15px;
  104. }
  105. .upload-img-init .file-name {
  106. word-break: break-word;
  107. }
  108. .upload-img-init .file-name > .fa {
  109. margin-left: 10px;
  110. margin-right: 10px;
  111. color: #bbb;
  112. font-size: 16px;
  113. position: relative;
  114. margin-top: 5px;
  115. }
  116. .upload-img-init .file-name > .fa:hover {
  117. color: rgba(26, 188, 156, 1);
  118. }
  119. .upload-label {
  120. color: #999;
  121. font-size: 12px;
  122. }
  123. .upload-img-init:hover {
  124. border: 1px dashed #1abc9c;
  125. color: #666;
  126. }
  127. .upload-img-init .upload-label {
  128. font-size: 24px;
  129. }
  130. .upload-img-init:hover .upload-label {
  131. color: #1abc9c;
  132. }
  133. .upload-img-init-hover {
  134. border: 1px dashed #1abc9c;
  135. color: #666;
  136. }
  137. .upload-img-init-hover .upload-label {
  138. color: #666;
  139. }
  140. .block-center {
  141. margin: 0 auto;
  142. }
  143. .group {
  144. margin: 0 40px 40px 0px;
  145. }
  146. .group-header {
  147. margin-bottom: 20px;
  148. }
  149. .group-content {
  150. padding: 30px 0 30px 30px;
  151. border: 1px solid #eaeaea;
  152. }
  153. .group-sub {
  154. margin-right: 30px;
  155. }
  156. .group-sub:last-child {
  157. }
  158. .group-sub-img {
  159. padding-bottom: 45px;
  160. border-bottom: 1px solid #e5e5e5;
  161. }
  162. .group-sub-type {
  163. height: 110px;
  164. color: #8d9396;
  165. font-size: 12px;
  166. }
  167. .img-x {
  168. position: relative;
  169. width: 80px;
  170. height: 80px;
  171. text-align: center;
  172. float: left;
  173. border: 1px solid #eaeaec;
  174. margin-right: 16px;
  175. }
  176. .img-x:last-child {
  177. margin-right: 0px;
  178. }
  179. .img-x span {
  180. position: absolute;
  181. bottom: -40px;
  182. left: -10px;
  183. width: 100px;
  184. }
  185. .img-x input {
  186. position: absolute;
  187. top: -20px;
  188. left: 18px;
  189. }
  190. .img-x img {
  191. max-width: 60px;
  192. max-height: 60px;
  193. }
  194. .hiden {
  195. display: none;
  196. }
  197. .p-hide {
  198. position: fixed;
  199. left: -99999px;
  200. }
  201. #certCheckTab {
  202. border: none;
  203. }
  204. #certCheckTab > li {
  205. width: 50%;
  206. }
  207. #certCheckTab > li > a {
  208. border: none;
  209. border-radius: 0;
  210. margin: 0;
  211. color: #333;
  212. }
  213. #certCheckTab > li > a {
  214. background: rgba(245, 247, 248, 1);
  215. border: 1px solid rgba(234, 234, 234, 1);
  216. }
  217. #certCheckTab > li.active {
  218. }
  219. #certCheckTab > li.active > a {
  220. border: none;
  221. background: #fff;
  222. border-top: 2px solid rgba(26, 188, 156, 1);
  223. color: #4a4a4a;
  224. }
  225. #certCheckTab > li:first-child > a {
  226. border-left: transparent;
  227. }
  228. #certCheckTab > li:last-child > a {
  229. border-right: transparent;
  230. }
  231. #checkStatus {
  232. border: 1px solid rgba(234, 234, 234, 1);
  233. }
  234. #certCheckTabContent {
  235. padding-top: 50px;
  236. padding-bottom: 0px;
  237. }
  238. #certCheckTabContent .url-title {
  239. font-weight: 500;
  240. font-size: 18px;
  241. color: rgba(51, 51, 51, 1);
  242. }
  243. #certCheckTabContent .text-left {
  244. text-align: left;
  245. margin-left: 0px;
  246. }
  247. .btn-u.btn-check {
  248. background: #5c92ef;
  249. border-radius: 3px;
  250. }
  251. .btn-u.btn-check:hover {
  252. background: #5c92ef;
  253. }
  254. #checkStatus em.invalid[for='url'] {
  255. float: right;
  256. }
  257. #checkStatus input#password {
  258. margin: 0 auto;
  259. margin-top: 15px;
  260. width: 50%;
  261. display: inline;
  262. }
  263. #certCheckTabContent > #shortUrl .input-group-addon {
  264. background: rgba(245, 245, 245, 1);
  265. }
  266. #certCheckTabContent > #certResult > #certDetail {
  267. position: relative;
  268. }
  269. #certCheckTabContent > #certResult > #certDetail > #fileCertResult {
  270. width: 90%;
  271. margin: auto;
  272. }
  273. #certCheckTabContent > #certResult > #certDetail .cert-result {
  274. display: flex;
  275. width: 30%;
  276. margin: auto;
  277. justify-content: space-between;
  278. align-items: center;
  279. }
  280. #certCheckTabContent > #certResult > #certDetail .provision-detail > .provision-item-left {
  281. width: 46.5%;
  282. float: left;
  283. text-align: right;
  284. }
  285. #certCheckTabContent > #certResult > #certDetail .provision-detail > .provision-item-right {
  286. width: 53%;
  287. float: right;
  288. }
  289. #certCheckTabContent #urlCertResult #appIcon {
  290. max-width: 100px;
  291. position: absolute;
  292. left: 20%;
  293. top: 5%;
  294. }
  295. #certCheckTabContent > #certResult > #certDetail p.check-item {
  296. display: flex;
  297. align-items: center;
  298. margin-bottom: 5px;
  299. }
  300. #certCheckTabContent > #certResult > #certDetail #fileCertResult p.check-item span.item-title {
  301. flex: 2;
  302. margin-bottom: 5px;
  303. }
  304. #certCheckTabContent > #certResult > #certDetail #fileCertResult p.check-item span.item-result {
  305. flex: 2;
  306. margin-bottom: 5px;
  307. }
  308. #certCheckTabContent > #certResult > #certDetail #urlCertResult p.check-item span.item-title {
  309. flex: 1;
  310. margin-bottom: 5px;
  311. }
  312. #certCheckTabContent > #certResult > #certDetail #urlCertResult p.check-item span.item-result {
  313. flex: 1;
  314. margin-bottom: 5px;
  315. }
  316. #certCheckTabContent div.upload-tips {
  317. font-size: 13px;
  318. padding-top: 10px;
  319. }
  320. #certCheckTabContent div.upload-tips p {
  321. line-height: 1.6;
  322. color: #999;
  323. margin: 0;
  324. }
  325. #certCheckTabContent #certFile .upload-img-init:hover div.upload-tips p {
  326. color: #666;
  327. }
  328. #certCheckTabContent #certFile .file-upload-container {
  329. padding: 0 45px;
  330. }
  331. #certCheckTabContent #certFile .file-upload-container .file-icon {
  332. width: 40px;
  333. margin-bottom: 15px;
  334. }
  335. #certCheckTabContent #certFile .file-upload-container .optional-icon {
  336. position: absolute;
  337. right: 0;
  338. top: 0;
  339. }
  340. .drag {
  341. border: 1px dashed #1abc9c;
  342. cursor: move;
  343. cursor: copy;
  344. }
  345. #fileBanner {
  346. height: 45px;
  347. margin-top: 30px;
  348. margin-bottom: 20px;
  349. }
  350. #certFlag {
  351. width: 80px;
  352. }
  353. @media (max-width: 767px) {
  354. .upload-img-init,
  355. #checkStatus input#password {
  356. width: 100%;
  357. margin-bottom: 15px;
  358. }
  359. #certCheckTabContent > #shortUrl .input-group {
  360. width: 90%;
  361. margin: 0 auto;
  362. }
  363. #certCheckTabContent #urlCertResult #appIcon {
  364. position: relative;
  365. display: block;
  366. float: none !important;
  367. margin: auto;
  368. left: auto;
  369. margin-bottom: 10px;
  370. }
  371. #certCheckTabContent > #certResult > #certDetail .cert-result {
  372. width: 65%;
  373. }
  374. #shortUrl .input-group-addon {
  375. display: inline;
  376. }
  377. #certCheckTabContent > #certResult > #certDetail p.check-item {
  378. flex-direction: column;
  379. margin-bottom: 5px;
  380. }
  381. #certCheckTabContent > #certResult > #certDetail > #fileCertResult {
  382. width: 89%;
  383. margin: auto;
  384. }
  385. #certCheckTabContent > #certResult > #certDetail > #fileCertResult .cert-icon {
  386. }
  387. #certCheckTabContent > #certResult > #certDetail .cert-result {
  388. padding-left: 15px;
  389. margin-bottom: 10px !important;
  390. width: 100%;
  391. display: flex;
  392. flex-direction: column;
  393. }
  394. #certCheckTabContent > #certResult > #certDetail .cert-result .text-left {
  395. align-self: flex-start;
  396. margin-left: 0px;
  397. }
  398. #certCheckTabContent > #certResult > #certDetail p.check-item span {
  399. text-align: left;
  400. width: 100%;
  401. margin-bottom: 5px;
  402. }
  403. #certCheckTabContent > #certResult > #certDetail > #urlCertResult p.check-item {
  404. flex-direction: row;
  405. margin-bottom: 5px;
  406. }
  407. #certCheckTabContent > #certResult > #certDetail > #urlCertResult p.check-item span.item-title {
  408. text-align: right;
  409. margin-bottom: 5px;
  410. }
  411. #certCheckTabContent > #certResult > #certDetail > #urlCertResult p.check-item span {
  412. width: auto;
  413. margin-bottom: 5px;
  414. }
  415. #certCheckTabContent > #certResult > #certDetail > #urlCertResult #certExpireDate {
  416. display: flex;
  417. flex-direction: column;
  418. padding-right: 10px;
  419. }
  420. }
  421. .text-success {
  422. color: #19c35d;
  423. }
  424. .text-danger {
  425. color: #fd5a5a;
  426. }
  427. .font-36 {
  428. font-size: 36px;
  429. color: #222;
  430. }
  431. .color-8c9497 {
  432. color: #8c9497;
  433. }
  434. .mt-20 {
  435. margin-top: 20px;
  436. }
  437. .font-16 {
  438. font-size: 16px !important;
  439. }
  440. .mb-30 {
  441. margin-bottom: 30px !important;
  442. }
  443. .mt-30 {
  444. margin-top: 30px;
  445. }
  446. .btn-u {
  447. border: 1px solid #5c92ef;
  448. padding: 4px 13px;
  449. position: relative;
  450. }
  451. .btn-u.btn-check {
  452. background: #5c92ef;
  453. border-radius: 3px;
  454. }
  455. .btn-u,
  456. .btn-u:hover {
  457. color: #fff;
  458. text-decoration: none;
  459. }
  460. li,
  461. p {
  462. color: #555;
  463. }
  464. .font-18 {
  465. font-size: 18px;
  466. }
  467. .mb-40 {
  468. margin-bottom: 0px !important;
  469. }
  470. .mt-80 {
  471. margin-top:0px;
  472. }