@charset "UTF-8";
.d-flex {
  display: flex;
}

.modal-mask {
  position: fixed;
  z-index: 99999;
  top: 0;
  left: 0;
  width: 100vw;
  height: 100vh;
  background-color: rgba(0, 0, 0, 0.5);
  display: flex;
  transition: opacity 0.3s ease;
  overflow: hidden;
}

.modal-wrapper {
  display: flex;
  vertical-align: middle;
  background-color: #fff;
  border-radius: 10px;
  overflow: hidden;
  transition: all 0.3s ease-in-out;
}
.modal-wrapper.Y_center {
  margin: 5% auto auto;
  width: 1000px;
  height: 80dvh;
}
@media screen and (max-width: 992px) {
  .modal-wrapper.Y_center {
    margin: 5vh auto auto;
    width: 600px;
    height: 90dvh;
  }
}
@media screen and (max-width: 767px) {
  .modal-wrapper.Y_center {
    margin: 5dvh auto auto;
    width: 95%;
    height: 90dvh;
  }
}
.modal-wrapper .modal-container {
  position: relative;
  display: grid;
  width: 100%;
  margin: 0px auto;
  padding: 30px 30px 0;
  background-color: #fff;
  box-shadow: 0 2px 8px rgba(0, 0, 0, 0.33);
}
@media screen and (max-width: 767px) {
  .modal-wrapper .modal-container {
    padding: 10px 10px 0;
  }
}
.modal-wrapper .modal-container .modal-header h3 {
  margin-top: 0;
  padding: 20px 0;
  text-align: center;
  line-height: 1.5;
  font-size: 20px;
  color: #091d3d;
  font-weight: bolder;
}
@media screen and (max-width: 767px) {
  .modal-wrapper .modal-container .modal-header h3 {
    margin: 0 auto;
    padding: 12px 0;
    font-size: 18px;
    width: 76%;
    max-height: 110px;
  }
}
.modal-wrapper .modal-container .modal-header button.close {
  position: absolute;
  right: 15px;
  top: 15px;
  outline: none;
  width: 25px;
  height: 25px;
  background-image: url("data:image/svg+xml;base64,PHN2ZyB4bWxucz0iaHR0cDovL3d3dy53My5vcmcvMjAwMC9zdmciIHZpZXdCb3g9IjAgMCAxNy41IDE3LjUiPjxkZWZzPjxzdHlsZT4uYTc0YTE5NTgtODgzNC00MDk2LWI3MTUtZWZlM2Y2NjczMmVje2ZpbGw6bm9uZTtzdHJva2U6IzY2NjtzdHJva2UtbGluZWNhcDpyb3VuZDtzdHJva2UtbWl0ZXJsaW1pdDoxMDtzdHJva2Utd2lkdGg6MS41cHg7fTwvc3R5bGU+PC9kZWZzPjxnIGlkPSJhYjY5NDczZC05YzZjLTQyNmUtYmYyYy1jODEyMmQxOGNhOGQiIGRhdGEtbmFtZT0i5ZyW5bGkIDIiPjxnIGlkPSJmNzVkMzdiNy01OGJkLTQ2ZDItYWRhMS1jZmY5NTc3ZGZlYTIiIGRhdGEtbmFtZT0i5ZyW5bGkIDEiPjxsaW5lIGNsYXNzPSJhNzRhMTk1OC04ODM0LTQwOTYtYjcxNS1lZmUzZjY2NzMyZWMiIHgxPSIwLjc1IiB5MT0iMTYuNzUiIHgyPSIxNi43NSIgeTI9IjAuNzUiLz48bGluZSBjbGFzcz0iYTc0YTE5NTgtODgzNC00MDk2LWI3MTUtZWZlM2Y2NjczMmVjIiB4MT0iMC43NSIgeTE9IjAuNzUiIHgyPSIxNi43NSIgeTI9IjE2Ljc1Ii8+PC9nPjwvZz48L3N2Zz4=");
  background-repeat: no-repeat;
  background-color: transparent;
  cursor: pointer;
}
@media screen and (max-width: 767px) {
  .modal-wrapper .modal-container .modal-header button.close {
    right: 12px;
    top: 12px;
    width: 18px;
    height: 18px;
  }
}
.modal-wrapper .modal-container .modal-body {
  width: 100%;
  margin: 0;
  padding-bottom: 50px;
  max-height: 70vh;
  overflow-y: auto;
  overflow-x: hidden;
}
@media screen and (max-width: 767px) {
  .modal-wrapper .modal-container .modal-body {
    max-height: initial;
    margin: 0;
    padding-bottom: 20px;
  }
}
.modal-wrapper .modal-container .modal-body::-webkit-scrollbar {
  width: 2px;
}
.modal-wrapper .modal-container .modal-body::-webkit-scrollbar-thumb {
  background: #aaa;
}
.modal-wrapper .modal-container .modal-default-button {
  float: right;
}

.modal-enter-from,
.modal-leave-to {
  opacity: 0;
}

.modal-enter-active .modal-wrapper,
.modal-leave-active .modal-wrapper {
  transform: translateY(-10%);
}

/* ========== Color Variables ========== */
/* ========== Breakpoint Variables ========== */
/* ========== Media Query Mixins ========== */
/* ========== Global Styles ========== */
* {
  box-sizing: border-box;
  border: none;
  letter-spacing: 0;
}

u {
  text-decoration: underline;
  text-underline-offset: 0.2rem;
}

img {
  margin: 0 auto;
}

.flex {
  display: flex;
}

html {
  height: 100%;
  box-sizing: border-box;
}

body {
  padding-top: env(safe-area-inset-top);
  padding-bottom: env(safe-area-inset-bottom);
  padding-left: env(safe-area-inset-left);
  padding-right: env(safe-area-inset-right);
  background: #fff;
}

header {
  padding-top: env(safe-area-inset-top);
}

.mainBtn {
  padding-bottom: env(safe-area-inset-bottom);
}

/* ========== Body & Utility Classes ========== */
body {
  margin: 0;
  padding: 0;
  font-size: 16px;
  line-height: 1.4;
  width: 100vw;
  overflow-x: hidden;
  font-family: "Noto Sans TC", "微軟正黑體", "MS UI Gothic", Arial, Helvetica, sans-serif;
  color: #001854;
}
@media screen and (max-width: 575px) {
  body {
    font-size: 15px;
  }
}
body b,
body .bold {
  font-weight: bold;
}
body .blue {
  color: #0953ad;
}
body .blue-shine {
  color: #1052f9;
}
body .purple {
  color: #ee8dff;
}
body .yellow {
  color: #ffe000;
}
body .info {
  text-align: justify;
  line-height: 1.3;
  color: #233559;
  font-size: 13px;
}
body .info span {
  font-size: 14px;
}
body .f15 {
  font-size: 15px;
}
body .center {
  text-align: center;
}
body article .img img.img-mob {
  width: 100%;
  filter: drop-shadow(2px 4px 6px #001854);
}
@media (min-width: 640px) {
  body article .img img.img-mob {
    display: none;
  }
}
body article .img img.img-desktop {
  display: none;
}
@media (min-width: 640px) {
  body article .img img.img-desktop {
    display: block;
  }
}
body section .img img.img-mob {
  width: 100%;
  max-width: 320px;
}
@media (min-width: 1025px) {
  body section .img img.img-mob {
    display: none;
  }
}
body section .img img.img-desktop {
  display: none;
}
@media (min-width: 1025px) {
  body section .img img.img-desktop {
    display: block;
  }
}
body section .notice {
  margin-top: 60px;
  color: #233559;
  line-height: 1.4;
  text-align: left;
  font-size: 13px;
  text-align: justify;
}
@media screen and (max-width: 992px) {
  body section .notice {
    margin-top: 20px;
  }
}
body section .notice b {
  font-size: 14px;
}
body section .notice span:not(.blue) {
  color: #3f5576;
}
body .for-pc {
  display: none !important;
}
@media (min-width: 1280px) {
  body .for-pc {
    display: block !important;
  }
}
body .for-mb {
  display: block !important;
}
@media (min-width: 1280px) {
  body .for-mb {
    display: none !important;
  }
}

/* ========== Container Utilities ========== */
.container-lg {
  width: 95%;
  margin: 0 auto;
  max-width: 1440px;
}
@media (min-width: 1280px) {
  .container-lg {
    width: 100%;
    padding: 0 20px;
  }
}
.container-md {
  width: 94%;
  margin: 0 auto;
  max-width: 1200px;
}
@media (min-width: 1280px) {
  .container-md {
    width: 100%;
  }
}
.container-sm {
  width: 85%;
  margin: 0 auto;
  max-width: 1000px;
}
@media (min-width: 1280px) {
  .container-sm {
    width: 100%;
  }
}

/* ========== Header & Navigation ========== */
header {
  display: flex;
  justify-content: space-between;
  padding: 0 29px 0;
}
@media screen and (min-width: 1024px) and (orientation: landscape) {
  header {
    padding: 0 0 0 20px;
  }
}
header.header-top {
  background: transparent;
  box-shadow: none;
}
header.header-top .menu-btn span {
  background: #fff;
}
header.header-top .menu-list ul li:not(:first-child)::before {
  background: #fff;
}
header.header-top .menu-list ul li a {
  color: #fff;
}
@media screen and (min-width: 1025px) {
  header.header-top .menu-list ul li a {
    transition: all 0.3s ease-in-out;
  }
  header.header-top .menu-list ul li a:hover {
    color: #ffe000;
  }
}
header .menu-btn {
  width: 25px;
  position: absolute;
  top: 8px;
  right: 20px;
  z-index: 11;
}
@media (min-width: 768px) {
  header .menu-btn {
    display: none;
  }
}
header .menu-btn span {
  display: block;
  margin: 7px 0;
  width: 100%;
  height: 2px;
  background: #0953ad;
  transition: all 0.3s ease-in-out;
}
header .menu-btn.open {
  top: 13px;
}
header .menu-btn.open span {
  background: #fff;
}
header .menu-btn.open span:first-child {
  transform: rotate(45deg) translate(4px, 3px);
}
header .menu-btn.open span:nth-child(2) {
  display: none;
}
header .menu-btn.open span:last-child {
  transform: rotate(-45deg) translate(3px, -3px);
}
header .menu-list {
  position: fixed;
  display: flex;
  align-items: center;
  justify-content: center;
  top: 0;
  left: 0;
  width: 100%;
  height: 100dvh;
  background: #002bb5;
  z-index: 10;
}
@media (min-width: 768px) {
  header .menu-list {
    position: relative;
    display: flex !important;
    align-items: center;
    width: auto;
    height: auto;
    background: transparent;
    padding-top: 0;
  }
}
header .menu-list ul {
  position: relative;
}
@media (min-width: 768px) {
  header .menu-list ul {
    display: inline-flex;
    align-items: center;
  }
}
header .menu-list ul li {
  cursor: pointer;
  padding: 0 30px;
  transition: all 0.3s ease-in-out;
  text-align: center;
  margin: 30px auto;
}
@media (min-width: 768px) {
  header .menu-list ul li {
    margin: 0;
  }
}
header .menu-list ul li a {
  display: inline-flex;
  justify-content: center;
  color: #fff;
}
@media (min-width: 768px) {
  header .menu-list ul li a {
    color: #0953ad;
  }
}
@media (min-width: 768px) {
  header .menu-list ul li:not(:first-child) {
    position: relative;
  }
  header .menu-list ul li:not(:first-child)::before {
    content: "";
    width: 1px;
    height: 15px;
    background: #0953ad;
    display: block;
    position: absolute;
    top: 50%;
    transform: translateY(-50%);
    left: 0;
  }
}
header .menu-list .socialmedia {
  position: absolute;
  bottom: 10dvh;
  left: 0;
  width: 100%;
}
header .menu-list .socialmedia ol {
  display: flex;
  justify-content: center;
  -moz-column-gap: 20px;
       column-gap: 20px;
}
header .menu-list .socialmedia img {
  width: 22px;
  height: 22px;
}
header a {
  display: inline-flex;
}

.background {
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  z-index: -2;
  background: url(../img/bg-kv-mob.png), #030d31;
  background-size: cover;
  background-position: left bottom;
}
@media (min-width: 768px) {
  .background {
    background: url(../img/bg-kv.jpg) no-repeat;
    background-size: cover;
    background-position: center;
  }
}
@media (min-width: 1025px) {
  .background {
    background: url(../img/bg-kv.jpg) no-repeat;
    background-size: cover;
    background-position: center;
  }
}

article.main {
  position: relative;
  width: 100vw;
  padding-top: 72px;
  height: 100dvh;
  overflow: hidden;
  display: flex;
  flex-direction: column;
}
@media screen and (max-width: 991px) {
  article.main {
    padding-top: 50px;
  }
}
@media (min-width: 768px) {
  article.main {
    max-height: 100dvh;
  }
}
article.main .content {
  position: relative;
  flex: 1;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  gap: 0;
}
@media (min-width: 640px) {
  article.main .content {
    width: 100%;
  }
}
@media (min-width: 1025px) {
  article.main .content {
    display: block;
    flex: none;
    height: calc(100dvh - 72px - 100px);
  }
}
article.main .content img {
  width: 100%;
}
article.main .content .title {
  position: relative;
  left: auto;
  bottom: auto;
  transform: none;
  width: 85vw;
  max-width: 400px;
  z-index: 1;
}
@media screen and (orientation: portrait) and (max-height: 680px) {
  article.main .content .title {
    width: 75vw;
    max-width: 320px;
  }
}
@media screen and (orientation: portrait) and (min-width: 768px) and (max-width: 1024px) {
  article.main .content .title {
    width: 75vw;
    max-width: 320px;
  }
}
@media (min-width: 768px) {
  article.main .content .title {
    width: 80vw;
    max-width: 600px;
  }
}
@media screen and (orientation: portrait) and (min-width: 768px) and (max-width: 1024px) {
  article.main .content .title {
    width: 65vw;
    max-width: 40dvh;
  }
}
@media screen and (orientation: portrait) and (max-aspect-ratio: 3/4) and (min-width: 540px) and (max-width: 991px) {
  article.main .content .title {
    width: 65vw;
    max-width: 40dvh;
  }
}
@media screen and (min-width: 1024px) and (orientation: landscape) {
  article.main .content .title {
    position: absolute;
    left: 50%;
    transform: translateX(2%);
    top: 20dvh;
    bottom: auto;
    width: 46vw;
    max-width: unset;
    margin-top: 0;
  }
}
@media (min-width: 1025px) {
  article.main .content .title {
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-10%, -60%);
    bottom: auto;
    width: 40vw;
    max-width: 659px;
    min-width: 460px;
    margin-top: 0;
  }
}
article.main .content .bull {
  position: relative;
  left: auto;
  bottom: auto;
  transform: none;
  width: 90vw;
  max-width: 400px;
  order: -1;
}
@media screen and (orientation: portrait) and (max-height: 680px) {
  article.main .content .bull {
    width: 80vw;
    max-width: 360px;
  }
}
@media screen and (orientation: portrait) and (min-width: 768px) and (max-width: 1024px) {
  article.main .content .bull {
    width: 80vw;
    max-width: 360px;
  }
}
@media (min-width: 768px) {
  article.main .content .bull {
    width: 95vw;
    max-width: 700px;
  }
}
@media screen and (orientation: portrait) and (min-width: 768px) and (max-width: 1024px) {
  article.main .content .bull {
    width: 78vw;
    max-width: 50dvh;
  }
}
@media screen and (orientation: portrait) and (max-aspect-ratio: 3/4) and (min-width: 540px) and (max-width: 991px) {
  article.main .content .bull {
    width: 78vw;
    max-width: 50dvh;
  }
}
@media screen and (min-width: 1024px) and (orientation: landscape) {
  article.main .content .bull {
    position: absolute;
    left: 50%;
    transform: translateX(-106%);
    top: 6dvh;
    bottom: auto;
    width: 52vw;
    max-width: unset;
    order: 0;
  }
}
@media (min-width: 1025px) {
  article.main .content .bull {
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-111%, -51%);
    bottom: auto;
    width: 48vw;
    max-width: 669px;
    order: 0;
  }
}
article.main .mainBtn {
  position: relative;
  margin: 2vw auto;
  left: auto;
  transform: none;
  z-index: 999;
  color: #fff;
  padding: 16px;
  text-align: center;
  background: linear-gradient(to right, transparent 0%, rgba(0, 143, 190, 0.8) 15%, rgb(0, 143, 190) 40%, rgb(0, 143, 190) 50%, rgba(0, 143, 190, 0.8) 85%, transparent 100%);
  text-shadow: 0 0 #00112b;
  font-weight: 700;
}
@media (min-width: 1025px) {
  article.main .mainBtn {
    position: absolute;
    margin-bottom: 0;
    bottom: 65px;
    left: 50%;
    transform: translateX(-50%);
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 20px;
    background: linear-gradient(to right, transparent 10%, rgba(0, 143, 190, 0.8) 20%, rgb(0, 143, 190) 45%, rgb(0, 143, 190) 55%, rgba(0, 143, 190, 0.8) 80%, transparent 90%);
  }
}
article.main .mainBtn p {
  padding-bottom: 12px;
}
@media (min-width: 1025px) {
  article.main .mainBtn p {
    margin-right: 16px;
    padding-bottom: 0;
  }
}
article.main .mainBtn .link {
  background: #002bb5;
  color: #fff;
  width: 40%;
  height: 36px;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  border-radius: 600px;
  font-weight: bold;
  margin: 0 8px;
  cursor: pointer;
}
@media (min-width: 1025px) {
  article.main .mainBtn .link {
    width: 200px;
    height: 50px;
    margin: 0;
  }
}
article.main .mainBtn .link.allot {
  background: #ffda00;
  color: #001854;
}
@media screen and (min-width: 1025px) {
  article.main .mainBtn .link {
    transition: all 0.3s ease-in-out;
  }
  article.main .mainBtn .link:hover {
    transform: translateY(-3px);
  }
}

/* ========== Animations ========== */
@keyframes glasses {
  0% {
    opacity: 0;
  }
  50% {
    opacity: 1;
  }
  100% {
    opacity: 0;
  }
}
/* ========== Main Article Section ========== */
/* ========== Sections ========== */
section {
  padding: 40px 0;
  text-align: center;
  /*基金投資配置、基金小檔案*/
}
@media (min-width: 1025px) {
  section.decoration {
    position: relative;
  }
  section.decoration::before {
    content: "";
    display: block;
    position: absolute;
    bottom: calc(100% - 1px);
    right: 0;
    width: 50%;
    height: 40px;
    background: inherit;
    clip-path: polygon(0 100%, 40px 0, 100% 0, 100% 100%);
  }
}
@media (min-width: 1025px) {
  section {
    padding: 60px 0 120px;
  }
}
section .text-right {
  text-align: right;
}
section .text-left {
  text-align: left;
}
section h2.title {
  text-align: center;
  font-size: 26px;
  line-height: 1.5;
  font-weight: bold;
  color: #fff;
  padding: 20px 0;
}
@media (min-width: 768px) {
  section h2.title {
    font-size: 36px;
  }
}
@media (min-width: 1025px) {
  section h2.title {
    font-size: 48px;
    padding: 40px 0 60px;
  }
}
section h2.title span {
  display: block;
}
section h2.title br {
  display: none;
}
@media (min-width: 768px) {
  section h2.title br {
    display: block;
  }
}
@media (min-width: 1025px) {
  section h2.title br {
    display: none;
  }
}
section .content {
  padding: 20px 0;
}
@media (min-width: 1025px) {
  section .content {
    width: 1000px;
    margin: 0 auto;
  }
}
section .content .img img {
  max-width: 100%;
}
section .box .cards {
  display: flex;
  flex-direction: column;
  align-items: center;
}
@media (min-width: 1025px) {
  section .box .cards {
    flex-direction: row;
    justify-content: space-around;
    align-items: flex-start;
  }
}
section .box .cards .card {
  width: 100%;
}
section .box .cards .card .title {
  font-size: 18px;
  color: #0953ad;
  font-weight: bold;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 10px;
  margin: 20px auto;
}
@media (min-width: 768px) {
  section .box .cards .card .title {
    font-size: 20px;
    margin: 20px auto 40px;
  }
}
section .box .cards .card .title img {
  width: 100px;
  margin: 0;
}
section .box .cards .card .title p {
  font-size: 18px;
  color: #0953ad;
  font-weight: normal;
  text-align: left;
  line-height: 1.5;
}
section .box .cards .card .title span {
  font-size: 36px;
}
section .box .cards .card .img img {
  width: 100%;
  max-width: 320px;
}
@media (min-width: 1025px) {
  section .box .cards .card .img img {
    max-width: -moz-max-content;
    max-width: max-content;
    max-width: 500px;
  }
}
section.usTech {
  background: url(../img/bg-section1.jpg);
  background-repeat: no-repeat;
  background-position: center bottom;
  background-size: cover;
}
@media screen and (min-width: 1024px) and (orientation: landscape) {
  section.usTech .box {
    width: 100%;
  }
}
section.usTech .box .cards {
  align-items: center;
  margin-bottom: 0;
}
@media (min-width: 1025px) {
  section.usTech .box .cards {
    align-items: stretch;
  }
}
section.usTech .box .cards .card {
  flex: 1;
  position: relative;
  text-align: left;
}
section.usTech .box .cards .card .contBox .box {
  display: flex;
  align-items: center;
  flex-direction: column-reverse;
  margin: 0 auto 60px;
}
@media (min-width: 1280px) {
  section.usTech .box .cards .card .contBox .box {
    flex-direction: row;
    margin: 20px auto 60px;
  }
}
section.usTech .box .cards .card .contBox .box .img {
  flex: 5;
}
section.usTech .box .cards .card .contBox .box .desc {
  flex: 3;
  color: #001854;
  padding: 0 0 30px;
  font-size: 18px;
}
@media (min-width: 1280px) {
  section.usTech .box .cards .card .contBox .box .desc {
    font-size: 16px;
    padding: 0 50px;
  }
}
section.usTech .box .cards .card .contBox .swiper-pagination {
  position: relative;
  display: flex;
  gap: 0;
  bottom: unset;
  top: unset;
}
section.usTech .box .cards .card .contBox .swiper-pagination .swiper-pagination-bullet {
  flex: 1;
  border-radius: 0;
  padding: 12px 0 0;
  height: auto;
  position: relative;
  margin: 0;
  font-size: 18px;
  color: #fff;
  background: #c9c9c9;
  opacity: 1;
  margin: 0 -1px;
}
@media (min-width: 1280px) {
  section.usTech .box .cards .card .contBox .swiper-pagination .swiper-pagination-bullet {
    clip-path: polygon(0 0, calc(100% - 25px) 0, 100% 25px, 100% 100%, 0 100%, 0 calc(100% - 25px));
  }
}
section.usTech .box .cards .card .contBox .swiper-pagination .swiper-pagination-bullet b {
  display: inline-block;
  padding: 4px 8px 10px;
  border-bottom: 2px solid transparent;
  font-size: 20px;
}
section.usTech .box .cards .card .contBox .swiper-pagination .swiper-pagination-bullet-active {
  background: #fff;
  color: #0953ad;
  z-index: 1;
  margin: 0;
}
section.usTech .box .cards .card .contBox .swiper-pagination .swiper-pagination-bullet-active b {
  border-bottom: 2px solid #0953ad;
}
@media (min-width: 1280px) {
  section.usTech .box .cards .card .contBox .swiper-pagination .swiper-pagination-bullet-active + .swiper-pagination-bullet::after {
    content: "";
    display: block;
    width: 25px;
    height: 25px;
    bottom: 0;
    left: 0;
    position: absolute;
    background: #fff;
    clip-path: polygon(0 0, 100% 100%, 0 100%);
    border-bottom: 1px solid #fff;
  }
}
section.usTech .box .cards .card .contBox .swiper-slide {
  padding: 20px;
  background: #fff;
  z-index: 0;
  transform: translateY(-1px);
}
@media (min-width: 1025px) {
  section.usTech .box .cards .card .contBox .swiper-slide {
    padding: 48px;
  }
}
section.usTech .box .cards .card .contBox .swiper-slide h3 {
  margin-bottom: 10px;
}
section.usTech .box .cards .card .contBox .swiper-slide .img {
  text-align: center;
}
section.usTech .box .cards .card .contBox .swiper-btn-container .swiper-button-prev,
section.usTech .box .cards .card .contBox .swiper-btn-container .swiper-button-next {
  display: none;
}
@media (min-width: 1025px) {
  section.usTech .box .cards .card .contBox .swiper-btn-container .swiper-button-prev,
  section.usTech .box .cards .card .contBox .swiper-btn-container .swiper-button-next {
    display: block;
    height: 50px;
    background: #002bb5;
    width: 20px;
    margin-top: 0;
    clip-path: polygon(0% 0%, 0% 100%, 100% 50%);
  }
}
section.usTech .box .cards .card .contBox .swiper-btn-container .swiper-button-prev::after,
section.usTech .box .cards .card .contBox .swiper-btn-container .swiper-button-next::after {
  display: none;
}
section.usTech .box .cards .card .contBox .swiper-btn-container .swiper-button-prev.swiper-button-prev,
section.usTech .box .cards .card .contBox .swiper-btn-container .swiper-button-next.swiper-button-prev {
  clip-path: polygon(100% 0%, 100% 100%, 0% 50%);
}
section.usTech .box .cards .card .contBox .swiper-btn-container .swiper-button-prev.swiper-button-disabled,
section.usTech .box .cards .card .contBox .swiper-btn-container .swiper-button-next.swiper-button-disabled {
  background: transparent;
}
section.usTech .box .cards .card .contBox .swiper-btn-container .swiper-button-prev {
  left: 30px;
}
section.usTech .box .cards .card .contBox .swiper-btn-container .swiper-button-next {
  right: 30px;
}
section.trends {
  background: #fff;
}
section.trends h2.title {
  color: #002bb5;
}
section.trends .content p {
  text-align: left;
  margin-bottom: 40px;
  font-size: 18px;
}
@media (min-width: 1280px) {
  section.trends .content p {
    margin-bottom: 20px;
  }
}
section.alliance {
  background: url(../img/bg-section3.jpg), #012bb5;
  background-repeat: no-repeat;
  background-position: center bottom;
  background-size: cover;
}
section.alliance h2.title {
  color: #ffe000;
}
section.alliance .content {
  position: relative;
}
section.alliance .content .flex {
  position: relative;
  display: flex;
  justify-content: center;
  align-items: flex-start;
  gap: 40px;
  flex-wrap: wrap;
  flex-direction: column;
}
@media (min-width: 1025px) {
  section.alliance .content .flex {
    gap: 60px;
    flex-direction: row;
  }
}
section.alliance .content .flex::after {
  content: "";
  order: 2;
  display: flex;
  align-items: center;
  justify-content: center;
  width: 30px;
  height: 30px;
  background: url(../img/icon-cross-white.png) no-repeat center;
  background-size: contain;
  flex-shrink: 0;
  align-self: center;
}
@media (min-width: 1025px) {
  section.alliance .content .flex::after {
    width: 44px;
    height: 44px;
  }
}
section.alliance .content .card {
  flex: 1;
  margin: 0 auto;
  width: 100%;
  display: flex;
  flex-direction: column;
  align-items: center;
}
@media (min-width: 1025px) {
  section.alliance .content .card {
    flex: 0 1 45%;
    display: flex;
    justify-content: center;
    min-width: 300px;
    max-width: 400px;
  }
}
section.alliance .content .card:nth-child(1) {
  order: 1;
}
section.alliance .content .card:nth-child(2) {
  order: 3;
}
section.alliance .content .card .img {
  margin: 0 auto;
  width: 80%;
}
section.alliance .content .card ul {
  list-style: none;
  padding: 20px 0 0;
  margin: 0 auto;
}
@media (min-width: 1025px) {
  section.alliance .content .card ul {
    padding: 20px 40px;
  }
}
section.alliance .content .card ul li {
  text-align: left;
  font-size: 18px;
  margin-bottom: 24px;
  color: #fff;
  padding-left: 30px;
  background: url(../img/icon-crown.png) no-repeat left top;
  background-size: 20px 20px;
}
section.alliance .content .card ul li:last-child {
  margin-bottom: 0;
}
section.alliance .content .card ul li span {
  display: block;
  color: #8eaaef;
  font-size: 16px;
}
section.alliance .notice {
  color: #fff;
}
section.feature {
  background: #fff;
}
section.feature .title {
  color: #002bb5;
}
section.feature .title span {
  font-size: 32px;
}
@media screen and (max-width: 575px) {
  section.feature .title span {
    font-size: 20px;
  }
}
section.feature .contBox .box {
  display: flex;
  align-items: center;
  flex-direction: row;
  margin: 0 auto 60px;
  -moz-column-gap: 48px;
       column-gap: 48px;
}
@media screen and (max-width: 991px) {
  section.feature .contBox .box {
    flex-direction: column;
  }
}
section.feature .contBox .box .img-desktop {
  width: 100%;
}
section.feature .contBox .box .desc {
  flex: 3;
  color: #001854;
  padding: 30px 0;
  font-size: 18px;
}
@media (min-width: 1280px) {
  section.feature .contBox .box .desc {
    padding: 0 50px;
  }
}
section.feature .contBox .swiper-pagination {
  position: relative;
  display: flex;
  gap: 0;
  bottom: unset;
  top: unset;
}
section.feature .contBox .swiper-pagination .swiper-pagination-bullet {
  flex: 1;
  border-radius: 0;
  padding: 12px 0 0;
  height: auto;
  position: relative;
  margin: 0;
  font-size: 18px;
  background: #fff;
  color: #b7bcc4;
  opacity: 1;
  margin: 0 -1px;
}
section.feature .contBox .swiper-pagination .swiper-pagination-bullet b {
  display: inline-block;
  padding: 4px 8px 16px;
  border-bottom: 2px solid transparent;
  font-size: 20px;
}
section.feature .contBox .swiper-pagination .swiper-pagination-bullet-active {
  background: #fff;
  color: #1052f9;
  z-index: 1;
  margin: 0;
}
@media screen and (max-width: 575px) {
  section.feature .contBox .swiper-pagination .swiper-pagination-bullet-active {
    border-bottom: 2px solid #1052f9;
  }
}
section.feature .contBox .swiper-pagination .swiper-pagination-bullet-active b {
  border-bottom: 2px solid #1052f9;
}
@media screen and (max-width: 575px) {
  section.feature .contBox .swiper-pagination .swiper-pagination-bullet-active b {
    border-bottom: none;
  }
}
section.feature .contBox .swiper-slide {
  padding: 20px;
  background: #fff;
  z-index: 0;
  transform: translateY(-1px);
}
@media (min-width: 1025px) {
  section.feature .contBox .swiper-slide {
    padding: 60px 0 0px;
    min-height: 740px;
  }
}
section.feature .contBox .swiper-slide h3 {
  margin-bottom: 10px;
}
section.feature .contBox .swiper-slide .img {
  width: 100%;
}
section.feature .contBox .swiper-slide .img .flex {
  flex-direction: column;
  min-height: 450px;
}
@media screen and (max-width: 991px) {
  section.feature .contBox .swiper-slide .img .flex {
    min-height: auto;
  }
}
section.feature .contBox .swiper-slide .box {
  display: flex;
  flex-direction: row;
  -moz-column-gap: 48px;
       column-gap: 48px;
}
@media screen and (max-width: 991px) {
  section.feature .contBox .swiper-slide .box {
    flex-direction: column;
    -moz-column-gap: 0;
         column-gap: 0;
    row-gap: 48px;
  }
}
section.feature .contBox .swiper-slide .box .img {
  width: 100%;
}
section.feature .contBox .swiper-slide .box:has(.img + .img) .img {
  width: 50%;
}
@media screen and (max-width: 991px) {
  section.feature .contBox .swiper-slide .box:has(.img + .img) .img {
    width: 100%;
  }
}
section.feature .contBox .swiper-btn-container .swiper-button-prev,
section.feature .contBox .swiper-btn-container .swiper-button-next {
  display: none;
}
@media (min-width: 1025px) {
  section.feature .contBox .swiper-btn-container .swiper-button-prev,
  section.feature .contBox .swiper-btn-container .swiper-button-next {
    display: block;
    height: 50px;
    background: #002bb5;
    width: 20px;
    margin-top: 0;
    clip-path: polygon(0% 0%, 0% 100%, 100% 50%);
  }
}
section.feature .contBox .swiper-btn-container .swiper-button-prev::after,
section.feature .contBox .swiper-btn-container .swiper-button-next::after {
  display: none;
}
section.feature .contBox .swiper-btn-container .swiper-button-prev.swiper-button-prev,
section.feature .contBox .swiper-btn-container .swiper-button-next.swiper-button-prev {
  clip-path: polygon(100% 0%, 100% 100%, 0% 50%);
}
section.feature .contBox .swiper-btn-container .swiper-button-prev.swiper-button-disabled,
section.feature .contBox .swiper-btn-container .swiper-button-next.swiper-button-disabled {
  background: transparent;
}
section.feature .contBox .swiper-btn-container .swiper-button-prev {
  left: 30px;
}
section.feature .contBox .swiper-btn-container .swiper-button-next {
  right: 30px;
}
section.trend {
  background: #dfedfb;
  color: #002bb5;
}
section.trend .title {
  color: #002bb5;
}
section.trend .flex {
  display: flex;
  flex-direction: row;
  flex-wrap: wrap;
  gap: 32px;
  justify-content: center;
  /* @include xl {
    flex-direction: column;
    gap: 20px;
    align-items: stretch;
  } */
}
@media screen and (max-width: 575px) {
  section.trend .flex {
    flex-direction: column;
    align-items: stretch;
  }
}
section.trend .trend-item {
  display: flex;
  justify-content: center;
}
@media (min-width: 1025px) {
  section.trend .trend-item {
    width: auto;
  }
}
@media screen and (max-width: 575px) {
  section.trend .trend-item {
    width: 100%;
    padding: 0 8px;
  }
}
section.trend .trend-item .item {
  display: flex;
  flex-direction: row;
  align-items: center;
  width: 100%;
}
@media (min-width: 480px) {
  section.trend .trend-item .item {
    flex-direction: column;
  }
}
section.trend .trend-item .item .img-wrap {
  position: relative;
  width: 120px;
  height: 120px;
  display: flex;
  align-items: center;
  justify-content: center;
  margin-bottom: -12px;
}
@media screen and (max-width: 575px) {
  section.trend .trend-item .item .img-wrap {
    margin-bottom: 0;
    margin-right: 12px;
    flex-shrink: 0;
  }
}
@media (min-width: 1025px) {
  section.trend .trend-item .item .img-wrap {
    width: 160px;
    height: 160px;
    margin-bottom: 16px;
  }
}
section.trend .trend-item .item .img-wrap .img-circle {
  background: #97c9ff;
  border-radius: 50%;
  width: 120px;
  height: 120px;
  position: relative;
  overflow: visible;
  display: flex;
  align-items: center;
  justify-content: center;
}
@media (min-width: 1025px) {
  section.trend .trend-item .item .img-wrap .img-circle {
    width: 160px;
    height: 160px;
  }
}
section.trend .trend-item .item .img-wrap .img-circle img {
  width: 90px;
  height: 90px;
  -o-object-fit: contain;
     object-fit: contain;
  z-index: 1;
  position: relative;
  bottom: 0;
}
@media (min-width: 1025px) {
  section.trend .trend-item .item .img-wrap .img-circle img {
    bottom: 10px;
  }
}
section.trend .trend-item .item .img-wrap .img-circle .img-title {
  position: absolute;
  bottom: 0;
  left: 50%;
  transform: translateX(-50%);
  z-index: 2;
  display: flex;
  justify-content: center;
  pointer-events: none;
  width: 200px;
}
section.trend .trend-item .item .img-wrap .img-circle .img-title.for-pc {
  display: none !important;
}
@media (min-width: 1025px) {
  section.trend .trend-item .item .img-wrap .img-circle .img-title.for-pc {
    display: block !important;
  }
}
section.trend .trend-item .item .img-wrap .img-circle .img-title span {
  background: #002bb5;
  color: #ffda00;
  font-weight: bold;
  font-size: 18px;
  padding: 6px 24px;
  clip-path: polygon(12% 0, 100% 0, 88% 100%, 0 100%);
  box-shadow: 0 2px 8px rgba(0, 0, 0, 0.12);
  letter-spacing: 1px;
  display: inline-block;
  width: 175px;
  min-height: 32px;
}
section.trend .trend-item .item .text {
  width: 100%;
  text-align: center;
  display: flex;
  flex-direction: column;
  align-items: center;
  text-align: center;
  align-items: center;
  padding-left: 0;
}
@media screen and (max-width: 991px) {
  section.trend .trend-item .item .text {
    /* text-align: left;
    align-items: flex-start; */
    padding-left: 0;
    min-width: 0;
  }
}
section.trend .trend-item .item .text .img-title {
  margin-bottom: 8px;
}
section.trend .trend-item .item .text .img-title.for-mb {
  display: block !important;
}
@media (min-width: 1025px) {
  section.trend .trend-item .item .text .img-title.for-mb {
    display: none !important;
  }
}
section.trend .trend-item .item .text .img-title span {
  background: #002bb5;
  color: #ffda00;
  font-weight: bold;
  font-size: 18px;
  padding: 6px 24px;
  clip-path: polygon(12% 0, 100% 0, 88% 100%, 0 100%);
  box-shadow: 0 2px 8px rgba(0, 0, 0, 0.12);
  letter-spacing: 1px;
  display: inline-block;
  width: 175px;
  min-height: 32px;
}
section.trend .trend-item .item .text p {
  font-size: 16px;
  color: #002bb5;
  font-weight: bold;
  margin-bottom: 6px;
}
section.trend .trend-item .item .text p:first-child {
  margin-bottom: 6px;
}
section.trend .trend-item .item .text span {
  color: #233559;
  font-size: 15px;
}
section.section-info {
  position: relative;
  background: #fff;
}
section.section-info .title {
  color: #002bb5;
}
section.section-info h2 {
  color: #0953ad;
}
section.section-info h2 span {
  display: inline;
  font-size: 24px;
}
@media screen and (max-width: 575px) {
  section.section-info h2 span {
    font-size: 20px;
  }
}
section.section-info .flex {
  display: flex;
}
section.section-info .fund-file {
  padding: 0;
  text-align: center;
  margin: 0 auto 20px;
}
@media (min-width: 768px) {
  section.section-info .fund-file {
    width: 94%;
    margin: 0 auto 20px;
  }
}
section.section-info .fund-file .content {
  margin-top: 0;
  padding-top: 0;
}
section.section-info .fund-file .content h2 {
  margin-top: 0;
}
section.section-info .fund-file .detail {
  display: flex;
  width: 100%;
}
@media screen and (max-width: 992px) {
  section.section-info .fund-file .detail {
    display: block;
  }
}
section.section-info .fund-file .detail .list.list-top {
  width: 100%;
  background: #e1edff;
  color: #001854;
  padding: 20px 0;
  justify-content: center;
  align-items: center;
  gap: 8px;
}
@media (min-width: 768px) {
  section.section-info .fund-file .detail .list.list-top {
    gap: 40px;
    display: flex;
  }
}
section.section-info .fund-file .detail .list.list-top .flex {
  align-items: center;
  border-bottom: none;
  display: block;
  text-align: center;
}
@media (min-width: 768px) {
  section.section-info .fund-file .detail .list.list-top .flex {
    margin-bottom: 0;
    gap: 50px;
    display: flex;
  }
}
section.section-info .fund-file .detail .list.list-top span {
  display: none;
  background: transparent;
}
section.section-info .fund-file .detail .list.list-top span.item {
  color: #233559;
  background: transparent;
  display: inline-block;
  margin-bottom: 8px;
  display: block;
}
@media (min-width: 768px) {
  section.section-info .fund-file .detail .list.list-top span.item {
    display: flex;
    align-items: center;
    margin-bottom: 0;
  }
}
section.section-info .fund-file .detail .list.list-top span i {
  display: none;
}
@media (min-width: 768px) {
  section.section-info .fund-file .detail .list.list-top span i {
    display: inline-flex;
    margin-left: 20px;
    width: 60px;
    height: 1px;
    background-color: #091d3d;
  }
}
section.section-info .fund-file .detail .list.list-top .links {
  display: inline-block;
}
section.section-info .fund-file .detail .list.list-top .links a {
  color: #233559;
  padding: 4px 8px;
  display: inline-block;
}
@media (min-width: 768px) {
  section.section-info .fund-file .detail .list.list-top .links a {
    padding: 4px 12px;
  }
}
section.section-info .fund-file .detail .list.list-top .links a img {
  width: 12px;
  margin-right: 4px;
}
@media (min-width: 768px) {
  section.section-info .fund-file .detail .list.list-top .links a img {
    width: 18px;
    margin-right: 12px;
  }
}
section.section-info .fund-file .detail .list {
  flex: 1;
  display: flex;
  flex-wrap: wrap;
}
section.section-info .fund-file .detail .list p {
  display: flex;
  align-items: center;
  margin-bottom: 1px;
  color: #fff;
  font-size: 16px;
  border-bottom: 1px solid #0055dd;
  padding: 0;
  width: 100%;
}
@media (min-width: 1025px) {
  section.section-info .fund-file .detail .list p {
    width: 50%;
  }
}
section.section-info .fund-file .detail .list p span.item {
  height: 100%;
  background: #002bb5;
  display: flex;
  align-items: center;
  justify-content: center;
  flex: 1;
}
@media (min-width: 640px) {
  section.section-info .fund-file .detail .list p span.item {
    min-width: 200px;
  }
}
section.section-info .fund-file .detail .list p span.val {
  padding-left: 20px;
  width: 100%;
  text-align: left;
  vertical-align: middle;
  padding: 16px 24px;
  flex: 2;
  color: #233559;
}
section.section-info .fund-file .fundInfo {
  align-items: stretch;
  gap: 0;
}
@media screen and (max-width: 991px) {
  section.section-info .fund-file .fundInfo {
    flex-direction: column;
  }
}
@media (min-width: 768px) {
  section.section-info .fund-file .fundInfo {
    gap: 40px;
  }
}
section.section-info .fund-file .fundInfo .proportion {
  position: relative;
  flex: 1;
  display: flex;
  justify-content: space-between;
  width: 50%;
  /* p.title {
    font-weight: bold;
    font-size: 18px;
    line-height: 26px;
    color: $blue-dark;
    background: $blue-light;
    padding: 8px 0;
    text-align: center;
    margin: 0 0 12px;
    width: 100%;

    @include md {
      margin: 0 0 50px;
      line-height: 28px;
      font-size: 20px;
    }
  } */
}
@media screen and (max-width: 991px) {
  section.section-info .fund-file .fundInfo .proportion {
    flex-direction: column;
    width: 100%;
  }
}
section.section-info .fund-file .fundInfo .proportion .info-detail {
  margin: 0;
  padding: 10px 0;
  display: flex;
  flex-wrap: wrap;
  flex-direction: column;
  width: 100%;
}
section.section-info .fund-file .fundInfo .proportion .info-detail .title {
  font-weight: bold;
  font-size: 18px;
  line-height: 26px;
  color: #001854;
  background: #e1edff;
  padding: 8px 0;
  text-align: center;
  margin: 0 0 12px;
  width: 100%;
}
@media (min-width: 768px) {
  section.section-info .fund-file .fundInfo .proportion .info-detail {
    padding: 0 0 30px;
  }
}
@media screen and (max-width: 575px) {
  section.section-info .fund-file .fundInfo .proportion .info-detail {
    flex-direction: column;
    margin: 0;
  }
}
section.section-info .fund-file .fundInfo .proportion .info-detail .img {
  margin: 0 auto;
  margin-top: 30px;
}
@media screen and (max-width: 575px) {
  section.section-info .fund-file .fundInfo .proportion .info-detail .img {
    margin: 20px 0;
  }
}
section.section-info .fund-file .fundInfo .proportion .info-detail .chart-list {
  width: 100%;
  flex: 2;
}
section.section-info .fund-file .fundInfo .proportion .info-detail .chart-list .data {
  display: flex;
  align-items: center;
  position: relative;
  padding: 6px;
  border-bottom: 1px solid #cccccc;
  font-size: 16px;
}
@media (min-width: 768px) {
  section.section-info .fund-file .fundInfo .proportion .info-detail .chart-list .data {
    padding: 8px;
  }
}
section.section-info .fund-file .fundInfo .proportion .info-detail .chart-list .data .stock {
  display: flex;
  width: 90%;
}
@media screen and (max-width: 575px) {
  section.section-info .fund-file .fundInfo .proportion .info-detail .chart-list .data .stock {
    flex-direction: column;
  }
}
section.section-info .fund-file .fundInfo .proportion .info-detail .chart-list .data .stock span:first-child {
  text-align: left;
  width: 220px;
}
@media screen and (max-width: 575px) {
  section.section-info .fund-file .fundInfo .proportion .info-detail .chart-list .data .stock span {
    width: auto;
    text-align: left;
  }
}
section.section-info .fund-file .fundInfo .proportion .info-detail .chart-list .data span {
  /* &:first-child {
    text-align: left;
    width: 220px;
  }
  &:nth-child(2) {
    text-align: left;
    flex-grow: 1;
  } */
  /* &:last-child {
    text-align: right;
    width: 60px;
  } */
}
section.warn {
  padding: 50px 0;
  background: #dfedfb;
  color: #0e2a55;
  line-height: 22px;
  text-align: left;
}
@media screen and (max-width: 600px) {
  section.warn {
    padding: 50px 0;
    line-height: 20px;
  }
}
section.warn .info {
  padding: 20px 0;
  color: inherit;
}
@media screen and (max-width: 600px) {
  section.warn .info {
    padding: 5px 0;
    text-align: left;
    letter-spacing: 0.01px;
  }
}
section.warn .content {
  text-align: justify;
  padding: 0;
  font-weight: bold;
  margin: 0;
  width: 100%;
}
section.warn .content span {
  color: #0953ad;
}
section.warn .content .red {
  color: #a3001b;
}
section.warn .end {
  padding-top: 40px;
  line-height: 28px;
}
@media screen and (max-width: 992px) {
  section.warn .end {
    padding-top: 10px;
    line-height: 22px;
  }
}
section.footer-banner {
  margin-bottom: 80px;
}
@media screen and (max-width: 575px) {
  section.footer-banner {
    margin-bottom: 40px;
  }
}
section.footer-banner .footer-wrp {
  display: flex;
  margin: 80px auto 40px;
  width: 900px;
  gap: 30px;
  color: #000;
  line-height: 1.5;
}
@media screen and (max-width: 992px) {
  section.footer-banner .footer-wrp {
    margin: 40px auto;
    width: 96%;
    flex-wrap: wrap;
    gap: 0;
  }
}
section.footer-banner .footer-wrp .footer-img {
  flex: 1;
}
@media screen and (max-width: 992px) {
  section.footer-banner .footer-wrp .footer-img {
    flex: auto;
  }
}
section.footer-banner .footer-wrp .footer-img img {
  width: 100%;
}
section.footer-banner .footer-wrp .footer-desc {
  flex: 1;
  display: flex;
  flex-wrap: wrap;
  align-content: space-around;
  font-size: 20px;
  font-weight: 700;
}
@media screen and (max-width: 992px) {
  section.footer-banner .footer-wrp .footer-desc {
    flex: auto;
    justify-content: center;
    text-align: center;
  }
}
section.footer-banner .footer-wrp .footer-desc small {
  font-size: 14px;
}
section.footer-banner .footer-wrp .footer-desc .footer--btn {
  font-size: 18px;
  margin-top: 5px;
}
@media screen and (max-width: 992px) {
  section.footer-banner .footer-wrp .footer-desc .footer--btn {
    margin-top: 15px;
  }
}
section.footer-banner .footer-wrp .footer-desc .footer--btn a {
  background: #0953ad;
  display: block;
  padding: 5px 30px;
  color: white;
  border-radius: 8px;
  align-self: baseline;
  transition: background 0.2s ease;
}
section.footer-banner .footer-wrp .footer-desc .footer--btn a:hover {
  background: #002bb5;
}
section.footer-banner .ps {
  text-align: center;
  line-height: 1.2;
}

/* ========== Modal Styles ========== */
.modal .info-wrp {
  width: 100%;
}
.modal .info-wrp h3 {
  position: relative;
  text-align: left;
  font-size: 20px;
  line-height: 2;
  margin-bottom: 20px;
}
.modal .info-wrp .data-date {
  width: 80%;
  margin: 0 auto;
  padding: 20px 0;
  text-align: right;
  font-size: 14px;
  color: #3f5576;
}
.modal-chart .chart-wrp {
  width: 80%;
  margin: 0 auto;
  color: #091d3d;
}
@media (min-width: 768px) {
  .modal-chart .chart-wrp {
    display: flex;
    flex-direction: row;
    gap: 40px;
  }
}
.modal-chart .chart-wrp .chart-img {
  width: 60%;
  margin: 0 auto;
  max-width: 300px;
}
@media (min-width: 768px) {
  .modal-chart .chart-wrp .chart-img {
    margin-top: 30px;
    flex: 3;
    width: -moz-fit-content;
    width: fit-content;
    max-width: 300px;
  }
}
.modal-chart .chart-wrp .chart-list {
  padding: 10px 0;
  border-bottom: 1px solid #bfc3c9;
}
@media (min-width: 768px) {
  .modal-chart .chart-wrp .chart-list {
    flex: 4;
  }
}
.modal-chart .chart-wrp .chart-list .row-wrp {
  display: grid;
  grid-template-columns: 1fr;
}
.modal-chart .chart-wrp .chart-list .row {
  padding: 10px 0;
  display: grid;
  grid-template-columns: 20px 2fr 1fr;
  border: none;
  align-items: baseline;
  font-size: 16px;
}
.modal-chart .chart-wrp .chart-list .row .color {
  width: 12px;
  height: 12px;
}
.modal-chart .chart-wrp .chart-list .row .ratio {
  text-align: right;
}

/* ========== Lightbox & Transitions ========== */
.lightbox {
  position: fixed;
  top: 0;
  left: 0;
  width: 100vw;
  height: 100dvh;
  z-index: 10000;
  background: rgba(0, 0, 0, 0.6);
  display: flex;
  align-items: center;
  justify-content: center;
}
@media screen and (min-width: 1024px) and (orientation: landscape) {
  .lightbox {
    padding: 0;
  }
}
.lightbox.show {
  display: flex;
}
.lightbox.sales .lbox {
  padding: 24px 16px;
}
@media (min-width: 1025px) {
  .lightbox.sales .lbox {
    padding: 40px;
  }
}
.lightbox.sales .lbox .all-content {
  height: 100%;
}
.lightbox .lbox {
  background: #fff;
  padding: 0 16px 16px;
  position: relative;
  color: #002bb5;
  height: 60dvh;
}
@media (min-width: 480px) {
  .lightbox .lbox {
    height: auto;
  }
}
@media (min-width: 1025px) {
  .lightbox .lbox {
    padding: 0 40px 40px;
  }
}
.lightbox .lbox .tabs {
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 18px;
}
@media (min-width: 1025px) {
  .lightbox .lbox .tabs {
    gap: 300px;
    font-size: 22px;
  }
}
.lightbox .lbox .tabs .tab {
  cursor: pointer;
  color: #999;
  padding: 10px;
  width: 200px;
  position: relative;
}
@media (min-width: 1025px) {
  .lightbox .lbox .tabs .tab {
    padding: 30px;
  }
}
.lightbox .lbox .tabs .tab::after {
  position: absolute;
  top: 0;
  left: 50%;
  transform: translateX(-50%);
  content: "";
  display: block;
  width: 0;
  height: 3px;
  background: #999;
  transition: all 0.3s ease-in-out;
}
@media screen and (min-width: 1025px) {
  .lightbox .lbox .tabs .tab:hover::after {
    width: 100%;
  }
}
.lightbox .lbox .tabs .tab.active {
  color: #0953ad;
  font-weight: bold;
}
.lightbox .lbox .tabs .tab.active::after {
  background: #0953ad;
  width: 100%;
}
.lightbox .lbox .all-content {
  height: calc(100% - 50px);
  overflow: auto;
  width: 100%;
}
@media (min-width: 480px) {
  .lightbox .lbox .all-content {
    height: auto;
  }
}
.lightbox .lbox .all-content::-webkit-scrollbar {
  width: 2px;
}
.lightbox .lbox .all-content::-webkit-scrollbar-thumb {
  background: #aaa;
}
.lightbox .lbox .all-content .more {
  background: #dfedfb;
  padding: 12px;
  margin: 16px auto;
  text-align: center;
}
@media (min-width: 768px) {
  .lightbox .lbox .all-content .more {
    padding: 24px;
    margin: 40px auto 20px;
  }
}
@media (min-width: 768px) {
  .lightbox .lbox .all-content .more br {
    display: none;
  }
}
@media (min-width: 1025px) {
  .lightbox .lbox .content {
    padding: 0 16px;
  }
}
.lightbox .lbox .content p.title {
  padding: 8px 0;
}
@media (min-width: 1025px) {
  .lightbox .lbox .content p.title {
    margin-bottom: 8px;
    padding: 15px 0;
  }
}
.lightbox .lbox .content .allotInfo {
  margin-bottom: 12px;
  gap: 20px;
}
@media (min-width: 1025px) {
  .lightbox .lbox .content .allotInfo {
    display: flex;
    align-items: flex-start;
    justify-content: space-between;
    margin-bottom: 50px;
  }
}
.lightbox .lbox .content .allotInfo .date {
  display: flex;
  flex-direction: column;
  gap: 10px;
  word-break: break-all;
}
@media (min-width: 640px) {
  .lightbox .lbox .content .allotInfo .date br {
    display: none;
  }
}
.lightbox .lbox .content .allotInfo .btns {
  display: flex;
  align-items: flex-start;
  justify-content: center;
  gap: 20px;
  margin: 20px auto;
}
@media (min-width: 1025px) {
  .lightbox .lbox .content .allotInfo .btns {
    margin: 0;
  }
}
.lightbox .lbox .content .allotInfo .btns .btn {
  flex: 1;
  max-width: 200px;
}
.lightbox .lbox .content .allotInfo .btns .btn a {
  border-radius: 100px;
  color: #fff;
  width: 100%;
  height: 40px;
  display: flex;
  align-items: center;
  justify-content: center;
  position: relative;
  margin: auto;
}
@media (min-width: 1025px) {
  .lightbox .lbox .content .allotInfo .btns .btn a {
    height: 60px;
    width: 200px;
    height: 50px;
  }
}
@media screen and (min-width: 1025px) {
  .lightbox .lbox .content .allotInfo .btns .btn a:not(.disabled) {
    transition: all 0.3s ease-in-out;
  }
  .lightbox .lbox .content .allotInfo .btns .btn a:not(.disabled):hover {
    filter: brightness(0.9);
  }
}
.lightbox .lbox .content .allotInfo .btns .btn a.allot {
  background: #0953ad;
}
.lightbox .lbox .content .allotInfo .btns .btn a.allot.disabled {
  background: #ccc;
  cursor: default;
}
.lightbox .lbox .content .allotInfo .btns .btn a.openacc {
  background: #f46300;
}
.lightbox .lbox .content .allotInfo .btns .btn.acc {
  position: relative;
  padding-bottom: 30px;
}
@media (min-width: 1025px) {
  .lightbox .lbox .content .allotInfo .btns .btn.acc {
    padding-bottom: 0;
  }
}
.lightbox .lbox .content .allotInfo .btns .btn.acc span {
  color: #f46300;
  position: absolute;
  bottom: 0;
  left: 50%;
  transform: translateX(-50%);
  font-size: 12px;
  width: -moz-max-content;
  width: max-content;
}
@media (min-width: 1025px) {
  .lightbox .lbox .content .allotInfo .btns .btn.acc span {
    font-size: 18px;
    bottom: -40px;
  }
}
.lightbox .lbox .content .bank {
  margin-bottom: 20px;
  display: flex;
  flex-wrap: wrap;
}
.lightbox .lbox .content .bank p {
  width: 50%;
  padding: 4px 0;
}
@media (min-width: 1025px) {
  .lightbox .lbox .content .bank p {
    width: 20%;
    padding: 10px 0;
  }
}
.lightbox .lbox .content .bank p span {
  margin-right: 10px;
}

/* ========== Transitions ========== */
.fade-enter-active,
.fade-leave-active {
  transition: opacity 0.5s;
}

.fade-enter,
.fade-leave-to {
  opacity: 0;
}/*# sourceMappingURL=main.css.map */