common.style.css 13 KB

123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596979899100101102103104105106107108109110111112113114115116117118119120121122123124125126127128129130131132133134135136137138139140141142143144145146147148149150151152153154155156157158159160161162163164165166167168169170171172173174175176177178179180181182183184185186187188189190191192193194195196197198199200201202203204205206207208209210211212213214215216217218219220221222223224225226227228229230231232233234235236237238239240241242243244245246247248249250251252253254255256257258259260261262263264265266267268269270271272273274275276277278279280281282283284285286287288289290291292293294295296297298299300301302303304305306307308309310311312313314315316317318319320321322323324325326327328329330331332333334335336337338339340341342343344345346347348349350351352353354355356357358359360361362363364365366367368369370371372373374375376377378379380381382383384385386387388389390391392393394395396397398399400401402403404405406407408409410411412413414415416417418419420421422423424425426427428429430431432433434435436437438439440441442443444445446447448449450451452453454455456457458459460461462463464465466467468469470471472473474475476477478479480481482483484485486487488489490491492493494495496497498499500501502503504505506507508509510511512513514515516517518519520521522523524525526527528529530531532533534535536537538539540541542543544545546547548549550551552553554555556557558559560561562563564565566567568569570571572573574575576577578579580581582583584585586587588589590591592593594595596597598599600601602603604605606607608609610611612613614615616617618619620621622623624625626627628629630631632633634635636637638639640641642643644645646647648649650651652653654655656657658659660661662663664665666667668669670671672673674675676677678679680681682683684685686687688689690691692693694695696697698699700701702703704705706707708709710711712713714715716717718719720721722723724725726727728729730731732733734735736737738739740741742743744745746747748749750751752753754755756757758759760761762763764765766767768769770771
  1. /* -------------------------------- home -----------------------------------------*/
  2. /*:root {
  3. --main-color: #EE0033;
  4. --background-color-1: #eef5fb;
  5. --star-color: #ffc911;
  6. }*/
  7. /*:root {
  8. --main-color: #F36F21;
  9. --background-color-1: #eef5fb;
  10. --star-color: #ffc911;
  11. }*/
  12. :root {
  13. --main-color: #FF3211;
  14. --background-color-1: #eef5fb;
  15. --star-color: #ffc911;
  16. }
  17. .header-img-main-retangle-above {
  18. width: 100%;
  19. height: 150px;
  20. }
  21. .header-img-main-retangle {
  22. width: 100%;
  23. height: 100px;
  24. }
  25. .header-img-ellipse-1 {
  26. position: fixed;
  27. top: 125px;
  28. left: 20px;
  29. }
  30. .header-img-ellipse-2 {
  31. position: fixed;
  32. top: -40px;
  33. right: 0px;
  34. }
  35. .header-img-ellipse-3 {
  36. position: fixed;
  37. top: 65px;
  38. right: 0px;
  39. }
  40. .header-img-ellipse-4 {
  41. position: fixed;
  42. top: 115px;
  43. }
  44. .text-color-white {
  45. color: white !important;
  46. font-size: 16px;
  47. }
  48. .text-color-white a {
  49. color: white !important;
  50. }
  51. .text-cash {
  52. color: var(--main-color);
  53. }
  54. /* Red border */
  55. hr.new1 {
  56. border-top: 1px solid var(--main-color);
  57. margin: 0 10px;
  58. }
  59. /* Dashed red border */
  60. hr.new2 {
  61. border-top: 1px dashed gray;
  62. margin: 10px 0px 15px 0px;
  63. }
  64. /* Dotted red border */
  65. hr.new3 {
  66. border-top: 1px dotted var(--main-color);
  67. margin: 10px 0px 15px 0px;
  68. }
  69. /* Thick red border */
  70. hr.new4 {
  71. border: 1px solid var(--main-color);
  72. margin: 0 10px;
  73. }
  74. hr.line-2 {
  75. border: 1px solid #F0F0F0;
  76. top: 10px;
  77. position: relative;
  78. }
  79. hr.line-3 {
  80. border: 1px solid #F0F0F0;
  81. position: relative;
  82. margin-top: 7px;
  83. margin-bottom: 7px;
  84. }
  85. /* Large rounded green border */
  86. hr.new5 {
  87. border: 10px solid var(--main-color);
  88. border-radius: 5px;
  89. margin: 0 10px;
  90. }
  91. .button-box-animation {
  92. /* overflow: hidden;
  93. height: 100%;
  94. position: relative;*/
  95. /*border-right: 2px solid #EFF0F3;*/
  96. /* margin-bottom: 10px; */
  97. margin: auto;
  98. color: #1890FF;
  99. cursor: pointer;
  100. }
  101. /* .button-box-animation:after {
  102. content: "";
  103. background: gray;
  104. display: block;
  105. position: absolute;
  106. padding-top: 100%;
  107. padding-left: 100%;
  108. margin-left: -20px !important;
  109. margin-top: -100%;
  110. opacity: 0;
  111. transition: all 0.8s
  112. }
  113. .button-box-animation:active:after {
  114. padding: 0;
  115. margin: 0;
  116. opacity: 1;
  117. transition: 0s
  118. }
  119. */
  120. .button-box-animation-v1 {
  121. overflow: hidden;
  122. height: 100%;
  123. position: relative;
  124. /*background-color: transparent;*/
  125. }
  126. .button-box-animation-v1:after {
  127. content: "";
  128. /*background: gray;*/
  129. display: block;
  130. position: absolute;
  131. padding-top: 100%;
  132. padding-left: 100%;
  133. margin-left: -20px !important;
  134. margin-top: -100%;
  135. opacity: 0;
  136. transition: all 0.8s
  137. }
  138. .button-box-animation-v1:active:after {
  139. padding: 0;
  140. margin: 0;
  141. opacity: 1;
  142. transition: 0s
  143. }
  144. .time-container {
  145. /*padding: 0px 5px;*/
  146. text-align: center;
  147. }
  148. .time-container .time-box {
  149. color: black;
  150. border-radius: 5px;
  151. background: white;
  152. /* vertical-align: middle; */
  153. /* top: 9px; */
  154. /* margin-top: 2px; */
  155. margin: 5px;
  156. height: 40px;
  157. width: 40px;
  158. }
  159. .time-container .time-box h6 {
  160. font-size: 0.8rem;
  161. margin: 0;
  162. }
  163. .item-box {
  164. display: inline-block;
  165. color: var(--main-color);
  166. text-align: center;
  167. text-decoration: none;
  168. margin: 0px 2px;
  169. /* border-left: 1px solid gray; */
  170. vertical-align: middle;
  171. }
  172. .item-box a {
  173. border-radius: 10px;
  174. border: 1px solid #F0F0F0;
  175. border-radius: 10px;
  176. height: 40px;
  177. min-width: 80px;
  178. padding-top: 8px;
  179. }
  180. .item-box-large {
  181. display: inline-block;
  182. color: var(--main-color);
  183. text-align: center;
  184. text-decoration: none;
  185. margin: 0px 2px;
  186. /* border-left: 1px solid gray; */
  187. vertical-align: middle;
  188. }
  189. .item-box-large a {
  190. border-radius: 10px;
  191. border: 1px solid #F0F0F0;
  192. border-radius: 10px;
  193. height: 40px;
  194. min-width: 80px;
  195. height: 60px;
  196. width: 140px;
  197. top: 10px;
  198. padding-top: 15px;
  199. }
  200. .data-input-line {
  201. background: url(bg-dot.jpg) repeat-x center bottom;
  202. background-color: transparent;
  203. /* color: #eeeeee; */
  204. outline: none;
  205. outline-style: none !important;
  206. border-top: none !important;
  207. border-left: none !important;
  208. border-right: none !important;
  209. border-bottom: solid #eeeeee 1px !important;
  210. padding: 3px 10px !important;
  211. }
  212. .resent-tran {
  213. padding: 0 5px;
  214. text-align: center;
  215. }
  216. .resent-tran a {
  217. color: red;
  218. }
  219. .confirm-tran {
  220. padding: 0 5px;
  221. text-align: center;
  222. }
  223. .confirm-tran a {
  224. color: var(--main-color);
  225. font-weight: 600;
  226. }
  227. .cancel-tran {
  228. padding: 0 5px;
  229. text-align: center;
  230. }
  231. .cancel-tran a {
  232. color: black;
  233. }
  234. .text-box-row {
  235. margin: 5px 0px;
  236. }
  237. .text-end-bold {
  238. text-align: end;
  239. font-weight: 800;
  240. }
  241. .text-start {
  242. text-align: start;
  243. }
  244. .text-bold {
  245. font-weight: 700;
  246. line-height: 2rem;
  247. }
  248. .text-margin-10 {
  249. margin: 10px 0;
  250. }
  251. .scroll-box-margin {
  252. margin: 5px 0
  253. }
  254. .button-style-3 {
  255. background: #1890FF;
  256. color: white;
  257. border: 1px solid #1890FF;
  258. height: 40px;
  259. border-radius: 10px;
  260. font-size: 12px;
  261. }
  262. .text-style-start-2 {
  263. text-align: start;
  264. }
  265. .text-style-end-2 {
  266. text-align: end;
  267. }
  268. .text-style-start-3 {
  269. text-align: start;
  270. font-size: 18px;
  271. color: #000;
  272. font-weight: 800;
  273. }
  274. .text-style-end-3 {
  275. text-align: end;
  276. font-weight: 800;
  277. color: #FF3211;
  278. font-size: 18px;
  279. }
  280. .tabs-style {
  281. position: relative;
  282. /*min-height: 200px;*/ /* This part sucks */
  283. margin: 15px 0;
  284. color: #F0F0F0;
  285. font-weight: bold;
  286. padding: 5px;
  287. }
  288. .tab-style {
  289. float: left;
  290. padding: 0;
  291. text-align: center;
  292. height: auto;
  293. padding: 8px 0;
  294. }
  295. .tab-style label {
  296. text-align: center;
  297. color: #fff;
  298. font-size: 15px;
  299. font-weight: bold;
  300. margin: 0;
  301. text-transform: uppercase;
  302. }
  303. .tab-style [type=radio] {
  304. display: none;
  305. }
  306. .content-style {
  307. position: absolute;
  308. top: -1px;
  309. left: 0;
  310. right: 0;
  311. bottom: 0;
  312. /*padding: 20px;*/
  313. border-top: 1px solid #ccc;
  314. -webkit-transition: opacity .6s linear;
  315. opacity: 0;
  316. }
  317. [type=radio]:checked ~ label {
  318. border-bottom: 2px solid var(--main-color);
  319. z-index: 2;
  320. padding-bottom: 4px;
  321. }
  322. [type=radio]:checked ~ label ~ .content {
  323. z-index: 1;
  324. opacity: 1;
  325. }
  326. .wrapper-style-3 {
  327. /*max-width: 50rem;*/
  328. width: 100%;
  329. margin: 0 auto;
  330. }
  331. .tabs-style-2 {
  332. position: relative;
  333. background: #fff;
  334. font-size: 15px;
  335. height: 32px;
  336. font-weight: bold;
  337. }
  338. .tabs-style-2::before,
  339. .tabs-style-2::after {
  340. content: "";
  341. display: table;
  342. }
  343. .tabs-style-2::after {
  344. clear: both;
  345. }
  346. .tabs-style-3 {
  347. position: relative;
  348. /*margin: 3rem 0;*/
  349. background: #0A328C;
  350. /*background: linear-gradient(90.24deg, #0A328C 11.23%, rgba(26, 72, 177, 0.695417) 103.44%, rgba(38, 90, 207, 0.453125) 115.57%, rgba(10, 50, 140, 0) 134.87%);*/
  351. /*height: 14.75rem;*/
  352. font-size: 15px;
  353. height: 40px;
  354. font-weight: bold;
  355. }
  356. .tabs-style-3::before,
  357. .tabs-style-3::after {
  358. content: "";
  359. display: table;
  360. }
  361. .tabs-style-3::after {
  362. clear: both;
  363. }
  364. .tab-style-3 {
  365. float: left;
  366. }
  367. .tab-style-2 {
  368. float: left;
  369. text-align: center;
  370. padding: 0px;
  371. }
  372. .tab-switch-style-3 {
  373. display: none;
  374. }
  375. .tab-label-style-2 {
  376. position: relative;
  377. display: block;
  378. height: 32px;
  379. line-height: 32px;
  380. padding: 0 1.618em;
  381. border-bottom: 1px solid #B4B4B4;
  382. color: #B4B4B4;
  383. cursor: pointer;
  384. top: 0;
  385. transition: all 0.25s;
  386. margin-bottom: 0;
  387. }
  388. .tab-label-style-2.active-tab {
  389. border-bottom-color: #EE0033;
  390. }
  391. .tab-label-style-2:hover {
  392. top: -0.25rem;
  393. transition: top 0.25s;
  394. }
  395. .tab-label-style-3 {
  396. position: relative;
  397. display: block;
  398. line-height: 2.75em;
  399. /*height: 3em;*/
  400. padding: 0 1.618em;
  401. /*border-right: 0.125rem solid #16a085;*/
  402. color: #fff;
  403. cursor: pointer;
  404. top: 0;
  405. transition: all 0.25s;
  406. margin-bottom: 0;
  407. }
  408. .tab-label-style-3:hover {
  409. top: -0.25rem;
  410. transition: top 0.25s;
  411. }
  412. .tab-content-style-3 {
  413. height: 12rem;
  414. position: absolute;
  415. z-index: 1;
  416. top: 2.75em;
  417. left: 0;
  418. padding: 1.618rem;
  419. background: #fff;
  420. color: #2c3e50;
  421. border-bottom: 0.25rem solid #bdc3c7;
  422. opacity: 0;
  423. transition: all 0.35s;
  424. }
  425. .tab-switch-style-3:checked + .tab-label-style-3 {
  426. /* background: #fff; */
  427. color: #F4CF0E;
  428. border-bottom: 0;
  429. /* border-right: 0.125rem solid #fff; */
  430. transition: all 0.35s;
  431. z-index: 1;
  432. top: -0.0625rem;
  433. margin-bottom: 0;
  434. padding-bottom: 0px;
  435. }
  436. .tab-switch-style-3:checked + label + .tab-content-style-3 {
  437. z-index: 2;
  438. opacity: 1;
  439. transition: all 0.35s;
  440. }
  441. .button-style-4 {
  442. background: linear-gradient(90.24deg, #0A328C 11.23%, rgba(26, 72, 177, 0.695417) 103.44%, rgba(38, 90, 207, 0.453125) 115.57%, rgba(10, 50, 140, 0) 134.87%);
  443. color: white;
  444. border: none;
  445. height: 40px;
  446. border-radius: 10px;
  447. }
  448. .small-input-box {
  449. padding: 5px !important;
  450. height: 35px;
  451. }
  452. .result-date-box {
  453. padding: 0 2px;
  454. border-radius: 10px;
  455. width: 40%;
  456. display: inline-block;
  457. }
  458. .result-date-box-button {
  459. /*padding: 0 2px;
  460. border-radius: 10px;
  461. width: 19%;
  462. display: inline-block;
  463. position: absolute;
  464. margin-top: 27px;*/
  465. width: 100%;
  466. padding: 0 30px;
  467. }
  468. .result-date-box-button .btn-search-result {
  469. background-color: #FF3211;
  470. border-radius: 20px;
  471. height: 40px;
  472. color: #fff;
  473. font-size: 14px;
  474. width: 100%;
  475. }
  476. /*.active {
  477. background-color: #F0F0F0;
  478. border: 1px solid var(--main-color) !important;
  479. }*/
  480. .active-tab {
  481. color: var(--main-color);
  482. }
  483. .error-note-line {
  484. color: red;
  485. border-bottom: 1px solid red !important;
  486. border-radius: 0px;
  487. }
  488. .error-note-box {
  489. color: red;
  490. border: 1px solid red !important;
  491. }
  492. label a {
  493. /*color: lightslategray;*/
  494. color: inherit !important;
  495. }
  496. .image-w-24 {
  497. width: 24px;
  498. }
  499. .image-w-30 {
  500. width: 30px;
  501. }
  502. .image-w-35 {
  503. width: 35px !important;
  504. }
  505. .image-w-71 {
  506. width: 71px !important;
  507. }
  508. .image-w-80 {
  509. width: 80px !important;
  510. }
  511. .image-w-78 {
  512. width: 78px !important;
  513. }
  514. .image-w-80 {
  515. width: 80px !important;
  516. }
  517. .image-w-84 {
  518. width: 84px !important;
  519. }
  520. /*
  521. .ticket-buy-number {
  522. font-size: 2em;
  523. }
  524. .ticket-buy-number,.ticket-buy-number::-webkit-input-placeholder {
  525. font-size: 20px;
  526. }
  527. */
  528. .box-coin-choose {
  529. text-align: center;
  530. height: 40px;
  531. border-radius: 10px;
  532. border: 1px solid #ECEFF1;
  533. padding-top: 7px;
  534. font-size: 16px;
  535. margin: 10px 0;
  536. }
  537. .label-input-data {
  538. width: 100%;
  539. height: 100%;
  540. z-index: 100000;
  541. position: absolute;
  542. left: 0;
  543. }
  544. .buy-ticket-button {
  545. background: radial-gradient(140.28% 627.39% at 50% 50%, #F4CF0E 0%, rgba(244, 207, 14, 0) 100%) !important;
  546. }
  547. .faq-container {
  548. margin: 20px;
  549. }
  550. .faq-question {
  551. cursor: pointer;
  552. }
  553. .faq-question.active {
  554. color: #494747;
  555. padding-bottom: 10px;
  556. }
  557. .faq-start-box {
  558. }
  559. .faq-start-box p {
  560. margin:0;
  561. }
  562. .faq-end-box {
  563. text-align: end;
  564. }
  565. .faq-container-content {
  566. margin-top: 20px;
  567. font-family: "Nunito", sans-serif;
  568. }
  569. .faq-container-img {
  570. text-align: center;
  571. }
  572. .nav-left {
  573. display: inline-block;
  574. border-radius: 100px;
  575. height: 30px;
  576. width: 30px;
  577. margin: auto;
  578. }
  579. .nav-left i {
  580. margin: auto;
  581. top: 10px;
  582. width: 100%;
  583. text-align: center;
  584. vertical-align: -webkit-baseline-middle;
  585. color: white;
  586. }
  587. .nav-page {
  588. display: inline-block;
  589. vertical-align: -webkit-baseline-middle;
  590. }
  591. .nav-right {
  592. display: inline-block;
  593. border-radius: 100px;
  594. height: 30px;
  595. width: 30px;
  596. margin: auto;
  597. }
  598. .nav-right i {
  599. margin: auto;
  600. top: 10px;
  601. width: 100%;
  602. text-align: center;
  603. vertical-align: -webkit-baseline-middle;
  604. color: white;
  605. }
  606. .nav-active {
  607. background: linear-gradient(182.09deg, pink 45.77%, rgba(188, 70, 70, 0.704875) 127.71%, rgba(213, 19, 19, 0.541667) 166.12%, rgba(255, 0, 0, 0) 185.46%);
  608. }
  609. .nav-not-active {
  610. background: linear-gradient(182.09deg, pink 45.77%, rgba(188, 70, 70, 0.704875) 127.71%, rgba(213, 19, 19, 0.541667) 166.12%, rgba(255, 0, 0, 0) 185.46%);
  611. pointer-events: none;
  612. opacity: 0.4;
  613. }
  614. .text-white {
  615. color: white;
  616. }
  617. .text-main-color {
  618. color: var(--main-color);
  619. }
  620. .button-choose-box {
  621. margin: 5px 0;
  622. }
  623. .red-box {
  624. border: 1px solid red !important;
  625. border-radius: 10px;
  626. }
  627. .inactive {
  628. pointer-events: none;
  629. opacity: 0.4;
  630. }
  631. .text-w-80-main-color {
  632. font-weight: 900;
  633. color: var(--main-color);
  634. }
  635. .text-main-color {
  636. color: var(--main-color);
  637. }