:root {
  --wrapper-width: 1024px;
  --wrapper-padding: 8px;
  --color-primary: #4d7ee9;
  --color-secondary: #1cd013;
  --color-tertiary: #8dacef;
  --color-quaternary: #74e06f;
  --color-quinary: #ff6600;
}

*,
::before,
::after {
  -webkit-box-sizing: border-box;
          box-sizing: border-box;
}

[v-cloak] {
  opacity: 0;
}

body {
  /* Prevent scroll chaining */
  overscroll-behavior-y: contain;
  /* scroll bar space */
  scrollbar-gutter: stable;
}

/* Chrome, Safari, Edge, Opera */
input[type=number]::-webkit-outer-spin-button,
input[type=number]::-webkit-inner-spin-button {
  -webkit-appearance: none;
  margin: 0;
}

/* Firefox */
input[type=number] {
  -moz-appearance: textfield;
}

/* Remove default input eye */
input::-ms-reveal,
input::-ms-clear {
  display: none;
}

/* scrollbar */
::-webkit-scrollbar-track {
  background: #f1f1f1;
}

::-webkit-scrollbar-thumb {
  background: #888;
  border-radius: 4px;
}

::-webkit-scrollbar-thumb:hover {
  background: #555;
}

img {
  display: block;
  vertical-align: middle;
  max-width: 100%;
  height: auto;
}

.wrapper {
  width: var(--wrapper-width);
  max-width: 100%;
  padding: 0 var(--wrapper-padding);
  margin: 0 auto;
}

/* Transition */
.fade-enter-active, .fade-leave-active {
  -webkit-transition: opacity 0.3s;
  transition: opacity 0.3s;
}
.fade-enter {
  opacity: 0;
}
.fade-leave {
  opacity: 1;
}
.fade-leave-to {
  opacity: 0;
}

.base-link {
  overflow-wrap: break-word;
}

.base-btn {
  background: none;
  border: none;
  outline: none;
  padding: 0;
  cursor: pointer;
}

.base-table {
  width: 100%;
  -webkit-box-shadow: 8px 8px 4px #ebebeb;
          box-shadow: 8px 8px 4px #ebebeb;
  font-size: 16px;
  line-height: 1.1;
}
.base-table thead th:nth-child(1) {
  color: #fff;
  background: radial-gradient(var(--color-quaternary), var(--color-secondary));
}
.base-table thead th:nth-child(2) {
  color: #fff;
  background: radial-gradient(var(--color-tertiary), var(--color-primary));
}
.base-table td,
.base-table th {
  text-align: center;
  padding: 8px 16px;
  border: 1px solid #fff;
  vertical-align: middle;
}
.base-table tbody tr:nth-child(odd) {
  background-color: #f8f8f8;
}
.base-table tbody tr:nth-child(even) {
  background-color: #e6e6e6;
}
@media screen and (min-width: 768px) {
  .base-table {
    font-size: 18px;
  }
}

.color-primary {
  color: var(--color-primary);
}

.font-bold {
  font-weight: 700;
}

.header {
  position: relative;
  background-color: #fff;
  z-index: 1;
}
.header .wrapper {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  -webkit-box-pack: justify;
      -ms-flex-pack: justify;
          justify-content: space-between;
  height: 56px;
}

.footer {
  position: relative;
  color: #313e54;
  background: #f2f2f2;
  padding: 40px 0px 0;
  font-weight: bold;
  --background-rainbow: linear-gradient(
      90deg,
      #df1c4b 0%,
      #f41f5e 15%,
      #f96585 25%,
      #f8613c 40%,
      #b495cd 50%,
      #ceabf9 60%,
      #797df2 75%,
      #489cf6 85%,
      #6f59ed 100%
  );
}
.footer::before {
  content: "";
  position: absolute;
  width: 100%;
  height: 16px;
  top: 0;
  background: var(--background-rainbow);
}
.footer .footer-head {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
      -ms-flex-direction: column;
          flex-direction: column;
  gap: 16px;
  text-align: center;
  font-weight: 700;
  margin-bottom: 24px;
}
.footer .footer-company-name {
  font-size: 22px;
  margin: 16px 0;
}
.footer .footer-company-desc {
  font-size: 14px;
}
.footer .footer-head-contact {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
      -ms-flex-direction: column;
          flex-direction: column;
  gap: 16px;
  font-weight: 700;
}
.footer .footer-head-phone {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
      -ms-flex-direction: column;
          flex-direction: column;
  gap: 8px;
}
.footer .footer-head-phone-number {
  font-size: 30px;
  color: #021d3a;
  text-decoration: none;
}
.footer .footer-social-media {
  padding: 0px;
  margin: 0px;
  list-style: none;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-pack: center;
      -ms-flex-pack: center;
          justify-content: center;
  gap: 16px;
}
.footer .footer-social-media-item {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-pack: center;
      -ms-flex-pack: center;
          justify-content: center;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  text-decoration: none;
  color: #fff;
  -webkit-transition: 0.3s ease all;
  transition: 0.3s ease all;
  background: #021d3a;
  border-radius: 50%;
  width: 40px;
  height: 40px;
  font-size: 22px;
}
.footer .footer-warning {
  position: relative;
  padding: 24px 0 0;
}
.footer .footer-warning::before {
  content: "";
  position: absolute;
  width: 100%;
  height: 2px;
  top: -2px;
  background: var(--background-rainbow);
}
.footer .footer-warning ul {
  padding: 0px;
  margin: 0px;
  list-style: none;
  font-size: 15px;
}
.footer .footer-warning ul li {
  margin-bottom: 16px;
  line-height: 1.5;
}
.footer .footer-copyright-text {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
      -ms-flex-direction: column;
          flex-direction: column;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  -webkit-box-pack: center;
      -ms-flex-pack: center;
          justify-content: center;
  width: -webkit-max-content;
  width: -moz-max-content;
  width: max-content;
  font-size: 12px;
  border: solid 1px #50ffcf;
  margin: auto;
  padding: 4px 32px;
  border-radius: 30px;
  background: -webkit-gradient(linear, left top, right top, from(rgba(75, 153, 255, 0.4)), to(rgba(214, 125, 255, 0.5)));
  background: linear-gradient(90deg, rgba(75, 153, 255, 0.4) 0%, rgba(214, 125, 255, 0.5) 100%);
  line-height: 1.2rem;
}
.footer .footer-bottom-contact {
  position: relative;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
      -ms-flex-direction: column;
          flex-direction: column;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  -webkit-box-pack: center;
      -ms-flex-pack: center;
          justify-content: center;
  gap: 8px;
  font-size: 12px;
  color: #fff;
  background-color: #021d3a;
  padding: 16px 0;
  margin: 40px 0 0;
}
.footer .footer-bottom-contact::before {
  content: "";
  position: absolute;
  width: 100%;
  height: 4px;
  top: -4px;
  background: var(--background-rainbow);
}
@media screen and (max-width: 1199px) {
  .footer .footer-head img {
    margin: auto;
  }
}
@media screen and (min-width: 769px) {
  .footer .footer-head {
    -webkit-box-orient: horizontal;
    -webkit-box-direction: normal;
        -ms-flex-direction: row;
            flex-direction: row;
    -webkit-box-pack: space-evenly;
        -ms-flex-pack: space-evenly;
            justify-content: space-evenly;
  }
  .footer .footer-social-media {
    -webkit-box-ordinal-group: 0;
        -ms-flex-order: -1;
            order: -1;
  }
}
@media screen and (min-width: 1200px) {
  .footer .footer-head {
    text-align: left;
    -webkit-box-pack: justify;
        -ms-flex-pack: justify;
            justify-content: space-between;
  }
  .footer .footer-head-contact {
    -webkit-box-orient: horizontal;
    -webkit-box-direction: normal;
        -ms-flex-direction: row;
            flex-direction: row;
    -ms-flex-item-align: end;
        align-self: flex-end;
  }
  .footer .footer-head-phone {
    -webkit-box-orient: horizontal;
    -webkit-box-direction: normal;
        -ms-flex-direction: row;
            flex-direction: row;
    -webkit-box-align: center;
        -ms-flex-align: center;
            align-items: center;
  }
}

.go-top-icon {
  position: fixed;
  bottom: 64px;
  right: 16px;
  border-radius: 50%;
  z-index: 1;
  width: 48px;
  height: 48px;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
      -ms-flex-direction: column;
          flex-direction: column;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  -webkit-box-pack: center;
      -ms-flex-pack: center;
          justify-content: center;
  font-size: 12px;
  background-color: rgba(0, 0, 0, 0.6);
  color: #fff;
  cursor: pointer;
  border: 2px solid #fff;
  -webkit-box-sizing: border-box;
          box-sizing: border-box;
  -webkit-transition: opacity 0.4s;
  transition: opacity 0.4s;
}
.go-top-icon:hover {
  opacity: 0.8;
}
.go-top-enter-active, .go-top-leave-active {
  -webkit-transition: 0.3s;
  transition: 0.3s;
}
.go-top-enter, .go-top-leave-to {
  -webkit-transform: translateY(120px);
          transform: translateY(120px);
}
@media (max-width: 767px) {
  .go-top-caret-icon {
    font-size: 24px;
  }
  .go-top-text {
    display: none;
  }
}

.h2-title {
  position: relative;
  font-size: 20px;
  font-weight: 700;
  padding-bottom: 16px;
  line-height: 1.2;
  text-align: center;
}
.h2-title .pic-h2-title {
  margin: auto;
  position: absolute;
  left: 0;
  right: 0;
  bottom: 0;
}
@media screen and (min-width: 768px) {
  .h2-title {
    font-size: 36px;
    padding-bottom: 40px;
  }
}

.h3-title {
  --border-width: 6px;
  --offset: -3px;
  position: relative;
  font-weight: 700;
  text-align: center;
  width: -webkit-fit-content;
  width: -moz-fit-content;
  width: fit-content;
  border: 1px solid;
  -o-border-image: linear-gradient(to bottom, #000, #f5f5f5, #000) 1;
     border-image: -webkit-gradient(linear, left top, left bottom, from(#000), color-stop(#f5f5f5), to(#000)) 1;
     border-image: linear-gradient(to bottom, #000, #f5f5f5, #000) 1;
  margin: auto;
  padding: 8px 16px;
}
.h3-title::before, .h3-title::after {
  content: "";
  position: absolute;
  width: 16px;
  height: 16px;
  background: #000;
}
.h3-title::before {
  top: var(--offset);
  left: var(--offset);
  clip-path: polygon(0 0, 100% 0, 100% var(--border-width), var(--border-width) var(--border-width), var(--border-width) 100%, 0 100%);
}
.h3-title::after {
  bottom: var(--offset);
  right: var(--offset);
  clip-path: polygon(0 0, calc(100% - var(--border-width)) 0, calc(100% - var(--border-width)) calc(100% - var(--border-width)), 0 calc(100% - var(--border-width)), 0 100%, 100% 100%, 100% 0);
}
@media screen and (min-width: 768px) {
  .h3-title {
    font-size: 24px;
    padding: 16px 24px;
  }
}

.remark {
  font-size: 12px;
  line-height: 1.1;
}

.section-banner {
  --offset: 16px;
  position: relative;
  overflow: hidden;
}
.section-banner .content {
  position: absolute;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-pack: center;
      -ms-flex-pack: center;
          justify-content: center;
  top: 0;
  left: 0;
  right: 0;
  text-align: center;
  margin: auto;
}
.section-banner .pic-banner {
  height: 320px;
  -o-object-fit: cover;
     object-fit: cover;
}
.section-banner .pic-horse {
  position: absolute;
  width: 375px;
  right: -5px;
  bottom: -40px;
}
.section-banner .title {
  --border-width: 4px;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
      -ms-flex-direction: column;
          flex-direction: column;
  position: relative;
  font-size: 30px;
  font-weight: 700;
  margin: var(--offset);
  width: -webkit-fit-content;
  width: -moz-fit-content;
  width: fit-content;
}
.section-banner .title .subtitle {
  font-size: 24px;
  -webkit-box-ordinal-group: 2;
      -ms-flex-order: 1;
          order: 1;
  color: var(--color-primary);
  margin: 8px 0;
}
.section-banner .title .main-title {
  position: relative;
  overflow: hidden;
  background: linear-gradient(120deg, #000 40%, rgba(255, 255, 255, 0.1) 50%, #000 60%);
  background-size: 200%;
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  -webkit-animation: shine 4s linear infinite;
          animation: shine 4s linear infinite;
}
.section-banner .pic-line {
  position: relative;
}
@media screen and (min-width: 768px) {
  .section-banner .content {
    top: revert;
    left: revert;
    right: revert;
    display: revert;
    text-align: left;
    bottom: 10%;
  }
  .section-banner .title {
    font-size: 52px;
  }
  .section-banner .title::before, .section-banner .title::after {
    content: "";
    position: absolute;
    width: 40px;
    height: 40px;
    background: linear-gradient(45deg, var(--color-tertiary), var(--color-primary));
  }
  .section-banner .title::before {
    top: calc(var(--offset) * -1);
    left: calc(var(--offset) * -1);
    clip-path: polygon(0 0, 100% 0, 100% var(--border-width), var(--border-width) var(--border-width), var(--border-width) 100%, 0 100%);
  }
  .section-banner .title::after {
    bottom: calc(var(--offset) * -1);
    right: calc(var(--offset) * -1);
    clip-path: polygon(0 0, calc(100% - var(--border-width)) 0, calc(100% - var(--border-width)) calc(100% - var(--border-width)), 0 calc(100% - var(--border-width)), 0 100%, 100% 100%, 100% 0);
  }
  .section-banner .title .subtitle {
    font-size: 36px;
    -webkit-box-ordinal-group: revert;
        -ms-flex-order: revert;
            order: revert;
  }
  .section-banner .pic-banner {
    min-height: 240px;
    height: auto;
  }
  .section-banner .pic-horse {
    left: max(41dvw, 432px);
    right: revert;
    width: 43.59375dvw;
  }
}
@media screen and (min-width: 1024px) {
  .section-banner .pic-horse {
    bottom: -120px;
  }
}
@media screen and (min-width: 1280px) {
  .section-banner .title {
    left: -120px;
  }
}

.section-1 {
  padding: 24px 0;
}
.section-1 .wrapper {
  position: relative;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
      -ms-flex-direction: column;
          flex-direction: column;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  -webkit-box-pack: center;
      -ms-flex-pack: center;
          justify-content: center;
}
.section-1 .pic-bg {
  display: none;
  position: absolute;
  top: 0;
  bottom: 0;
  margin: auto;
  left: 0;
  z-index: -1;
}
.section-1 .pic-iphone {
  display: none;
}
.section-1 .youtube {
  max-width: 317px;
  width: 100%;
  aspect-ratio: 9/16;
  overflow: hidden;
}
.section-1 .youtube iframe {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
}
.section-1 .title {
  text-align: center;
  -webkit-box-ordinal-group: 0;
      -ms-flex-order: -1;
          order: -1;
  line-height: 1.2;
  font-size: 20px;
  font-weight: 700;
}
.section-1 .title .main-title {
  margin: 8px 0;
}
.section-1 .title .main-title br {
  display: none;
}
@media screen and (min-width: 1024px) {
  .section-1 {
    padding: 40px 0;
  }
  .section-1 .wrapper {
    -webkit-box-orient: horizontal;
    -webkit-box-direction: normal;
        -ms-flex-direction: row;
            flex-direction: row;
  }
  .section-1 .pic-bg {
    display: block;
  }
  .section-1 .pic-iphone {
    display: block;
  }
  .section-1 .youtube {
    position: absolute;
    left: 34.5%;
  }
  .section-1 .title {
    position: absolute;
    left: calc(50% + 227px);
    text-align: left;
    -webkit-box-ordinal-group: revert;
        -ms-flex-order: revert;
            order: revert;
    font-size: 24px;
  }
  .section-1 .title .main-title {
    font-size: 36px;
  }
  .section-1 .title .main-title br {
    display: block;
  }
}

.section-2 {
  padding: 24px 0;
  background-image: url("../images/bg_jumpingHorse.webp");
  background-repeat: no-repeat;
}
.section-2 .subtitle {
  line-height: 1.3;
  text-align: center;
  margin: 32px 0;
}
.section-2 .h3-title {
  margin: 16px auto;
}
.section-2 .pic-chart {
  margin: 24px auto;
}
@media screen and (min-width: 768px) {
  .section-2 {
    padding: 40px 0;
  }
  .section-2 .subtitle {
    font-size: 18px;
  }
  .section-2 .h3-title {
    margin: 40px auto 16px;
  }
  .section-2 .pic-chart {
    margin: 40px auto;
  }
}

.section-3 {
  padding: 24px 0;
  background-image: url("../images/bg_worldMap.webp");
  background-position: center 160px;
  background-repeat: no-repeat;
}
.section-3 .subtitle {
  line-height: 1.3;
  text-align: center;
  margin: 32px 0;
}
.section-3 .h3-title {
  margin: 40px auto 16px;
}
.section-3 .section-market {
  margin: 32px auto 0;
}
.section-3 .section-market .tab-bar {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: end;
      -ms-flex-align: end;
          align-items: flex-end;
  gap: 16px;
  width: 100%;
}
.section-3 .section-market .tab-bar .tab-item {
  height: 45px;
  -webkit-transition: all 0.4s;
  transition: all 0.4s;
}
.section-3 .section-market .tab-bar .title {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  -ms-flex-pack: distribute;
      justify-content: space-around;
  width: 100%;
  height: 100%;
  -webkit-transition: all 0.4s;
  transition: all 0.4s;
}
.section-3 .section-market .tab-bar .pic-line {
  margin-top: 4px;
  height: 2px;
}
.section-3 .section-market .base-table {
  margin: 40px 0;
}
@media screen and (min-width: 768px) {
  .section-3 {
    padding: 40px 0;
  }
  .section-3 .subtitle {
    font-size: 18px;
  }
  .section-3 .section-market .tab-bar {
    gap: 32px;
  }
  .section-3 .section-market .tab-bar .tab-item {
    height: revert;
  }
  .section-3 .section-market .tab-bar .tab-item .title {
    height: 44px;
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-align: center;
        -ms-flex-align: center;
            align-items: center;
    -webkit-box-pack: center;
        -ms-flex-pack: center;
            justify-content: center;
    gap: 40px;
    font-size: 24px;
    margin: 16px 0;
  }
  .section-3 .section-bottom {
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    gap: 32px;
  }
  .section-3 .section-bottom .base-table,
  .section-3 .section-bottom .pic-wrapper {
    width: 100%;
  }
}
@media screen and (max-width: 767px) {
  .section-3 .section-market .tab-bar .tab-item.activate {
    -webkit-transform: translateY(-8px);
            transform: translateY(-8px);
  }
  .section-3 .section-market .tab-bar .tab-item.activate .title {
    font-size: 24px;
    font-weight: 700;
    color: var(--color-primary);
  }
  .section-3 .section-bottom .base-table,
  .section-3 .section-bottom .pic-wrapper {
    display: none;
  }
  .section-3 .section-bottom .base-table.show-content,
  .section-3 .section-bottom .pic-wrapper.show-content {
    display: table;
  }
  .section-3 .section-bottom .pic-wrapper.show-content {
    display: block;
  }
}

.section-4 {
  padding: 24px 0;
  background-image: url("../images/bg_flag.webp");
  background-repeat: no-repeat;
}
.section-4 .h3-title {
  margin-top: 40px;
}
.section-4 .chart-wrapper {
  overflow-x: auto;
  overflow-y: hidden;
}
.section-4 .pic-chart {
  margin: 32px auto;
  max-width: 916px;
}
@media screen and (min-width: 768px) {
  .section-4 {
    padding: 40px 0;
  }
}

.section-5 {
  padding: 24px 0;
  background-image: url("../images/bg_Candlestick.webp");
  background-repeat: no-repeat;
}
.section-5 .base-table {
  margin: 24px 0;
}
.section-5 .base-table td {
  padding: 24px;
}
@media screen and (min-width: 768px) {
  .section-5 {
    padding: 40px 0;
  }
  .section-5 .base-table {
    margin: 60px 0 32px;
  }
  .section-5 .base-table tbody td:nth-child(2) {
    text-align: left;
  }
}

.section-6 {
  padding: 24px 0;
  background-image: url("../images/bg_2horses.webp");
  background-repeat: no-repeat;
}
.section-6 .h2-title {
  margin-bottom: 32px;
}
.section-6 .base-table {
  margin: 16px 0;
}
.section-6 .base-table tbody tr:nth-child(odd) {
  background-color: #ddd;
}
.section-6 .base-table tbody tr:nth-child(even) {
  background-color: #efefef;
}
.section-6 .base-table tbody tr:nth-child(1) th {
  color: #fff;
  background: radial-gradient(circle, var(--color-tertiary), var(--color-primary));
  white-space: pre;
}
.section-6 .base-table tbody tr:nth-child(1) .first {
  -webkit-writing-mode: vertical-lr;
      -ms-writing-mode: tb-lr;
          writing-mode: vertical-lr;
  color: #fff;
  background: radial-gradient(circle, var(--color-quaternary), var(--color-secondary));
  letter-spacing: 2px;
}
.section-6 .base-table tbody tr:last-child {
  color: var(--color-quinary);
}
.section-6 .base-table th,
.section-6 .base-table td {
  padding: 8px;
}
@media screen and (min-width: 768px) {
  .section-6 {
    padding: 40px 0;
  }
  .section-6 .h2-title {
    margin-bottom: 64px;
  }
  .section-6 .base-table th,
  .section-6 .base-table td {
    padding: 8px 16px;
  }
}

.section-7 {
  position: relative;
  padding: 24px 0 160px;
  background-image: url("../images/grass.webp");
  background-position: bottom;
  background-repeat: no-repeat;
}
.section-7 .pic-bg {
  position: absolute;
  bottom: 0;
}
.section-7 .section-item {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
      -ms-flex-direction: column;
          flex-direction: column;
  -webkit-box-pack: center;
      -ms-flex-pack: center;
          justify-content: center;
  gap: 40px;
  margin: 40px 0;
}
.section-7 .section-item .item-block {
  --border-width: 6px;
  --offset: -3px;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
      -ms-flex-direction: column;
          flex-direction: column;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  position: relative;
  width: 100%;
  padding: 8px;
  background: #fff;
  border: 1px solid;
  line-height: 1.5;
  -o-border-image: linear-gradient(to bottom, #000, #f5f5f5, #000) 1;
     border-image: -webkit-gradient(linear, left top, left bottom, from(#000), color-stop(#f5f5f5), to(#000)) 1;
     border-image: linear-gradient(to bottom, #000, #f5f5f5, #000) 1;
  -webkit-box-shadow: 8px 8px 4px #ebebeb;
          box-shadow: 8px 8px 4px #ebebeb;
}
.section-7 .section-item .item-block::before, .section-7 .section-item .item-block::after {
  content: "";
  position: absolute;
  width: 16px;
  height: 16px;
  background: #000;
}
.section-7 .section-item .item-block::before {
  top: var(--offset);
  left: var(--offset);
  clip-path: polygon(0 0, 100% 0, 100% var(--border-width), var(--border-width) var(--border-width), var(--border-width) 100%, 0 100%);
}
.section-7 .section-item .item-block::after {
  bottom: var(--offset);
  right: var(--offset);
  clip-path: polygon(0 0, calc(100% - var(--border-width)) 0, calc(100% - var(--border-width)) calc(100% - var(--border-width)), 0 calc(100% - var(--border-width)), 0 100%, 100% 100%, 100% 0);
}
.section-7 .section-item .item-block .name {
  font-size: 20px;
  -ms-flex-item-align: stretch;
      -ms-grid-row-align: stretch;
      align-self: stretch;
  text-align: center;
  padding: 8px;
  background: #e6e6e6;
  letter-spacing: 0.5rem;
}
.section-7 .section-item .item-block .pic-fund {
  margin: 16px auto 0;
}
.section-7 .section-item .item-block .content {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
      -ms-flex-direction: column;
          flex-direction: column;
  padding: 16px;
  gap: 16px;
  line-height: 1.5;
}
.section-7 .section-item .item-block .content p {
  position: relative;
  padding-left: 24px;
}
.section-7 .section-item .item-block .content p i {
  position: absolute;
  color: var(--color-primary);
  left: 0;
  top: 4px;
}
.section-7 .section-item .item-block .pic-line {
  margin: 16px auto;
  width: 90%;
}
.section-7 .section-item .item-block .fund {
  font-size: 20px;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
      -ms-flex-direction: column;
          flex-direction: column;
  -webkit-box-pack: center;
      -ms-flex-pack: center;
          justify-content: center;
  padding: 0 32px;
  text-align: center;
}
.section-7 .section-item .item-block .btn {
  --btn-height: 40px;
  position: relative;
  display: inline-block;
  text-decoration: none;
  border-radius: 20px 0 0 20px;
  padding: 8px 0 8px 16px;
  margin: 16px 0;
  height: var(--btn-height);
  color: #fff;
  background: radial-gradient(circle, var(--color-quaternary), var(--color-secondary));
}
.section-7 .section-item .item-block .btn::before, .section-7 .section-item .item-block .btn::after {
  content: "";
  position: absolute;
  right: calc(-1 * var(--btn-height) / 2);
  width: 0;
  height: 0;
  border-style: solid;
}
.section-7 .section-item .item-block .btn::before {
  top: 0;
  border-width: calc(var(--btn-height) / 2) 0 0 calc(var(--btn-height) / 2);
  border-color: transparent transparent transparent var(--color-secondary);
}
.section-7 .section-item .item-block .btn::after {
  top: calc(var(--btn-height) / 2);
  border-width: calc(var(--btn-height) / 2) calc(var(--btn-height) / 2) 0 0;
  border-color: var(--color-secondary) transparent transparent transparent;
}
.section-7 .section-item .item-block .btn .icon {
  margin: 0 4px;
}
.section-7 .subtitle {
  font-size: 20px;
  line-height: 1.1;
  text-align: center;
}
.section-7 .base-table {
  margin: 32px 0;
}
.section-7 .base-table tbody tr:nth-child(odd) th {
  color: #fff;
  background: radial-gradient(circle, var(--color-quaternary), var(--color-secondary));
}
.section-7 .base-table tbody tr:nth-child(even) th {
  color: #fff;
  background: radial-gradient(circle, var(--color-tertiary), var(--color-primary));
}
.section-7 .base-table tbody tr td:nth-child(odd) {
  background: #e6e6e6;
}
.section-7 .base-table tbody tr td:nth-child(even) {
  background: #f8f8f8;
}
.section-7 .base-table tbody tr td,
.section-7 .base-table tbody tr th {
  padding: 16px;
}
@media screen and (min-width: 768px) {
  .section-7 {
    padding: 40px 0 160px;
  }
  .section-7 .section-item .item-block {
    font-size: 18px;
  }
  .section-7 .section-item .item-block .name {
    font-size: 24px;
    padding: 16px;
  }
  .section-7 .section-item .item-block .pic-fund {
    margin: 32px auto 16px;
  }
  .section-7 .section-item .item-block .content {
    min-height: 280px;
  }
  .section-7 .section-item .item-block .fund {
    min-height: 160px;
    font-size: 18px;
  }
  .section-7 .section-item .item-block .btn {
    margin: 32px 0;
  }
  .section-7 .subtitle {
    font-size: 24px;
  }
}
@media screen and (min-width: 1024px) {
  .section-7 .section-item {
    -webkit-box-orient: horizontal;
    -webkit-box-direction: normal;
        -ms-flex-direction: row;
            flex-direction: row;
  }
  .section-7 .section-item .item-block .pic-line {
    width: 230px;
  }
}
@media screen and (max-width: 767px) {
  .section-7 .base-table th,
  .section-7 .base-table td {
    display: block;
  }
  .section-7 .base-table tbody {
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
  }
  .section-7 .base-table tr {
    width: 100%;
  }
}

.color-quinary {
  color: var(--color-quinary);
}

.hidden-sm {
  display: none;
}
@media screen and (min-width: 768px) {
  .hidden-sm {
    display: revert;
  }
}

@media screen and (min-width: 768px) {
  .hidden-md {
    display: none;
  }
}

@-webkit-keyframes shine {
  from {
    background-position: 100% center;
  }
  to {
    background-position: -100% center;
  }
}

@keyframes shine {
  from {
    background-position: 100% center;
  }
  to {
    background-position: -100% center;
  }
}