:root {
  --primary: #363865;
}

html {
  height: 100%;
  scroll-behavior: smooth;
  -webkit-tap-highlight-color: transparent;
}

body {
  margin: 0;
  min-height: 100%;
  display: flex;
  flex-direction: column;
}

.dialog {
  position: fixed;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
  z-index: 3;
  width: 95%;
  max-width: 300px;
  border-radius: 4px;
  background: #fff;
  box-shadow: 0 0 5px rgba(0, 0, 0, 0.2);
  overflow: hidden;
  animation: showDialog 0.5s ease;
}
.dialog .title {
  display: flex;
  justify-content: space-between;
  align-items: center;
  font-size: 15px;
  background: var(--primary);
  padding: 12px 15px;
  height: 20px;
}
.dialog .title p {
  max-width: calc(100% - 60px);
  color: #fff;
  overflow: hidden;
  text-overflow: ellipsis;
  white-space: nowrap;
}
.dialog .title svg {
  color: #fff;
  cursor: pointer;
  width: 15px;
  height: 15px;
}
.dialog .content {
  padding: 20px 15px;
  color: #666;
}
.dialog + .mask {
  position: fixed;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  z-index: 2;
  background: rgba(0, 0, 0, 0.6);
  animation: showMask 0.5s ease;
}

.loading {
  position: fixed;
  top: 0;
  bottom: 0;
  left: 0;
  right: 0;
  background-color: rgba(0, 0, 0, 0.3);
  display: flex;
  justify-content: center;
  align-items: center;
}
.loading img {
  width: 40px;
  animation-name: example;
  animation-iteration-count: infinite;
  animation-duration: 5s;
}

.inner {
  width: 100%;
  height: 100%;
  max-width: 1200px;
  margin-left: auto;
  margin-right: auto;
  padding: 0 15px;
  box-sizing: border-box;
}

.adaptor {
  position: absolute;
  left: 0;
  right: 0;
  top: 0;
  bottom: 0;
}

.adaptor > * {
  display: block;
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.pagination {
  display: flex;
  list-style: none;
  margin: 0;
  padding: 0;
}

.pagination-item {
  color: #333;
  border: 1px solid #eee;
  cursor: pointer;
  transition: all 0.3s ease;
}

.pagination-item + .pagination-item {
  border-left: none;
}

.pagination-item:first-child {
  border-radius: 3px 0 0 3px;
}

.pagination-item:last-child {
  border-radius: 0 3px 3px 0;
}

.pagination-item.disabled {
  color: #d2d2d2;
  cursor: not-allowed;
}

.pagination-item:hover:not(.disabled):not(.active) {
  background-color: #f5f5f5;
  color: var(--primary);
  border-color: #f5f5f5;
}

.pagination-item.active {
  color: #fff;
  background-color: var(--primary);
  border-color: var(--primary);
}

.pagination-item__link {
  display: inline-flex;
  align-items: center;
  height: 28px;
  text-decoration: none;
  color: inherit;
  font-size: 14px;
  padding: 0 15px;
  box-sizing: border-box;
  cursor: inherit;
}

icon-font {
  display: flex;
}

icon-font svg {
  width: 1em;
  height: 1em;
  fill: currentColor;
  overflow: hidden;
  vertical-align: middle;
}

.animate {
  -webkit-animation-name: fadeInUp;
  animation-name: fadeInUp;
  animation-duration: 0.8s;
  animation-timing-function: ease;
}

@-webkit-keyframes fadeInUp {
  0% {
    opacity: 0;
    -webkit-transform: translate3d(0, 50px, 0);
    transform: translate3d(0, 50px, 0);
  }
  to {
    opacity: 1;
    -webkit-transform: translateZ(0);
    transform: translateZ(0);
  }
}

@keyframes fadeInUp {
  0% {
    opacity: 0;
    -webkit-transform: translate3d(0, 50px, 0);
    transform: translate3d(0, 50px, 0);
  }
  to {
    opacity: 1;
    -webkit-transform: translateZ(0);
    transform: translateZ(0);
  }
}

header {
  box-shadow: 0 0 12px rgba(0, 0, 0, 0.12);
  padding-top: 9px;
  padding-bottom: 9px;
  position: relative;
  z-index: 2;
}

header .inner {
  display: flex;
  align-items: center;
  justify-content: space-between;
}

.header-logo {
  margin: 0;
  padding: 0;
  position: relative;
  width: 62px;
  height: 62px;
}

.header-side {
  display: flex;
  flex: 1;
  justify-content: space-between;
  align-items: center;
  margin-left: 2vw;
}

.header-nav {
  display: flex;
  list-style: none;
  margin: 0;
  padding: 0;
}

.header-nav__item {
  font-size: 17px;
  color: #333;
  font-weight: 500;
  position: relative;
}

.header-nav__item.active {
  font-weight: 700;
}

.header-nav__item:hover .header-nav__sub {
  visibility: visible;
  opacity: 1;
}

.header-nav__item + .header-nav__item {
  margin-left: 2em;
}

.header-nav__link {
  color: inherit;
  text-decoration: none;
  position: relative;
  padding-bottom: 5px;
  box-sizing: border-box;
}

.header-nav__link::after {
  content: '';
  display: block;
  position: absolute;
  left: 50%;
  bottom: 0;
  width: 100%;
  height: 3px;
  max-width: 60px;
  background-color: var(--primary);
  border-radius: 2px;
  transform: translateX(-50%) scaleX(0);
  transition: all 0.3s ease;
}

.header-nav__item:hover .header-nav__link::after,
.header-nav__item.active .header-nav__link::after {
  transform: translateX(-50%) scaleX(1);
}

.header-nav__sub {
  transition: all 0.3s ease;
  visibility: hidden;
  opacity: 0;
  position: absolute;
  left: 0;
  list-style: none;
  min-width: 100%;
  white-space: nowrap;
  margin: 0;
  padding: 0;
  top: 30px;
  background-color: #fff;
  box-shadow: 0 0 12px rgba(0, 0, 0, 0.12);
  font-size: 16px;
  font-weight: normal;
}

.header-sub__link {
  color: inherit;
  text-decoration: none;
  display: block;
  text-align: center;
  overflow: hidden;
  text-overflow: ellipsis;
  white-space: nowrap;
  padding: 10px 15px;
}

.header-sub__link:hover {
  background-color: #f5f5f5;
}

.header-action {
  display: flex;
  align-items: center;
  margin-left: 2vw;
}

.header-action .header-nav__item {
  font-weight: normal;
  font-size: 15px;
  cursor: pointer;
}

.header-nav__label {
  display: flex;
  align-items: center;
}

.header-nav__item:hover .header-nav__label icon-font {
  transform: rotate(180deg);
}

.header-nav__label icon-font {
  transition: transform 0.3s ease;
}

.header-action .header-nav__sub::before {
  content: '';
  position: absolute;
  top: -12px;
  height: 12px;
  left: 0;
  width: 100%;
}

.header-menu {
  font-size: 28px;
  cursor: pointer;
  margin-left: 25px;
  display: none;
}

header ~ main {
  flex: 1;
}

header ~ aside {
  position: fixed;
  z-index: 9;
  width: 65vw;
  height: 100%;
  padding: 20px;
  background-color: #fff;
  box-sizing: border-box;
  overflow-y: auto;
  transform: translateX(-100%);
  transition: transform 0.3s ease;
}

header ~ aside.active {
  transform: translateX(0);
}

.mask {
  position: fixed;
  z-index: 8;
  width: 100%;
  height: 100%;
  background-color: rgba(0, 0, 0, 0.6);
  opacity: 1;
  visibility: visible;
  transition: all 0.3s ease;
  animation: show 0.3s ease;
}

@keyframes show {
  0% {
    opacity: 0;
    visibility: hidden;
  }
  100% {
    opacity: 1;
    visibility: visible;
  }
}

.mask.hide {
  opacity: 0;
  visibility: hidden;
}

.aside-nav__group {
  margin: 0;
  padding: 0;
  list-style: none;
}

.aside-nav__link {
  text-decoration: none;
  display: block;
  padding: 10px 0;
  color: #444;
}

.aside-sub__group {
  margin: 0;
  padding: 0 0 0 1em;
  box-sizing: border-box;
  list-style: none;
  height: 0;
  overflow: hidden;
  transition: height 0.3s ease;
}

footer {
  background-color: #333333;
  color: #fff;
  padding-top: 45px;
  padding-bottom: 45px;
  box-sizing: border-box;
}

.footer-copyright {
  text-align: center;
  margin: 0;
  font-size: 14px;
}

.footer-affix {
  position: fixed;
  right: 20px;
  bottom: 120px;
  width: 50px;
  height: 50px;
  background-color: var(--primary);
  color: #fff;
  border-radius: 50%;
  z-index: 2;
  display: flex;
  justify-content: center;
  align-items: center;
  font-size: 22px;
  transition: opacity 0.3s ease, visibility 0.3s ease;
  opacity: 0;
  visibility: hidden;
  cursor: pointer;
}

.footer-affix.active {
  opacity: 1;
  visibility: visible;
}

.banner {
  position: relative;
  background-color: #f5f5f5;
  --swiper-theme-color: #fff;
  --swiper-navigation-size: 20px;
}

.banner-next,
.banner-prev {
  background-color: rgba(0, 0, 0, 0.3);
  border-radius: 50%;
  width: 45px;
  height: 45px;
  transition: opacity 0.3s ease;
}

.banner-next.swiper-button-disabled,
.banner-prev.swiper-button-disabled {
  opacity: 0;
}

.banner .swiper-pagination-bullet {
  width: 12px;
  height: 12px;
  border-radius: 6px;
  transition: all 0.3s ease;
}

.banner .swiper-pagination-bullet-active {
  width: 30px;
}

.banner-item {
  position: relative;
  padding-bottom: 35.41%;
  min-height: 250px;
  box-sizing: border-box;
}

.banner-item__img {
  filter: brightness(0.7);
}

.banner-text {
  position: absolute;
  z-index: 2;
  color: #fff;
  top: 50%;
  left: 12%;
  width: 76%;
  max-height: 90%;
  max-width: 650px;
  overflow: hidden;
  transform: translateY(-50%);
}

.banner-text__title {
  font-size: 48px;
  margin: 0;
  font-weight: normal;
  overflow: hidden;
  text-overflow: ellipsis;
  display: -webkit-box;
  -webkit-line-clamp: 2;
  -webkit-box-orient: vertical;
}

.banner-text__content {
  line-height: 1.6;
  margin-bottom: 0;
  overflow: hidden;
  text-overflow: ellipsis;
  display: -webkit-box;
  -webkit-line-clamp: 5;
  -webkit-box-orient: vertical;
}

.home-intro {
  padding-top: 110px;
  padding-bottom: 110px;
}

.home-intro .inner {
  display: flex;
  flex-wrap: wrap;
}

.home-intro__main {
  width: 50%;
  margin-right: 10%;
}

.home-intro__title {
  font-weight: normal;
  font-size: 32px;
  margin: 0;
}

.home-intro__content {
  display: flow-root;
  margin-top: 25px;
}

.home-intro__side {
  flex: 1 0 0;
}

.home-intro__image {
  position: relative;
  overflow: hidden;
  padding-bottom: 75%;
  border-radius: 8px;
}

.home-intro__img {
  transition: transform 0.3s ease;
}

.home-intro__img:hover {
  transform: scale(1.1);
}

.home-feature {
  padding-top: 95px;
  padding-bottom: 95px;
  box-sizing: border-box;
  background-color: var(--primary);
}

.home-feature__title {
  font-size: 32px;
  margin: 0;
  font-weight: normal;
  color: #fff;
  text-align: center;
}

.home-feature__content {
  display: flow-root;
  margin-top: 40px;
}

.home-feature__group {
  display: flex;
  flex-wrap: wrap;
  padding: 0;
  margin: -15px;
  list-style: none;
}

.home-feature__item {
  width: 50%;
  padding: 15px;
  box-sizing: border-box;
}

.home-feature__inner {
  height: 100%;
  border-radius: 16px;
  background-color: #fff;
  padding: 40px;
  box-sizing: border-box;
  display: flex;
  transition: transform 0.3s ease;
}

.home-feature__inner:hover {
  transform: translateY(-10px);
}

.home-feature__icon {
  font-size: 40px;
  color: var(--primary);
}

.home-feature__main {
  flex: 1 0 0;
  margin-left: 5%;
}

.home-feature__topic {
  font-size: 24px;
  margin: 0;
  font-weight: normal;
}

.home-feature__text {
  position: relative;
  margin-top: 40px;
  box-sizing: border-box;
}

.home-feature__paragraph {
  margin: 0;
  font-size: 17px;
  color: #555;
  line-height: 1.65;
  overflow: hidden;
  text-overflow: ellipsis;
  display: -webkit-box;
  -webkit-line-clamp: 7;
  -webkit-box-orient: vertical;
}

.home-version {
  padding-top: 100px;
  padding-bottom: 100px;
  box-sizing: border-box;
}

.home-version__header {
  text-align: center;
}

.home-version__title {
  font-size: 32px;
  margin: 0;
  font-weight: normal;
  text-align: center;
}

.home-version__sub {
  font-size: 15px;
  color: #999;
  margin-top: 12px;
  margin-bottom: 0;
  font-weight: normal;
}

.home-version__body {
  display: flow-root;
  margin-top: 40px;
}

.home-version__desktop {
  border-collapse: collapse;
  width: 100%;
}

.home-version__desktop thead {
  background-color: #f5f5f5;
}

.home-version__desktop tr {
  height: 50px;
  transition: background-color 0.3s ease;
}

.home-version__desktop thead tr {
  height: 60px;
}

.home-version__desktop tr:hover {
  background-color: #f9f9f9;
}

.home-version__desktop th,
.home-version__desktop td {
  border: 1px solid #e9e9e9;
  text-align: center;
  padding: 5px 12px;
  box-sizing: border-box;
  font-size: 17px;
  color: #333;
}

.home-version__desktop th:nth-child(2) {
  font-size: 18px;
  color: #fff;
  background-color: var(--primary);
}

.home-version__desktop th:nth-child(3) {
  font-size: 18px;
  background-color: #f1c50e;
}

.home-version__desktop th:nth-child(4) {
  font-size: 18px;
  color: #fff;
  background-color: #658cff;
}

.home-version__desktop tr:first-child td:nth-child(2) {
  font-size: 24px;
  font-weight: bold;
  color: var(--primary);
}

.home-version__desktop tr:first-child td:nth-child(3) {
  font-size: 24px;
  font-weight: bold;
  color: #f1c50e;
}

.home-version__desktop tr:first-child td:nth-child(4) {
  font-size: 24px;
  font-weight: bold;
  color: #658cff;
}

.home-version__desktop icon-font {
  display: inline-flex;
  font-size: 24px;
  color: #1ec71e;
}

.home-version__mobile {
  margin: 0;
  padding: 0;
  list-style: none;
  display: none;
}

.home-version__item {
  box-shadow: 0 0 12px rgba(0, 0, 0, 0.12);
  border-radius: 8px;
  overflow: hidden;
}

.home-version__item + .home-version__item {
  margin-top: 15px;
}

.home-version__topic {
  margin: 0;
  padding: 15px 12px;
  text-align: center;
  color: #fff;
}

.home-version__item:nth-child(1) .home-version__topic {
  background-color: var(--primary);
}

.home-version__item:nth-child(2) .home-version__topic {
  background-color: #f1c50e;
}

.home-version__item:nth-child(3) .home-version__topic {
  background-color: #658cff;
}

.home-version__content {
  margin-top: -5px;
  background: url('../images/combo.png') repeat-x left top;
  position: relative;
  z-index: 1;
  padding: 17px 12px 12px 12px;
  box-sizing: border-box;
}

.home-version__group {
  padding: 0;
  margin: 0;
  list-style: none;
}

.home-version__row {
  display: flex;
  justify-content: space-between;
  align-items: center;
  min-height: 35px;
  color: #444;
  font-size: 15px;
}

.home-version__label {
  max-width: 50%;
}

.home-version__value {
  max-width: 50%;
}

.home-version__value icon-font {
  color: #1ec71e;
  font-size: 20px;
}

.home-advertise {
  padding-top: 110px;
  padding-bottom: 110px;
  background-color: var(--primary);
  box-sizing: border-box;
}

.home-advertise__text {
  margin: 0;
  color: #fff;
  text-align: center;
  line-height: 1.6;
  font-weight: 500;
  font-size: 32px;
}

.home-contact {
  padding-top: 80px;
  padding-bottom: 80px;
  box-sizing: border-box;
}

.home-contact .inner {
  display: flex;
  align-items: flex-start;
}

.home-contact__main {
  width: 50%;
  margin-right: 5%;
}

.home-contact__title {
  font-size: 32px;
  margin: 0;
  font-weight: normal;
}

.home-contact__content {
  display: flow-root;
  margin-top: 25px;
}

.home-contact__address {
  font-size: 16px;
  color: #333;
  line-height: 1.6;
  margin: 0;
}

.home-contact__text {
  font-size: 16px;
  color: #444;
  line-height: 1.4;
  margin-bottom: 0;
  margin-top: 8px;
}

.home-contact__form {
  display: flow-root;
  margin-top: 24px;
}

.home-contact__group {
  margin: 0;
  padding: 0;
  list-style: none;
}

.home-contact__item + .home-contact__item {
  margin-top: 15px;
}

.home-contact__label {
  display: flex;
  align-items: center;
}

.home-contact__label input {
  height: 45px;
  outline-color: var(--primary);
  border-radius: 4px;
  padding: 0 12px;
  border: 1px solid #ccc;
  flex: 1 0 0;
}

.home-contact__label textarea {
  font-family: inherit;
  height: 80px;
  outline-color: var(--primary);
  border-radius: 4px;
  padding: 12px;
  border: 1px solid #ccc;
  flex: 1 0 0;
  resize: none;
}

.home-contact__captcha {
  margin-left: 10px;
  border-radius: 4px;
  height: 45px;
  cursor: pointer;
}

.home-contact__submit {
  background-color: var(--primary);
  color: #fff;
  border-radius: 25px;
  padding: 10px 45px;
  cursor: pointer;
  border: none;
  font-size: 17px;
  line-height: 1.6;
}

.home-contact__side {
  flex: 1 0 0;
  border-radius: 8px;
  overflow: hidden;
  background-color: #f5f5f5;
}

.home-contact__map {
  position: relative;
  padding-bottom: 100%;
}

.solution-feature {
  padding-top: 90px;
  padding-bottom: 90px;
}

.solution-feature__title {
  font-size: 32px;
  margin: 0;
  font-weight: normal;
  text-align: center;
}

.solution-feature__content {
  margin-top: 60px;
  position: relative;
  padding-left: 50px;
  padding-right: 50px;
  box-sizing: border-box;
}

.solution-feature__item {
}

.solution-feature__image {
  width: 100px;
  height: 100px;
  position: relative;
  margin-left: auto;
  margin-right: auto;
}

.solution-feature__text {
  margin-top: 20px;
}

.solution-feature__topic {
  text-align: center;
  font-size: 24px;
  color: var(--primary);
  margin: 0;
  overflow: hidden;
  text-overflow: ellipsis;
  white-space: nowrap;
}

.solution-feature__paragraph {
  margin-bottom: 0;
  margin-top: 20px;
  font-size: 17px;
  color: #555;
  line-height: 1.65;
  overflow: hidden;
  text-overflow: ellipsis;
  display: -webkit-box;
  -webkit-line-clamp: 7;
  -webkit-box-orient: vertical;
}

.solution-feature__prev,
.solution-feature__next {
  border-radius: 50%;
  width: 32px;
  height: 32px;
  position: absolute;
  top: 120px;
  font-family: swiper-icons, serif;
  font-size: 18px;
  display: flex;
  justify-content: center;
  align-items: center;
  cursor: pointer;
  color: #ccc;
  border: 2px solid currentColor;
  transition: all 0.3s ease;
}

.solution-feature__prev:hover,
.solution-feature__next:hover {
  color: var(--primary);
}

.solution-feature__prev.swiper-button-disabled,
.solution-feature__next.swiper-button-disabled {
  visibility: hidden;
  opacity: 0;
}

.solution-feature__prev {
  left: 0;
}

.solution-feature__prev:after {
  content: 'prev';
}

.solution-feature__next {
  right: 0;
}

.solution-feature__next:after {
  content: 'next';
}

.solution-dowjones {
  padding-top: 90px;
  padding-bottom: 90px;
  background-color: #f5f5f5;
}

.solution-dowjones__title {
  font-size: 32px;
  margin: 0;
  font-weight: normal;
  text-align: center;
}

.solution-dowjones__content {
  margin-top: 40px;
}

.solution-dowjones__group {
  display: flex;
  flex-wrap: wrap;
  padding: 0;
  margin: -8px;
  list-style: none;
}

.solution-dowjones__item {
  width: 16.66666%;
  padding: 8px;
  box-sizing: border-box;
}

.solution-dowjones__inner {
  border-radius: 16px;
  background-color: #fff;
  padding: 40px 10px;
  text-align: center;
}

.solution-dowjones__topic {
  margin: 0;
  color: var(--primary);
  font-size: 32px;
  font-weight: normal;
}

.solution-dowjones__text {
  margin-top: 20px;
  margin-bottom: 0;
  font-size: 17px;
  color: #555;
  line-height: 1.65;
  overflow: hidden;
  text-overflow: ellipsis;
  white-space: nowrap;
}

.solution-advantage {
  padding-top: 90px;
  padding-bottom: 90px;
  box-sizing: border-box;
}

.solution-advantage__group {
  display: flex;
  flex-wrap: wrap;
  padding: 0;
  margin: -25px;
  list-style: none;
}

.solution-advantage__item {
  width: 33.3333%;
  padding: 25px;
  box-sizing: border-box;
}

.solution-advantage__inner {
  border-radius: 16px;
  background-color: var(--primary);
  padding: 40px;
  transition: background-color 0.3s ease;
  height: 100%;
  box-sizing: border-box;
  color: #fff;
}

.solution-advantage__inner:hover {
  background-color: #658cff;
}

.solution-advantage__topic {
  font-size: 22px;
  margin: 0;
  font-weight: normal;
  overflow: hidden;
  text-overflow: ellipsis;
  white-space: nowrap;
}

.solution-advantage__text {
  margin-top: 20px;
  margin-bottom: 0;
  font-size: 17px;
  line-height: 1.65;
  overflow: hidden;
  text-overflow: ellipsis;
  display: -webkit-box;
  -webkit-line-clamp: 7;
  -webkit-box-orient: vertical;
}

.about-intro {
  padding-top: 110px;
  padding-bottom: 110px;
  box-sizing: border-box;
}

.about-intro .inner {
  display: flex;
  align-items: center;
  justify-content: space-between;
}

.about-intro__main {
  width: 50%;
  margin-right: 5%;
}

.about-intro__title {
  font-size: 32px;
  margin: 0;
  font-weight: normal;
}

.about-intro__text {
  display: flow-root;
  margin-top: 25px;
  margin-bottom: 0;
  line-height: 1.6;
  color: #666;
  font-size: 17px;
}

.about-intro__side {
  flex: 1 0 0;
}

.about-intro__image {
  position: relative;
  padding-bottom: 75%;
  border-radius: 8px;
  overflow: hidden;
}

.about-intro__img {
  transition: transform 0.3s ease;
}

.about-intro__img:hover {
  transform: scale(1.1);
}

.about-advantage {
  padding-top: 90px;
  padding-bottom: 90px;
  box-sizing: border-box;
  background-color: #f5f5f5;
}

.about-advantage__title {
  font-size: 32px;
  margin: 0;
  text-align: center;
  font-weight: normal;
}

.about-advantage__content {
  display: flow-root;
  margin-top: 40px;
}

.about-advantage__group {
  display: flex;
  flex-wrap: wrap;
  padding: 0;
  margin: -15px;
  list-style: none;
}

.about-advantage__item {
  width: 33.3333%;
  padding: 15px;
  box-sizing: border-box;
}

.about-advantage__inner {
  border-radius: 8px;
  background-color: #fff;
  padding: 40px;
  transition: all 0.3s ease;
  height: 100%;
  box-sizing: border-box;
}

.about-advantage__inner:hover {
  transform: translateY(-10px);
  box-shadow: 0 0 12px rgba(0, 0, 0, 0.12);
}

.about-advantage__icon {
  display: flex;
  justify-content: center;
}

.about-advantage__icon icon-font {
  display: inline-flex;
  width: 80px;
  height: 80px;
  background-color: var(--primary);
  border-radius: 50%;
  justify-content: center;
  align-items: center;
  color: #fff;
  font-size: 42px;
}

.about-advantage__text {
  margin-top: 45px;
}

.about-advantage__topic {
  font-size: 22px;
  margin: 0;
  text-align: center;
  font-weight: normal;
  overflow: hidden;
  text-overflow: ellipsis;
  white-space: nowrap;
}

.about-advantage__paragraph {
  margin-top: 20px;
  margin-bottom: 0;
  font-size: 17px;
  line-height: 1.65;
  color: #666;
  overflow: hidden;
  text-overflow: ellipsis;
  display: -webkit-box;
  -webkit-line-clamp: 8;
  -webkit-box-orient: vertical;
}

.about-trial {
  padding-top: 90px;
  padding-bottom: 90px;
  box-sizing: border-box;
}

.about-trial__header {
  text-align: center;
}

.about-trial__title {
  font-size: 32px;
  margin: 0;
  font-weight: normal;
}

.about-trial__sub {
  font-size: 15px;
  color: #999;
  margin-top: 12px;
  margin-bottom: 0;
  font-weight: normal;
}

.about-trial__body {
  display: flow-root;
  margin-top: 40px;
}

.about-trial__form {
  margin-left: auto;
  margin-right: auto;
  width: 100%;
  max-width: 600px;
}

.about-trial__group {
  margin: 0;
  padding: 0;
  list-style: none;
}

.about-trial__item + .about-trial__item {
  margin-top: 15px;
}

.about-trial__label {
  display: flex;
  align-items: center;
}

.about-trial__text {
  font-size: 16px;
  color: #333;
  line-height: 1.6;
  margin: 0;
  width: 8em;
  text-align: right;
  padding-right: 1em;
  box-sizing: border-box;
  flex-shrink: 0;
}

.about-trial__input {
  height: 45px;
  outline-color: var(--primary);
  border-radius: 4px;
  padding: 0 12px;
  border: 1px solid #ccc;
  flex: 1;
  width: 0;
}

.about-trial__captcha {
  margin-left: 10px;
  border-radius: 4px;
  height: 45px;
  cursor: pointer;
}

.about-trial__submit {
  display: block;
  background-color: var(--primary);
  color: #fff;
  border-radius: 25px;
  padding: 10px 45px;
  cursor: pointer;
  border: none;
  font-size: 17px;
  line-height: 1.6;
  width: 100%;
  box-sizing: border-box;
  max-width: 400px;
  margin-left: auto;
  margin-right: auto;
}

.contact-address {
  padding-top: 90px;
  padding-bottom: 90px;
  box-sizing: border-box;
  background-color: #f5f5f5;
}

.contact-address__title {
  font-size: 32px;
  margin: 0;
  font-weight: normal;
  text-align: center;
}

.contact-address__sub {
  font-size: 15px;
  color: #999;
  margin-top: 12px;
  margin-bottom: 0;
  font-weight: normal;
  text-align: center;
}

.contact-address__body {
  display: flow-root;
  margin-top: 40px;
}

.contact-address__content {
  padding-bottom: 40%;
  position: relative;
  min-height: 200px;
  box-sizing: border-box;
  border-radius: 8px;
  overflow: hidden;
  background-color: #f5f5f5;
}

.contact-form {
  padding-top: 90px;
  padding-bottom: 90px;
  box-sizing: border-box;
  background-color: var(--primary);
}

.contact-form .inner {
  display: flex;
  align-items: flex-start;
  justify-content: space-between;
}

.contact-form__main {
  width: 50%;
  margin-right: 5%;
  color: #fff;
}

.contact-form__title {
  font-size: 32px;
  margin: 0;
  font-weight: normal;
}

.contact-form__description {
  margin-top: 20px;
  margin-bottom: 0;
  font-size: 17px;
  line-height: 1.65;
  color: #ccc;
}

.contact-form__info {
  margin-top: 40px;
  display: flow-root;
  margin-bottom: 0;
}

.contact-form__info dt {
  font-size: 18px;
  font-weight: bold;
}
.contact-form__info dt ~ dt {
  margin-top: 15px;
}

.contact-form__info dd {
  margin-left: 0;
  margin-top: 10px;
  font-size: 16px;
  line-height: 1.6;
  color: #ccc;
}

.contact-form__info a {
  color: inherit;
  text-decoration: none;
}

.contact-form__info a:hover {
  text-decoration: underline;
}

.contact-form__side {
  flex: 1 0 0;
  max-width: 450px;
}

.contact-form__group {
  margin: 0;
  padding: 0;
  list-style: none;
}

.contact-form__item + .contact-form__item {
  margin-top: 15px;
}

.contact-form__label {
  display: flex;
  align-items: center;
}

.contact-form__label input {
  height: 45px;
  outline: none;
  border-radius: 4px;
  padding: 0 12px;
  border: none;
  flex: 1 0 0;
  box-sizing: border-box;
}

.contact-form__label textarea {
  height: 120px;
  outline: none;
  border-radius: 4px;
  padding: 12px;
  border: none;
  flex: 1 0 0;
  resize: none;
  font-family: inherit;
  box-sizing: border-box;
}

.contact-form__captcha {
  margin-left: 10px;
  border-radius: 4px;
  height: 45px;
  cursor: pointer;
}

.contact-form__submit {
  display: block;
  background-color: #fff;
  color: var(--primary);
  border-radius: 25px;
  padding: 10px 45px;
  cursor: pointer;
  border: none;
  line-height: 1.6;
}

.news-list {
  padding-top: 45px;
  padding-bottom: 90px;
  box-sizing: border-box;
}

.news-list__group {
  display: flex;
  flex-wrap: wrap;
  padding: 0;
  margin: -12px;
  list-style: none;
}

.news-list__item {
  width: 33.3333%;
  padding: 12px;
  box-sizing: border-box;
}

.news-list__inner {
  display: block;
  height: 100%;
  text-decoration: none;
  color: inherit;
}

.news-list__inner:hover .news-list__img {
  transform: scale(1.1);
}

.news-list__inner:hover .news-list__title {
  color: var(--primary);
}

.news-list__image {
  position: relative;
  padding-bottom: 62.25%;
  border-radius: 8px;
  overflow: hidden;
}

.news-list__img {
  transition: transform 0.3s ease;
}

.news-list__content {
  margin-top: 20px;
}

.news-list__title {
  font-size: 18px;
  margin: 0;
  color: #333;
  overflow: hidden;
  font-weight: normal;
  text-overflow: ellipsis;
  display: -webkit-box;
  -webkit-line-clamp: 2;
  -webkit-box-orient: vertical;
  transition: color 0.3s ease;
  height: 48px;
}

.news-list__date {
  margin-top: 12px;
  margin-bottom: 0;
  color: #999;
}

.news-list__pagination {
  margin-top: 40px;
  display: flex;
  justify-content: center;
}

.detail-main {
  padding-top: 40px;
  padding-bottom: 40px;
  box-sizing: border-box;
}

.detail-main__title {
  font-size: 28px;
  color: #333;
  margin: 0;
}

.detail-main__date {
  font-size: 15px;
  margin-top: 12px;
  margin-bottom: 0;
  color: #999;
}

.detail-main__content {
  margin-top: 40px;
  display: flow-root;
}

.detail-main__content img {
  max-width: 100%;
}

.detail-main__links {
  margin-bottom: 0;
}

.detail-main__links dt {
  font-size: 18px;
  font-weight: bold;
}

.detail-main__links dd {
  padding: 0;
  margin-left: 0;
  margin-top: 10px;
  box-sizing: border-box;
  position: relative;
}

.detail-main__links dd:before {
  content: '';
  width: 8px;
  height: 8px;
  border-radius: 50%;
  background-color: #333;
  display: inline-block;
  margin-right: 5px;
}

.detail-main__links dd a {
  color: #478ac9;
  text-decoration: none;
}

.detail-main__links dd a:hover {
  text-decoration: underline;
}

.detail-recent {
  padding-top: 90px;
  padding-bottom: 90px;
  box-sizing: border-box;
}

.detail-recent__title {
  font-size: 32px;
  margin: 0;
  font-weight: normal;
  text-align: center;
}

.detail-recent__content {
  display: flow-root;
  margin-top: 40px;
}

.detail-recent__group {
  display: flex;
  flex-wrap: wrap;
  padding: 0;
  margin: -12px;
  list-style: none;
}

.detail-recent__item {
  width: 33.3333%;
  padding: 12px;
  box-sizing: border-box;
}

.detail-recent__inner {
  display: block;
  height: 100%;
  text-decoration: none;
  color: inherit;
}

.detail-recent__inner:hover .detail-recent__img {
  transform: scale(1.1);
}

.detail-recent__inner:hover .detail-recent__topic {
  color: var(--primary);
}

.detail-recent__inner:hover .detail-recent__link::after {
  transform: scaleX(1);
}

.detail-recent__image {
  position: relative;
  padding-bottom: 62.25%;
  border-radius: 8px;
  overflow: hidden;
}

.detail-recent__img {
  transition: transform 0.3s ease;
}

.detail-recent__text {
  margin-top: 20px;
}

.detail-recent__topic {
  font-size: 18px;
  margin: 0;
  color: #333;
  overflow: hidden;
  font-weight: normal;
  text-overflow: ellipsis;
  display: -webkit-box;
  -webkit-line-clamp: 2;
  -webkit-box-orient: vertical;
  transition: color 0.3s ease;
  height: 48px;
}

.detail-recent__link {
  margin-top: 12px;
  margin-bottom: 0;
  color: #999;
  font-size: 13px;
  padding-bottom: 5px;
  position: relative;
}

.detail-recent__link::after {
  content: '';
  position: absolute;
  bottom: 0;
  height: 2px;
  width: 50px;
  left: 0;
  background-color: #478ac9;
  transform: scaleX(0);
  transform-origin: left;
  transition: transform 0.3s ease;
}

.detail-recent__more {
  display: flex;
  justify-content: center;
  margin-top: 40px;
}

.detail-recent__btn {
  display: inline-block;
  padding: 8px 24px;
  background-color: #478ac9;
  color: #fff;
  font-size: 15px;
  border-radius: 6px;
  text-decoration: none;
  line-height: 1.6;
}
