index.css 9.1 KB

123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596979899100101102103104105106107108109110111112113114115116117118119120121122123124125126127128129130131132133134135136137138139140141142143144145146147148149150151152153154155156157158159160161162163164165166167168169170171172173174175176177178179180181182183184185186187188189190191192193194195196197198199200201202203204205206207208209210211212213214215216217218219220221222223224225226227228229230231232233234235236237238239240241242243244245246247248249250251252253254255256257258259260261262263264265266267268269270271272273274275276277278279280281282283284285286287288289290291292293294295296297298299300301302303304305306307308309310311312313314315316317318319320321322323324325326327328329330331332333334335336337338339340341342343344345346347348349350351352353354355356357358359360361362363364365366367368369370371372373374375376377378379380381382383384385386387388389390391392393394395396397398399400401402403404405406407408409410411412413414415416417418419420421422423424425426427428429430431432433434435436437438439440441442443444445446447448449450451452453454455456457458459460461462463464465466467468469470471472473474475476
  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. color: #999;
  322. margin: 0;
  323. }
  324. #certCheckTabContent #certFile .upload-img-init:hover div.upload-tips p {
  325. color: #666;
  326. }
  327. #certCheckTabContent #certFile .file-upload-container {
  328. padding: 0 45px;
  329. }
  330. #certCheckTabContent #certFile .file-upload-container .file-icon {
  331. width: 40px;
  332. margin-bottom: 15px;
  333. }
  334. #certCheckTabContent #certFile .file-upload-container .optional-icon {
  335. position: absolute;
  336. right: 0;
  337. top: 0;
  338. }
  339. .drag {
  340. border: 1px dashed #1abc9c;
  341. cursor: move;
  342. cursor: copy;
  343. }
  344. #fileBanner {
  345. height: 45px;
  346. margin-top: 30px;
  347. margin-bottom: 20px;
  348. }
  349. #certFlag {
  350. width: 80px;
  351. }
  352. @media (max-width: 767px) {
  353. .upload-img-init,
  354. #checkStatus input#password {
  355. width: 100%;
  356. margin-bottom: 15px;
  357. }
  358. #certCheckTabContent > #shortUrl .input-group {
  359. width: 90%;
  360. margin: 0 auto;
  361. }
  362. #certCheckTabContent #urlCertResult #appIcon {
  363. position: relative;
  364. display: block;
  365. float: none !important;
  366. margin: auto;
  367. left: auto;
  368. margin-bottom: 10px;
  369. }
  370. #certCheckTabContent > #certResult > #certDetail .cert-result {
  371. width: 65%;
  372. }
  373. #shortUrl .input-group-addon {
  374. display: inline;
  375. }
  376. #certCheckTabContent > #certResult > #certDetail p.check-item {
  377. flex-direction: column;
  378. margin-bottom: 5px;
  379. }
  380. #certCheckTabContent > #certResult > #certDetail > #fileCertResult {
  381. width: 89%;
  382. margin: auto;
  383. }
  384. #certCheckTabContent > #certResult > #certDetail > #fileCertResult .cert-icon {
  385. }
  386. #certCheckTabContent > #certResult > #certDetail .cert-result {
  387. padding-left: 15px;
  388. margin-bottom: 10px !important;
  389. width: 100%;
  390. display: flex;
  391. flex-direction: column;
  392. }
  393. #certCheckTabContent > #certResult > #certDetail .cert-result .text-left {
  394. align-self: flex-start;
  395. margin-left: 0px;
  396. }
  397. #certCheckTabContent > #certResult > #certDetail p.check-item span {
  398. text-align: left;
  399. width: 100%;
  400. margin-bottom: 5px;
  401. }
  402. #certCheckTabContent > #certResult > #certDetail > #urlCertResult p.check-item {
  403. flex-direction: row;
  404. margin-bottom: 5px;
  405. }
  406. #certCheckTabContent > #certResult > #certDetail > #urlCertResult p.check-item span.item-title {
  407. text-align: right;
  408. margin-bottom: 5px;
  409. }
  410. #certCheckTabContent > #certResult > #certDetail > #urlCertResult p.check-item span {
  411. width: auto;
  412. margin-bottom: 5px;
  413. }
  414. #certCheckTabContent > #certResult > #certDetail > #urlCertResult #certExpireDate {
  415. display: flex;
  416. flex-direction: column;
  417. padding-right: 10px;
  418. }
  419. }
  420. .text-success {
  421. color: #19c35d;
  422. }
  423. .text-danger {
  424. color: #fd5a5a;
  425. }
  426. .font-36 {
  427. font-size: 36px;
  428. color: #222;
  429. }
  430. .color-8c9497 {
  431. color: #8c9497;
  432. }
  433. .mt-20 {
  434. margin-top: 20px;
  435. }
  436. .font-16 {
  437. font-size: 16px !important;
  438. }
  439. .mb-30 {
  440. margin-bottom: 30px !important;
  441. }
  442. .mt-30 {
  443. margin-top: 30px;
  444. }
  445. .btn-u {
  446. border: 1px solid #5c92ef;
  447. padding: 4px 13px;
  448. position: relative;
  449. }
  450. .btn-u.btn-check {
  451. background: #5c92ef;
  452. border-radius: 3px;
  453. }
  454. .btn-u,
  455. .btn-u:hover {
  456. color: #fff;
  457. text-decoration: none;
  458. }
  459. li,
  460. p {
  461. color: #555;
  462. }
  463. .font-18 {
  464. font-size: 18px;
  465. }
  466. .mb-40 {
  467. margin-bottom: 0px !important;
  468. }
  469. .mt-80 {
  470. margin-top:0px;
  471. }