style.css 8.5 KB

123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596979899100101102103104105106107108109110111112113114115116117118119120121122123124125126127128129130131132133134135136137138139140141142143144145146147148149150151152153154155156157158159160161162163164165166167168169170171172173174175176177178179180181182183184185186187188189190191192193194195196197198199200201202203204205206207208209210211212213214215216217218219220221222223224225226227228229230231232233234235236237238239240241242243244245246247248249250251252253254255256257258259260261262263264265266267268269270271272273274275276277278279280281282283284285286287288289290291292293294295296297298299300301302303304305306307308309310311312313314315316317318319320321322323324325326327328329330331332333334335336337338339340341342343344345346347348349350351352353354355356357358359360361362363364365366367368369370371372373374375376377378379380381382383384385386387388389390391392393394395396397398399400401402403404405406407408409410411412413414415416417418419420421422423424425426427
  1. @import url('https://fonts.googleapis.com/css2?family=Poppins:wght@400;600&display=swap');
  2. body {
  3. font-family: 'Poppins', sans-serif;
  4. background-color: #271956;
  5. color: white;
  6. background-image: url(../imgs/header-bg.png);
  7. background-repeat: no-repeat;
  8. background-position: top;
  9. }
  10. p {
  11. font-size: 12px;
  12. }
  13. .bg-menu {
  14. background-color: #271956;
  15. backdrop-filter: blur(10px);
  16. }
  17. .btn-primary {
  18. background: rgb(237,31,37);
  19. background: linear-gradient(90deg, rgba(237,31,37,1) 0%, rgba(254,89,36,1) 100%);
  20. border: none;
  21. padding-left: 30px !important;
  22. padding-right: 30px !important;
  23. color: white;
  24. }
  25. .main-heading {
  26. font-size: 70px;
  27. font-weight: 700;
  28. }
  29. .main-heading-2 {
  30. border-radius: 10px;
  31. font-size: 50px;
  32. background-color: rgb(37 5 77 / 67%);
  33. border-width: 2px;
  34. border-style: solid;
  35. border-image: linear-gradient(to top, rgb(58, 157, 213), rgb(242, 48, 37)) 1 / 1 / 0 stretch;
  36. padding: 10px;
  37. margin-top: 30px;
  38. font-weight: 600;
  39. }
  40. .main-heading-3 {
  41. border-radius: 10px;
  42. font-size: 24px;
  43. background-color: rgb(37 5 77 / 67%);
  44. border-width: 2px;
  45. border-style: solid;
  46. border-image: linear-gradient(to top, rgb(58, 157, 213), rgb(242, 48, 37)) 1 / 1 / 0 stretch;
  47. padding: 10px;
  48. font-weight: 600;
  49. }
  50. .btn-gradient {
  51. background: -webkit-linear-gradient(90deg, rgba(237,31,37,1) 0%, rgba(254,89,36,1) 100%);
  52. color: white;
  53. border: none;
  54. font-size: 20px;
  55. width: 80%;
  56. font-weight: 700;
  57. padding: 10px;
  58. }
  59. .btn-gradient:hover {
  60. background: -webkit-linear-gradient(90deg, rgba(254,89,36,1) 0%, rgba(237,31,37,1) 100%);
  61. color: white;
  62. }
  63. .text-primary {
  64. background: -webkit-linear-gradient(90deg, rgba(237,31,37,1) 0%, rgba(254,89,36,1) 100%);
  65. -webkit-background-clip: text;
  66. -webkit-text-fill-color: transparent;
  67. }
  68. section {
  69. padding-top: 5rem;
  70. padding-bottom: 5rem;
  71. }
  72. .bg-danger {
  73. background: -webkit-linear-gradient(90deg, rgba(237,31,37,1) 0%, rgba(254,89,36,1) 100%);
  74. color: white;
  75. }
  76. .btn-secondary {
  77. color: white;
  78. background-color: #34065c;
  79. }
  80. .bg-secondary {
  81. color: white;
  82. background-color: #34065c !important;
  83. }
  84. .count {
  85. list-style-type: none;
  86. display: inline-block;
  87. min-width: 85px;
  88. }
  89. .count-1 {
  90. list-style-type: none;
  91. padding: 1em;
  92. display: inline-block;
  93. top: 70%;
  94. transform: translateY(-70%);
  95. }
  96. ol, ul {
  97. padding-left: 0rem;
  98. }
  99. .bg-primary {
  100. background-color: #271956 !important
  101. }
  102. .gold {
  103. background-color: #fff6e5;
  104. border: 1px solid #FF9D00;
  105. }
  106. .silver {
  107. background-color: #e4e4e4;
  108. border: 1px solid #a4b8b8;
  109. }
  110. .platnium {
  111. background-color: #ffdbcb;
  112. border: 1px solid #f57020;
  113. }
  114. .main-heading-4 {
  115. background-color: rgb(37 5 77 / 67%);
  116. border-width: 2px;
  117. border-style: solid;
  118. border-image: linear-gradient(to top, rgb(58, 157, 213), rgb(242, 48, 37)) 1 / 1 / 0 stretch;
  119. padding: 10px;
  120. backdrop-filter: blur(8px);
  121. }
  122. header {
  123. padding-bottom: 0rem;
  124. }
  125. section {
  126. padding-bottom: 0rem;
  127. }
  128. .step-bg {
  129. background-image: url(../imgs/step-bg.png);
  130. background-repeat: no-repeat;
  131. background-size: cover;
  132. }
  133. .footer-bg {
  134. background-image: url(../imgs/footer-bg.png);
  135. background-repeat: no-repeat;
  136. background-position: bottom;
  137. }
  138. .language-box{
  139. display: block;
  140. width: 124px;
  141. height: 40px;
  142. line-height: 40px;
  143. text-align: center;
  144. border: 1px solid #fff;
  145. border-radius: 6px;
  146. font-size: 16px;
  147. font-weight: 400;
  148. text-decoration: none;
  149. color: #ffffff;
  150. margin-left: 24px;
  151. }
  152. .crm_pagination{
  153. text-align: center;
  154. margin-top: 10px;
  155. }
  156. .el-pagination.is-background .el-pager li:not(.disabled):hover {
  157. color: #ED2025 !important;
  158. }
  159. .el-pagination.is-background .el-pager li:not(.disabled).active {
  160. background-color: #fff !important;
  161. color: #ED2025 !important;
  162. border: 1px solid #ED2025 !important;
  163. }
  164. .el-pagination.is-background .btn-next, .el-pagination.is-background .btn-prev, .el-pagination.is-background .el-pager li {
  165. background-color: #fff !important;
  166. color: #333 !important;
  167. border: 1px solid #DFE3E8;
  168. }
  169. .luckyLoginBox{
  170. position: relative;
  171. }
  172. .luckyLogin{
  173. width: 100%;
  174. position: absolute;
  175. top: 160px;
  176. left: 0;
  177. text-align: center;
  178. color: rgb(220, 53, 69);
  179. font-size: 20px;
  180. }
  181. .luckyLogin p{
  182. font-size: 22px;
  183. font-weight: bold;
  184. margin-bottom: 0.5rem;
  185. }
  186. .el-icon-bottom,.el-icon-top{
  187. font-size: 24px;
  188. font-weight: bold !important;
  189. position: absolute;
  190. left: 5px;
  191. }
  192. .el-icon-bottom{
  193. color: green;
  194. }
  195. .el-icon-top{
  196. color: red;
  197. }
  198. .banner-signup{
  199. padding: 25px 50px;
  200. color: #333;
  201. position: relative;
  202. font-family: Poppins, sans-serif;
  203. }
  204. .banner-signup .close{
  205. width: 40px;
  206. height: 40px;
  207. border-radius: 30px;
  208. background-color: #F02925;
  209. cursor: pointer;
  210. display: flex;
  211. justify-content: center;
  212. align-items: center;
  213. color: #fff;
  214. position: absolute;
  215. top: -40px;
  216. right: 0;
  217. }
  218. .banner-signup .title{
  219. font-size: 18px;
  220. margin-bottom: 50px;
  221. font-family: Poppins, sans-serif;
  222. display: flex;
  223. flex-direction: column;
  224. justify-content: center;
  225. align-items: center;
  226. }
  227. .banner-signup .title .img-responsive{
  228. margin-bottom: 40px;
  229. }
  230. .banner-signup .title .title2{
  231. font-size: 26px;
  232. font-weight: 900;
  233. }
  234. .banner-signup .el-input__inner{
  235. width: 100%;
  236. height: 60px;
  237. font-size: 17px;
  238. background-color: #F8F8F8;
  239. border-radius: 6px;
  240. border-color: #B1B1B1;
  241. color: #434242;
  242. background-color: transparent;
  243. font-weight: 600;
  244. }
  245. .banner-signup .el-input__inner::placeholder{/*Firefox,Chrome,Opera*/
  246. color:#434242;
  247. }
  248. .banner-signup .el-input__inner:-ms-input-placeholder{/*InternetExplorer10-11*/
  249. color:#434242;
  250. }
  251. .banner-signup .el-input__inner::-ms-input-placeholder{/*MicrosoftEdge*/
  252. color:#434242;
  253. }
  254. /* .el-input__inner {
  255. border: none;
  256. border-bottom: 1px solid;
  257. border-radius: 0;
  258. border-color: #979797;
  259. color: #e4e4e4;
  260. background-color: transparent;
  261. } */
  262. .banner-signup .el-select .el-input__inner {
  263. padding-left: 40px;
  264. }
  265. i.icondingwei {
  266. position: absolute;
  267. top: 10px;
  268. left: 12px;
  269. color: #F02925;
  270. font-weight: 600;
  271. }
  272. .banner-signup .el-input__prefix, .el-input__suffix{
  273. color: #F02925;
  274. font-weight: 600;
  275. }
  276. .banner-signup .el-input--prefix .el-input__inner {
  277. padding-left: 40px;
  278. }
  279. .banner-signup .el-input__prefix{
  280. padding-left: 8px;
  281. top: 2px;
  282. }
  283. .banner-signup .el-select{
  284. width: 100%;
  285. }
  286. .banner-signup .el-col{
  287. padding: 0;
  288. }
  289. .banner-signup .getCode{
  290. display: inline-block;
  291. width: 100%;
  292. line-height: 60px;
  293. text-align: center;
  294. background-color: #191B28;
  295. border: 1px solid #e4e4e4;
  296. cursor: pointer;
  297. color: #e4e4e4;
  298. border-radius: 6px;
  299. font-size: 17px;
  300. padding: 0 !important;
  301. }
  302. .pwd {
  303. text-align: left;
  304. padding-left: 20px;
  305. margin: 0;
  306. margin-left: 10px;
  307. font-size: 15px;
  308. }
  309. .pwd li {
  310. list-style-type: disc;
  311. /*height: 20px;*/
  312. line-height: 20px;
  313. color: #979797;
  314. }
  315. .pwd .fit {
  316. color: #EC1920;
  317. }
  318. .banner-signup .agree{
  319. font-size: 16px;
  320. color: #434242;
  321. }
  322. .banner-signup .agree_title{
  323. word-break: keep-all;
  324. }
  325. .banner-signup .el-checkbox__inner::after{
  326. height: 10px;
  327. left: 7px;
  328. position: absolute;
  329. top: 2px;
  330. }
  331. .banner-signup .el-checkbox__inner{
  332. width: 20px;
  333. height: 20px;
  334. }
  335. .banner-signup .el-checkbox__input.is-checked .el-checkbox__inner{
  336. background-color: #EC1920;
  337. border-color: #EC1920;
  338. }
  339. .banner-signup .el-checkbox__inner:hover {
  340. border-color: #EC1920;
  341. }
  342. .banner-signup .el-checkbox__input.is-focus .el-checkbox__inner{
  343. border-color: #EC1920;
  344. }
  345. .banner-signup .sign-btn.btn-gradient{
  346. width: 100%;
  347. display: flex;
  348. flex-wrap: wrap;
  349. justify-content: center;
  350. align-items: center;
  351. word-break: break-word;
  352. padding-left: 0px !important;
  353. padding-right: 0px !important;
  354. }
  355. .banner-signup-btnBox{
  356. display: flex;
  357. }
  358. .el-dialog.crm-signup {
  359. width: 700px;
  360. border-radius: 10px;
  361. }
  362. @media screen and (max-width: 768px) {
  363. .px-4 {
  364. padding-right: 0.5rem !important;
  365. padding-left: 0.5rem !important;
  366. }
  367. .main-heading-4 {
  368. overflow-x: scroll;
  369. }
  370. .nav-item {
  371. margin-bottom: 10px;
  372. }
  373. .main-heading{
  374. font-size: 28px;
  375. }
  376. .main-heading-2{
  377. font-size: 22px;
  378. }
  379. .count-1.active{
  380. width: 100%;
  381. }
  382. .count-1.active1{
  383. display: none;
  384. }
  385. .luckyLogin{
  386. top: 140px;
  387. }
  388. .table > :not(caption) > * > *{
  389. min-width: 90px;
  390. }
  391. .el-icon-bottom, .el-icon-top {
  392. left: -5px;
  393. }
  394. .el-dialog.crm-signup {
  395. width: 95%;
  396. border-radius: 10px;
  397. }
  398. .banner-signup {
  399. padding: 25px 0;
  400. word-break: break-word;
  401. }
  402. .banner-signup .text-primary.fw-bolder{
  403. font-size: 25px;
  404. }
  405. .banner-signup .title .title2 {
  406. font-size: 20px;
  407. }
  408. .pwd {
  409. word-break: break-word;
  410. }
  411. .Scriptcontent{
  412. margin-bottom: 50px;
  413. }
  414. .banner-signup-btnBox{
  415. display: flex;
  416. flex-wrap: wrap;
  417. }
  418. .banner-signup .sign-btn{
  419. margin-left: 0 !important;
  420. margin-right: 0 !important;
  421. }
  422. }