@charset "UTF-8";
@import url(https://fonts.googleapis.com/earlyaccess/notosanstc.css);
html, body, div, span, applet, object, iframe,
h1, h2, h3, h4, h5, h6, p, blockquote, pre,
a, abbr, acronym, address, big, cite, code,
del, dfn, em, img, ins, kbd, q, s, samp,
small, strike, strong, sub, sup, tt, var,
b, u, i, center,
dl, dt, dd, ol, ul, li,
fieldset, form, label, legend,
table, caption, tbody, tfoot, thead, tr, th, td,
article, aside, canvas, details, embed,
figure, figcaption, footer, header, hgroup,
menu, nav, output, ruby, section, summary,
time, mark, audio, video {
  margin: 0;
  padding: 0;
  border: 0;
  font-size: 100%;
  font: inherit;
  vertical-align: baseline;
}

/* HTML5 display-role reset for older browsers */
article, aside, details, figcaption, figure,
footer, header, hgroup, menu, nav, section {
  display: block;
}

body {
  line-height: 1;
}

ol, ul {
  list-style: none;
}

blockquote, q {
  quotes: none;
}

blockquote:before, blockquote:after,
q:before, q:after {
  content: "";
  content: none;
}

table {
  border-collapse: collapse;
  border-spacing: 0;
}

a {
  text-decoration: none !important;
}

:root {
  --white: #ffffff;
  --black: #000000;
  --main: #2d6ec7;
  --main2: #0131ab;
  --main3: #2c2e30;
  --yellow: #f8e370;
  --grey1: #f4f4f4;
  --grey2: #e7e7e7;
}

.wapper {
  font-family: "Noto Sans TC", sans-serif;
}

p {
  font-size: 12px;
  line-height: 1.8;
}

.txtWY {
  color: var(--white);
}
.txtWY span {
  color: var(--yellow);
}

.squareDecorate {
  position: relative;
}
.squareDecorate::after {
  content: "";
  position: absolute;
  z-index: 50;
  right: 19px;
  display: block;
  width: 85px;
  height: 116px;
  background-image: url(../img/squareR.png);
  background-repeat: no-repeat;
  background-size: cover;
  animation-name: square;
  animation-duration: 4s;
  animation-iteration-count: infinite;
}

.pupBG {
  display: none;
  position: fixed;
  z-index: 999;
  left: 0;
  top: 0;
  content: "";
  width: 100vw;
  height: 200vh;
  background-color: rgba(23, 32, 70, 0.89);
}
.pupBG.show {
  display: block;
}

.container {
  max-width: 900px;
  margin: 0 auto;
  padding: 35px 25px;
}

header {
  box-sizing: border-box;
  position: fixed;
  z-index: 100;
  left: 0;
  top: 0;
  width: 100vw;
  padding: 10px 20px;
  background-color: var(--white);
  display: flex;
  justify-content: space-between;
  align-items: center;
}
header .logo {
  width: 140px;
}
header .logo img {
  width: 100%;
}
header #menu_button_wrapper {
  position: fixed;
  z-index: 110;
  right: 20px;
  top: 20px;
}
header #menu_button_wrapper #menu_button span {
  display: block;
  background-color: #ea6018;
  width: 20px;
  height: 3px;
  margin-bottom: 3px;
}
header nav {
  text-transform: uppercase;
}
header nav ul {
  margin: 5px 0;
  display: flex;
  justify-content: space-between;
  align-items: center;
}
header nav ul li {
  margin: 0 20px;
}
header nav ul li a {
  color: var(--main2);
  text-decoration: none;
  box-sizing: border-box;
}
header nav ul li a:hover {
  color: #ea6018;
}
header nav ul li:last-child {
  border-radius: 19px;
  background-image: linear-gradient(to bottom, #ffcea7, #ea6018);
}
header nav ul li:last-child:hover {
  background-image: linear-gradient(to bottom, #008ff7 2%, #0039c7 100%);
}
header nav ul li:last-child a {
  width: 110px;
  padding: 4px 25px;
  height: 40px;
  font-size: 20px;
  font-weight: bold;
  line-height: 40px;
  text-align: center;
  color: var(--white);
}
header #menu_button_wrapper,
header .hidden {
  display: none;
}

article {
  overflow: hidden;
  padding-top: 68px;
}

.bannerBox {
  position: relative;
  background-image: radial-gradient(circle at 100% 0%, #1e91bf, #1f306f 55%, #19243e 100%);
  z-index: 2;
  padding: 0 40px;
}
.bannerBox::before {
  content: "";
  display: block;
  position: absolute;
  bottom: 0;
  left: 0;
  width: 100%;
  height: 200px;
  background: linear-gradient(to top, #172046, rgba(23, 32, 70, 0));
}
.bannerBox .banner {
  max-width: 1300px;
  margin: 0 auto;
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
  align-items: center;
}
.bannerBox .title {
  padding-top: 70px;
  position: relative;
}
.bannerBox .title h2 {
  font-weight: 600;
  background: linear-gradient(to bottom, #ffffff, #fffdf4 20%, #cdba4d 50%, #cdba4d);
  background-clip: text;
  -webkit-background-clip: text;
  color: transparent;
  font-size: 55px;
  position: relative;
}
.bannerBox .title h2 p {
  color: #ffffff;
  opacity: 0.4;
  font-size: 55px;
  line-height: 1.1;
  padding-top: 10px;
}
.bannerBox .title h2::before {
  content: "";
  position: absolute;
  left: 0;
  top: -80px;
  width: 345px;
  height: 119px;
  background-image: url(../img/bannerBox/securitiesCodoe.png);
  background-size: 100%;
  background-repeat: no-repeat;
}
.bannerBox .magicBlocks {
  position: relative;
}
.bannerBox .magicBlocks img {
  width: 100%;
}
.bannerBox .magicBlocks .diamond {
  width: 11.4%;
  left: 43.6%;
  position: absolute;
  animation-name: diamond;
  animation-duration: 6s;
  animation-iteration-count: infinite;
}
.bannerBox .magicBlocks .magicBlock {
  width: 100%;
}
.bannerBox .magicBlocks + .fire {
  display: none;
}
.bannerBox .fire {
  font-size: 2.4rem;
  font-weight: 500;
  color: #ffffff;
  font-style: italic;
}
.bannerBox .fire img {
  width: 100%;
}
.bannerBox .fire span {
  margin-left: 30px;
  font-size: 2.8rem;
  font-weight: 600;
  background: linear-gradient(to bottom, #fffff7, #fffdf4, #cdba4d);
  background-clip: text;
  -webkit-background-clip: text;
  color: transparent;
}

.linkS {
  width: 90vw;
  display: flex;
  justify-content: center;
}
.linkS a {
  display: flex;
  justify-content: center;
  align-items: center;
  flex: 1;
  text-align: center;
  color: #133477;
  font-size: 13px;
  height: 100%;
  position: relative;
  background-image: linear-gradient(to bottom, #fff, #b2b2b2);
}
.linkS a:hover {
  background-image: linear-gradient(to bottom, #fff, #ffebb2);
}
.linkS a:last-child {
  display: none;
}
.linkS a + a {
  border-left: 2px solid rgba(255, 255, 255, 0.2196078431);
}
.linkS a::before {
  margin-left: -10px;
  width: 28px;
  height: 28px;
  padding: 9px;
  border: 1px solid #133477;
  border-radius: 50%;
  transform: scale(0.7);
  line-height: 28px;
}
.linkS a:nth-child(1)::before {
  content: "LINE";
}
.linkS a:nth-child(2)::before {
  content: "▶";
  font-size: 20px;
}

.tabSBox {
  background-image: linear-gradient(to bottom, #172046, #1d96c7);
}
.tabSBox .container {
  overflow: hidden;
}
.tabSBox .tabList {
  margin: 0 auto -20px auto;
  display: flex;
  flex-wrap: wrap;
}
.tabSBox .tabList span:hover {
  cursor: pointer;
}
.tabSBox .tabList span img {
  width: 100%;
}
.tabSBox .slider p {
  font-size: 12px;
}
.tabSBox .slider .slick-slide {
  transition: all ease-in-out 0.3s;
  opacity: 0.2;
}
.tabSBox .slider .slick-slide img {
  width: 100%;
}
.tabSBox .slider > button {
  z-index: 9;
  background-image: linear-gradient(to bottom, #85b5ff, #043d97);
  width: 60px;
  height: 60px;
  border-radius: 50%;
}
.tabSBox .slider > button img {
  width: 20px;
}
.tabSBox .slider .slick-prev:before,
.tabSBox .slider .slick-next:before {
  display: none;
}
.tabSBox .slider .slick-prev {
  left: -25px;
}
.tabSBox .slider .slick-prev img {
  margin-right: 5px;
  transform: rotate(180deg);
}
.tabSBox .slider .slick-next {
  right: -25px;
}
.tabSBox .slider .slick-next img {
  margin-left: 5px;
}
.tabSBox .slider .slick-active {
  opacity: 0.5;
}
.tabSBox .slider .slick-current {
  opacity: 1;
}

.chartBox {
  background-image: linear-gradient(to bottom, #2c48c0, #4f4894);
}
.chartBox .chart {
  padding-top: 130px;
}
.chartBox .chart .item {
  display: flex;
  justify-content: space-between;
  align-items: flex-start;
  flex-wrap: wrap;
  margin-bottom: 50px;
}
.chartBox .chart .item .txtWY {
  padding: 20px 0;
}
.chartBox .chart .item img {
  width: 100%;
}
.chartBox .chart .item .title {
  box-sizing: border-box;
  width: 38%;
  display: flex;
  flex-wrap: wrap;
  justify-content: space-between;
  align-items: flex-end;
}
.chartBox .chart .item .title .itemL {
  width: 100%;
}
.chartBox .chart .item .itemD {
  width: 60%;
}
.chartBox .chart .item .itemR {
  margin-bottom: 10px;
}
.chartBox .chart .item .title span,
.chartBox .chart .item .itemR span {
  padding: 20px 0 10px 0;
  line-height: 1.5;
  width: 100%;
  color: var(--white);
  font-weight: 600;
  font-size: 1.2rem;
}
.chartBox .chart .item:nth-child(1) {
  padding-top: 80px;
  position: relative;
}
.chartBox .chart .item:nth-child(1)::before {
  content: "";
  width: 165px;
  height: 165px;
  position: absolute;
  right: 0;
  top: -65px;
  background-image: url(../img/chart/item1R.png);
  background-size: 100%;
  background-repeat: no-repeat;
}
.chartBox .chart .item:nth-child(2) .itemL {
  width: 40%;
}
.chartBox .chart .item:nth-child(2) .itemR {
  width: 44%;
}
.chartBox .chart .item:nth-child(2) .itemR .txtWY {
  font-size: 12px;
  line-height: 1.8;
  font-weight: 400;
}
.chartBox .chart .item:nth-child(2) .itemR .txtWY span {
  font-size: 12px;
  font-weight: 400;
  color: var(--yellow);
}

.fundTableBox {
  background-image: linear-gradient(to bottom, #fff, #96c0db);
}

.fundTable {
  display: flex;
  justify-content: center;
  align-items: center;
  flex-wrap: wrap;
}
.fundTable h6 {
  width: 99%;
  margin-bottom: 30px;
  text-align: center;
  font-size: 46px;
  letter-spacing: 2px;
  font-weight: 800;
  background: linear-gradient(to bottom, #3a5493, #4d8ff4);
  background-clip: text;
  -webkit-background-clip: text;
  color: transparent;
}
.fundTable input,
.fundTable table,
.fundTable .tableBox .fund,
.fundTable .tableBox ~ p {
  display: none;
}
.fundTable input + label {
  text-align: center;
  width: 210px;
  height: 38px;
  color: var(--white);
  background-image: linear-gradient(to bottom, #008ff7 2%, #0039c7 100%);
  border-radius: 30px;
  box-shadow: 0 2px 9px 0 rgba(0, 0, 0, 0.28);
  cursor: pointer;
  padding: 5px 10px;
  margin: 0 0 20px 10px;
}
.fundTable input + label.fund {
  font-size: 23px;
  font-weight: 500;
  line-height: 38px;
}
.fundTable input:checked + label {
  background-color: var(--main3);
  background-image: none;
  color: var(--white);
}
.fundTable input#fund:checked ~ .tableBox .fund, .fundTable input#fund:checked ~ .fundtxt, .fundTable input#ten:checked ~ .tableBox .ten, .fundTable input#ten:checked ~ .tentxt {
  display: block;
}
.fundTable input#fund:checked ~ .tableBox .fund {
  display: flex;
}
.fundTable .fundtxt span,
.fundTable .tentxt span {
  color: #0131ab;
}
.fundTable .tableBox ~ p,
.fundTable .tableBox {
  width: 100%;
  margin-bottom: 20px;
}
.fundTable .tableBox {
  border-radius: 20px;
  overflow: hidden;
}
.fundTable .tableBox > div,
.fundTable .tableBox table {
  background-color: var(--white);
}
.fundTable .tableBox .fund > div,
.fundTable .tableBox table td {
  padding: 10px;
  color: var(--black);
  font-size: 16px;
  line-height: 2;
}
.fundTable .tableBox .fund {
  flex-wrap: wrap;
}
.fundTable .tableBox .fund > div {
  border-bottom: 1px solid var(--grey2);
  display: flex;
  box-sizing: border-box;
  justify-content: center;
}
.fundTable .tableBox .fund > div span {
  color: #0131ab;
}
.fundTable .tableBox .fund > div:nth-child(odd) {
  width: 15%;
  background-color: #2d6ec7;
  color: var(--white);
  justify-content: center;
  align-items: center;
  text-align: center;
}
.fundTable .tableBox .fund > div:nth-child(even) {
  width: 35%;
  flex-direction: column;
}
.fundTable .tableBox .fund > div:nth-child(even) .txtIn span {
  display: inline-block;
  color: #000000;
}
.fundTable .tableBox .fund > div:nth-child(even) .txtIn span:nth-child(odd) {
  width: 190px;
}
.fundTable .tableBox .fund > div:nth-child(even) .txtIn span:nth-child(even) {
  width: 80px;
}
.fundTable .tableBox table {
  border-collapse: collapse;
  border-spacing: 0;
}
.fundTable .tableBox table tr:first-child td {
  background-color: #2d6ec7;
  color: var(--white);
}
.fundTable .tableBox table tr:first-child td + td {
  border-left: 1px solid var(--white);
}
.fundTable .tableBox table tr:nth-child(even) {
  background-color: var(--grey1);
}
.fundTable .tableBox table td {
  text-align: center;
}
.fundTable .tableBox table td + td {
  border-left: 1px solid var(--grey2);
}
.fundTable .tableBox table td:nth-child(1), .fundTable .tableBox table td:nth-child(2), .fundTable .tableBox table td:nth-child(3) {
  width: 1%;
}
.fundTable .bts {
  display: flex;
  justify-content: space-between;
  align-items: center;
  width: 99%;
}
.fundTable .bts.nono {
  display: none;
}
.fundTable .bts a {
  width: 30%;
  text-align: center;
  margin-bottom: 20px;
  background-color: #2a5aba;
  border-radius: 40px;
  line-height: 2.3;
  font-size: 20px;
  color: var(--white);
}
.fundTable .no1b {
  width: 55px;
  position: relative;
}
.fundTable .no2b {
  width: 40px;
  position: relative;
}
.fundTable .no1,
.fundTable .no2 {
  position: absolute;
  right: 0;
  font-size: 10px;
  transform: scale(1);
  top: -5px;
}

.popup {
  display: none;
  position: fixed;
  left: 0;
  right: 0;
  top: 0;
  bottom: 0;
  z-index: 1000;
  margin: auto;
  width: 350px;
  height: 150px;
  border-radius: 17px;
  padding: 50px 30px;
  text-align: center;
  background-image: linear-gradient(to bottom, #fff, #e5e5e5);
}
.popup .close {
  position: absolute;
  right: 10px;
  top: -35px;
  color: #ffffff;
  font-size: 20px;
}
.popup .close:hover {
  cursor: pointer;
  color: #ea6018;
}
.popup.show {
  display: block;
}
.popup p {
  font-size: 15px;
  color: #022378;
  margin-bottom: 15px;
}
.popup a {
  display: block;
  color: var(--white);
  width: 100px;
  margin: 0 auto;
  padding: 10px 30px;
  border-radius: 20px;
  background-image: linear-gradient(to bottom, #3fbfff, #1f2697);
}
.popup a:hover {
  background-image: linear-gradient(to bottom, #ffcea7, #ea6018);
}

footer {
  padding: 40px 0;
  background-color: var(--main);
  color: var(--white);
}
footer > div {
  margin-bottom: 20px;
}
footer .info {
  display: flex;
  flex-wrap: wrap;
}
footer .info h5 {
  font-size: 20px;
  margin-bottom: 35px;
  width: 100%;
  text-align: center;
}
footer .info p {
  box-sizing: border-box;
  font-size: 13px;
  font-weight: 100;
  line-height: 1;
  margin-bottom: 20px;
  width: 25%;
  text-align: center;
}
footer .info a,
footer .info a:visited {
  color: #ffffff;
}
footer .info a:hover,
footer .info a:visited:hover {
  color: var(--yellow);
}
footer .declare {
  font-size: 15px;
  line-height: 1.8;
  text-align: justify;
}
footer .declare span {
  color: var(--yellow);
}

@media screen and (min-width: 1501px) {
  .ss {
    position: fixed;
    z-index: 100;
    animation-iteration-count: infinite;
  }
  .sq1 {
    right: 4vw;
    width: 120px;
    animation-name: sq1;
    animation-duration: 4s;
  }
  .sq2 {
    left: 2vw;
    width: 60px;
    animation-name: sq2;
    animation-duration: 6s;
  }
  .squareDecorate::after {
    z-index: -2;
  }
}
@media screen and (max-width: 1500px) {
  .ss {
    display: none;
  }
  .squareDecorate::after {
    z-index: 2;
    left: 30px;
    top: -20px;
  }
}
@media screen and (max-width: 1367px) {
  .bannerBox .title h2::before {
    width: 200px;
    top: -53px;
  }
  .bannerBox .title h2,
.bannerBox .title h2 p {
    font-size: 45px;
  }
}
@media screen and (min-width: 1200px) {
  .chartBox #dividend .itemR span > span {
    display: block;
    padding: 5px;
  }
  .chartBox #dividend .itemR + .txtWY {
    display: none;
  }
  .chartBox .chart .item:nth-child(2) .itemL {
    width: 45%;
  }
  .chartBox .chart .item:nth-child(2) .itemL img {
    margin-top: -35px;
    margin-left: -30px;
  }
  .chartBox .chart .item:nth-child(2) .itemR {
    width: 55%;
  }
  .chartBox .chart .item:nth-child(2) .itemR img {
    width: 83%;
  }
  footer p + p {
    border-left: 1px solid #ffffff;
  }
  .fund > div,
table td {
    font-size: 17px;
  }
}
@media screen and (min-width: 801px) {
  .linkS {
    transform: scale(1.2);
    position: fixed;
    right: 10px;
    bottom: 20vh;
    width: 80px;
    z-index: 50;
    align-items: flex-start;
    flex-direction: column;
  }
  .linkS a {
    flex-direction: column;
    padding: 0px 0 8px 10px;
    margin-bottom: 10px;
    border-radius: 45px 0 0 45px;
    width: 80px;
  }
  .bannerBox .banner .title {
    width: 53%;
  }
  .bannerBox .banner .magicBlocks {
    width: 46%;
  }
  .bannerBox .banner .fire {
    padding-top: 30px;
  }
  .tabSBox .container {
    max-width: 850px;
    margin-top: -1px;
  }
  .tabSBox .container.squareDecorate::after {
    display: none;
  }
  .tabSBox .tabList {
    width: 65%;
    position: relative;
    z-index: 20;
  }
  .tabSBox .tabList .slick-slide {
    position: relative;
    top: 0;
    transition-duration: 0.5s;
  }
  .tabSBox .tabList .slick-slide.slick-current {
    top: -29px;
    transition-duration: 0.5s;
  }
  .tabSBox .tabList .slick-track {
    padding-top: 50px;
    transform: translate3d(0, 0, 0) !important;
  }
  .tabSBox .tabList span {
    width: 25%;
  }
  .tabSBox .slider > button {
    top: 235px;
  }
}
@media screen and (min-width: 1px) and (max-width: 1199px) {
  .chartBox .chart .item:nth-child(2) .itemL {
    width: 50%;
  }
  .fundTable .tableBox .fund > div:nth-child(odd) {
    width: 130px;
  }
  .fundTable .tableBox .fund > div:nth-child(even) {
    width: calc(100% - 130px);
  }
  .bannerBox .title h2 + .fire {
    font-size: 1.4rem;
  }
  .bannerBox .title h2 + .fire span {
    font-size: 1.9rem;
  }
  .bannerBox .title h2 + .fire::after {
    width: 62px;
    height: 68px;
  }
  .chartBox #dividend .itemR .txtWY {
    display: none;
  }
  .chartBox #dividend .itemR + .txtWY {
    display: block;
  }
  footer .info {
    flex-direction: column;
  }
  footer .info P {
    width: 100%;
    text-align: center;
  }
  footer .info P:nth-child(5) {
    text-align: center;
  }
}
@media screen and (min-width: 1px) and (max-width: 800px) {
  .popup {
    width: 80vw;
  }
  article {
    padding-top: 55.2px;
  }
  header #menu_button_wrapper {
    display: block;
  }
  header #menu_button_wrapper:hover {
    cursor: pointer;
  }
  header #menu_button_wrapper:hover #menu_button span {
    background-color: #ea6018;
  }
  header nav {
    display: none;
  }
  .show .linkS {
    display: none;
  }
  .show #menu_button_wrapper #menu_button span:nth-child(1) {
    transform: rotate(40deg);
    transform-origin: 7px 10px;
  }
  .show #menu_button_wrapper #menu_button span:nth-child(2) {
    display: none;
  }
  .show #menu_button_wrapper #menu_button span:nth-child(3) {
    transform: rotate(-40deg);
    transform-origin: 10px -6px;
  }
  .show nav {
    display: block;
  }
  .show nav::before {
    content: "";
    position: fixed;
    z-index: 18;
    left: 0;
    bottom: 0;
    width: 100vw;
    height: calc(100vh - 55px);
    background-color: #172046;
  }
  .show nav ul {
    position: fixed;
    margin: auto;
    left: 0;
    top: 0;
    right: 0;
    bottom: 0;
    z-index: 110;
    box-sizing: border-box;
    flex-direction: column;
    width: 50%;
    height: 50vh;
    justify-content: center;
    align-items: inherit;
  }
  .show nav ul li {
    display: block;
    line-height: 5;
    text-align: center;
  }
  .show nav ul li a {
    width: 100%;
    color: var(--white);
    font-size: 22px;
  }
  .show nav ul li + li {
    border-top: 1px solid rgba(255, 255, 255, 0.23);
  }
  .show nav ul li:last-child {
    height: 50px;
    line-height: 50px;
    border-radius: 40px;
  }
  .bannerBox {
    flex-direction: column;
    padding: 50px 20px 120px 20px;
  }
  .bannerBox > div {
    width: 100%;
  }
  .bannerBox .title h2 + .fire {
    display: none;
  }
  .bannerBox .magicBlocks {
    top: -30px;
  }
  .bannerBox .magicBlocks .diamond {
    width: 13vw;
    left: 42%;
  }
  .bannerBox .magicBlocks + .fire {
    position: relative;
    z-index: 1;
    display: block;
    top: -60px;
  }
  .bannerBox .fire {
    font-size: 1.9rem;
  }
  .bannerBox .fire span {
    font-size: 2.2rem;
    margin-left: 13px;
  }
  .linkS {
    align-items: center;
    height: 50px;
    border-radius: 7px;
    overflow: hidden;
    position: fixed;
    bottom: 20px;
    z-index: 500;
    margin: 0 10px;
    width: calc(100% - 20px);
  }
  .linkS a.addDividendetf {
    background-image: linear-gradient(to bottom, #fff, #ffebb2);
  }
  .linkS a:last-child {
    display: flex;
  }
  .linkS a:nth-child(3)::before {
    content: "✓";
    font-size: 25px;
  }
  .chartBox .chart {
    padding-top: 0px;
  }
  .chartBox .chart .item {
    justify-content: space-around;
  }
  .chartBox .chart .item .title {
    width: 100%;
  }
  .chartBox .chart .item .itemD {
    width: 100%;
  }
  .chartBox .chart .item:nth-child(1)::before {
    width: 34vw;
    height: 300px;
    right: 3px;
    top: 15px;
  }
  .chartBox .chart .item:nth-child(1) .itemL {
    width: 55%;
    margin-top: -20px;
  }
  .chartBox .chart .item:nth-child(1) .itemR {
    width: 35%;
    z-index: 3;
  }
  .chartBox .chart .item:nth-child(2) {
    align-items: flex-end;
  }
  .chartBox .chart .item:nth-child(2) .itemL {
    margin-left: -32%;
    width: 75%;
  }
  .chartBox .chart .item:nth-child(2) .itemR {
    width: 44%;
  }
  .tabSBox {
    margin-top: -1px;
  }
  .tabSBox .tabList {
    width: 93%;
    margin: 0 auto 50px auto;
  }
  .tabSBox .tabList .slick-track {
    display: flex;
    flex-wrap: wrap;
    margin-left: 15px;
    transform: translate3d(0, 0, 0) !important;
  }
  .tabSBox .tabList .slick-slide {
    width: 50% !important;
    transform: scale(0.9);
    transition-duration: 0.6s;
  }
  .tabSBox .tabList .slick-slide.slick-current {
    transform: scale(1);
    transition-duration: 0.6s;
  }
  .tabSBox .tabList .slick-slide img {
    width: 100%;
  }
  .tabSBox .tabList .slick-slide:nth-child(1), .tabSBox .tabList .slick-slide:nth-child(2) {
    position: relative;
    z-index: 3;
    top: 30px;
  }
  .tabSBox .tabList .slick-slide:nth-child(2) {
    margin: 25px 0 0 -45px;
  }
  .tabSBox .tabList .slick-slide:nth-child(3) {
    margin: -20px 0 0 -5px;
  }
  .tabSBox .tabList .slick-slide:nth-child(4) {
    margin: 0 0 0 -50px;
  }
  .tabSBox .slider .slick-prev {
    left: -70px;
  }
  .tabSBox .slider .slick-prev img {
    margin-right: -40px;
  }
  .tabSBox .slider .slick-next {
    right: -70px;
  }
  .tabSBox .slider .slick-next img {
    margin-left: -40px;
  }
  .tabSBox .slider > button {
    width: 100px;
    height: 100px;
    top: 180px;
    z-index: 1;
  }
  .tabSBox .slider > button img {
    width: 20px;
  }
  .fundTable input + label {
    width: 40%;
  }
  .fundTable .bts {
    flex-direction: column;
    justify-content: center;
    width: 70%;
  }
  .fundTable .bts a {
    width: 80%;
  }
}
@media screen and (min-width: 1px) and (max-width: 500px) {
  .tabS .txtWY {
    -webkit-text-size-adjust: none;
    font-size: 12px !important;
  }
  .bannerBox {
    padding: 20px 20px 120px 20px;
  }
  .bannerBox .title h2,
.bannerBox .title h2 p {
    font-size: 26px;
  }
  .bannerBox .magicBlocks + .fire {
    font-size: 1.4rem;
  }
  .bannerBox .magicBlocks + .fire span {
    font-size: 1.8rem;
  }
  .tabSBox .tabList .slick-slide:nth-child(1), .tabSBox .tabList .slick-slide:nth-child(2) {
    position: relative;
    z-index: 3;
    top: 18px;
  }
  .tabSBox .tabList .slick-slide:nth-child(2) {
    margin: 25px 0 0 -25px;
  }
  .tabSBox .tabList .slick-slide:nth-child(3) {
    margin: -20px 0 0 -5px;
  }
  .tabSBox .tabList .slick-slide:nth-child(4) {
    margin: 0 0 0 -20px;
  }
  .tabSBox .slider > button {
    width: 80px;
    height: 80px;
    top: 70px;
  }
  .tabSBox .slider > button img {
    width: 15px;
  }
  .tabSBox .slider .slick-prev {
    left: -60px;
  }
  .tabSBox .slider .slick-prev img {
    position: relative;
    z-index: 99;
    right: 5px;
  }
  .tabSBox .slider .slick-next {
    right: -60px;
  }
  .tabSBox .slider .slick-next img {
    position: relative;
    z-index: 99;
    left: 5px;
  }
  .fundTable .bts {
    width: 100%;
  }
  .fundTable .bts.container {
    padding: 10px;
  }
  .fundTable .bts a {
    width: 100%;
  }
  .fundTable .tableBox table td:nth-child(1),
.fundTable .tableBox table td:nth-child(2),
.fundTable .tableBox table td:nth-child(3) {
    width: 105px;
  }
}
@keyframes diamond {
  0% {
    top: 10%;
  }
  50% {
    top: 20%;
  }
  100% {
    top: 10%;
  }
}
@keyframes square {
  0% {
    top: -45px;
  }
  50% {
    top: -15px;
  }
  100% {
    top: -45px;
  }
}
@keyframes sq1 {
  0% {
    top: 20vh;
  }
  50% {
    top: 25vh;
  }
  100% {
    top: 20vh;
  }
}
@keyframes sq2 {
  0% {
    top: 70vh;
  }
  50% {
    top: 75vh;
  }
  100% {
    top: 70vh;
  }
}