
.nav-fixed {
  position: fixed !important;
  top: 0;
  left: 0;
  width: 100%;
  z-index: 99;
}

.navmask {
  position: fixed;
  background-color: rgba(0, 0, 0, 0.5);
  width: 100%;
  height: 100%;
  left: 0;
  top: 0;
  z-index: 19;
}

.animate-container {
  overflow: hidden;
}

.navigation {
  margin-top: 50px;
}

.navigation div {
  display: flex;
  justify-content: center;
  flex-wrap: wrap;
}

.navigation div .current {
  background-color: #2fba84;
  color: #fff;
}

.navigation div span,
.navigation div a {
  display: block;
  min-width: 32px;
  max-width: 32px;
  height: 32px;
  border: 1px solid #eeeeee;
  margin-right: 15px;
  text-align: center;
  line-height: 30px;
  font-weight: 600;
  margin-bottom: 5px;
}

.common-box {
  padding: 0 0 40px;
}

.common-box-toppadding {
  padding-top: 40px;
}

.main-box {
  padding-top: 40px;
}

.common-title {
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  padding-top: 20px;
  position: relative;
}

.common-title::after {
  content: '';
  position: absolute;
  width: 40px;
  height: 10px;
  border-radius: 7px;
  background: linear-gradient(90deg, #efd817 0%, #30e357 100%);
  top: 0;
  left: 50%;
  transform: translateX(-50%);
}

.common-title h2 {
  font-size: 26px;
  font-weight: 600;
  margin-bottom: 0;
}

.common-title span {
  color: #333333;
  font-size: 12px;
}

@media (min-width: 750px) {
  .main-box {
    padding-top: 55px;
  }
  .common-box {
    padding: 0 0 55px;
  }
  .common-box-toppadding {
    padding-top: 55px;
  }
  .common-title h2 {
    font-size: 32px;
  }
  .common-title span {
    font-size: 14px;
  }
}

@media (min-width: 992px) {
  .main-box {
    padding-top: 65px;
  }
  .common-box {
    padding: 0 0 65px;
  }
  .common-box-toppadding {
    padding-top: 65px;
  }
  .common-title {
    padding-top: 25px;
  }
  .common-title::after {
    width: 50px;
    height: 10px;
  }
  .common-title h2 {
    font-size: 42px;
    margin-bottom: 5px;
  }
  .common-title span {
    font-size: 15px;
  }
}

.header {
  transition: all .3s;
  position: relative;
  z-index: 29;
  border-bottom: 1px solid #eee;
}

.header .navbar {
  padding-top: 10px;
  padding-bottom: 10px;
  background-color: #fff !important;
}

.header .navbar .navbar-brand .svg-img {
  width: 2.85em;
  max-width: 285px;
}

.header .navbar .navbar-toggler[aria-expanded=true] {
  border: 0;
}

.header .navbar .navbar-toggler[aria-expanded=true]:focus {
  box-shadow: none;
}

.header .navbar .navbar-toggler[aria-expanded=true] .navbar-toggler-icon {
  background-image: url(../static/images/nav-close.png);
}

.header .navbar .navbar-toggler {
  border: 0;
  padding: 0;
  line-height: 0;
}

.header .navbar .navbar-toggler:focus {
  box-shadow: none;
}

.header .navbar .navbar-toggler .navbar-toggler-icon {
  width: 25px;
  height: 25px;
  background-image: url("data:image/svg+xml,%3csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 30 30'%3e%3cpath stroke='rgba(47, 186, 132, 1)' stroke-linecap='round' stroke-miterlimit='10' stroke-width='2' d='M4 7h22M4 15h22M4 23h22'/%3e%3c/svg%3e");
}

.header .navbar .navbar-collapse {
  position: absolute;
  width: 100%;
  background-color: #fff;
  z-index: 99;
  left: 0;
  padding: 0 15px 5px;
  box-shadow: 0 3px 8px #eee;
}

.header .navbar .navbar-collapse .navbar-nav .nav-item {
  border-bottom: 1px solid #f2f2f2;
}

.header .navbar .navbar-collapse .navbar-nav .nav-item:last-child {
  border-bottom: 0;
}

.header .navbar .navbar-collapse .navbar-nav .nav-item:last-child .nav-link {
  padding-bottom: 0;
}

.header .navbar .navbar-collapse .navbar-nav .nav-item .nav-link {
  color: #333;
  font-weight: 600;
  font-size: 15px;
  padding: 10px 0;
}

.header .navbar .navbar-collapse .navbar-nav .nav-item .nav-link > span {
  position: relative;
  width: fit-content;
}

.header .navbar .navbar-collapse .navbar-nav .nav-item .active {
  color: #2fba84;
}

.header .hot-link {
  position: absolute;
  font-size: 12px;
  color: #fff;
  border-radius: 15px 15px 15px 1px;
  background: linear-gradient(90deg, #ffd712 0%, #22e45c 100%);
  line-height: 1;
  padding: 3px 5px;
  top: -5px;
  font-style: inherit;
}

@media (min-width: 992px) {
  .header .navbar {
    padding-top: 15px;
    padding-bottom: 15px;
    background-color: #2fba84 !important;
  }
  .header .navbar .container-fluid {
    max-width: 960px;
  }
  .header .navbar .navbar-brand .svg-img {
    width: 225px;
  }
  .header .navbar .navbar-collapse {
    display: none !important;
    margin-top: 0;
    justify-content: flex-end;
  }
  .header .navbar .navbar-text {
    width: 240px;
  }
  .header .pc-navlist {
    background-color: #fff;
    padding: 20px 0;
    border-bottom: 1px solid #eee;
  }
  .header .pc-navlist .container {
    display: flex;
    align-items: center;
    justify-content: flex-end;
  }
  .header .pc-navlist .container .pc-navbar {
    display: flex;
    align-items: center;
  }
  .header .pc-navlist .container .pc-navbar .pc-nav-item:not(:last-child) {
    margin-right: 40px;
  }
  .header .pc-navlist .container .pc-navbar .pc-nav-item .pc-nav-link {
    position: relative;
  }
  .header .pc-navlist .container .pc-navbar .pc-nav-item .pc-nav-link > span {
    font-size: 17px;
    position: relative;
  }
  .header .pc-navlist .container .pc-navbar .pc-nav-item .active {
    font-weight: 600;
  }
  .header .pc-navlist .container .pc-navbar .pc-nav-item .active::after {
    content: '';
    position: absolute;
    bottom: -10px;
    left: 0;
    width: 100%;
    background-color: #2fba84;
    height: 5px;
  }
  .header .pc-navlist .container .btn {
    font-size: 14px;
    color: #fff;
    background-color: #ff6912;
    border-radius: 17px;
    padding: 4px 13px;
    margin-left: 40px;
    transition: all .3s;
  }
  .header .pc-navlist .container .btn:hover {
    background-color: #fff;
    color: #ff6912;
    border: 1px solid #ff6912;
  }
}

@media (min-width: 1200px) {
  .header .navbar .container-fluid {
    max-width: 1140px;
  }
}

@media (min-width: 1440px) {
  .header .navbar .container-fluid {
    max-width: 1320px;
  }
}

.banner {
  background-repeat: no-repeat;
  background-size: cover;
  background-position: center center;
  height: 6.1em;
  max-height: 610px;
  position: relative;
}

.banner .banner-content {
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  height: 100%;
  text-align: center;
  color: #fff;
  text-shadow: 0 1px 3px #666;
}

.banner .banner-content h1 {
  font-size: 17px;
  font-weight: 600;
  margin: 0 0 20px;
}

.banner .banner-content h2 {
  font-size: 32px;
  line-height: 1.4;
  font-weight: 600;
  margin: 0 0 20px;
}

.banner .banner-content h3 {
  font-size: 19px;
}

.banner .banner-down {
  position: absolute;
  height: 60px;
  left: 50%;
  bottom: 15px;
  transform: translateX(-50%);
}

@media (min-width: 750px) {
  .banner .banner-down {
    height: 80px;
  }
}

@media (min-width: 992px) {
  .banner .banner-content h1 {
    font-size: 37px;
    margin: 0 0 40px;
  }
  .banner .banner-content h2 {
    font-size: 52px;
    margin: 0 0 40px;
  }
  .banner .banner-content h3 {
    font-size: 39px;
  }
  .banner .banner-down {
    height: 130px;
    bottom: 30px;
  }
}

.home-tbfx .home-tbfx-swiper {
  margin-top: 15px;
}

.home-tbfx .home-tbfx-swiper .swiper {
  width: 100%;
  height: 100%;
}

.home-tbfx .home-tbfx-swiper .swiper-slide {
  padding: 5px;
  text-align: center;
  font-size: 18px;
  background: #fff;
  display: flex;
  flex-direction: column;
  justify-content: center;
  align-items: center;
}

.home-tbfx .home-tbfx-swiper .swiper-slide .hts-swiper-box {
  box-shadow: 0px 0px 12px rgba(0, 0, 0, 0.05);
  border-radius: 20px;
  padding: 15px 15px 30px;
  width: 100%;
}

.home-tbfx .home-tbfx-swiper .swiper-slide .hts-swiper-box .hts-video {
  position: relative;
  width: 100%;
}

.home-tbfx .home-tbfx-swiper .swiper-slide .hts-swiper-box .hts-video video {
  width: 100%;
  height: 350px;
  object-fit: cover;
}

.home-tbfx .home-tbfx-swiper .swiper-slide .hts-swiper-box .hts-video .video-play {
  position: absolute;
  left: 50%;
  top: 50%;
  transform: translate(-50%, -50%);
  width: 80px;
}

.home-tbfx .home-tbfx-swiper .swiper-slide .hts-swiper-box .hts-cont {
  display: flex;
  align-items: center;
  justify-content: space-between;
  width: 100%;
  margin-top: 10px;
}

.home-tbfx .home-tbfx-swiper .swiper-slide .hts-swiper-box .hts-cont .hts-ones {
  display: flex;
  flex-direction: column;
  align-items: flex-start;
  justify-content: center;
}

.home-tbfx .home-tbfx-swiper .swiper-slide .hts-swiper-box .hts-cont .hts-ones b {
  color: #2fba84;
  font-size: 22px;
  line-height: 1.5;
}

.home-tbfx .home-tbfx-swiper .swiper-slide .hts-swiper-box .hts-cont .hts-ones span {
  font-size: 14px;
  color: #666666;
}

.home-tbfx .home-tbfx-swiper .swiper-slide .hts-swiper-box .hts-cont .hts-twos {
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
}

.home-tbfx .home-tbfx-swiper .swiper-slide .hts-swiper-box .hts-cont .hts-twos > span {
  font-size: 12px;
  background-color: #f7f7f7;
  color: #000;
  padding: 2px 13px;
  border-radius: 20px;
}

.home-tbfx .home-tbfx-swiper .swiper-slide .hts-swiper-box .hts-cont .hts-twos .hts-twos-value {
  display: flex;
  align-items: center;
}

.home-tbfx .home-tbfx-swiper .swiper-slide .hts-swiper-box .hts-cont .hts-twos .hts-twos-value b {
  font-size: 22px;
  color: #2fba84;
}

.home-tbfx .home-tbfx-swiper .swiper-slide .hts-swiper-box .hts-cont .hts-twos .hts-twos-value img {
  width: 30px;
}

.home-tbfx .home-tbfx-swiper .swiper-pagination .swiper-pagination-bullet {
  width: 8px;
  height: 8px;
}

.home-tbfx .home-tbfx-swiper .swiper-pagination .swiper-pagination-bullet-active {
  background-color: #2fba84;
  width: 15px;
  border-radius: 10px;
}

.home-tbfx .qual-swiper .swiper-slide {
  padding: 5px !important;
}

.home-tbfx .qual-swiper .qual-swiper-box {
  background: white;
  box-shadow: 0px 0px 12px rgba(0, 0, 0, 0.06);
  border-radius: 15px;
  padding: 15px;
}

.home-tbfx .qual-swiper .qual-swiper-box img {
  object-fit: cover;
  border-radius: 15px;
}

.home-tbfx .qual-swiper .qual-swiper-box .qsb-cont {
  margin-top: 10px;
}

.home-tbfx .qual-swiper .qual-swiper-box .qsb-cont .title {
  display: flex;
  align-items: center;
}

.home-tbfx .qual-swiper .qual-swiper-box .qsb-cont .title .tag {
  color: #ff6912;
  background-color: rgba(255, 105, 18, 0.14);
  font-size: 14px;
  line-height: 1;
  padding: 5px 10px;
  border-radius: 20px;
  white-space: nowrap;
  margin-right: 5px;
  display: inline-block;
  font-weight: 400;
}

.home-tbfx .qual-swiper .qual-swiper-box .qsb-cont .title h5 {
  font-weight: 600;
  font-size: 17px;
  line-height: 1.8;
  text-align: left;
  margin-bottom: 0;
  display: -webkit-box;
  -webkit-box-orient: vertical;
  -webkit-line-clamp: 2;
  overflow: hidden;
}

.home-tbfx .qual-swiper .qual-swiper-box .qsb-cont .bot {
  display: flex;
  align-items: center;
  justify-content: space-between;
  margin-top: 10px;
}

.home-tbfx .qual-swiper .qual-swiper-box .qsb-cont .bot .price {
  display: flex;
  flex-direction: column;
  align-items: flex-start;
  line-height: 1;
}

.home-tbfx .qual-swiper .qual-swiper-box .qsb-cont .bot .price .old {
  font-size: 14px;
  color: #b3b3b3;
  font-style: normal;
  text-decoration: line-through;
  margin-bottom: 10px;
}

.home-tbfx .qual-swiper .qual-swiper-box .qsb-cont .bot .price .new {
  font-size: 22px;
  color: #2fba84;
  font-weight: 600;
}

.home-tbfx .qual-swiper .qual-swiper-box .qsb-cont .bot .price .new i {
  font-style: normal;
  font-size: 14px;
}

.home-tbfx .qual-swiper .qual-swiper-box .qsb-cont .bot button {
  font-size: 14px;
  background-color: #2fba84;
  color: #fff;
  outline: none;
  border: 1px solid #2fba84;
  padding: 7px 15px;
  border-radius: 20px;
}

@media (min-width: 992px) {
  .home-tbfx .home-tbfx-swiper {
    margin-top: 15px;
  }
  .home-tbfx .home-tbfx-swiper .swiper-slide {
    padding: 5px 60px;
  }
  .home-tbfx .home-tbfx-swiper .swiper-slide .hts-swiper-box {
    padding: 30px 30px 40px;
    display: flex;
  }
  .home-tbfx .home-tbfx-swiper .swiper-slide .hts-swiper-box .hts-video {
    flex: 1;
  }
  .home-tbfx .home-tbfx-swiper .swiper-slide .hts-swiper-box .hts-video video {
    height: 400px;
  }
  .home-tbfx .home-tbfx-swiper .swiper-slide .hts-swiper-box .hts-cont {
    flex-direction: column;
    margin-top: 0;
    flex: 1;
    padding: 10px 0;
  }
  .home-tbfx .home-tbfx-swiper .swiper-slide .hts-swiper-box .hts-cont .hts-ones {
    align-items: center;
    position: relative;
  }
  .home-tbfx .home-tbfx-swiper .swiper-slide .hts-swiper-box .hts-cont .hts-ones::after {
    content: '';
    position: absolute;
    bottom: -10px;
    left: 50%;
    transform: translateX(-50%);
    height: 5px;
    width: 36px;
    background-color: #2fba84;
    border-radius: 5px;
  }
  .home-tbfx .home-tbfx-swiper .swiper-slide .hts-swiper-box .hts-cont .hts-ones b {
    color: #2fba84;
    font-size: 42px;
  }
  .home-tbfx .home-tbfx-swiper .swiper-slide .hts-swiper-box .hts-cont .hts-ones span {
    font-size: 24px;
    color: #666666;
  }
  .home-tbfx .home-tbfx-swiper .swiper-slide .hts-swiper-box .hts-cont .hts-twos {
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
  }
  .home-tbfx .home-tbfx-swiper .swiper-slide .hts-swiper-box .hts-cont .hts-twos > span {
    font-size: 20px;
    font-weight: 600;
    padding: 11px 43px;
    border-radius: 50px;
    margin-bottom: 20px;
  }
  .home-tbfx .home-tbfx-swiper .swiper-slide .hts-swiper-box .hts-cont .hts-twos .hts-twos-value {
    display: flex;
    align-items: center;
  }
  .home-tbfx .home-tbfx-swiper .swiper-slide .hts-swiper-box .hts-cont .hts-twos .hts-twos-value b {
    font-size: 42px;
    color: #2fba84;
  }
  .home-tbfx .home-tbfx-swiper .swiper-slide .hts-swiper-box .hts-cont .hts-twos .hts-twos-value img {
    width: 60px;
  }
  .home-tbfx .home-tbfx-swiper .swiper-button-next,
  .home-tbfx .home-tbfx-swiper .swiper-button-prev {
    width: 32px;
    height: 32px;
    border: 2px solid #2fba84;
    text-align: center;
    border-radius: 100%;
    line-height: 30px;
    background-color: #fff;
  }
  .home-tbfx .home-tbfx-swiper .swiper-button-next::after,
  .home-tbfx .home-tbfx-swiper .swiper-button-prev::after {
    font-size: 16px !important;
    color: #2fba84;
    font-weight: 600;
  }
  .home-tbfx .home-tbfx-swiper .swiper-pagination {
    top: auto;
    bottom: 15px;
  }
  .home-tbfx .home-tbfx-swiper .swiper-pagination .swiper-pagination-bullet {
    width: 10px;
    height: 10px;
  }
  .home-tbfx .home-tbfx-swiper .swiper-pagination .swiper-pagination-bullet-active {
    background-color: #2fba84;
    width: 18px;
    border-radius: 15px;
  }
  .home-tbfx .qual-swiper {
    padding: 0 60px;
  }
  .home-tbfx .qual-swiper .qual-swiper-box {
    background: white;
    box-shadow: 0px 0px 12px rgba(0, 0, 0, 0.06);
    border-radius: 15px;
    padding: 15px;
  }
  .home-tbfx .qual-swiper .qual-swiper-box img {
    object-fit: cover;
    border-radius: 15px;
  }
  .home-tbfx .qual-swiper .qual-swiper-box .qsb-cont {
    margin-top: 10px;
  }
  .home-tbfx .qual-swiper .qual-swiper-box .qsb-cont .title h5 {
    font-size: 20px;
    line-height: 1.5;
  }
  .home-tbfx .qual-swiper .qual-swiper-box .qsb-cont .bot {
    margin-top: 15px;
  }
  .home-tbfx .qual-swiper .qual-swiper-box .qsb-cont .bot .price .old {
    margin-bottom: 15px;
  }
  .home-tbfx .qual-swiper .qual-swiper-box .qsb-cont .bot .price .new {
    font-size: 32px;
  }
  .home-tbfx .qual-swiper .qual-swiper-box .qsb-cont .bot button {
    font-size: 16px;
  }
}

.home-system .home-system-box {
  padding: 15px 0;
  background-color: #FBFBFB;
  margin-top: 10px;
}

@media (min-width: 992px) {
  .home-system .home-system-box {
    margin-top: 20px;
    padding: 25px 0 35px;
  }
}

.home-advantag .home-advantag-box {
  margin-top: 20px;
}

.home-advantag .home-advantag-box .home-advantag-items {
  border-radius: 15px;
  background: white;
  box-shadow: 0px 0px 12px rgba(0, 0, 0, 0.06);
  height: 320px;
  cursor: pointer;
  margin-bottom: 15px;
}

.home-advantag .home-advantag-box .home-advantag-items .items-front {
  display: flex;
  flex-direction: column;
}

.home-advantag .home-advantag-box .home-advantag-items .items-front .front-img {
  width: 100%;
  height: 160px;
  object-fit: cover;
}

.home-advantag .home-advantag-box .home-advantag-items .items-front .front-cont {
  flex: 1;
  padding: 15px;
  display: flex;
  flex-direction: column;
  justify-content: space-between;
}

.home-advantag .home-advantag-box .home-advantag-items .items-front .front-cont .front-cont-text {
  margin-bottom: 15px;
}

.home-advantag .home-advantag-box .home-advantag-items .items-front .front-cont .front-cont-text .front-cont-title {
  display: flex;
  align-items: center;
  justify-content: space-between;
  line-height: 1;
}

.home-advantag .home-advantag-box .home-advantag-items .items-front .front-cont .front-cont-text .front-cont-title b {
  font-size: 18px;
}

.home-advantag .home-advantag-box .home-advantag-items .items-front .front-cont .front-cont-text .front-cont-title b:last-child {
  color: #2fba84;
}

.home-advantag .home-advantag-box .home-advantag-items .items-front .front-cont .front-cont-text p {
  color: #666666;
  display: -webkit-box;
  -webkit-box-orient: vertical;
  -webkit-line-clamp: 2;
  overflow: hidden;
  line-height: 1.5;
  margin-top: 15px;
}

.home-advantag .home-advantag-box .home-advantag-items .items-front .front-cont .front-scope {
  width: 34px;
  margin: 0 auto;
  display: block;
}

.home-advantag .home-advantag-box .home-advantag-items .items-opposite {
  display: none;
  height: 100%;
}

.home-advantag .home-advantag-box .home-advantag-items .items-opposite .opposite-cont {
  padding: 15px;
  height: 100%;
  display: flex;
  flex-direction: column;
  justify-content: space-between;
}

.home-advantag .home-advantag-box .home-advantag-items .items-opposite .opposite-cont .opposite-cont-text {
  margin-bottom: 15px;
}

.home-advantag .home-advantag-box .home-advantag-items .items-opposite .opposite-cont .opposite-cont-text .opposite-cont-title {
  display: flex;
  align-items: center;
  justify-content: space-between;
  line-height: 1;
}

.home-advantag .home-advantag-box .home-advantag-items .items-opposite .opposite-cont .opposite-cont-text .opposite-cont-title b {
  font-size: 20px;
}

.home-advantag .home-advantag-box .home-advantag-items .items-opposite .opposite-cont .opposite-cont-text .opposite-cont-title b:last-child {
  color: #2fba84;
}

.home-advantag .home-advantag-box .home-advantag-items .items-opposite .opposite-cont .opposite-cont-text .opposite-cont-ulst {
  margin-top: 20px;
}

.home-advantag .home-advantag-box .home-advantag-items .items-opposite .opposite-cont .opposite-cont-text .opposite-cont-ulst li {
  font-size: 12px;
  color: #666;
  line-height: 1.6;
  position: relative;
  padding-left: 15px;
  color: #666666;
}

.home-advantag .home-advantag-box .home-advantag-items .items-opposite .opposite-cont .opposite-cont-text .opposite-cont-ulst li:not(:last-child) {
  margin-bottom: 10px;
}

.home-advantag .home-advantag-box .home-advantag-items .items-opposite .opposite-cont .opposite-cont-text .opposite-cont-ulst li::before {
  content: '✓';
  position: absolute;
  color: #2fba84;
  font-size: 12px;
  top: 0;
  left: 0;
}

.home-advantag .home-advantag-box .home-advantag-items .items-opposite .opposite-cont .opposite-scope {
  width: 34px;
  margin: 0 auto;
  display: block;
  transform: rotate(180deg);
}

.home-advantag .home-advantag-box .isopposite .items-front {
  display: none;
}

.home-advantag .home-advantag-box .isopposite .items-opposite {
  display: block;
}

@media (min-width: 992px) {
  .home-advantag .home-advantag-box {
    margin-top: 30px;
  }
  .home-advantag .home-advantag-box .home-advantag-items {
    height: 335px;
  }
  .home-advantag .home-advantag-box .home-advantag-items .items-front .front-img {
    height: 170px;
  }
  .home-advantag .home-advantag-box .home-advantag-items .items-front .front-cont {
    padding: 20px 15px 15px;
  }
  .home-advantag .home-advantag-box .home-advantag-items .items-front .front-cont .front-cont-text .front-cont-title b {
    font-size: 22px;
  }
  .home-advantag .home-advantag-box .home-advantag-items .items-opposite .opposite-cont .opposite-cont-text .opposite-cont-title b {
    font-size: 22px;
  }
  .home-advantag .home-advantag-box .home-advantag-items .items-opposite .opposite-cont .opposite-cont-text .opposite-cont-title b:last-child {
    color: #2fba84;
  }
  .home-advantag .home-advantag-box .home-advantag-items .items-opposite .opposite-cont .opposite-cont-text .opposite-cont-ulst {
    margin-top: 20px;
  }
  .home-advantag .home-advantag-box .home-advantag-items .items-opposite .opposite-cont .opposite-cont-text .opposite-cont-ulst li {
    font-size: 14px;
  }
  .home-advantag .home-advantag-box .home-advantag-items .items-opposite .opposite-cont .opposite-cont-text .opposite-cont-ulst li:not(:last-child) {
    margin-bottom: 20px;
  }
  .home-advantag .home-advantag-box .home-advantag-items .items-opposite .opposite-cont .opposite-cont-text .opposite-cont-ulst li::before {
    font-size: 13px;
  }
}

.home-team .home-team-swiper {
  margin-top: 15px;
}

.home-team .home-team-swiper .mySwiper2 .swiper-wrapper .swiper-slide {
  padding: 5px;
}

.home-team .home-team-swiper .mySwiper2 .swiper-wrapper .swiper-slide .team-sbox {
  box-shadow: 0px 0px 12px rgba(0, 0, 0, 0.05);
  border-radius: 15px;
  padding: 15px;
  display: flex;
  flex-direction: column;
}

.home-team .home-team-swiper .mySwiper2 .swiper-wrapper .swiper-slide .team-sbox .team-img {
  background-color: #f2f9ff;
  height: 5.2em;
  overflow: hidden;
  border-radius: 15px;
  padding-top: 20px;
  display: flex;
  justify-content: center;
}

.home-team .home-team-swiper .mySwiper2 .swiper-wrapper .swiper-slide .team-sbox .team-content {
  margin-top: 25px;
}

.home-team .home-team-swiper .mySwiper2 .swiper-wrapper .swiper-slide .team-sbox .team-content .team-pname {
  display: flex;
  align-items: center;
}

.home-team .home-team-swiper .mySwiper2 .swiper-wrapper .swiper-slide .team-sbox .team-content .team-pname b {
  font-size: 20px;
  margin-right: 15px;
  margin-bottom: 5px;
  white-space: nowrap;
}

.home-team .home-team-swiper .mySwiper2 .swiper-wrapper .swiper-slide .team-sbox .team-content .team-pname .team-tags {
  display: flex;
  align-items: center;
  flex-wrap: wrap;
  line-height: 1;
  white-space: nowrap;
}

.home-team .home-team-swiper .mySwiper2 .swiper-wrapper .swiper-slide .team-sbox .team-content .team-pname .team-tags li {
  padding: 5px 15px;
  background-color: #f2faf7;
  color: #2fba84;
  font-size: 12px;
  border-radius: 5px;
  margin-bottom: 5px;
}

.home-team .home-team-swiper .mySwiper2 .swiper-wrapper .swiper-slide .team-sbox .team-content .team-pname .team-tags li:not(:last-child) {
  margin-right: 10px;
}

.home-team .home-team-swiper .mySwiper2 .swiper-wrapper .swiper-slide .team-sbox .team-content .team-stock {
  margin-top: 10px;
}

.home-team .home-team-swiper .mySwiper2 .swiper-wrapper .swiper-slide .team-sbox .team-content .team-stock li {
  color: #666666;
  font-size: 12px;
  line-height: 1.8;
  position: relative;
  padding-left: 10px;
}

.home-team .home-team-swiper .mySwiper2 .swiper-wrapper .swiper-slide .team-sbox .team-content .team-stock li::after {
  content: '';
  position: absolute;
  top: 8px;
  left: 0;
  width: 3px;
  height: 3px;
  background-color: #2fba84;
}

.home-team .home-team-swiper .mySwiper2 .swiper-wrapper .swiper-slide .team-sbox .team-content .team-stock li:not(:last-child) {
  margin-bottom: 10px;
}

@media (min-width: 992px) {
  .home-team .home-team-swiper .mySwiper2 .swiper-wrapper .swiper-slide {
    padding-top: 80px;
  }
  .home-team .home-team-swiper .mySwiper2 .swiper-wrapper .swiper-slide .team-sbox {
    padding: 15px;
    flex-direction: row-reverse;
    justify-content: flex-end;
    background: url(../static/images/home-team-bg.png) no-repeat center top/100% 100%;
    position: relative;
    height: 370px;
  }
  .home-team .home-team-swiper .mySwiper2 .swiper-wrapper .swiper-slide .team-sbox .team-img {
    background-color: transparent;
    width: 350px;
    height: auto;
    position: absolute;
    bottom: 0;
    right: 80px;
  }
  .home-team .home-team-swiper .mySwiper2 .swiper-wrapper .swiper-slide .team-sbox .team-content {
    margin-top: 0;
    padding: 30px;
    flex: 1;
    margin-left: 15px;
    max-width: 600px;
  }
  .home-team .home-team-swiper .mySwiper2 .swiper-wrapper .swiper-slide .team-sbox .team-content .team-pname {
    display: flex;
    align-items: flex-start;
    flex-direction: column;
  }
  .home-team .home-team-swiper .mySwiper2 .swiper-wrapper .swiper-slide .team-sbox .team-content .team-pname b {
    font-size: 40px;
    margin-right: 0;
    margin-bottom: 0;
    white-space: nowrap;
    position: relative;
  }
  .home-team .home-team-swiper .mySwiper2 .swiper-wrapper .swiper-slide .team-sbox .team-content .team-pname b::before {
    content: '';
    position: absolute;
    top: 0;
    left: -15px;
    width: 38px;
    height: 38px;
    opacity: 1;
    background: linear-gradient(147.84deg, #ff6912 0%, rgba(255, 255, 255, 0.01) 100%);
    border-radius: 100%;
  }
  .home-team .home-team-swiper .mySwiper2 .swiper-wrapper .swiper-slide .team-sbox .team-content .team-pname b span {
    position: relative;
    z-index: 9;
  }
  .home-team .home-team-swiper .mySwiper2 .swiper-wrapper .swiper-slide .team-sbox .team-content .team-pname .team-tags li {
    padding: 8px 20px;
    font-size: 16px;
    border-radius: 10px;
  }
  .home-team .home-team-swiper .mySwiper2 .swiper-wrapper .swiper-slide .team-sbox .team-content .team-stock {
    margin-top: 25px;
  }
  .home-team .home-team-swiper .mySwiper2 .swiper-wrapper .swiper-slide .team-sbox .team-content .team-stock li {
    font-size: 16px;
    line-height: 1.8;
    position: relative;
    padding-left: 10px;
  }
  .home-team .home-team-swiper .mySwiper2 .swiper-wrapper .swiper-slide .team-sbox .team-content .team-stock li::after {
    content: '';
    position: absolute;
    top: 8px;
    left: 0;
    width: 3px;
    height: 3px;
    background-color: #2fba84;
  }
  .home-team .home-team-swiper .mySwiper2 .swiper-wrapper .swiper-slide .team-sbox .team-content .team-stock li:not(:last-child) {
    margin-bottom: 10px;
  }
}

@media (min-width: 1200px) {
  .home-team .home-team-swiper .mySwiper2 .swiper-wrapper .swiper-slide .team-sbox .team-content {
    max-width: 650px;
  }
}

@media (min-width: 1440px) {
  .home-team .home-team-swiper .mySwiper2 .swiper-wrapper .swiper-slide .team-sbox .team-content {
    max-width: 800px;
  }
}

.home-serve {
  background-color: #fbfbfb;
}

.home-serve .home-serve-box {
  margin-top: 20px;
}

.home-serve .home-serve-box .hsb-items {
  margin-bottom: 15px;
  background-repeat: no-repeat;
  background-size: cover;
  background-position: center top;
  border-radius: 20px;
  padding: 50px 0;
  display: flex;
  align-items: center;
}

.home-serve .home-serve-box .hsb-items .hsb-items-content {
  backdrop-filter: blur(1px);
  background-color: rgba(255, 255, 255, 0.3);
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  width: 100%;
  padding: 15px;
}

.home-serve .home-serve-box .hsb-items .hsb-items-content img {
  width: 35px;
  margin-bottom: 15px;
}

.home-serve .home-serve-box .hsb-items .hsb-items-content h5 {
  font-size: 22px;
  font-weight: 600;
  margin-bottom: 10px;
}

.home-serve .home-serve-box .hsb-items .hsb-items-content span {
  text-align: center;
  line-height: 1.5;
  font-size: 15px;
}

@media (min-width: 992px) {
  .home-serve .home-serve-box {
    margin-top: 25px;
  }
  .home-serve .home-serve-box .hsb-items {
    margin-bottom: 0;
    padding: 120px 0;
  }
  .home-serve .home-serve-box .hsb-items .hsb-items-content {
    backdrop-filter: blur(1px);
    background-color: rgba(255, 255, 255, 0.3);
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    width: 100%;
    padding: 20px;
  }
  .home-serve .home-serve-box .hsb-items .hsb-items-content img {
    width: 45px;
    margin-bottom: 20px;
  }
  .home-serve .home-serve-box .hsb-items .hsb-items-content h5 {
    font-size: 28px;
    margin-bottom: 15px;
  }
  .home-serve .home-serve-box .hsb-items .hsb-items-content span {
    font-size: 17px;
  }
}

.home-honor {
  background-color: #fff;
}

.home-honor .home-honor-box {
  margin-top: 15px;
}

.home-honor .home-honor-box .honor-row .honor-items {
  margin-bottom: 25px;
}

.home-honor .home-honor-box .honor-row .honor-items span {
  display: flex;
  justify-content: center;
  position: relative;
  width: 100%;
  font-size: 18px;
  margin-top: 10px;
  line-height: 1;
}

.home-honor .home-honor-box .honor-row .honor-items span::before {
  content: '';
  position: absolute;
  width: 16px;
  height: 32px;
  background: url(../static/images/honor-icon-left.png) no-repeat center center/cover;
  left: 0;
  top: 50%;
  transform: translateY(-50%);
}

.home-honor .home-honor-box .honor-row .honor-items span::after {
  content: '';
  position: absolute;
  width: 16px;
  height: 32px;
  background: url(../static/images/honor-icon-right.png) no-repeat center center/cover;
  right: 0;
  top: 50%;
  transform: translateY(-50%);
}

@media (min-width: 992px) {
  .home-honor .home-honor-box {
    margin-top: 25px;
  }
  .home-honor .home-honor-box .honor-row .honor-items {
    margin-bottom: 0;
  }
  .home-honor .home-honor-box .honor-row .honor-items span {
    font-size: 22px;
    margin-top: 30px;
  }
  .home-honor .home-honor-box .honor-row .honor-items span::before {
    width: 24px;
    height: 48px;
  }
  .home-honor .home-honor-box .honor-row .honor-items span::after {
    width: 24px;
    height: 48px;
  }
}

.footer {
  background-color: #FBFBFB;
  padding: 15px 0;
}

.footer .footer-box .footer-left li {
  display: flex;
  flex-direction: column;
}

.footer .footer-box .footer-left li:not(:last-child) {
  margin-bottom: 18px;
}

.footer .footer-box .footer-left li a {
  color: #000;
  font-weight: 600;
  line-height: 1;
  font-size: 17px;
  margin-bottom: 8px;
}

.footer .footer-box .footer-left li span {
  line-height: 1.5;
  color: #999;
}

.footer .footer-box .footer-right {
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  margin-top: 15px;
}

.footer .footer-box .footer-right img {
  width: 100px;
}

.footer .footer-box .footer-right span {
  color: #666;
}

.footer .footer-bah {
  margin: 10px 15px 0;
  border-top: 1px solid #eee;
  padding: 10px 0 0;
}

.footer .footer-bah p {
  line-height: 1.5;
  font-size: 12px;
  text-align: center;
  color: #a4a9b3;
}

.footer .footer-bah p a {
  color: #a4a9b3;
}

@media (min-width: 992px) {
  .footer {
    padding: 30px 0 25px;
  }
  .footer .footer-box {
    display: flex;
    align-items: center;
    justify-content: space-between;
  }
  .footer .footer-box .footer-left li:not(:last-child) {
    margin-bottom: 28px;
  }
  .footer .footer-box .footer-left li a {
    color: #000;
    font-weight: 600;
    line-height: 1;
    font-size: 22px;
    margin-bottom: 8px;
  }
  .footer .footer-box .footer-left li span {
    line-height: 1.5;
  }
  .footer .footer-box .footer-right {
    margin-top: 0;
  }
  .footer .footer-box .footer-right img {
    width: 120px;
  }
  .footer .footer-bah {
    margin: 20px 15px 0;
    padding: 20px 0 0;
  }
}

.tyy-system .tyy-system-box {
  margin-top: 15px;
  background-color: #fbfbfb;
  border-radius: 25px;
  padding: 20px;
}

.tyy-system .tyy-system-box h2 {
  font-size: 20px;
  text-align: center;
  font-weight: 600;
  position: relative;
  padding-top: 15px;
}

.tyy-system .tyy-system-box h2::after {
  content: '';
  position: absolute;
  width: 24px;
  height: 35px;
  background: url(../static/images/tyy-seven.png) no-repeat center center/cover;
  top: 0;
  left: 50%;
  transform: translateX(-50%);
}

.tyy-system .tyy-system-box h2 span {
  position: relative;
  z-index: 9;
}

.tyy-system .tyy-system-box .tyy-system-ulst {
  margin-top: 20px;
}

.tyy-system .tyy-system-box .tyy-system-ulst li {
  position: relative;
  margin-left: 30px;
  background-color: #fff5f0;
  padding: 15px;
  border-radius: 20px;
  line-height: 1.5;
  display: flex;
  align-items: center;
}

.tyy-system .tyy-system-box .tyy-system-ulst li:not(:last-child) {
  margin-bottom: 15px;
}

.tyy-system .tyy-system-box .tyy-system-ulst li:not(:last-child)::after {
  content: '';
  position: absolute;
  height: 100%;
  width: 1px;
  border: 1px dashed #ff6912;
  left: -24px;
  top: 50%;
}

.tyy-system .tyy-system-box .tyy-system-ulst li::before {
  content: '';
  position: absolute;
  width: 15px;
  height: 15px;
  background-color: #ff6912;
  border: 5px solid #fff0e8;
  border-radius: 100%;
  left: -35px;
  box-sizing: content-box;
}

.tyy-system .tyy-system-box .tyy-system-ulst li b {
  white-space: nowrap;
  margin-right: 15px;
  color: #ff6912;
  background-color: #fff;
  border-radius: 20px;
  padding: 5px 15px;
}

.tyy-system .tyy-system-box .tyy-system-ulst li span {
  font-size: 13px;
  line-height: 1.8;
}

@media (min-width: 992px) {
  .tyy-system .tyy-system-box {
    margin-top: 25px;
    padding: 25px;
  }
  .tyy-system .tyy-system-box h2 {
    font-size: 30px;
    padding-top: 25px;
  }
  .tyy-system .tyy-system-box h2::after {
    content: '';
    position: absolute;
    width: 50px;
    height: 65px;
  }
  .tyy-system .tyy-system-box .tyy-system-ulst {
    margin-top: 30px;
  }
  .tyy-system .tyy-system-box .tyy-system-ulst li {
    margin-left: 50px;
    border-radius: 20px;
  }
  .tyy-system .tyy-system-box .tyy-system-ulst li:not(:last-child) {
    margin-bottom: 25px;
  }
  .tyy-system .tyy-system-box .tyy-system-ulst li:not(:last-child)::after {
    left: -38px;
    top: 70%;
  }
  .tyy-system .tyy-system-box .tyy-system-ulst li::before {
    width: 20px;
    height: 20px;
    background-color: #ff6912;
    border: 8px solid #fff0e8;
    left: -55px;
  }
  .tyy-system .tyy-system-box .tyy-system-ulst li b {
    border-radius: 20px;
    padding: 8px 18px;
    font-size: 22px;
    margin-right: 20px;
  }
  .tyy-system .tyy-system-box .tyy-system-ulst li span {
    font-size: 16px;
  }
}

.tyy-serform .tyy-serform-box {
  margin-top: 15px;
}

.tyy-serform .tyy-serform-box .mySwiper3 .swiper-slide {
  width: 60%;
  border-radius: 15px;
  overflow: hidden;
  position: relative;
}

.tyy-serform .tyy-serform-box .mySwiper3 .swiper-slide > span {
  position: absolute;
  background-color: rgba(0, 0, 0, 0.3);
  color: #fff;
  border: 2px solid #fff;
  border-radius: 20px;
  left: 50%;
  transform: translateX(-50%);
  bottom: 20px;
  white-space: nowrap;
  padding: 10px 20px;
  line-height: 1;
  font-size: 17px;
  font-weight: 600;
}

@media (min-width: 992px) {
  .tyy-serform .tyy-serform-box {
    margin-top: 25px;
  }
  .tyy-serform .tyy-serform-box .mySwiper3 .swiper-slide {
    width: calc(100% / 3);
    border-radius: 15px;
  }
  .tyy-serform .tyy-serform-box .mySwiper3 .swiper-slide span {
    border: 3px solid #fff;
    bottom: 30px;
    padding: 20px 35px;
    font-size: 32px;
    border-radius: 50px;
  }
}

.tyy-servadv .tyy-servadv-box {
  margin-top: 15px;
}

.tyy-servadv .tyy-servadv-box .tyy-servadv-rows {
  display: flex;
  flex-wrap: wrap;
}

.tyy-servadv .tyy-servadv-box .tyy-servadv-rows .tyy-servadv-items {
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  width: calc(100% / 2 - 15px / 2);
  margin-bottom: 15px;
}

.tyy-servadv .tyy-servadv-box .tyy-servadv-rows .tyy-servadv-items:not(:nth-child(2n)) {
  margin-right: 15px;
}

.tyy-servadv .tyy-servadv-box .tyy-servadv-rows .tyy-servadv-items img {
  image-rendering: -webkit-optimize-contrast;
}

@media (min-width: 992px) {
  .tyy-servadv .tyy-servadv-box {
    margin-top: 25px;
    background-color: #FBFBFB;
    padding: 40px 0;
  }
}

.tyy-charact .tyy-charact-box {
  margin-top: 15px;
}

.tyy-charact .tyy-charact-box .tyy-charact-rows {
  display: flex;
  overflow-x: auto;
  overflow-y: hidden;
  padding-bottom: 10px;
  padding-top: 5px;
}

.tyy-charact .tyy-charact-box .tyy-charact-rows .tyy-charact-items {
  box-shadow: 0px 0px 5px #eee;
  border-radius: 15px;
  padding: 8px;
}

.tyy-charact .tyy-charact-box .tyy-charact-rows .tyy-charact-items:not(:last-child) {
  margin-right: 15px;
}

.tyy-charact .tyy-charact-box .tyy-charact-rows .tyy-charact-items span {
  white-space: nowrap;
  margin-top: 15px;
  line-height: 1;
  display: block;
  text-align: center;
}

@media (min-width: 992px) {
  .tyy-charact .tyy-charact-box {
    margin-top: 25px;
  }
  .tyy-charact .tyy-charact-box .tyy-charact-rows {
    padding-bottom: 5px;
  }
  .tyy-charact .tyy-charact-box .tyy-charact-rows .tyy-charact-items {
    box-shadow: 0px 0px 5px #eee;
    border-radius: 15px;
    padding: 15px;
  }
  .tyy-charact .tyy-charact-box .tyy-charact-rows .tyy-charact-items:not(:last-child) {
    margin-right: 15px;
  }
  .tyy-charact .tyy-charact-box .tyy-charact-rows .tyy-charact-items span {
    margin-top: 20px;
    font-size: 16px;
  }
}

.tyy-guid .tyy-guid-box {
  margin-top: 15px;
  padding: 15px 0;
}

.tyy-guid .tyy-guid-box .tyy-guid-rows .tyy-guid-items {
  background-color: #FBFBFB;
  border-radius: 20px;
  padding: 0 15px;
  display: flex;
  align-items: flex-start;
}

.tyy-guid .tyy-guid-box .tyy-guid-rows .tyy-guid-items:not(:last-child) {
  margin-bottom: 15px;
}

.tyy-guid .tyy-guid-box .tyy-guid-rows .tyy-guid-items b {
  display: block;
  height: 60px;
  font-size: 17px;
  width: fit-content;
  padding: 5px 10px;
  border-radius: 0px 0px 50px 50px;
  background: linear-gradient(180deg, white 0%, #ffa36e 100%);
  color: #ff5e00;
  line-height: 65px;
}

.tyy-guid .tyy-guid-box .tyy-guid-rows .tyy-guid-items .tgi-cont {
  margin-left: 15px;
  padding: 10px 0;
  flex: 1;
}

.tyy-guid .tyy-guid-box .tyy-guid-rows .tyy-guid-items .tgi-cont h5 {
  color: #2fba84;
  font-size: 17px;
  font-weight: 600;
  line-height: 1.5;
  border-bottom: 1px dashed #ccc;
  padding-bottom: 10px;
  margin-bottom: 10px;
}

.tyy-guid .tyy-guid-box .tyy-guid-rows .tyy-guid-items .tgi-cont p {
  line-height: 1.5;
}

@media (min-width: 992px) {
  .tyy-guid .tyy-guid-box {
    margin-top: 25px;
    padding: 35px 0;
    background-color: #FBFBFB;
  }
  .tyy-guid .tyy-guid-box .tyy-guid-rows .tyy-guid-items {
    background-color: #fff;
    border-radius: 25px;
    padding: 0 35px;
  }
  .tyy-guid .tyy-guid-box .tyy-guid-rows .tyy-guid-items:not(:last-child) {
    margin-bottom: 25px;
  }
  .tyy-guid .tyy-guid-box .tyy-guid-rows .tyy-guid-items b {
    height: 90px;
    font-size: 22px;
    line-height: 105px;
  }
  .tyy-guid .tyy-guid-box .tyy-guid-rows .tyy-guid-items .tgi-cont {
    margin-left: 20px;
    padding: 20px 0;
  }
  .tyy-guid .tyy-guid-box .tyy-guid-rows .tyy-guid-items .tgi-cont h5 {
    font-size: 22px;
    padding-bottom: 15px;
    margin-bottom: 15px;
    width: 100%;
  }
  .tyy-guid .tyy-guid-box .tyy-guid-rows .tyy-guid-items .tgi-cont p {
    font-size: 16px;
  }
}

.tyy-exper .tyy-exper-box {
  margin-top: 15px;
}

.tyy-exper .tyy-exper-box span {
  font-size: 14px;
  color: #bfbfbf;
  line-height: 1.8;
  display: block;
  text-align: center;
  margin-top: 20px;
}

@media (min-width: 992px) {
  .tyy-exper .tyy-exper-box {
    margin-top: 25px;
  }
  .tyy-exper .tyy-exper-box span {
    font-size: 17px;
    margin-top: 40px;
  }
}

.tx-introd .tx-introd-box {
  margin-top: 15px;
}

@media (min-width: 992px) {
  .tx-introd .tx-introd-box {
    margin-top: 25px;
  }
}

.tx-dietary .tx-dietary-box .tx-dietary-one {
  margin-top: 15px;
}

.tx-dietary .tx-dietary-box .tx-dietary-one .bg {
  padding: 5px;
  overflow-x: auto;
  overflow-y: hidden;
  scrollbar-width: none;
  -ms-overflow-style: none;
}

.tx-dietary .tx-dietary-box .tx-dietary-one .bg img {
  min-width: 1000px;
  max-width: 1000px;
  box-shadow: 0 0 5px #eee;
  border-radius: 20px;
}

.tx-dietary .tx-dietary-box .tx-dietary-one .huadong {
  margin-top: 10px;
}

.tx-dietary .tx-dietary-box .tx-dietary-one .huadong img {
  width: 100%;
}

.tx-dietary .tx-dietary-box .tx-dietary-rows {
  margin-top: 25px;
}

.tx-dietary .tx-dietary-box .tx-dietary-rows .tx-dietary-items {
  display: flex;
  background-color: #FBFBFB;
  padding: 10px;
  border-radius: 20px;
  min-height: 295px;
}

.tx-dietary .tx-dietary-box .tx-dietary-rows .tx-dietary-items:not(:last-child) {
  margin-bottom: 15px;
}

.tx-dietary .tx-dietary-box .tx-dietary-rows .tx-dietary-items:nth-child(2n) {
  flex-direction: row-reverse;
}

.tx-dietary .tx-dietary-box .tx-dietary-rows .tx-dietary-items:nth-child(2n) .tdi-cont {
  margin-left: 0;
  margin-right: 15px;
}

.tx-dietary .tx-dietary-box .tx-dietary-rows .tx-dietary-items .tdi-img {
  flex: .6;
}

.tx-dietary .tx-dietary-box .tx-dietary-rows .tx-dietary-items .tdi-img img {
  object-fit: cover;
  height: 100%;
  border-radius: 20px;
}

.tx-dietary .tx-dietary-box .tx-dietary-rows .tx-dietary-items .tdi-cont {
  flex: 1;
  margin-left: 15px;
  padding: 10px 0 0;
}

.tx-dietary .tx-dietary-box .tx-dietary-rows .tx-dietary-items .tdi-cont .tdi-cont-title {
  display: flex;
  justify-content: space-between;
  border-bottom: 1px solid #ccc;
  padding-bottom: 10px;
  margin-bottom: 10px;
  position: relative;
}

.tx-dietary .tx-dietary-box .tx-dietary-rows .tx-dietary-items .tdi-cont .tdi-cont-title::before {
  content: '';
  position: absolute;
  bottom: -2px;
  left: 0;
  height: 3px;
  width: 30px;
  background-color: #2fba84;
  z-index: 9;
}

.tx-dietary .tx-dietary-box .tx-dietary-rows .tx-dietary-items .tdi-cont .tdi-cont-title .title-left h5 {
  line-height: 1;
  font-size: 20px;
  font-weight: 600;
  margin-bottom: 5px;
}

.tx-dietary .tx-dietary-box .tx-dietary-rows .tx-dietary-items .tdi-cont .tdi-cont-title .title-left span {
  line-height: 1;
  color: #888;
}

.tx-dietary .tx-dietary-box .tx-dietary-rows .tx-dietary-items .tdi-cont .tdi-cont-title b {
  line-height: 1;
  font-size: 20px;
  color: #2fba84;
}

.tx-dietary .tx-dietary-box .tx-dietary-rows .tx-dietary-items .tdi-cont .tdi-cont-ulst li {
  color: #7B7B7B;
  line-height: 2;
  font-size: 15px;
}

@media (min-width: 992px) {
  .tx-dietary {
    background-color: #FBFBFB;
    padding-top: 65px;
  }
  .tx-dietary .tx-dietary-box .tx-dietary-one {
    margin-top: 25px;
  }
  .tx-dietary .tx-dietary-box .tx-dietary-one .bg {
    padding: 0;
    overflow: auto;
  }
  .tx-dietary .tx-dietary-box .tx-dietary-one .bg img {
    min-width: 100%;
    max-width: 100%;
    box-shadow: 0;
  }
  .tx-dietary .tx-dietary-box .tx-dietary-rows {
    margin-top: 50px;
  }
  .tx-dietary .tx-dietary-box .tx-dietary-rows .tx-dietary-items {
    background-color: #fff;
    padding: 20px;
    min-height: 365px;
  }
  .tx-dietary .tx-dietary-box .tx-dietary-rows .tx-dietary-items:not(:last-child) {
    margin-bottom: 25px;
  }
  .tx-dietary .tx-dietary-box .tx-dietary-rows .tx-dietary-items:nth-child(2n) .tdi-cont {
    margin-right: 25px;
  }
  .tx-dietary .tx-dietary-box .tx-dietary-rows .tx-dietary-items .tdi-cont {
    margin-left: 25px;
  }
  .tx-dietary .tx-dietary-box .tx-dietary-rows .tx-dietary-items .tdi-cont .tdi-cont-title {
    padding-bottom: 20px;
    margin-bottom: 20px;
  }
  .tx-dietary .tx-dietary-box .tx-dietary-rows .tx-dietary-items .tdi-cont .tdi-cont-title::before {
    width: 40px;
  }
  .tx-dietary .tx-dietary-box .tx-dietary-rows .tx-dietary-items .tdi-cont .tdi-cont-title .title-left h5 {
    font-size: 30px;
    margin-bottom: 10px;
  }
  .tx-dietary .tx-dietary-box .tx-dietary-rows .tx-dietary-items .tdi-cont .tdi-cont-title .title-left span {
    font-size: 16px;
  }
  .tx-dietary .tx-dietary-box .tx-dietary-rows .tx-dietary-items .tdi-cont .tdi-cont-title b {
    font-size: 42px;
  }
  .tx-dietary .tx-dietary-box .tx-dietary-rows .tx-dietary-items .tdi-cont .tdi-cont-ulst li {
    font-size: 17px;
  }
}

.tx-harvest .tx-harvest-box {
  margin-top: 15px;
}

.tx-harvest .tx-harvest-box .col-6:not(:nth-last-child(-n+2)) {
  margin-bottom: 15px;
}

.tx-harvest .tx-harvest-box .tx-harvest-items {
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  border-radius: 38px;
  background: #fbfbfb;
  padding: 30px 0;
}

.tx-harvest .tx-harvest-box .tx-harvest-items b {
  font-size: 24px;
  color: #fff;
  background: linear-gradient(180deg, #82e0bc 0%, #28b881 100%);
  line-height: 1;
  width: 50px;
  height: 50px;
  border-radius: 100%;
  display: flex;
  align-items: center;
  justify-content: center;
  margin-bottom: 15px;
}

.tx-harvest .tx-harvest-box .tx-harvest-items span {
  font-size: 18px;
}

@media (min-width: 992px) {
  .tx-harvest .tx-harvest-box {
    margin-top: 25px;
  }
  .tx-harvest .tx-harvest-box .col-6:not(:nth-last-child(-n+2)) {
    margin-bottom: 0;
  }
  .tx-harvest .tx-harvest-box .tx-harvest-items {
    background: #fff;
    box-shadow: 0px 0px 12px rgba(0, 0, 0, 0.06);
    padding: 40px 0;
  }
  .tx-harvest .tx-harvest-box .tx-harvest-items b {
    font-size: 32px;
    width: 70px;
    height: 70px;
    margin-bottom: 25px;
  }
  .tx-harvest .tx-harvest-box .tx-harvest-items span {
    font-size: 22px;
  }
}

.tx-suit .tx-suit-box {
  margin-top: 15px;
}

.tx-suit .tx-suit-box .bg {
  overflow: auto;
}

.tx-suit .tx-suit-box .bg img {
  min-width: 1000px;
  max-width: 1000px;
}

.tx-suit .tx-suit-box .huadong {
  margin-top: 15px;
}

@media (min-width: 992px) {
  .tx-suit .tx-suit-box {
    margin-top: 25px;
  }
  .tx-suit .tx-suit-box .bg {
    overflow: auto;
  }
  .tx-suit .tx-suit-box .bg img {
    min-width: 100%;
    max-width: 100%;
  }
}

.pinpai-content .pinpai-rows .pinpai-items {
  box-shadow: 0px 0px 10px #eee;
  border-radius: 15px;
  padding: 15px;
  display: flex;
  margin-bottom: 15px;
}

.pinpai-content .pinpai-rows .pinpai-items:hover .ppi-img img {
  transform: scale(1.3);
}

.pinpai-content .pinpai-rows .pinpai-items .ppi-img {
  display: block;
  flex: .8;
  overflow: hidden;
  border-radius: 15px;
}

.pinpai-content .pinpai-rows .pinpai-items .ppi-img img {
  transition: all .3s;
}

.pinpai-content .pinpai-rows .pinpai-items .ppi-cont {
  flex: 1;
  margin-left: 15px;
  display: flex;
  flex-direction: column;
  justify-content: space-between;
}

.pinpai-content .pinpai-rows .pinpai-items .ppi-cont .ppic-title {
  display: block;
  display: -webkit-box;
  -webkit-box-orient: vertical;
  -webkit-line-clamp: 2;
  overflow: hidden;
  line-height: 1.5;
  font-size: 15px;
}

.pinpai-content .pinpai-rows .pinpai-items .ppi-cont .ppic-bot {
  display: flex;
  align-items: center;
  justify-content: space-between;
}

.pinpai-content .pinpai-rows .pinpai-items .ppi-cont .ppic-bot .time {
  display: flex;
  align-items: center;
}

.pinpai-content .pinpai-rows .pinpai-items .ppi-cont .ppic-bot .time img {
  width: 13px;
  margin-right: 5px;
}

.pinpai-content .pinpai-rows .pinpai-items .ppi-cont .ppic-bot .time span {
  font-size: 13px;
  color: #999;
}

.pinpai-content .pinpai-rows .pinpai-items .ppi-cont .ppic-bot .topage img {
  width: 30px;
  transform: rotate(-90deg);
}

@media (min-width: 992px) {
  .pinpai-content {
    background-color: #FBFBFB;
  }
  .pinpai-content .pinpai-rows .pinpai-items {
    background: white;
    box-shadow: 0px 0px 10px rgba(0, 0, 0, 0.02);
    border-radius: 20px;
    flex-direction: column;
    margin-bottom: 20px;
  }
  .pinpai-content .pinpai-rows .pinpai-items .ppi-img {
    flex: 1;
    min-height: 245px;
    max-height: 245px;
  }
  .pinpai-content .pinpai-rows .pinpai-items .ppi-cont {
    margin-left: 0;
    margin-top: 20px;
  }
  .pinpai-content .pinpai-rows .pinpai-items .ppi-cont .ppic-title {
    font-size: 16px;
    min-height: 50px;
    max-height: 50px;
  }
  .pinpai-content .pinpai-rows .pinpai-items .ppi-cont .ppic-bot {
    margin-top: 20px;
  }
  .pinpai-content .pinpai-rows .pinpai-items .ppi-cont .ppic-bot .time {
    display: flex;
    align-items: center;
  }
  .pinpai-content .pinpai-rows .pinpai-items .ppi-cont .ppic-bot .time img {
    width: 13px;
    margin-right: 5px;
  }
  .pinpai-content .pinpai-rows .pinpai-items .ppi-cont .ppic-bot .time span {
    font-size: 13px;
    color: #999;
  }
  .pinpai-content .pinpai-rows .pinpai-items .ppi-cont .ppic-bot .topage img {
    width: 30px;
    transform: rotate(-90deg);
  }
}

.article-content {
  background-color: #FBFBFB;
}

.article-content .article-box {
  padding: 20px 15px;
  background-color: #fff;
  box-shadow: 0px 0px 12px rgba(0, 0, 0, 0.01);
  border-radius: 15px;
}

.article-content .article-box .title {
  border-bottom: 1px solid #ccc;
  padding-bottom: 10px;
  margin-bottom: 10px;
}

.article-content .article-box .title h2 {
  font-size: 18px;
  font-weight: 600;
  margin-bottom: 5px;
  line-height: 1.5;
}

.article-content .article-box .title .time {
  color: #999;
}

@media (min-width: 992px) {
  .article-content .article-box {
    padding: 40px 25px;
  }
  .article-content .article-box .title {
    padding-bottom: 15px;
    margin-bottom: 15px;
  }
  .article-content .article-box .title h2 {
    font-size: 26px;
  }
}

.about-desc .about-desc-content {
  background: #fbfbfb;
  border-radius: 15px;
  padding: 15px;
  margin-top: 15px;
}

.about-desc .about-desc-content p {
  font-size: 15px;
}

.about-desc .about-desc-content .ct-flex .imgs {
  margin-top: 20px;
}

.about-desc .about-desc-content .ct-flex .yewu {
  margin-top: 20px;
  background: white;
  padding: 15px;
  border-radius: 15px;
}

.about-desc .about-desc-content .ct-flex .yewu h5 {
  font-size: 22px;
  font-weight: 600;
  margin-bottom: 10px;
}

.about-desc .about-desc-content .ct-flex .yewu p:not(:last-child) {
  margin-bottom: 25px;
}

@media (min-width: 992px) {
  .about-desc .about-desc-content {
    background: #fbfbfb;
    border-radius: 15px;
    padding: 25px;
    margin-top: 25px;
  }
  .about-desc .about-desc-content > p {
    font-size: 16px;
    text-align: center;
  }
  .about-desc .about-desc-content .ct-flex {
    background: white;
    display: flex;
    flex-direction: row-reverse;
    padding: 20px;
    margin-top: 25px;
    border-radius: 15px;
  }
  .about-desc .about-desc-content .ct-flex .imgs-box {
    flex: .6;
    margin-left: 15px;
  }
  .about-desc .about-desc-content .ct-flex .imgs {
    margin-top: 0;
    object-fit: cover;
    height: 100%;
  }
  .about-desc .about-desc-content .ct-flex .yewu {
    flex: 1;
    margin-top: 0;
    background: transparent;
    padding: 15px;
    border-radius: 15px;
  }
  .about-desc .about-desc-content .ct-flex .yewu h5 {
    margin-bottom: 15px;
  }
  .about-desc .about-desc-content .ct-flex .yewu p {
    font-size: 16px;
  }
  .about-desc .about-desc-content .ct-flex .yewu p:not(:last-child) {
    margin-bottom: 45px;
  }
}

.about-instit .about-instit-tabbar {
  display: flex;
  align-items: center;
  background-color: #e4f7f0;
  border-radius: 50px;
  padding: 6px;
  margin-top: 15px;
}

.about-instit .about-instit-tabbar li {
  font-size: 18px;
  line-height: 1;
  padding: 12px 15px;
  flex: 1;
  text-align: center;
}

.about-instit .about-instit-tabbar .active {
  background-color: #2fba84;
  color: #fff;
  border-radius: 50px;
}

.about-instit .about-instit-content {
  margin-top: 15px;
}

.about-instit .about-instit-content .about-instit-items {
  background-color: #FBFBFB;
  padding: 25px;
  border-radius: 25px;
  display: none;
}

.about-instit .about-instit-content .about-instit-items .title {
  position: relative;
  margin-top: 20px;
}

.about-instit .about-instit-content .about-instit-items .title h5 {
  font-size: 24px;
  font-weight: 600;
  text-align: center;
  position: relative;
  z-index: 9;
  color: #2fba84;
}

.about-instit .about-instit-content .about-instit-items .title span {
  position: absolute;
  left: 50%;
  transform: translateX(-50%);
  top: -18px;
  font-size: 34px;
  line-height: 1;
  background: linear-gradient(to bottom, #2fba84, #fff);
  -webkit-background-clip: text;
  color: transparent;
  font-weight: 600;
  opacity: .5;
}

.about-instit .about-instit-content .about-instit-items .ulst {
  margin-top: 25px;
}

.about-instit .about-instit-content .about-instit-items .ulst li {
  line-height: 2;
  font-size: 16px;
  padding-left: 10px;
  position: relative;
}

.about-instit .about-instit-content .about-instit-items .ulst li:not(:last-child) {
  margin-bottom: 20px;
}

.about-instit .about-instit-content .about-instit-items .ulst li::before {
  content: '';
  position: absolute;
  width: 2px;
  height: 2px;
  background-color: #2fba84;
  left: 0;
  top: 50%;
  transform: translateY(-50%);
}

@media (min-width: 992px) {
  .about-instit .about-instit-content {
    margin-top: 25px;
    display: flex;
  }
  .about-instit .about-instit-content .about-instit-items {
    padding: 25px;
    border-radius: 25px;
    flex: 1;
    display: flex !important;
    flex-direction: column;
  }
  .about-instit .about-instit-content .about-instit-items:not(:last-child) {
    margin-right: 20px;
  }
  .about-instit .about-instit-content .about-instit-items .title {
    position: relative;
    margin-top: 30px;
  }
  .about-instit .about-instit-content .about-instit-items .title h5 {
    font-size: 28px;
  }
  .about-instit .about-instit-content .about-instit-items .title span {
    top: -22px;
    font-size: 42px;
  }
  .about-instit .about-instit-content .about-instit-items .ulst {
    flex: 1;
    margin-top: 35px;
    display: flex;
    flex-direction: column;
    justify-content: space-between;
  }
  .about-instit .about-instit-content .about-instit-items .ulst li {
    font-size: 20px;
  }
  .about-instit .about-instit-content .about-instit-items .ulst li:not(:last-child) {
    margin-bottom: 40px;
  }
}

.about-power .about-power-content {
  margin-top: 15px;
}

.about-power .about-power-content .about-power-items:not(:last-child) {
  margin-bottom: 15px;
}

@media (min-width: 992px) {
  .about-power .about-power-content {
    margin-top: 25px;
    display: flex;
    align-items: center;
  }
  flex .about-power .about-power-content .about-power-items:not(:last-child) {
    margin-bottom: 0;
    margin-right: 20px;
  }
}

.about-vision .about-vision-content {
  position: relative;
  background: url(../static/images/vision-bg.png) no-repeat center top/cover;
  height: 500px;
  padding: 30px;
  margin-top: 15px;
  display: flex;
  align-items: center;
  justify-content: center;
}

.about-vision .about-vision-content::after {
  content: '';
  position: absolute;
  width: 100%;
  height: 100%;
  background-color: rgba(0, 0, 0, 0.3);
  left: 0;
  top: 0;
}

.about-vision .about-vision-content p {
  color: #fff;
  font-size: 22px;
  z-index: 9;
  position: relative;
  text-align: center;
}

@media (min-width: 992px) {
  .about-vision .about-vision-content {
    padding: 30px;
    margin-top: 25px;
  }
  .about-vision .about-vision-content p {
    font-size: 26px;
    max-width: 1200px;
  }
}
