@charset "UTF-8";
body {
  margin: 0;
  padding: 0;
  font-family: "Noto Sans TC", sans-serif;
  color: #2e4f7d;
  font-size: 16px;
  line-height: 26px;
  overflow-x: hidden;
  background: #f8f8f8;
}
@media screen and (max-width: 576px) {
  body {
    font-size: 15px;
  }
}

* {
  box-sizing: border-box;
  border: none;
  letter-spacing: 0.5px;
}

u {
  text-decoration: underline;
  text-underline-offset: 0.2rem;
}

.container {
  margin: auto;
}
.container-md {
  max-width: 1200px;
  width: 82%;
}
@media screen and (max-width: 1024px) {
  .container-md {
    width: 100%;
    padding: 0 18px;
  }
}
.container-sm {
  max-width: 1000px;
  width: 78%;
}
@media screen and (max-width: 1024px) {
  .container-sm {
    width: 100%;
    padding: 0 18px;
  }
}
.container-xs {
  max-width: 800px;
  width: 75%;
}
@media screen and (max-width: 1024px) {
  .container-xs {
    width: 90%;
  }
}

.d-flex {
  display: flex;
  align-items: center;
}
.d-flex .flex {
  flex: 1;
}

.w-100 {
  width: 100%;
}

.f22 {
  font-size: 22px;
  line-height: 36px;
}
@media screen and (max-width: 576px) {
  .f22 {
    font-size: 18px;
    line-height: 28px;
  }
}

.f48 {
  font-size: 48px;
}

.yt-blue {
  color: #0059bd;
}

.blue {
  color: #005ec8;
}

.orange {
  color: #fd7400;
}

.text-center {
  text-align: center;
}

b,
.bold {
  font-weight: 700;
}

img {
  max-width: 100%;
}

.mb {
  display: none !important;
}
@media screen and (max-width: 576px) {
  .mb {
    display: block !important;
  }
}

@media screen and (min-width: 1025px) {
  .pad {
    display: none !important;
  }
}

@media screen and (max-width: 1024px) {
  .desktop {
    display: none !important;
  }
}

.top {
  bottom: 150px;
}
@media screen and (max-width: 576px) {
  .top {
    bottom: 10px;
  }
}

.text-underline {
  text-decoration: underline;
}

.tabs .tab {
  display: inline-block;
  padding: 15px;
  cursor: pointer;
  border: 2px solid #005ec8;
  border-radius: 20px 20px 0 0;
  color: #005ec8;
  width: 100%;
}
@media screen and (max-width: 576px) {
  .tabs .tab {
    padding: 10px;
  }
}
.tabs .tab.active {
  opacity: 1;
  background: #005ec8;
  color: #fff;
}

header {
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 2px 29px 0;
}
@media screen and (max-width: 576px) {
  header {
    padding: 0 20px;
  }
}
header a {
  display: inline-flex;
}
header .hbg {
  width: 25px;
  position: fixed;
  top: 8px;
  right: 20px;
  z-index: 11;
}
header .hbg span {
  display: block;
  background: #005ec8;
  margin: 7px 0;
  width: 100%;
  height: 2px;
  transition: all 0.3s ease-in-out;
}
header .hbg.open {
  top: 13px;
}
header .hbg.open span {
  background: #fff;
}
header .hbg.open span:first-child {
  transform: rotate(45deg) translate(4px, 3px);
}
header .hbg.open span:nth-child(2) {
  display: none;
}
header .hbg.open span:last-child {
  transform: rotate(-45deg) translate(3px, -3px);
}

article {
  min-height: 100vh;
}

.table {
  display: table;
  width: 100%;
}
.table .tr {
  display: table-row;
}
.table .tr .td {
  display: table-cell;
  padding: 10px;
  text-align: center;
  vertical-align: middle;
}

.img {
  width: 100%;
  overflow: auto;
}
@media screen and (max-width: 576px) {
  .img img {
    width: 800px;
    max-width: unset;
  }
}

section {
  padding: 60px 0;
}
@media screen and (max-width: 992px) {
  section {
    padding: 30px 0;
  }
}
section .title {
  text-align: center;
}
section .title h2 {
  color: #005ec8;
  font-size: 48px;
  line-height: 54px;
  padding: 30px 0;
  font-weight: bold;
  position: relative;
}
@media screen and (max-width: 1024px) {
  section .title h2 {
    font-size: 36px;
    line-height: 40px;
  }
}
@media screen and (max-width: 992px) {
  section .title h2 {
    padding: 20px 0;
  }
}
@media screen and (max-width: 576px) {
  section .title h2 {
    font-size: 32px;
    line-height: 45px;
    padding: 15px 0;
    letter-spacing: 0.2px;
  }
}
section .title h2:after {
  content: "";
  display: block;
  position: absolute;
  width: 88px;
  height: 5px;
  background: #ffb392;
  left: 50%;
  transform: translateX(-50%);
  top: 100%;
  border-radius: 100px;
}
section .title h2 .subtitle {
  font-weight: 400;
  font-size: 30px;
}
@media screen and (max-width: 1024px) {
  section .title h2 .subtitle {
    line-height: 40px;
  }
}
@media screen and (max-width: 992px) {
  section .title h2 .subtitle {
    padding: 20px 0;
  }
}
@media screen and (max-width: 576px) {
  section .title h2 .subtitle {
    font-size: 20px;
    line-height: 36px;
    padding: 0 0 15px;
    letter-spacing: 0.2px;
  }
}
section .title p {
  font-size: 20px;
  line-height: 32px;
  color: #2e4f7d;
}
@media screen and (max-width: 768px) {
  section .title p {
    font-size: 16px;
    line-height: 24px;
  }
}
section .content {
  padding: 60px 0;
}
@media screen and (max-width: 992px) {
  section .content {
    padding: 30px 0;
  }
}
section.main {
  display: flex;
  align-items: center;
  flex-direction: column;
  padding: 72px 0 0 0;
  height: 100vh;
  position: relative;
  overflow: hidden;
  color: #fff;
  font-weight: 400;
  background: url(../img/img-KV.jpg) no-repeat;
  background-position: center -72px;
  background-size: cover;
  transition: height 0.2s ease;
}
@media screen and (max-width: 1600px) {
  section.main {
    background-position: center center;
  }
}
@media screen and (max-width: 1024px) {
  section.main {
    background: url(../img/img-mob-KV.jpg) no-repeat;
    background-position: center center;
    background-size: cover;
  }
}
@media screen and (max-width: 576px) {
  section.main {
    background: url(../img/img-mob-KV.jpg) no-repeat;
    background-position: center bottom;
    background-size: cover;
    height: 100dvh;
  }
}
section.main .bottom-deco {
  position: absolute;
  bottom: 0;
  /*  display: none;
   @media screen and (max-width: 576px) {
       display: block;
       width: 100%;
       position: absolute;
       bottom: 0;
       left: 0;
   } */
}
@media screen and (max-width: 576px) {
  section.main .bottom-deco {
    display: none;
  }
}
section.main .title-area {
  /* height: 100%;
  width: 50%; */
  max-width: 1024px;
  padding: 80px 0;
}
@media screen and (max-width: 1024px) {
  section.main .title-area {
    width: 80%;
    margin: 0 auto;
    padding: 30px 0;
  }
}
@media screen and (max-width: 996px) {
  section.main .title-area {
    display: block;
    width: 100%;
    display: block;
    height: auto;
    padding: 0;
  }
}
section.main .title {
  color: #005ec8;
  font-size: 48px;
  line-height: 60px;
  font-weight: bold;
}
@media screen and (max-width: 1024px) {
  section.main .title {
    width: 80%;
    padding: 0;
  }
}
section.main .etfs-area {
  padding: 30px 0;
  max-width: 1280px;
  position: absolute;
  bottom: 20px;
  z-index: 15;
}
@media screen and (max-width: 1024px) {
  section.main .etfs-area {
    padding: 0;
    bottom: 10px;
  }
}
section.main .people {
  display: flex;
  justify-content: center;
  position: relative;
  z-index: 20;
}
section.main .people img {
  width: 25%;
}
section.main .people img.subtitle {
  width: 400px;
}
@media screen and (max-width: 1024px) {
  section.main .people img {
    width: 60%;
  }
}
@media screen and (max-width: 768px) {
  section.main .people img {
    width: 80%;
  }
}
section.main .people .subtitle {
  align-self: center;
}
section.main .features {
  justify-content: center;
  position: relative;
  top: -17px;
  /* text-align: center;
  background: rgba(0, 120, 223, .8);
  position: fixed;
  bottom: 0;
  left: 0;
  width: 100%;
  justify-content: space-around;
  align-items: stretch;
  z-index: 5;
  @media screen and (max-width: 576px) {
      position: relative;
      bottom: auto;
      left: auto;
      padding: 10px 0 30px 0;
      display: block;
      width: 90%;
      margin: 2vh auto;
      background: none;
  }
  .feature {
      color: #fff;
      display: flex;
      align-items: center;
      justify-content: center;
      padding: 20px 0;
      cursor: pointer;
      transition: all .2s ease-in-out;
      font-size: 23px;
      flex: 1;
      @media screen and (min-width: 1025px) {
          &:hover {
              background: rgba(0, 83, 176, .8);
          }
          &:active {
              background: rgba(0, 83, 176, .8);
          }
      }
      @media screen and (max-width: 992px) {
          margin: 0;
          font-size:18px;
      }
      @media screen and (max-width: 576px) {
          padding: 15px;
          margin: 5px auto;
          font-size: 15px;
          line-height: 20px;
          text-align: center;
          border-radius: 5px;
          border: 1px solid #fff;
          background: rgba(0, 120, 223, .8);
          width: 300px;
      }
      &:first-child {
          margin-left: 0;
          border-right: 1px solid #fff;
          @media screen and (max-width: 576px) {
              margin: 5px auto;
          }
      }
      &:last-child {
          margin-right: 0;
          border-left: 1px solid #fff;
          @media screen and (max-width: 576px) {
              margin: 5px auto;
          }
      }
      p {
          padding: 0 10px;
          @media screen and (max-width: 576px) {
              padding: 0;
          }
      }
  } */
}
@media screen and (max-width: 1024px) {
  section.main .features {
    flex-direction: column;
    top: 0;
  }
}
section.main .features .feature {
  border: 5px solid #fff;
  padding: 20px 10px;
  background-color: #0078ff;
  font-size: 22px;
  cursor: pointer;
  font-weight: bold;
}
section.main .features .feature:nth-child(2) {
  border-left: none;
  border-right: none;
}
section.main .features .feature:first-child {
  border-radius: 20px 0 0 20px;
}
section.main .features .feature:last-child {
  border-radius: 0 20px 20px 0;
}
section.main .features .feature:hover {
  background-color: #0060cc;
  transition: all ease 0.3s;
}
section.main .features .feature p {
  text-align: center;
  color: #fff;
}
section.main .features .feature p span {
  color: #fff337;
}
@media screen and (max-width: 1024px) {
  section.main .features .feature {
    width: 80%;
    flex-direction: column;
    padding: 8px 4px;
  }
  section.main .features .feature:nth-child(1), section.main .features .feature:nth-child(2), section.main .features .feature:nth-child(3) {
    border: 2px solid #fff;
    border-radius: 5px;
  }
  section.main .features .feature:nth-child(2) {
    border-top: none;
    border-bottom: none;
  }
  section.main .features .feature p {
    font-size: 16px;
  }
}
section.main .features .feature .divnd-month {
  font-size: 14px;
  display: flex;
  line-height: normal;
  align-items: center;
  justify-content: center;
}
section.main .features .feature .divnd-month img {
  width: 24px;
}
section.etf-pros {
  font-size: 20px;
}
@media screen and (max-width: 899px) {
  section.etf-pros {
    font-size: 18px;
  }
}
section.etf-pros .title h2 img {
  display: inline-block;
  width: 40px;
}
@media screen and (max-width: 576px) {
  section.etf-pros .title h2 img {
    display: none;
  }
}
section.etf-pros .title h2::after {
  display: none;
}
section.etf-pros .pros-container {
  justify-content: center;
  align-items: center;
}
section.etf-pros .pros-container .pros {
  display: flex;
  flex-direction: column;
  align-items: center;
  width: 40%;
}
section.etf-pros .pros-container .pros img {
  max-width: 50%;
  padding-left: 10%;
}
section.etf-pros .pros-container .pros .subtitle {
  display: flex;
  justify-content: center;
  align-items: center;
  margin: 30px 0;
}
section.etf-pros .pros-container .pros .subtitle p {
  color: #ff7e45;
  max-width: 165px;
}
section.etf-pros .pros-container .pros .subtitle p.order {
  margin: 0 20px;
  font-size: 40px;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  border: 1px solid #fff;
  background: #ff7e45;
  color: #fff;
  border-radius: 100px;
  width: 80px;
  height: 80px;
}
@media screen and (max-width: 899px) {
  section.etf-pros .pros-container {
    flex-direction: column;
  }
  section.etf-pros .pros-container .pros {
    width: 100%;
  }
  section.etf-pros .pros-container .pros img {
    padding-left: 20px;
  }
}
section.etf-pros .desc {
  width: 90%;
  margin: 50px auto 100px;
  text-align: justify;
}
section.etf-pros .table-container {
  width: 85%;
  margin: 40px auto;
  position: relative;
}
@media screen and (max-width: 899px) {
  section.etf-pros .table-container {
    width: 100%;
  }
}
@media screen and (max-width: 899px) {
  section.etf-pros .table-container .pc_table {
    display: none;
  }
}
section.etf-pros .table-container .pc_table table {
  text-align: center;
  padding: 40px 30px 30px 30px;
  border: 4px solid #dbedff;
  border-collapse: separate;
}
section.etf-pros .table-container .pc_table .table-title {
  padding: 10px 70px;
  border-radius: 20px;
  position: absolute;
  top: -5%;
  right: 50%;
  transform: translateX(50%);
  background-color: #dbedff;
  color: #005ec8;
  font-size: 24px;
  font-weight: bold;
  text-align: center;
}
section.etf-pros .table-container .pc_table th, section.etf-pros .table-container .pc_table td {
  padding: 20px 10px;
  vertical-align: middle;
}
section.etf-pros .table-container .pc_table thead tr th {
  border-bottom: 1px solid #dbedff;
}
section.etf-pros .table-container .pc_table thead tr th:first-child {
  border-right: 1px solid #dbedff;
}
section.etf-pros .table-container .pc_table thead tr th:last-child {
  border-left: 1px solid #dbedff;
}
section.etf-pros .table-container .pc_table tbody td:first-child {
  border-right: 1px solid #dbedff;
}
section.etf-pros .table-container .pc_table tbody td:last-child {
  border-left: 1px solid #dbedff;
}
section.etf-pros .table-container .pc_table tbody tr:first-child td {
  border-bottom: 1px solid #dbedff;
}
section.etf-pros .table-container .mob_table {
  display: none;
}
@media screen and (max-width: 899px) {
  section.etf-pros .table-container .mob_table {
    display: block;
  }
}
section.etf-pros .table-container .mob_table .table-title {
  width: 80%;
  padding: 10px;
  margin: 0 auto;
  border-radius: 20px;
  background-color: #dbedff;
  color: #005ec8;
  font-size: 20px;
  font-weight: bold;
  text-align: center;
}
section.etf-pros .table-container .mob_table table {
  margin-top: 20px;
  border-spacing: 0 20px;
  border-collapse: separate;
  width: 100%;
}
section.etf-pros .table-container .mob_table table thead th {
  border-top: 1px solid #2e4f7d;
  border-bottom: 1px solid #2e4f7d;
  padding: 10px 0;
}
section.etf-pros .table-container .mob_table table tbody td:first-child {
  border-right: 1px solid #2e4f7d;
  text-align: center;
}
section.etf-pros .table-container .mob_table table th, section.etf-pros .table-container .mob_table table td {
  padding: 16px 10px;
  vertical-align: middle;
}
section.etf-pros .table-container span.highlight {
  color: #ff7e45;
}
section.etf-pros .table-container span.text-sm {
  font-size: 16px;
}
section.etf-pros .source {
  font-size: 16px;
  padding: 20px 0;
}
section.calendar {
  max-width: 1200px;
  margin: 0 auto;
}
section.calendar .calendar-wrp {
  position: relative;
  text-align: center;
}
@media screen and (min-width: 900px) {
  section.calendar .calendar-wrp {
    padding: 80px 0;
  }
}
@media screen and (max-width: 899px) {
  section.calendar .calendar-wrp {
    padding: 10vw 2% 20vw;
  }
}
section.calendar .calendar-wrp .calendar-title {
  margin-bottom: 20px;
  font-size: 3rem;
  line-height: 1.2;
  font-weight: 700;
  color: #005ec8;
}
@media screen and (max-width: 899px) {
  section.calendar .calendar-wrp .calendar-title {
    margin-top: 1rem;
    font-size: 2.625rem;
  }
}
section.calendar .calendar-wrp .calendar-subtitle {
  margin-top: 1rem;
  font-size: 1.75rem;
  font-weight: 500;
  color: #005ec8;
}
@media screen and (max-width: 899px) {
  section.calendar .calendar-wrp .calendar-subtitle {
    margin-top: 50px;
    font-size: 1.625rem;
  }
}
@media screen and (max-width: 899px) {
  section.calendar .calendar-wrp .calendar-subtitle {
    margin-top: 0;
    line-height: 1.2;
  }
}
section.calendar .calendar-wrp .calendar-subtitle::after {
  content: "";
  display: block;
  position: absolute;
  width: 88px;
  height: 5px;
  background: #ffb392;
  left: 50%;
  transform: translateX(-50%);
  border-radius: 100px;
  margin: 20px 0;
}
section.calendar .calendar-wrp .calendar-table {
  position: relative;
}
@media screen and (min-width: 900px) {
  section.calendar .calendar-wrp .calendar-table {
    margin-top: 100px;
    width: 100%;
    background-size: 100%;
  }
  section.calendar .calendar-wrp .calendar-table::before, section.calendar .calendar-wrp .calendar-table::after {
    z-index: 0;
    content: "";
    position: absolute;
    width: 100%;
    height: 60px;
  }
  section.calendar .calendar-wrp .calendar-table::before {
    top: -50px;
    left: 0;
    background-size: 100%;
  }
  section.calendar .calendar-wrp .calendar-table::after {
    left: 0;
    bottom: -20px;
    background-size: 100%;
  }
}
@media screen and (max-width: 899px) {
  section.calendar .calendar-wrp .calendar-table {
    margin-top: 15vw;
    width: 100%;
    background-size: 100%;
  }
  section.calendar .calendar-wrp .calendar-table::before, section.calendar .calendar-wrp .calendar-table::after {
    content: "";
    position: absolute;
    width: 100%;
    height: 11vw;
  }
  section.calendar .calendar-wrp .calendar-table::before {
    top: -10.5vw;
    left: 0;
    background-size: 100%;
  }
  section.calendar .calendar-wrp .calendar-table::after {
    left: 0;
    background-size: 100%;
  }
}
section.calendar .calendar-wrp .calendar-table .bg {
  position: absolute;
  left: 0;
  top: 0;
}
section.calendar .calendar-wrp .calendar-table .table-grid {
  z-index: 1;
  position: relative;
  display: grid;
  align-items: center;
}
@media screen and (min-width: 900px) {
  section.calendar .calendar-wrp .calendar-table .table-grid {
    padding: 20px 30px 30px 20px;
    grid-template-columns: repeat(13, auto);
  }
}
@media screen and (max-width: 899px) {
  section.calendar .calendar-wrp .calendar-table .table-grid {
    padding: 5vw 6vw 0vw 4vw;
    display: grid;
    justify-content: center;
    grid-template: auto repeat(12, 1fr)/1fr 2fr 2fr 2fr;
    grid-auto-flow: column;
  }
}
section.calendar .grid-item {
  border-bottom: 1px solid #FFF;
  border-right: 1px solid #FFF;
  grid-gap: 1px;
  align-items: center;
  font-size: 1.125rem;
  font-weight: 400;
  background-color: #f2f7fb;
  height: 60px;
}
@media screen and (max-width: 899px) {
  section.calendar .grid-item {
    height: 10vw;
  }
}
section.calendar .grid-item.item-a, section.calendar .grid-item.item-b {
  border-left: 1px solid #d6e1ef;
}
@media screen and (max-width: 899px) {
  section.calendar .grid-item.item-a, section.calendar .grid-item.item-b {
    border-left: none;
    border-top: 1px solid #d6e1ef;
  }
}
section.calendar .grid-item.item-b {
  display: flex;
  padding: 20px 0;
  text-align: center;
  align-items: center;
  font-size: 1.125rem;
  font-weight: 700;
}
@media screen and (max-width: 899px) {
  section.calendar .grid-item.item-b {
    padding: 0;
    font-size: 4vw;
  }
}
section.calendar .grid-item.item-b .num {
  width: -moz-fit-content;
  width: fit-content;
  margin: 0 auto;
  padding: 5px 10px;
  border-radius: 50px;
  color: #FFF;
}
section.calendar .grid-item.item-b .name {
  line-height: 1.5;
}
section.calendar .grid-item.item-00720B {
  padding: 0;
  background-color: #6cc4d8;
  /* .num {
      background-color: #eb6000;
  } */
}
section.calendar .grid-item.item-00720B .name {
  color: #eb6000;
}
section.calendar .grid-item.item-00679B {
  padding: 0;
  background-color: #0078ff;
  /* .num {
      background-color: #277503;
  } */
}
section.calendar .grid-item.item-00679B .name {
  color: #277503;
}
section.calendar .grid-item.item-00751B {
  padding: 0;
  background-color: #46a2db;
  /* .num {
      background-color: #589bea;
  } */
}
section.calendar .grid-item.item-00751B .name {
  color: #589bea;
}
section.calendar .grid-item.item-top {
  background: #e7f2ff;
  border: none;
  line-height: 60px;
}
@media screen and (max-width: 899px) {
  section.calendar .grid-item.item-top {
    font-size: 3.5vw;
    line-height: 10vw;
  }
}
section.calendar .grid-item .icon {
  width: 100%;
  height: 100%;
  background: url(../img/section-1-icon.png) center center no-repeat;
  background-size: auto 80%;
}
@media screen and (max-width: 899px) {
  section.calendar .grid-item .icon {
    background-size: auto 90%;
  }
}
section.calendar .dividend-wrp {
  position: relative;
  margin: 25px auto;
}
@media screen and (max-width: 899px) {
  section.calendar .dividend-wrp {
    margin: 5vw auto;
  }
}
section.calendar .dividend-wrp .dividend-subtitle {
  text-align: center;
  font-size: 1.25rem;
  font-weight: 600;
}
@media screen and (max-width: 899px) {
  section.calendar .dividend-wrp .dividend-subtitle {
    font-size: 1.75rem;
    margin-bottom: 5vw;
  }
}
section.calendar .dividend-wrp .dividend-container {
  padding: 50px 30px;
  justify-content: center;
}
@media screen and (max-width: 899px) {
  section.calendar .dividend-wrp .dividend-container {
    padding: 7vw;
    grid-template-columns: 100%;
    gap: 10vw;
  }
}
section.calendar .dividend-wrp .dividend-card {
  position: relative;
  padding: 0px 0px 10px 0;
  border-radius: 10px;
  background: #FFF;
}
@media screen and (max-width: 899px) {
  section.calendar .dividend-wrp .dividend-card {
    max-width: inherit;
  }
}
section.calendar .dividend-wrp .dividend-card::before {
  content: "";
  position: absolute;
  left: -20px;
  top: -20px;
  width: 78px;
  height: 78px;
}
section.calendar .dividend-wrp .dividend-card-00720B {
  /* &::before {
  background: url(../img/section-1-tape2.png) center center no-repeat;
  background-size: 100%;
  } */
  border: 2px solid #6cc4d8;
  /* .hr {
  background-color: #589bea;
  } */
}
section.calendar .dividend-wrp .dividend-card-00720B .title {
  background-color: #6cc4d8;
}
section.calendar .dividend-wrp .dividend-card-00679B {
  /* &::before {
  background: url(../img/section-1-tape3.png) center center no-repeat;
  background-size: 100%;
  } */
  border: 2px solid #0078ff;
  /* .hr {
  background-color: #eb6000;
  } */
}
section.calendar .dividend-wrp .dividend-card-00679B .title {
  background-color: #0078ff;
}
section.calendar .dividend-wrp .dividend-card-00751B {
  /* &::before {
  background: url(../img/section-1-tape1.png) center center no-repeat;
  background-size: 100%;
  } */
  border: 2px solid #46a2db;
  /* .hr {
  background-color: #277503;
  } */
}
section.calendar .dividend-wrp .dividend-card-00751B .title {
  background-color: #46a2db;
}
section.calendar .dividend-wrp .dividend-card .title {
  text-align: center;
  font-size: 1.25rem;
  font-weight: 600;
  line-height: 1.5;
  padding: 10px 0 10px;
  white-space: nowrap;
  color: #fff;
  border-radius: 6px 6px 0 0;
}
@media screen and (max-width: 899px) {
  section.calendar .dividend-wrp .dividend-card .title {
    font-size: 4vw;
  }
}
section.calendar .dividend-wrp .dividend-card .hr {
  margin: 0 auto;
  width: 30%;
  height: 2px;
}
section.calendar .dividend-wrp .dividend-card .day {
  margin-top: 15px;
  padding: 0 20px;
}
section.calendar .dividend-wrp .dividend-card .day .day-item {
  display: grid;
  border-bottom: 1px solid #d6e1ef;
  grid-template-columns: auto auto;
}
@media screen and (max-width: 899px) {
  section.calendar .dividend-wrp .dividend-card .day .day-item {
    font-size: 3vw;
  }
}
section.calendar .dividend-wrp .dividend-card .day .day-item:last-child {
  border-bottom: none;
}
section.calendar .dividend-wrp .dividend-card .day .day-item > div {
  padding: 10px 0;
  display: grid;
  line-height: 1.2;
  align-items: center;
}
@media screen and (max-width: 899px) {
  section.calendar .dividend-wrp .dividend-card .day .day-item > div {
    padding: 2vw 0;
    font-size: 3.5vw;
    line-height: 1.5;
  }
}
section.calendar .dividend-wrp .dividend-card .day .day-item .right {
  margin-left: 10px;
  justify-content: right;
}
section.calendar .dividend-wrp .warning {
  text-align: center;
  padding: 20px 0 60px;
}
section.calendar .dividend-wrp .swiper-button-prev,
section.calendar .dividend-wrp .swiper-button-next {
  color: black;
}
section.calendar .dividend-wrp .swiper-button-prev {
  left: -2px;
  transform: scale(0.8);
}
section.calendar .dividend-wrp .swiper-button-next {
  right: -2px;
  transform: scale(0.8);
}
section.calendar .mainBtn {
  position: relative;
  margin: 0 auto;
  width: -moz-fit-content;
  width: fit-content;
  cursor: pointer;
  border-radius: 50px;
  font-weight: 500;
  text-align: center;
}
section.calendar .mainBtn .link {
  cursor: pointer;
  padding: 10px 20px;
  position: relative;
  align-items: center;
  display: flex;
  white-space: nowrap;
  color: #005ec8;
  letter-spacing: 2px;
  background: #0078ff;
  border-radius: 12px;
  border: 1px solid #fff;
  color: #fff;
  margin: 15px 0;
  transition: all 0.2s ease-in-out;
}
@media screen and (min-width: 1025px) {
  section.calendar .mainBtn .link:hover {
    background: #003cff;
  }
  section.calendar .mainBtn .link:active {
    background: #003cff;
  }
}
@media screen and (max-width: 576px) {
  section.calendar .mainBtn .link {
    padding: 15px 20px;
    text-align: center;
    margin: 20px 0 0;
    font-size: 18px;
    border-radius: 10px;
    overflow: hidden;
  }
}
section.calendar .mainBtn .link span {
  position: absolute;
  top: -2px;
  left: -2px;
  display: block;
  width: 20px;
  height: 100%;
  background: url(../img/icon-KV-side-channel.svg) no-repeat;
  transform: scaleX(-1);
}
@media screen and (max-width: 576px) {
  section.calendar .mainBtn .link span {
    top: -1px;
    left: -1px;
    width: 24px;
    background: url(../img/icon-KV-side-channel-mob.svg) no-repeat;
  }
}
section.calendar .mainBtn .link .arrow-right {
  display: inline-flex;
  justify-content: center;
  align-items: center;
  margin-left: 5px;
  width: 22px;
  height: 22px;
  background: #FFF;
  border-radius: 50%;
  animation: slide1 1s ease-in-out infinite;
}
section.calendar .mainBtn .link .arrow-right i {
  display: inline-block;
  width: 10px;
  height: 10px;
  border-top: 2px solid #0078ff;
  border-left: 2px solid #0078ff;
  transform: translateX(-2px) rotate(135deg);
}
@keyframes slide1 {
  0%, 100% {
    transform: translate(0, 0);
  }
  50% {
    transform: translate(10px, 0);
  }
}
section.reason {
  padding-bottom: 0;
}
section.reason .feature {
  text-align: center;
  align-items: stretch;
  padding-bottom: 0;
}
@media screen and (max-width: 991px) {
  section.reason .feature {
    display: block;
  }
}
section.reason .feature .flex {
  display: block;
  padding-bottom: 60px;
  position: relative;
  padding: 20px;
}
@media screen and (max-width: 1400px) {
  section.reason .feature .flex {
    padding: 20px 10px;
  }
}
section.reason .feature .flex h3 {
  padding: 10px 30px;
  background: #ff7e45;
  color: #fff;
  position: relative;
  padding-left: 100px;
  border-radius: 100px;
  display: inline-block;
  margin-bottom: 60px;
}
@media screen and (max-width: 1300px) {
  section.reason .feature .flex h3 {
    font-size: 18px;
    padding: 10px 20px;
    padding-left: 90px;
  }
}
section.reason .feature .flex h3 span {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  border: 1px solid #fff;
  background: #ff7e45;
  color: #fff;
  border-radius: 100px;
  width: 80px;
  height: 80px;
  position: absolute;
  left: 0;
  top: 50%;
  transform: translateY(-50%);
  padding-bottom: 7px;
}
section.reason .feature .flex h3 span::after {
  content: "";
  display: block;
  background: #ff7e45;
  width: 1px;
  height: 40px;
  position: absolute;
  top: 100%;
}
@media screen and (max-width: 991px) {
  section.reason .feature .flex h3 span {
    font-size: 38px;
  }
}
section.reason .feature .flex img {
  height: 140px;
}
@media screen and (max-width: 991px) {
  section.reason .feature .flex img {
    display: block;
    margin: auto;
  }
}
section.reason .feature .flex .desc {
  color: #0b508f;
  letter-spacing: 0px;
  margin-top: 30px;
}
@media screen and (max-width: 576px) {
  section.video {
    padding-bottom: 0;
  }
}
section.video .content {
  margin-top: 60px;
}
@media screen and (max-width: 576px) {
  section.video .content {
    padding-bottom: 0;
    margin-top: 20px;
  }
}
section.video .content .fundSlick {
  position: relative;
}
section.video .content .fundSlick::after {
  content: "";
  display: block;
  width: 180px;
  height: 100%;
  position: absolute;
  right: 0;
  top: 0;
  background: linear-gradient(to left, #f8f8f8, transparent);
}
@media screen and (max-width: 1024px) {
  section.video .content .fundSlick::after {
    display: none;
  }
}
section.video .content .fundSlick .card {
  border: 6px solid #0078ff;
  border-radius: 15px;
  overflow: hidden;
  margin: 30px 0;
  margin-right: 60px;
  position: relative;
}
@media screen and (max-width: 1024px) {
  section.video .content .fundSlick .card {
    margin: 20px 0;
    margin-right: 0;
  }
}
section.video .content .fundSlick .card .v-box {
  position: relative;
  width: 100%;
  height: 0;
  padding-bottom: 56.25%;
}
section.video .content .fundSlick .card .v-box iframe {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
}
section.video .content .fundSlick .slick-arrow {
  width: 57px;
  height: 57px;
  border-radius: 100px;
  position: absolute;
  bottom: 100%;
  right: 0;
  cursor: pointer;
  background: #0078ff;
}
@media screen and (max-width: 1024px) {
  section.video .content .fundSlick .slick-arrow {
    width: 40px;
    height: 40px;
    bottom: 99%;
  }
}
section.video .content .fundSlick .slick-arrow::after {
  content: "";
  position: absolute;
  top: 0;
  left: 0;
  display: block;
  width: 100%;
  height: 100%;
}
section.video .content .fundSlick .slick-arrow.slick-disabled {
  cursor: default;
  background: transparent;
}
section.video .content .fundSlick .slick-arrow.slick-prev {
  right: 80px;
}
@media screen and (max-width: 1024px) {
  section.video .content .fundSlick .slick-arrow.slick-prev {
    right: 50px;
  }
}
section.video .content .fundSlick .slick-arrow.slick-prev::after {
  background: url(../img/icon-section2-arrow-left-solid.svg);
}
section.video .content .fundSlick .slick-arrow.slick-prev.slick-disabled::after {
  background: url(../img/icon-section2-arrow-left.svg);
}
section.video .content .fundSlick .slick-arrow.slick-next::after {
  background: url(../img/icon-section2-arrow-right-solid.svg);
}
section.video .content .fundSlick .slick-arrow.slick-next.slick-disabled::after {
  background: url(../img/icon-section2-arrow-right.svg);
}
section.video .content .progress-area {
  color: #0078ff;
}
section.video .content .progress-area .progress {
  display: block;
  width: 130px;
  height: 4px;
  overflow: hidden;
  margin: 0 25px;
  background-color: #d7d7d7;
  background-image: linear-gradient(to right, #0078ff, #0078ff);
  background-repeat: no-repeat;
  background-size: 20% 100%;
  transition: background-size 0.4s ease-in-out;
}
@media screen and (max-width: 576px) {
  section.video .content .progress-area .progress {
    width: 70px;
    height: 2px;
    margin: 0 10px;
  }
}
@media screen and (max-width: 768px) {
  section.info .container-tabs {
    padding: 0;
  }
}
@media screen and (max-width: 768px) {
  section.info h2 {
    padding: 15px 18px;
  }
}
section.info h2 br {
  display: block;
}
@media screen and (max-width: 576px) {
  section.info h2 br {
    display: none;
  }
}
section.info .tabs {
  margin-top: 60px;
  align-items: stretch;
}
section.info .tabs .tab {
  position: relative;
  display: inline-flex;
  align-items: center;
  justify-content: center;
}
@media screen and (max-width: 768px) {
  section.info .tabs .tab {
    padding: 10px 5px;
  }
}
section.info .tabs .tab img {
  display: none;
  position: absolute;
  top: calc(100% + 88px);
  left: 50%;
  transform: translateX(-50%);
  width: 70px;
}
@media screen and (max-width: 876px) {
  section.info .tabs .tab img {
    top: calc(100% + 124px);
  }
}
@media screen and (max-width: 680px) {
  section.info .tabs .tab img {
    top: calc(100% + 108px);
  }
}
section.info .tabs .tab.active img {
  display: block;
}
section.info .desc {
  background: #005ec8;
  color: #fff;
  padding: 25px 15px;
  display: flex;
  align-items: center;
  justify-content: center;
}
@media screen and (max-width: 680px) {
  section.info .desc {
    font-size: 16px;
    padding: 25px 10px;
  }
}
section.info .desc p {
  margin: 0 10px;
  text-align: center;
}
@media screen and (max-width: 680px) {
  section.info .desc p {
    width: auto;
    white-space: inherit;
    margin: 0;
  }
}
section.info .desc img {
  width: 14px;
}
section.info .tab-detail {
  margin-top: 60px;
}
@media screen and (max-width: 768px) {
  section.info .tab-detail {
    padding-bottom: 20px;
  }
}
section.info .tab-detail .detail {
  display: flex;
  width: 100%;
}
@media screen and (max-width: 992px) {
  section.info .tab-detail .detail {
    display: block;
  }
}
section.info .tab-detail .detail .list {
  flex: 1;
  position: relative;
  display: flex;
  flex-wrap: wrap;
}
section.info .tab-detail .detail .list p {
  display: inline-flex;
  align-items: stretch;
  vertical-align: top;
  margin: 1px 0;
  background: #dbedff;
}
section.info .tab-detail .detail .list p.half {
  width: 50%;
}
@media screen and (max-width: 768px) {
  section.info .tab-detail .detail .list p.half {
    width: 100%;
  }
}
section.info .tab-detail .detail .list p.lg {
  height: 76px;
}
@media screen and (max-width: 768px) {
  section.info .tab-detail .detail .list p.lg {
    height: auto;
  }
}
section.info .tab-detail .detail .list p.full {
  width: 100%;
}
section.info .tab-detail .detail .list p span {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  text-align: center;
  padding: 12px;
  min-height: 100%;
}
@media screen and (max-width: 1280px) {
  section.info .tab-detail .detail .list p span {
    padding: 12px 10px;
  }
}
@media screen and (max-width: 1270px) {
  section.info .tab-detail .detail .list p span {
    min-height: auto;
  }
}
@media screen and (max-width: 768px) {
  section.info .tab-detail .detail .list p span {
    min-height: unset;
  }
}
section.info .tab-detail .detail .list p span.item {
  min-width: 190px;
}
@media screen and (max-width: 768px) {
  section.info .tab-detail .detail .list p span.item {
    min-width: 160px;
  }
}
section.info .tab-detail .detail .list p span.val {
  padding-left: 20px;
  background: #f2f7fb;
  width: 100%;
  justify-content: start;
  text-align: left;
}
@media screen and (max-width: 1280px) {
  section.info .tab-detail .detail .list p span.val {
    padding-left: 10px;
  }
}
@media screen and (max-width: 768px) {
  section.info .tab-detail .detail .list p span.val {
    text-align: center;
    justify-content: center;
  }
}
@media screen and (max-width: 576px) {
  section.info .tab-detail .detail .list p span.val {
    padding-left: 15px;
  }
}
section.info .tab-detail .detail .list p span.val img {
  width: 18px;
  margin-left: 15px;
  cursor: pointer;
}
@media screen and (max-width: 576px) {
  section.info .tab-detail .detail .list p span.val img {
    margin-left: 5px;
  }
}
section.info .tab-detail .detail .list .more {
  color: #ff7e45;
  position: absolute;
  right: 30px;
  bottom: 25px;
  cursor: pointer;
}
@media screen and (max-width: 768px) {
  section.info .tab-detail .detail .list .more {
    right: 20px;
    bottom: -10px;
  }
}
section.info .tab-detail .detail .list .more img {
  width: 20px;
}
section.info .dividend {
  background: #f2f7fb;
  width: 100%;
  padding: 0 30px;
}
@media screen and (max-width: 1270px) {
  section.info .dividend {
    padding: 0 20px;
    font-size: 14px;
  }
}
section.info .dividend .div {
  align-items: stretch;
}
section.info .dividend .div:not(:last-child) {
  border-bottom: 1px solid #99b1d7;
}
@media screen and (max-width: 1270px) {
  section.info .dividend .div {
    display: block;
    padding: 15px 0;
  }
}
section.info .dividend .div .flex {
  flex: auto;
  padding: 20px 0;
}
section.info .dividend .div .flex:nth-child(1) {
  flex: 3;
}
@media screen and (max-width: 1270px) {
  section.info .dividend .div .flex:nth-child(1) {
    flex: auto;
  }
}
section.info .dividend .div .flex:nth-child(2) {
  flex: 2;
}
@media screen and (max-width: 1270px) {
  section.info .dividend .div .flex:nth-child(2) {
    flex: auto;
  }
}
section.info .dividend .div .flex:nth-child(3) {
  flex: 2;
}
@media screen and (max-width: 1270px) {
  section.info .dividend .div .flex:nth-child(3) {
    flex: auto;
  }
}
@media screen and (max-width: 1270px) {
  section.info .dividend .div .flex {
    display: flex;
    padding: 2px;
  }
}
section.info .dividend .div .flex p {
  display: flex;
  justify-content: flex-start;
  background: transparent;
  padding: 3px 0;
  margin-left: 0;
  padding-right: 20px;
}
@media screen and (max-width: 1270px) {
  section.info .dividend .div .flex p {
    display: block;
    width: 50%;
    text-align: left;
  }
}
section.info .dividend .div .flex p span {
  white-space: nowrap;
  padding: 0;
  margin-right: 20px;
}
@media screen and (max-width: 1200px) {
  section.info .dividend .div .flex p span {
    margin-right: 10px;
  }
}
@media screen and (max-width: 1270px) {
  section.info .dividend .div .flex p span {
    white-space: unset;
    text-align: left;
    display: block;
    margin-right: 0;
  }
}
section.info .dividend .div .flex p span br {
  display: none;
}
@media screen and (max-width: 1270px) {
  section.info .dividend .div .flex p span br {
    display: block;
  }
}
section.divMonth .content {
  padding: 50px;
  background: #ebf6ff;
  border-radius: 20px;
  text-align: center;
  margin-top: 40px;
}
@media screen and (max-width: 768px) {
  section.divMonth .content {
    padding: 20px;
  }
}
section.divMonth .content .tabs {
  margin-top: 20px;
  align-items: stretch;
}
section.divMonth .content .tabs .tab {
  color: #0078ff;
  border-radius: 0;
  border-color: #0078ff;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  transition: all 0.3s ease-in-out;
}
section.divMonth .content .tabs .tab:nth-child(1) {
  border-radius: 20px 0 0 20px;
  border-right: none;
}
section.divMonth .content .tabs .tab:nth-child(3) {
  border-radius: 0 20px 20px 0;
  border-left: none;
}
section.divMonth .content .tabs .tab.active {
  background: #0078ff;
  color: #fff;
}
section.divMonth .content .tabs .tab.active:nth-child(2) {
  background: #6cc4d8;
  color: #fff;
}
section.divMonth .content .tabs .tab.active:nth-child(3) {
  background: #46a2db;
  color: #fff;
}
section.divMonth .content .chart {
  width: 838px;
  margin-top: 40px;
}
@media screen and (max-width: 576px) {
  section.divMonth .content .chart {
    margin-top: 20px;
    width: 100%;
  }
}
@media screen and (max-width: 576px) {
  section.divMonth .content .chart:not(.mb) {
    display: none;
  }
}
section.divMonth .mainBtn {
  position: relative;
  margin: 0 auto;
  width: -moz-fit-content;
  width: fit-content;
  cursor: pointer;
  border-radius: 50px;
  font-weight: 500;
  text-align: center;
}
section.divMonth .mainBtn .link {
  cursor: pointer;
  padding: 10px 20px;
  position: relative;
  align-items: center;
  display: flex;
  white-space: nowrap;
  color: #005ec8;
  letter-spacing: 2px;
  background: #0078ff;
  border-radius: 12px;
  border: 1px solid #fff;
  color: #fff;
  margin: 15px 0;
  transition: all 0.2s ease-in-out;
}
@media screen and (min-width: 1025px) {
  section.divMonth .mainBtn .link:hover {
    background: #003cff;
  }
  section.divMonth .mainBtn .link:active {
    background: #003cff;
  }
}
@media screen and (max-width: 576px) {
  section.divMonth .mainBtn .link {
    padding: 15px 20px;
    text-align: center;
    margin: 20px 0 0;
    font-size: 18px;
    border-radius: 10px;
    overflow: hidden;
  }
}
section.divMonth .mainBtn .link span {
  position: absolute;
  top: -2px;
  left: -2px;
  display: block;
  width: 20px;
  height: 100%;
  background: url(../img/icon-KV-side-channel.svg) no-repeat;
  transform: scaleX(-1);
}
@media screen and (max-width: 576px) {
  section.divMonth .mainBtn .link span {
    top: -1px;
    left: -1px;
    width: 24px;
    background: url(../img/icon-KV-side-channel-mob.svg) no-repeat;
  }
}
section.divMonth .mainBtn .link .arrow-right {
  display: inline-flex;
  justify-content: center;
  align-items: center;
  margin-left: 5px;
  width: 22px;
  height: 22px;
  background: #FFF;
  border-radius: 50%;
  animation: slide1 1s ease-in-out infinite;
}
section.divMonth .mainBtn .link .arrow-right i {
  display: inline-block;
  width: 10px;
  height: 10px;
  border-top: 2px solid #0078ff;
  border-left: 2px solid #0078ff;
  transform: translateX(-2px) rotate(135deg);
}
@keyframes slide1 {
  0%, 100% {
    transform: translate(0, 0);
  }
  50% {
    transform: translate(10px, 0);
  }
}
section.good {
  padding-bottom: 80px;
}
section.good .content {
  align-items: stretch;
  padding-bottom: 0;
}
@media screen and (max-width: 991px) {
  section.good .content {
    display: block;
  }
}
section.good .content .flex {
  border-radius: 20px;
  background: #dae9fa;
  padding: 50px;
  position: relative;
  text-align: center;
}
@media screen and (max-width: 991px) {
  section.good .content .flex {
    padding: 30px;
    margin: 40px 20px;
  }
}
section.good .content .flex:nth-child(2) {
  margin: 0 50px;
}
@media screen and (max-width: 991px) {
  section.good .content .flex:nth-child(2) {
    margin: 40px 20px;
  }
}
section.good .content .flex:nth-child(2) .pic {
  padding: 5px 0;
}
section.good .content .flex span {
  position: absolute;
  top: 0;
  left: 0;
  transform: translate(-37%, -37%);
  border-radius: 100px;
  background: #ff7e45;
  color: #fff;
  display: flex;
  align-items: center;
  justify-content: center;
  width: 95px;
  height: 95px;
  font-size: 18px;
}
@media screen and (max-width: 991px) {
  section.good .content .flex span {
    width: 77px;
    height: 77px;
    font-size: 16px;
  }
}
section.good .content .flex h3 {
  color: #005ec8;
}
section.good .content .flex .pic {
  height: 120px;
  margin: 30px 0;
}
@media screen and (max-width: 991px) {
  section.good .content .flex .pic {
    display: block;
    margin: 30px auto;
  }
}
section.good .content .flex li {
  text-align: left;
  display: flex;
  align-items: flex-start;
}
section.good .content .flex li img {
  width: 15px;
  margin: 10px;
}
@media screen and (max-width: 991px) {
  section.good .content ul.desc {
    display: inline-block;
  }
}
section.bonds-etf .bonds-etf-banner {
  display: flex;
  justify-content: center;
  align-items: center;
  font-size: 18px;
}
section.bonds-etf .bonds-etf-banner img {
  width: 40%;
}
section.bonds-etf .bonds-etf-banner .info-container {
  padding-left: 40px;
}
section.bonds-etf .bonds-etf-banner .info-container .info {
  margin-bottom: 40px;
}
section.bonds-etf .bonds-etf-banner .info-container a {
  display: inline-block;
  padding: 5px 24px;
  border-radius: 8px;
  color: #fff;
  background-color: #005bac;
}
section.bonds-etf .bonds-etf-banner .info-container a:hover {
  background-color: #004079;
}
@media screen and (max-width: 899px) {
  section.bonds-etf .bonds-etf-banner {
    flex-direction: column;
    align-items: center;
  }
  section.bonds-etf .bonds-etf-banner img {
    width: 80%;
  }
  section.bonds-etf .bonds-etf-banner .info-container {
    padding-left: 0;
    display: flex;
    flex-direction: column;
    align-items: center;
    text-align: center;
  }
}
section.warn {
  background: #ebf6ff;
  padding: 50px 0;
  text-align: justify;
}
section.warn .title {
  text-align: left;
}
section.warn .title span {
  margin-left: 30px;
}
section.warn .info {
  padding: 20px 0;
}
section.warn .content {
  padding: 5px 0;
}
section.warn .content p {
  margin-bottom: 10px;
}
section.warn .end {
  margin-top: 30px;
}

.lightbox {
  position: fixed;
  top: 0;
  left: 0;
  width: 100vw;
  height: 100vh;
  z-index: 10000;
  background: rgba(0, 0, 0, 0.6);
  display: none;
}
@media screen and (max-width: 1024px) {
  .lightbox {
    padding: 0 10px;
  }
}
.lightbox.show {
  display: flex;
}
.lightbox .lbox {
  background: #fff;
  padding: 30px 100px;
  padding-top: 60px;
  position: relative;
  margin-top: 15vh;
  max-height: 80vh;
  border-radius: 20px;
  min-width: 1200px;
}
@media screen and (max-width: 1280px) {
  .lightbox .lbox {
    min-width: 0;
    width: 80%;
  }
}
@media screen and (max-width: 991px) {
  .lightbox .lbox {
    padding: 30px 0;
    padding-top: 70px;
  }
}
@media screen and (max-width: 576px) {
  .lightbox .lbox {
    margin-top: 10vh;
    padding-top: 40px;
    width: calc(100% - 40px);
  }
}
.lightbox .lbox .all-content {
  max-height: calc(80vh - 200px);
  overflow-Y: auto;
  align-items: flex-start;
  margin-top: 30px;
}
.lightbox .lbox .all-content::-webkit-scrollbar {
  width: 2px;
}
.lightbox .lbox .all-content::-webkit-scrollbar-thumb {
  background: #aaa;
}
.lightbox .lbox .content {
  padding: 20px 0;
  padding-top: 0;
  margin: 0 20px;
}
@media screen and (max-width: 1300px) {
  .lightbox .lbox .content {
    margin: 0 15px;
  }
}
@media screen and (max-width: 576px) {
  .lightbox .lbox .content {
    padding: 15px 5px;
    padding-top: 0;
  }
}
.lightbox .lbox .content p.title {
  padding: 15px 5px;
  margin-bottom: 10px;
  border-bottom: 1px solid #889ab4;
}
@media screen and (max-width: 576px) {
  .lightbox .lbox .content p.title {
    padding: 10px 0;
  }
}
.lightbox .lbox .content .box.flex {
  margin-top: 20px;
  padding: 0 20px;
  display: flex;
  align-items: flex-start;
}
@media screen and (max-width: 576px) {
  .lightbox .lbox .content .box.flex {
    display: block;
  }
}
.lightbox .lbox .content .box.flex .flex-1 {
  flex: 1;
}
.lightbox .lbox .content .box.flex .flex-2 {
  flex: 2;
}
.lightbox .lbox .content .box.flex .flex-3 {
  flex: 3;
}
.lightbox .lbox .content .type {
  padding: 2px;
  background-color: #ecf5fd;
  line-height: 28px;
  border-radius: 5px;
  font-weight: 600;
}
@media screen and (max-width: 576px) {
  .lightbox .lbox .content .type {
    width: 50%;
    margin: 0 auto;
  }
}
.lightbox .lbox .content .company p {
  color: #0b508f;
  padding: 2px 0;
}
.lightbox .lbox .close {
  cursor: pointer;
  position: absolute;
  top: 25px;
  right: 25px;
  width: 15px;
}
@media screen and (max-width: 576px) {
  .lightbox .lbox .close {
    width: 15px;
    height: 15px;
    top: 18px;
    right: 18px;
  }
}
.lightbox.lightboxAAA table {
  width: 100%;
  background: #eef6ff;
  color: #0b508f;
}
@media screen and (max-width: 1024px) {
  .lightbox.lightboxAAA table.lg {
    display: none;
  }
}
@media screen and (min-width: 1025px) {
  .lightbox.lightboxAAA table.sm {
    display: none;
  }
}
@media screen and (max-width: 1024px) {
  .lightbox.lightboxAAA table.sm .changeMode {
    letter-spacing: 5px;
    display: block;
    text-align: center;
    line-height: 18px;
    width: 35px;
  }
  .lightbox.lightboxAAA table.sm .changeMode span {
    display: block;
  }
  .lightbox.lightboxAAA table.sm .changeMode span:first-child {
    transform: rotate(90deg);
  }
  .lightbox.lightboxAAA table.sm .changeMode span:last-child {
    transform: rotate(90deg);
  }
}
@media screen and (max-width: 576px) {
  .lightbox.lightboxAAA table {
    font-size: 14px;
  }
}
.lightbox.lightboxAAA table th, .lightbox.lightboxAAA table td {
  border: 1px solid #fff;
  padding: 15px;
  vertical-align: middle;
}
@media screen and (max-width: 576px) {
  .lightbox.lightboxAAA table th, .lightbox.lightboxAAA table td {
    padding: 6px;
  }
}
.lightbox.lightboxAAA table th {
  background: #dae9fa;
}
.lightbox.lightboxAAA li {
  text-align: left;
}
.lightbox.lightboxAAA .source {
  padding: 10px 15px 10px 35px;
}
@media screen and (max-width: 991px) {
  .lightbox.lightboxCo .all-content {
    display: block;
  }
}

.source {
  font-size: 14px;
  line-height: 22px;
}
.source a {
  color: #ff7e45;
}
@media screen and (max-width: 768px) {
  .source {
    font-size: 12px;
    line-height: 18px;
  }
}

ul.source {
  list-style: disc;
  padding: 30px 0;
  padding-left: 20px;
  border-bottom: 2px solid #dae9fa;
}
@media screen and (max-width: 576px) {
  ul.source {
    padding: 10px 0 10px 20px;
  }
}

/* footer {
    padding-bottom: 150px;
    @media screen and (max-width: 992px) {
        padding-bottom: 100px;
    }
    @media screen and (max-width: 576px) {
        padding-bottom: 20px;
    }
} */
.sticker {
  position: fixed;
  right: 20px;
  top: 50%;
  transform: translateY(-50%);
  z-index: 3000;
}
@media screen and (max-width: 576px) {
  .sticker {
    right: 10px;
  }
}
.sticker .desktop {
  width: 120px;
}
.sticker .mobile {
  width: 40px;
}

/*隱鑶*/
.for_phone {
  display: none !important;
}

.for_pad {
  display: none !important;
}

@media screen and (min-width: 899px) and (max-width: 1024px) {
  .for_phone {
    display: none !important;
  }
  .for_pad {
    display: inherit !important;
  }
  .for_phone {
    display: none !important;
  }
}
@media screen and (max-width: 899px) {
  .for_pc {
    display: none !important;
  }
  .for_pad {
    display: none !important;
  }
  .for_phone {
    display: inherit !important;
  }
}/*# sourceMappingURL=main.css.map */