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