:root {
  --bs-font-sans-serif: Encode Sans Semi Expanded,SF Pro SC,SF Pro Text,SF Pro Icons,PingFang SC,Helvetica Neue,Helvetica,Arial,sans-serif;
  --bs-blue: #7789e7;
  --bs-body-line-height: 2;
  --bs-primary: #7789e7;
  --swiper-theme-color: #7789e7;
  --swiper-navigation-size: 30;
}

.title-1 {
  font-size: 2rem;
  font-weight: bolder;
  padding-top: 60px;
  padding-bottom: 30px;
  color: var(--bs-gray-800);
}

@media (min-width: 768px) {
  .title-1 {
    font-size: 3rem;
  }
}

.title-2 {
  font-size: 1.5rem;
  font-weight: bolder;
  padding-top: 60px;
  padding-bottom: 10px;
  color: var(--bs-gray-700);
}

@media (min-width: 768px) {
  .title-2 {
    font-size: 2rem;
  }
}

.title-3 {
  font-size: 1.2rem;
  font-weight: bolder;
  padding-top: 25px;
  padding-bottom: 0px;
  color: var(--bs-gray-700);
}

@media (min-width: 768px) {
  .title-3 {
    font-size: 1.5rem;
  }
}

#slogan #words, #cursor, .color-icon {
  color: var(--bs-blue);
  background-image: linear-gradient(320deg,var(--bs-blue),#a9b6fe);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
}

.information-1 {
  font-size: 1rem;
  line-height: 2rem;
  color: var(--bs-gray-500);
}

@media (min-width: 768px) {
  .information-1 {
    font-size: 1.2rem;
    line-height: 2.4rem;
  }
}

.information-2 {
  font-size: 1rem;
  line-height: 2rem;
  color: var(--bs-gray-500);
}

@media (min-width: 768px) {
  .information-2 {
    font-size: 1.2rem;
    line-height: 2.4rem;
  }
}

.information-3 {
  font-size: 0.8rem;
  line-height: 1.8rem;
  color: var(--bs-gray-500);
}

@media (min-width: 768px) {
  .information-3 {
    font-size: 1rem;
    line-height: 2rem;
  }
}

.last-line {
  padding-bottom: 40px;
}

#header-box {
  height: 70vh;
  background-color: var(--bs-gray-200);
  background-image: url("../../assets/img/header.jpg");
  background-repeat: no-repeat;
  background-position: bottom -4vh center;
  background-size: 120vw;
}

@media (max-width: 600px) {
  #header-box {
    background-position: bottom -5vh center;
    background-size: 300vw;
  }
}

#header-box .text-cn {
  position: absolute;
  top: 50%;
  left: 50%;
  margin-left: -300px;
  margin-top: -300px;
  width: 600px;
}

@media (max-width: 768px) {
  #header-box .text-cn {
    margin-left: -200px;
    margin-top: -200px;
    width: 400px;
  }
}

@media (max-width: 456px) {
  #header-box .text-cn {
    margin-left: -150px;
    margin-top: -150px;
    width: 300px;
  }
}

.dot {
  position: absolute;
  width: 48px;
  z-index: 1;
  height: 48px;
  border-radius: 50%;
  background: linear-gradient(135deg,#ed853b,#D06731);
  box-shadow: 0px 4px 6px rgba(0,0,0,.06);
  margin-left: -24px;
  margin-top: -24px;
}

@media (max-width: 768px) {
  .dot {
    width: 24px;
    height: 24px;
    margin-left: -12px;
    margin-top: -12px;
  }
}

.dot-2 {
  position: absolute;
  width: 24px;
  z-index: 1;
  height: 24px;
  border-radius: 50%;
  background: linear-gradient(135deg,#ed853b,#D06731);
  box-shadow: 0px 4px 6px rgba(0,0,0,.06);
  margin-left: -12px;
  margin-top: -12px;
}

@media (max-width: 768px) {
  .dot-2 {
    width: 12px;
    height: 12px;
    margin-left: -6px;
    margin-top: -6px;
  }
}

.grow {
  -webkit-animation: grow-anim 2s infinite;
  animation: grow-anim 2s infinite;
  animation-timing-function: ease;
}

.grow-2 {
  -webkit-animation: grow-anim-2 2s infinite;
  animation: grow-anim-2 2s infinite;
  animation-timing-function: ease;
}

@keyframes grow-anim {
  0% {
    box-shadow: 0px 4px 6px rgba(0,0,0,.06),0 0 0 0 rgba(237,133,59,0.8);
  }
  to {
    box-shadow: 0px 4px 6px rgba(0,0,0,.06),0 0 0 32px transparent;
  }
}

@keyframes grow-anim-2 {
  0% {
    box-shadow: 0px 4px 6px rgba(0,0,0,.06),0 0 0 0 rgba(237,133,59,0.8);
  }
  to {
    box-shadow: 0px 4px 6px rgba(0,0,0,.06),0 0 0 16px transparent;
  }
}

.card {
  position: relative;
  display: flex;
  flex-direction: column;
  min-width: 0;
  word-wrap: break-word;
  background-color: #fff;
  background-clip: border-box;
  border: 0px solid rgba(0,0,0,.125);
  border-radius: 0.5rem;
  box-shadow: 0px 5px 30px rgba(0,0,0,0.05);
}

.card-img, .card-img-top {
  border-top-left-radius: calc(.5rem - 1px);
  border-top-right-radius: calc(.5rem - 1px);
}

.table-dark {
  --bs-table-bg: rgba(0,0,0,0);
  --bs-table-striped-bg: #2c3034;
  --bs-table-striped-color: #fff;
  --bs-table-active-bg: #373b3e;
  --bs-table-active-color: #fff;
  --bs-table-hover-bg: #323539;
  --bs-table-hover-color: #fff;
  color: #fff;
  border-color: rgba(255,255,255,0.4);
}

a:hover {
  color: inherit;
}

a {
  color: inherit;
  text-decoration: none;
}

.card-title {
  margin-bottom: .5rem;
  font-size: 1rem;
}

.dark-box {
  background-color: var(--bs-gray-100);
}

.tooltip {
  background: #333;
  color: white;
  font-weight: bold;
  padding: 4px 8px;
  font-size: 13px;
  border-radius: 4px;
}

.simple-slider .swiper-button-next, .simple-slider .swiper-button-prev {
  margin-left: 0px;
  margin-right: 0px;
}

.product-link-title {
  font-size: 1.2rem;
  margin-top: 1.25rem;
  border-top: 1px solid rgba(255,255,255,0.2);
  color: rgba(255,255,255,1.0);
  font-weight: bold;
  padding-top: 1rem;
}

#product-link-insert :first-child {
  margin-top: 0rem;
  border-top: 0px;
  padding-top: 0rem;
}

.icp {
  text-align: center;
}

