simple-apig-auth.component.scss 7.8 KB

123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596979899100101102103104105106107108109110111112113114115116117118119120121122123124125126127128129130131132133134135136137138139140141142143144145146147148149150151152153154155156157158159160161162163164165166167168169170171172173174175176177178179180181182183184185186187188189190191192193194195196197198199200201202203204205206207208209210211212213214215216217218219220221222223224225226227228229230231232233234235236237238239240241242243244245246247248249250251252253254255256257258259260261262263264265266267268269270271272273274275276277278279280281282283284285286287288289290291292293294295296297298299300301302303304305306307308309310311312313314315316317318319320321322323324325326327328329330331332333334335336337338339340341342343344345346347348349350351352353354355356357358359360361362363364365366367368369370371372373374375376377378379380381382383384385386387388389
  1. .apig-auth-page{
  2. height: 100%;
  3. }
  4. .width1200 {
  5. width: 1200px;
  6. margin: 0 auto;
  7. position: relative;
  8. }
  9. .cBlue {
  10. color: #00bdff;
  11. }
  12. .ellipsis {
  13. overflow: hidden;
  14. white-space: nowrap;
  15. text-overflow: ellipsis;
  16. }
  17. .apig-header{
  18. padding: 20px 40px;
  19. background: white;
  20. font-size: 18px;
  21. }
  22. .dark-apig-header{
  23. padding: 20px 40px;
  24. background: #494949;
  25. font-size: 18px;
  26. color: white;
  27. }
  28. @media screen and (min-width: 800px) {
  29. body {
  30. background: #000;
  31. }
  32. .api-infos .title-api {
  33. line-height: 40px;
  34. }
  35. .api-infos .title-api h1 {
  36. font-size: 22px;
  37. color: #555;
  38. padding-right: 8px;
  39. float: left;
  40. }
  41. .api-infos .title-api p {
  42. float: left;
  43. }
  44. .api-infos .title-api p span {
  45. margin-left: 5px;
  46. border: 1px solid #00BDFF;
  47. font-size: 12px;
  48. padding: 2px 6px;
  49. color: #00BDFF;
  50. font-weight: normal;
  51. vertical-align: top;
  52. border-radius: 2px;
  53. }
  54. .api-infos .user-info {
  55. line-height: 26px;
  56. font-size: 14px;
  57. font-weight: bold;
  58. color: #f9a42a;
  59. padding: 4px 0 6px;
  60. }
  61. .api-infos .user-info span {
  62. padding-right: 30px;
  63. }
  64. .api-infos .user-info i {
  65. font-size: 24px;
  66. vertical-align: middle;
  67. margin-right: 5px;
  68. font-weight: normal;
  69. }
  70. .redfont {
  71. color: #fb5b5b;
  72. }
  73. .api-infos .api-des-info {
  74. line-height: 22px;
  75. color: #666;
  76. padding-bottom: 13px;
  77. font-size: 14px;
  78. }
  79. #api-package-side {
  80. min-height: 130px;
  81. }
  82. }
  83. .api-mains-content {
  84. margin: 20px auto;
  85. border-radius: 6px;
  86. position: relative;
  87. z-index: 2;
  88. // background-image:url('/src/assets/img/api/star.jpg') 0 0 no-repeat;
  89. // background-size: 100% 100%;
  90. background-color: #fff;
  91. max-width: 1300px;
  92. min-height: 50%;
  93. .api-mains {
  94. display: flex;
  95. padding: 40px 0;
  96. .red {
  97. color: #fb5b5b;
  98. }
  99. .orange{
  100. color: #f9a42a;
  101. }
  102. .api-img-des {
  103. width: 260px;
  104. height: 270px;
  105. padding: 25px;
  106. display: flex;
  107. flex-direction: column;
  108. justify-content: space-between;
  109. align-items: center;
  110. border-radius: 2px;
  111. background: #fff;
  112. box-shadow: 0 0 10px 0 rgb(36 36 36 / 10%);
  113. border: 1px solid #eee \9;
  114. .idcard {
  115. font-size: 120px;
  116. margin-top: 20px;
  117. width: 120px;
  118. height: 120px;
  119. }
  120. .api-img-grid {
  121. width: 100%;
  122. text-align: center;
  123. color: #bbb;
  124. }
  125. }
  126. .api-infos {
  127. padding: 10px 40px;
  128. .title-api {
  129. display: flex;
  130. align-items: center;
  131. h1 {
  132. font-size: 22px;
  133. color: #555;
  134. padding-right: 8px;
  135. float: left;
  136. height: 40px;
  137. line-height: normal;
  138. }
  139. div {
  140. float: left;
  141. span {
  142. margin-left: 5px;
  143. border: 1px solid #00BDFF;
  144. font-size: 12px;
  145. padding: 2px 6px;
  146. color: #00BDFF;
  147. font-weight: normal;
  148. vertical-align: top;
  149. border-radius: 2px;
  150. }
  151. }
  152. }
  153. .user-info {
  154. line-height: 26px;
  155. font-size: 14px;
  156. font-weight: bold;
  157. color: #f9a42a;
  158. padding: 4px 0 6px;
  159. span {
  160. padding-right: 30px;
  161. }
  162. img {
  163. width: 18px;
  164. height: 18px;
  165. vertical-align: sub;
  166. margin-right: 5px;
  167. font-weight: normal;
  168. }
  169. }
  170. .api-des-info {
  171. line-height: 22px;
  172. color: #666;
  173. padding-bottom: 13px;
  174. font-size: 14px;
  175. }
  176. .api-buy-radio {
  177. position: relative;
  178. .show-demo-qrucode {
  179. border: 1px solid #00aeff;
  180. color: #00aeff;
  181. background: #fff;
  182. position: relative;
  183. float: left;
  184. cursor: pointer;
  185. min-width: 100px;
  186. height: 28px;
  187. line-height: 28px;
  188. text-align: center;
  189. font-size: 12px;
  190. border-radius: 2px;
  191. }
  192. .code-box {
  193. position: absolute;
  194. top: 30px;
  195. left: -10px;
  196. display: none;
  197. width: 120px;
  198. height: 150px;
  199. padding: 5px 0;
  200. margin-top: 0px;
  201. margin-bottom: 0px;
  202. background-color: #fff;
  203. text-align: center;
  204. z-index: 4;
  205. img {
  206. width: 100%;
  207. }
  208. }
  209. .show-demo-qrucode:hover+.code-box {
  210. display: block;
  211. }
  212. .buy-block{
  213. display: flex;
  214. .title-des{
  215. color: #999;
  216. width: 70px;
  217. flex-shrink: 0;
  218. }
  219. .buy-list{
  220. display: flex;
  221. flex-wrap: wrap;
  222. }
  223. .buy-radio {
  224. display: inline-block;
  225. min-width: 74px;
  226. font-weight: normal;
  227. margin-left: 10px;
  228. color: #666;
  229. // height: 28px;
  230. // line-height: 28px;
  231. width: 200px;
  232. font-size: 12px;
  233. background: none;
  234. text-align: center;
  235. border-radius: 2px;
  236. border: 1px solid #e9e9e9;
  237. padding: 10px;
  238. cursor: pointer;
  239. margin-bottom: 10px;
  240. .item-price{
  241. display: flex;
  242. align-items: center;
  243. font-size: 20px;
  244. color: #f9a42a;
  245. font-weight: 600;
  246. .price-tag{
  247. color: #4c4c4c;
  248. background-color: #f0f0f0;
  249. font-size: 12px;
  250. margin-left: 10px;
  251. padding: 2px 4px;
  252. border-radius: 4px;
  253. }
  254. }
  255. .item-des{
  256. color: #606060;
  257. font-size: 14px;
  258. text-align: left;
  259. font-weight: 600;
  260. }
  261. }
  262. .active-radio {
  263. color: #00BDFF;
  264. border: 1px solid #00BDFF;
  265. background: url('https://www.juhe.cn/images/v6/docs//select.png') right -1px bottom 0 no-repeat;
  266. box-shadow: 0 0 12px 0px #b8ddff;
  267. }
  268. }
  269. }
  270. .last-price {
  271. height: 20px;
  272. line-height: 20px;
  273. padding: 10px 0 0;
  274. font-size: 20px;
  275. color: #666;
  276. display: flex;
  277. // border-bottom: 1px solid #dfdfdf;
  278. .num-title{
  279. color: #999;
  280. // width: 70px;
  281. flex-shrink: 0;
  282. font-size: 14px;
  283. }
  284. span {
  285. font-size: 14px;
  286. color: #000;
  287. font-weight: 600;
  288. }
  289. }
  290. .bar{
  291. border-bottom: 1px solid #e1e1e1;
  292. margin: 20px auto;
  293. }
  294. .end-price{
  295. display: flex;
  296. align-items: center;
  297. margin: 20px auto;
  298. .price-title{
  299. color: #000;
  300. width: 70px;
  301. flex-shrink: 0;
  302. font-size: 14px;
  303. }
  304. .all-price{
  305. font-size: 20px;
  306. font-weight: 600;
  307. }
  308. }
  309. .buy-apply-div {
  310. margin-top: 10px;
  311. .now-btn {
  312. display: inline-block;
  313. width: 166px;
  314. height: 40px;
  315. line-height: 40px;
  316. background: #00BDFF;
  317. color: #fff;
  318. font-size: 16px;
  319. font-weight: bold;
  320. text-align: center;
  321. border-radius: 2px;
  322. margin-right: 10px;
  323. }
  324. .now-btn2 {
  325. display: inline-block;
  326. width: 100px;
  327. font-weight: normal;
  328. margin-left: 5px;
  329. margin-right: 10px;
  330. color: #00bdff;
  331. height: 38px;
  332. line-height: 38px;
  333. font-size: 14px;
  334. border: 1px solid #00bdff;
  335. background: none;
  336. text-align: center;
  337. border-radius: 2px;
  338. }
  339. }
  340. }
  341. }
  342. }
  343. .code-wrapper {
  344. width: 220px;
  345. padding: 10px 0;
  346. border: 6px double #00bdff;
  347. box-shadow: 0px 0px 2px 2px #eee;
  348. }