header {
  position: fixed;
  top: 0;
  width: 100%;
  z-index: 10;
  color: #fff;
  background-color: hsl(var(--primary-hue), var(--primary-saturation), var(--primary-lightness));
}
header.sub {
  background-color: hsl(0, 0%, 95%);
}
header.sub .header-main .back-link {
  display: inline-block;
}
header.sub .header-main .header-logo-container {
  display: none;
}
header.sub .header-main .header-tools a {
  color: hsl(var(--primary-hue), var(--primary-saturation), var(--primary-lightness));
  border: 1px solid hsl(var(--primary-hue), var(--primary-saturation), var(--primary-lightness));
}
@media (min-width: 768px) {
  header {
    position: static;
    color: hsl(var(--primary-hue), var(--primary-saturation), var(--primary-lightness));
    background-color: #fff;
  }
  header.sub {
    background-color: #fff;
  }
  header.sub .header-main .back-link {
    display: none;
  }
  header.sub .header-main .header-logo-container {
    display: flex;
  }
}
header .container {
  position: relative;
  padding-top: 1rem;
  padding-bottom: 1rem;
  height: 6rem;
  display: flex;
  flex-direction: column;
  justify-content: center;
}
@media (min-width: 768px) {
  header .container {
    height: 8rem;
  }
}
header .header-main {
  width: 100%;
  display: flex;
  flex-direction: row;
  justify-content: space-between;
  align-items: center;
}
header .header-main .back-link {
  display: none;
  font-size: 1.6rem;
}
header .header-main .header-logo-container {
  display: flex;
  flex-direction: row;
  justify-content: center;
  align-items: center;
}
header .header-main .header-logo-container .logo {
  margin-right: 4px;
}
header .header-main .header-logo-container .logo > img {
  height: 4rem;
}
@media (min-width: 768px) {
  header .header-main .header-logo-container .logo > img {
    height: 6rem;
  }
}
header .header-main .header-logo-container .company-name {
  font-size: 1.8rem;
  font-weight: bold;
  flex-grow: 1;
}
header .header-main .header-tools ul {
  display: flex;
  align-items: center;
  flex-direction: row;
}
header .header-main .header-tools ul li {
  margin: 0 0.4rem;
}
header .header-main .header-tools ul li a {
  cursor: pointer;
  color: #fff;
  border: 1px solid #fff;
  border-radius: 50%;
  display: flex;
  height: 3.2rem;
  width: 3.2rem;
  font-size: 1.6rem;
  justify-content: center;
  align-items: center;
}
header .header-main .header-tools ul li a.disabled {
  color: #666;
  font-weight: bold;
  pointer-events: none;
}
@media (min-width: 768px) {
  header .header-main .header-tools ul li a {
    color: hsl(var(--primary-hue), var(--primary-saturation), var(--primary-lightness));
    border: 1px solid hsl(var(--primary-hue), var(--primary-saturation), var(--primary-lightness));
  }
}
header .wexin-dropdown {
  position: absolute;
  top: 100%;
  right: 0;
  width: 80%;
  padding-bottom: 80%;
  transform: translateX(-10%);
  color: #666;
  background-color: #fff;
  box-shadow: 0 1px 10px #ccc;
  z-index: 1000;
}
header .wexin-dropdown > .code {
  width: 100%;
  height: calc(100% - 4rem);
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
  text-align: center;
  white-space: nowrap;
}
header .wexin-dropdown > .code img {
  height: calc(100% - 6rem);
}
header .wexin-dropdown .close {
  display: block;
  position: absolute;
  cursor: pointer;
  font-size: 1.8rem;
  right: 1rem;
  top: 0.4rem;
}
@media (min-width: 768px) {
  header .wexin-dropdown {
    transform: none;
    width: 30rem;
    padding-bottom: 30rem;
  }
}
@media (min-width: 768px) {
  .mobile-navbar-trigger {
    display: none;
  }
}
.navbar-mobile-container {
  position: fixed;
  z-index: 3;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  user-select: none;
  -webkit-user-select: none;
  -ms-user-select: none;
  -moz-user-select: none;
}
.navbar-mobile-container {
  animation: 0.1s ease-out appear;
}
@keyframes appear {
  0% {
    height: 0;
  }
}
@media (min-width: 768px) {
  .navbar-mobile-container {
    display: none;
  }
}
.navbar-mobile-container .navbar-mobile {
  background-color: hsla(var(--primary-hue), var(--primary-saturation), calc(var(--primary-lightness) - 5%), 0.95);
  position: absolute;
  top: 6rem;
  width: 100%;
  height: calc(100% - 6rem);
  padding: 1.6rem 0;
}
.navbar-desktop {
  display: none;
}
@media (min-width: 768px) {
  .navbar-desktop {
    display: block;
    z-index: 3;
    position: absolute;
    width: 100%;
    left: 0;
    top: 8rem;
    height: 3.9rem;
    background-color: hsl(var(--primary-hue), var(--primary-saturation), var(--primary-lightness));
    user-select: none;
    -webkit-user-select: none;
    -ms-user-select: none;
    -moz-user-select: none;
  }
}
.navbar ul {
  font-size: 1.4rem;
}
.navbar ul li {
  cursor: pointer;
  white-space: nowrap;
  text-overflow: ellipsis;
  padding: 0.4rem 0.4rem 0.4rem 2rem;
}
.navbar ul li.acitved {
  background-color: hsla(var(--primary-hue), var(--primary-saturation), calc(var(--primary-lightness) - 10%), 0.9);
}
.navbar.sub {
  height: 0;
}
.navbar.sub.expand {
  transition: height 0.5s ease-out;
  height: unset;
}
@media (min-width: 768px) {
  .navbar ul {
    display: flex;
    flex-direction: row;
    justify-content: flex-start;
    align-items: flex-start;
  }
  .navbar ul li {
    position: relative;
    padding: 0.4rem 1rem;
  }
  .navbar ul li:hover,
  .navbar ul li.acitved {
    background-color: hsl(var(--primary-hue), var(--primary-saturation), calc(var(--primary-lightness) + 5%));
  }
  .navbar.sub {
    position: absolute;
    z-index: 1000;
    min-width: 100%;
    padding-left: 0.6rem;
    padding-bottom: 1rem;
    left: 0;
    top: 100%;
    background-color: hsl(var(--primary-hue), var(--primary-saturation), calc(var(--primary-lightness) + 5%));
  }
  .navbar.sub ul {
    flex-direction: column;
  }
  .navbar.sub ul li {
    position: static;
    background-color: unset;
    padding: 0.4rem;
    width: 100%;
    margin: 0;
  }
  .navbar.sub ul li .sub {
    position: static;
    padding-bottom: 0;
  }
}
.nav-link {
  position: relative;
  display: inline-block;
  padding: 0.5rem 2.4rem;
}
.nav-link .expand-icon {
  display: block;
  position: absolute;
  top: 0;
  left: -0.2rem;
  font-size: 1.8rem;
  padding: 0.2rem 1rem;
  cursor: pointer;
}
.nav-link .expand-icon.expand {
  transition: transform 0.2s ease-in;
  transform: rotate(90deg);
}
@media (min-width: 768px) {
  .nav-link .expand-icon {
    top: 0rem;
  }
}
.banner {
  color: #fff;
  text-shadow: 1px 1px 2px #333333;
  height: 0;
  padding-bottom: 46.875%;
  position: relative;
}
.banner h2 {
  font-size: 1.8rem;
}
.banner p {
  font-size: 1.2rem;
}
.banner .swiper-container {
  position: absolute;
  width: 100%;
  height: 100%;
  top: 0;
  left: 0;
}
.banner .swiper-slide {
  height: 0;
  padding-bottom: 46.875%;
  position: relative;
  overflow: hidden;
}
.banner .swiper-slide > img {
  position: absolute;
  top: 50%;
  left: 50%;
  max-width: 200%;
  width: 200% !important;
  transform: translate(-50%, -50%);
}
@media (min-width: 768px) {
  .banner .swiper-slide > img {
    width: 100% !important;
    max-width: 100%;
  }
}
@media (min-width: 768px) {
  .banner .swiper-slide {
    padding-bottom: 23.4375%;
  }
}
.banner .swiper-banner-prev,
.banner .swiper-banner-next {
  cursor: pointer;
  display: none;
  z-index: 10;
  position: absolute;
  top: 50%;
  width: 4rem;
  height: 4rem;
}
@media (min-width: 768px) {
  .banner .swiper-banner-prev,
  .banner .swiper-banner-next {
    display: block;
  }
}
.banner .swiper-banner-prev {
  left: 0;
  transform: rotate(-45deg) translateY(-50%);
  border-top: 0.3rem solid hsl(var(--primary-hue), var(--primary-saturation), var(--primary-lightness));
  border-left: 0.3rem solid hsl(var(--primary-hue), var(--primary-saturation), var(--primary-lightness));
}
@media (min-width: 768px) {
  .banner .swiper-banner-prev {
    left: 10%;
  }
}
.banner .swiper-banner-next {
  right: 0;
  transform: rotate(45deg) translateY(-50%);
  border-top: 0.3rem solid hsl(var(--primary-hue), var(--primary-saturation), var(--primary-lightness));
  border-right: 0.3rem solid hsl(var(--primary-hue), var(--primary-saturation), var(--primary-lightness));
}
@media (min-width: 768px) {
  .banner .swiper-banner-next {
    right: 10%;
  }
}
.banner .swiper-button-disabled {
  opacity: 0.5;
}
.banner .swiper-pagination-bullet {
  width: 2rem;
  height: 0.25rem;
  border-radius: 1.5rem;
  opacity: 0.5;
  background: #666;
}
@media (min-width: 768px) {
  .banner .swiper-pagination-bullet {
    width: 6rem;
  }
}
.banner .swiper-pagination-bullet-active {
  opacity: 1;
  background: hsl(var(--primary-hue), var(--primary-saturation), var(--primary-lightness));
}
.banner .carousel {
  height: 0;
  padding-bottom: 46.875%;
  position: relative;
}
.banner .carousel .carousel-inner {
  position: absolute;
  left: 0;
  top: 0;
  width: 100%;
  height: 100%;
}
.banner .carousel .carousel-item {
  overflow: hidden;
  position: relative;
  width: 100%;
  height: 100%;
}
.banner .carousel .carousel-item > img {
  position: absolute;
  top: 50%;
  max-width: 200%;
  width: 200% !important;
  left: 50%;
  transform: translate(-50%, -50%);
}
.banner.sub {
  display: none;
}
@media (min-width: 768px) {
  .banner {
    padding-bottom: 23.4375%;
  }
  .banner h2 {
    font-size: 300%;
  }
  .banner p {
    font-size: 150%;
  }
  .banner .carousel {
    padding-bottom: 23.4375%;
  }
  .banner .carousel .carousel-item > img {
    max-width: 100%;
    width: 100% !important;
  }
  .banner.sub {
    display: block;
    padding-bottom: 15.625%;
  }
  .banner.sub .carousel {
    padding-bottom: 15.625%;
  }
  .banner.sub .carousel .carousel-item > img {
    max-width: 100%;
    width: 100% !important;
  }
  .banner.sub .swiper-slide {
    padding-bottom: 15.625%;
  }
  .banner.sub .swiper-slide > img {
    max-width: 100%;
    width: 100% !important;
  }
}
.carousel-caption {
  position: absolute;
  left: 15%;
  top: 0;
  z-index: 10;
  width: 70%;
  height: 100%;
  padding: 0;
}
.carousel-caption .banner-font {
  position: absolute;
  z-index: 11;
}
.carousel-caption .banner-font h2,
.carousel-caption .banner-font p {
  white-space: nowrap;
}
.carousel-caption .banner-font.left.top {
  left: 0;
  top: 10%;
  text-align: left;
  transform: translate(0, -10%);
}
.carousel-caption .banner-font.left.middle {
  left: 0;
  top: 50%;
  text-align: left;
  transform: translate(0, -50%);
}
.carousel-caption .banner-font.left.bottom {
  left: 0;
  bottom: 10%;
  text-align: left;
  transform: translate(0, 10%);
}
.carousel-caption .banner-font.center.top {
  left: 50%;
  top: 10%;
  text-align: center;
  transform: translate(-50%, -10%);
}
.carousel-caption .banner-font.center.middle {
  left: 50%;
  top: 50%;
  text-align: center;
  transform: translate(-50%, -50%);
}
.carousel-caption .banner-font.center.bottom {
  left: 50%;
  bottom: 10%;
  text-align: center;
  transform: translate(-50%, 10%);
}
.carousel-caption .banner-font.right.top {
  right: 0;
  top: 10%;
  text-align: right;
  transform: translate(0, -10%);
}
.carousel-caption .banner-font.right.middle {
  right: 0;
  top: 50%;
  text-align: right;
  transform: translate(0, -50%);
}
.carousel-caption .banner-font.right.bottom {
  right: 0;
  bottom: 10%;
  text-align: right;
  transform: translate(0, 10%);
}
.carousel-caption .banner-font p {
  margin-bottom: 0;
}
footer {
  background-color: hsl(var(--primary-hue), var(--primary-saturation), var(--primary-lightness));
  color: #fff;
  display: flex;
  justify-content: space-between;
  align-items: center;
  flex-direction: column;
  line-height: 2.6rem;
}
footer .contact-info {
  padding: 2rem;
  border-bottom: 1px solid rgba(255, 255, 255, 0.2);
}
footer .contact-info .contact-info-company {
  display: none;
}
footer .contact-info .contact-info-contact {
  display: flex;
  justify-content: flex-start;
  flex-direction: column;
  align-items: flex-start;
}
footer .contact-info .contact-info-contact span {
  margin-right: 0.2rem;
}
footer .icp {
  padding: 2rem;
}
footer .icp dl {
  margin-bottom: 0;
}
footer .icp dl dt {
  font-weight: normal;
}
footer .icp dl dd {
  margin: 0;
}
@media (min-width: 992px) {
  footer .contact-info {
    display: flex;
    width: 100%;
  }
  footer .contact-info .contact-info-company {
    display: block;
    width: 40%;
  }
  footer .contact-info .contact-info-company .logo > img {
    height: 3rem;
  }
  footer .contact-info .contact-info-company .company-name {
    font-weight: bold;
  }
  footer .contact-info .contact-info-contact {
    width: 60%;
    align-items: center;
    flex-direction: row;
    flex-wrap: wrap;
    border-bottom: none;
  }
  footer .contact-info .contact-info-contact .email {
    width: 50%;
  }
  footer .contact-info .contact-info-contact .tel {
    width: 50%;
  }
  footer .contact-info .contact-info-contact .address {
    width: 100%;
  }
  footer .icp dl {
    margin-bottom: 0;
    display: flex;
    justify-content: center;
    align-items: center;
    flex-direction: row;
    flex-wrap: wrap;
    text-align: center;
  }
  footer .icp dl dt {
    width: 100%;
  }
  footer .icp dl dd {
    padding: 1rem;
    margin: 0 1rem;
  }
}
.body-container {
  width: 100%;
  height: 100%;
  position: relative;
}
.main {
  padding-top: 6rem;
  min-height: calc(100% - 9.2rem);
  position: relative;
}
@media (min-width: 768px) {
  .main {
    padding-top: 3.9rem;
    min-height: calc(100% - 19.2rem);
  }
}
.main .page-title {
  display: flex;
  flex-direction: row;
  justify-content: space-between;
  align-items: flex-end;
  margin: 1rem auto;
}
.main .page-title > span {
  padding: 1rem 2rem;
  display: inline-block;
}
.main .page-title .name {
  border-bottom: 1px solid hsl(var(--primary-hue), var(--primary-saturation), var(--primary-lightness));
}
.main .page-title .more {
  font-weight: normal;
  font-size: 1.4rem;
  flex-grow: 1;
  text-align: right;
  border-bottom: 1px solid #999999;
}
@media (min-width: 992px) {
  .main .page-title {
    max-width: 800px;
  }
  .main .page-title .name {
    padding-left: 2rem;
    padding-right: 2rem;
  }
}
@media (min-width: 1200px) {
  .main .page-title {
    max-width: 900px;
  }
}
.main .page-title.wide {
  max-width: 100% !important;
}
.main .page-detail-title {
  padding: 2rem 0;
  margin-top: 2rem;
  margin-bottom: 0;
  text-align: center;
}
.main .page-sub-title {
  text-align: center;
  font-weight: normal;
}
.main .page-content {
  margin: 2rem auto;
  padding: 0.4rem;
  max-width: 100%;
  word-break: break-all;
  overflow: hidden;
}
.main .page-content.limit-width img {
  max-width: 100% !important;
}
@media (min-width: 768px) {
  .main .page-content {
    padding-left: 2rem;
    padding-right: 2rem;
    min-height: 20rem;
  }
}
@media (min-width: 992px) {
  .main .page-content {
    max-width: 800px;
  }
}
@media (min-width: 1200px) {
  .main .page-content {
    max-width: 900px;
  }
}
.main .page-inside-nav {
  margin: 2rem 0;
}
.main .page-inside-nav dl {
  display: flex;
  justify-content: center;
  align-items: center;
  flex-direction: row;
  flex-wrap: wrap;
  margin: 0;
}
.main .page-inside-nav dd {
  margin: 1rem;
}
.main .page-inside-nav dd a {
  padding: 1rem 3rem;
  min-width: 12rem;
  display: block;
  text-align: center;
  border-radius: 4px;
  color: #fff;
  background-color: hsl(var(--primary-hue), var(--primary-saturation), calc(var(--primary-lightness) + 5%));
}
.main .page-inside-nav dd a:hover,
.main .page-inside-nav dd a.active {
  box-shadow: 0 0 3px hsl(var(--primary-hue), var(--primary-saturation), calc(var(--primary-lightness) - 5%));
  background-color: hsl(var(--primary-hue), var(--primary-saturation), var(--primary-lightness));
}
.main .page-sub-groups {
  height: 0;
  width: 100%;
}
.main .page-sub-groups .web-choose,
.main .page-sub-groups .web-collapse {
  display: none;
}
.main .page-sub-groups .table {
  position: absolute;
  top: 0;
  left: 0;
  z-index: 10;
  width: 100%;
  height: 0;
  background-color: rgba(0, 0, 0, 0.5);
  overflow: hidden;
}
.main .page-sub-groups .table .list {
  max-height: 0;
  overflow: hidden;
  background-color: hsla(var(--primary-hue), var(--primary-saturation), calc(var(--primary-lightness) + 5%), 0.8);
}
.main .page-sub-groups .table .list > dl {
  padding: 1rem 0;
  margin-bottom: 0;
}
.main .page-sub-groups .table .list > dl dd {
  text-align: left;
  margin-bottom: 0;
  padding: 1rem 3.6rem;
}
.main .page-sub-groups .table .list > dl dd a {
  font-size: 1.6rem;
  color: #fff;
}
.main .page-sub-groups.expand .table {
  height: 100%;
  transition: height 0.5s ease-out;
}
.main .page-sub-groups.expand .table .list {
  max-height: 100%;
}
@media (min-width: 768px) {
  .main .page-sub-groups {
    height: unset;
    overflow: hidden;
  }
  .main .page-sub-groups .table {
    position: static;
    display: table;
    margin-bottom: 0;
    width: 100%;
    background: none;
  }
  .main .page-sub-groups .table .list {
    display: table-cell;
    border-radius: 0;
    text-align: center;
  }
  .main .page-sub-groups .table .list > dl {
    display: flex;
    justify-content: center;
    align-items: center;
    flex-direction: row;
    flex-wrap: wrap;
    margin-bottom: 0;
    background: none;
    padding: 0;
  }
  .main .page-sub-groups .table .list > dl dd {
    text-align: left;
    margin: 0;
    padding: 1rem;
  }
  .main .page-sub-groups .table .list > dl dd a {
    display: inline-block;
    padding: 0.6rem 1rem;
    background-color: #666;
    border-radius: 0.6rem;
  }
  .main .page-sub-groups .table .list > dl dd a:hover {
    background-color: hsl(var(--primary-hue), var(--primary-saturation), var(--primary-lightness));
  }
  .main .page-sub-groups .web-choose {
    display: table-cell;
    text-align: center;
    width: 10rem;
  }
  .main .page-sub-groups .web-collapse {
    display: table-cell;
    text-align: center;
    width: 10rem;
  }
  .main .page-sub-groups .web-collapse > a {
    display: inline-block;
    user-select: none;
    cursor: pointer;
    padding: 0.4rem 1rem;
    border-radius: 0.4rem;
    border: 1px solid #ccc;
  }
}
.breadCrumb-container {
  display: none;
  background-color: hsl(0, 0%, 95%);
}
@media (min-width: 768px) {
  .breadCrumb-container {
    display: block;
  }
}
.breadCrumb-container .breadcrumb {
  display: -ms-flexbox;
  display: flex;
  -ms-flex-wrap: wrap;
  flex-wrap: wrap;
  padding: 1rem;
  list-style: none;
  margin-bottom: 0;
  border-radius: 0.25rem;
}
.breadCrumb-container .breadcrumb-item + .breadcrumb-item {
  padding-left: 0.5rem;
}
.breadCrumb-container .breadcrumb-item + .breadcrumb-item::before {
  display: inline-block;
  padding-right: 0.5rem;
  color: hsl(var(--primary-hue), var(--primary-saturation), var(--primary-lightness));
  content: '/';
}
.breadCrumb-container .breadcrumb-item.active {
  color: #999999;
}
.pagination {
  display: -ms-flexbox;
  display: flex;
  justify-content: center;
  padding-left: 0;
  list-style: none;
  user-select: none;
  -webkit-user-select: none;
  -ms-user-select: none;
  -moz-user-select: none;
}
.page-link {
  position: relative;
  display: flex;
  justify-content: center;
  align-items: center;
  width: 3rem;
  height: 3rem;
  margin: 0.1rem;
  line-height: 1.25;
  color: hsl(var(--primary-hue), var(--primary-saturation), var(--primary-lightness));
  background-color: #fff;
  border: 1px solid #dee2e6;
  border-radius: 50rem;
}
.page-link:hover {
  z-index: 2;
  color: hsl(var(--primary-hue), var(--primary-saturation), var(--primary-lightness));
  text-decoration: none;
  background-color: #e9ecef;
  border-color: #dee2e6;
}
.page-link:focus {
  z-index: 3;
  outline: 0;
  box-shadow: 0 0 0 1px hsl(var(--primary-hue), var(--primary-saturation), calc(var(--primary-lightness) - 5%));
}
.page-item:first-child .page-link {
  margin-left: 0;
}
.page-item.active .page-link {
  z-index: 3;
  color: #fff;
  background-color: hsl(var(--primary-hue), var(--primary-saturation), var(--primary-lightness));
  border-color: hsl(var(--primary-hue), var(--primary-saturation), var(--primary-lightness));
}
.page-item.disabled .page-link {
  color: #6c757d;
  pointer-events: none;
  cursor: auto;
  background-color: #fff;
  border-color: #dee2e6;
}
.home {
  background-color: #fff;
}
.home .block-title {
  display: none;
  flex-direction: row;
  justify-content: space-between;
  align-items: flex-end;
  margin-bottom: 2rem;
}
.home .block-title > span {
  padding: 2rem 2rem 1rem 2rem;
  display: inline-block;
}
.home .block-title .name {
  border-bottom: 1px solid hsl(var(--primary-hue), var(--primary-saturation), var(--primary-lightness));
}
.home .block-title .more {
  font-weight: normal;
  font-size: 1.4rem;
  flex-grow: 1;
  text-align: right;
  border-bottom: 1px solid #999999;
}
@media (min-width: 768px) {
  .home .block-title {
    display: flex;
  }
  .home .block-title .name {
    font-size: 2.2rem;
  }
}
@media (min-width: 768px) {
  .home .ad-announce {
    margin-top: 2rem;
    display: flex;
    flex-direction: row;
    align-items: stretch;
    min-height: 24rem;
  }
}
.home .ad-block {
  background-color: hsl(0, 0%, 90%);
  width: 100%;
  margin-bottom: 2rem;
  display: flex;
  align-items: center;
}
.home .ad-block .ad-content {
  padding: 2.8rem;
}
.home .ad-block .ad-content .title {
  text-align: center;
  font-size: 1.8rem;
}
.home .ad-block .ad-content .text {
  overflow: hidden;
  text-overflow: ellipsis;
}
.home .ad-block .ad-content .links {
  text-align: center;
  margin-top: 2rem;
}
@media (min-width: 768px) {
  .home .ad-block {
    width: 50%;
    color: #fff;
    background-color: hsl(var(--primary-hue), var(--primary-saturation), calc(var(--primary-lightness) + 5%));
  }
  .home .ad-block .ad-content {
    padding: 4rem;
  }
  .home .ad-block .ad-content .title {
    font-size: 2rem;
  }
}
.home .ad-img-block {
  text-align: center;
  margin: 2rem 0;
}
.home .ad-img-block .title {
  font-size: 1.8rem;
  padding: 3rem 0;
  position: relative;
}
@media (min-width: 768px) {
  .home .ad-img-block .title {
    font-size: 2.2rem;
  }
}
.home .ad-img-block .title::after {
  content: '';
  position: absolute;
  top: 50%;
  left: 0;
  width: 100%;
  height: 1px;
  border-bottom: 1px solid hsl(var(--primary-hue), var(--primary-saturation), var(--primary-lightness));
}
.home .ad-img-block .title .name {
  padding: 1rem;
  background-color: #fff;
  white-space: nowrap;
  z-index: 2;
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
}
.home .ad-img-block .img-url {
  display: block;
}
.home .ad-img-block .img-url > img {
  height: 100%;
  width: 100%;
  object-fit: cover;
}
.home .announce-block {
  margin-bottom: 2rem;
}
@media (min-width: 768px) {
  .home .announce-block {
    width: 50%;
  }
}
.home .announce-block .looper {
  width: 100%;
  height: 0;
  padding-bottom: 40%;
  position: relative;
}
@media (min-width: 768px) {
  .home .announce-block .looper {
    height: 100%;
    padding-bottom: 0;
  }
  .home .announce-block .looper .swiper-container {
    position: static;
  }
}
.home .announce-block .swiper-container {
  position: absolute;
  width: 100%;
  height: 100%;
  top: 0;
  left: 0;
}
.home .announce-block .swiper-slide {
  cursor: pointer;
  position: relative;
  box-shadow: 0 0 1px 1px #999999;
}
.home .announce-block .swiper-slide:hover {
  box-shadow: 0 0 1px 1px hsl(var(--primary-hue), var(--primary-saturation), calc(var(--primary-lightness) + 5%));
}
.home .announce-block .swiper-slide .cover {
  width: 100%;
  height: 100%;
  overflow: hidden;
  position: absolute;
}
.home .announce-block .swiper-slide .cover img {
  height: 100%;
  width: 100%;
  object-fit: cover;
}
.home .announce-block .swiper-slide > h3 {
  position: absolute;
  width: 100%;
  bottom: 0;
  left: 0;
  margin: 0;
  padding: 0.8rem;
  overflow: hidden;
  white-space: nowrap;
  text-overflow: ellipsis;
  background-color: rgba(255, 255, 255, 0.5);
  color: #fff;
  text-shadow: -1px -1px 0px hsl(var(--primary-hue), var(--primary-saturation), var(--primary-lightness)), 0px -1px 0px hsl(var(--primary-hue), var(--primary-saturation), var(--primary-lightness)), 1px -1px 0px hsl(var(--primary-hue), var(--primary-saturation), var(--primary-lightness)), -1px 0px 0px hsl(var(--primary-hue), var(--primary-saturation), var(--primary-lightness)), 1px 0px 0px hsl(var(--primary-hue), var(--primary-saturation), var(--primary-lightness)), -1px 1px 0px hsl(var(--primary-hue), var(--primary-saturation), var(--primary-lightness)), 0px 1px 0px hsl(var(--primary-hue), var(--primary-saturation), var(--primary-lightness)), 1px 1px 0px hsl(var(--primary-hue), var(--primary-saturation), var(--primary-lightness));
}
.home .news-block {
  background-color: hsl(0, 0%, 95%);
  margin-bottom: 2rem;
  padding: 1rem;
}
@media (min-width: 768px) {
  .home .news-block {
    background: none;
    position: relative;
  }
}
.home .news-block .news-list {
  width: 100%;
  height: 100%;
}
.home .news-block .news-list dd {
  padding: 0.4rem 1rem;
  text-overflow: ellipsis;
  overflow: hidden;
}
.home .news-block .news-list dd a {
  white-space: nowrap;
}
.home .news-block .news-list dd i,
.home .news-block .news-list dd p {
  display: none;
}
@media (min-width: 768px) {
  .home .news-block .news-list dl {
    display: flex;
    flex-direction: row;
    flex-wrap: wrap;
  }
  .home .news-block .news-list dt {
    width: 100%;
  }
  .home .news-block .news-list dd {
    width: calc(50% - 1rem);
    color: #666;
    padding: 2rem;
    margin: 1rem 0;
    box-shadow: 0 0 10px 2px hsl(0, 0%, 90%);
  }
  .home .news-block .news-list dd:nth-child(2n + 1) {
    margin-left: 1rem;
  }
  .home .news-block .news-list dd:nth-child(2n + 0) {
    margin-right: 1rem;
  }
  .home .news-block .news-list dd a {
    font-size: 1.8rem;
    color: #333333;
  }
  .home .news-block .news-list dd i {
    display: block;
  }
  .home .news-block .news-list dd p {
    display: block;
    margin-bottom: 0;
  }
}
@media (min-width: 768px) {
  .home .picnews-block {
    background-color: hsl(0, 0%, 90%);
    padding-top: 2rem;
    padding-bottom: 2rem;
  }
}
.home .picnews-block .looper {
  width: 100%;
  height: 0;
  padding-bottom: 40%;
  position: relative;
}
@media (min-width: 768px) {
  .home .picnews-block .looper {
    padding-bottom: 20%;
  }
}
.home .picnews-block .swiper-container {
  position: absolute;
  width: 100%;
  height: 100%;
  top: 0;
  left: 0;
}
.home .picnews-block .swiper-slide {
  position: relative;
  overflow: hidden;
  cursor: pointer;
  border-radius: 0.4rem;
  border: 1px solid #999999;
}
.home .picnews-block .swiper-slide:hover {
  border: 1px solid hsl(var(--primary-hue), var(--primary-saturation), calc(var(--primary-lightness) + 5%));
}
.home .picnews-block .swiper-slide > img {
  object-fit: cover;
  width: 100%;
  height: 100%;
}
.home .picnews-block .swiper-slide .slide-info {
  z-index: 20;
  position: absolute;
  bottom: 0;
  left: 50%;
  transform: translateX(-50%);
  width: 100%;
  padding: 1rem 2rem;
  font-size: 1.6rem;
  background-color: rgba(0, 0, 0, 0.5);
}
.home .picnews-block .swiper-slide .slide-info a {
  color: #fff;
}
@media (min-width: 768px) {
  .home .picnews-block .swiper-slide .slide-info {
    display: block;
  }
}
.home .picnews-block ul {
  display: flex;
  justify-content: flex-start;
  align-items: flex-start;
  transform: translate3d(0, 0, 0);
  animation: moveSlideshow 10s linear infinite;
}
.home .picnews-block ul li {
  flex-shrink: 0;
  width: 20%;
  height: 0;
  padding-bottom: 15%;
  overflow: hidden;
  position: relative;
  transform: translate3d(0, 0, 0);
}
.home .picnews-block ul li .cover {
  position: absolute;
  top: 0;
  left: 0;
  padding: 1rem;
  width: 100%;
  height: 100%;
}
.home .picnews-block ul li .cover img {
  width: 100%;
  height: 100%;
}
.home .product-block {
  margin: 2rem 0;
}
.home .product-block ul > li {
  margin-top: 1rem;
}
@media (min-width: 768px) {
  .home .product-block ul {
    display: flex;
    flex-direction: row;
    flex-wrap: wrap;
  }
  .home .product-block ul > li {
    margin-top: 4rem;
    width: calc(50% - 1rem);
  }
  .home .product-block ul > li:nth-child(2n + 1) {
    margin-right: 1rem;
  }
  .home .product-block ul > li:nth-child(2n + 0) {
    margin-left: 1rem;
  }
}
.home .product-block .product-icon-container {
  display: flex;
  flex-direction: row;
  align-items: center;
}
@media (min-width: 768px) {
  .home .product-block .product-icon-container {
    flex-direction: column;
    align-items: flex-start;
  }
}
.home .product-block .product-cover {
  display: none;
}
@media (min-width: 768px) {
  .home .product-block .product-cover {
    display: block;
    width: 100%;
    height: 0;
    padding-bottom: 40%;
    overflow: hidden;
    position: relative;
  }
  .home .product-block .product-cover > span {
    position: absolute;
    left: 0;
    top: 0;
    width: 100%;
    height: 100%;
  }
  .home .product-block .product-cover > span img {
    width: 100%;
    height: 100%;
    object-fit: cover;
  }
}
.home .product-block .product-icon {
  flex-shrink: 0;
  width: 4rem;
  height: 4rem;
  margin-right: 1rem;
}
.home .product-block .product-icon > img {
  width: 100%;
  object-fit: cover;
}
@media (min-width: 768px) {
  .home .product-block .product-icon {
    display: none;
  }
}
.home .product-block .product-info {
  padding: 1.6rem 0;
}
.home .product-block .product-info h4 {
  height: 2rem;
  overflow: hidden;
  text-overflow: ellipsis;
}
@media (min-width: 768px) {
  .home .product-block .product-info h4 {
    height: 2.4rem;
    font-size: 1.8rem;
  }
}
.home .product-block .product-info p {
  max-height: 4rem;
  margin: 0;
  overflow: hidden;
  text-overflow: ellipsis;
}
.announce-list-container {
  margin: 2rem auto;
}
@media (min-width: 992px) {
  .announce-list-container {
    max-width: 800px;
  }
}
@media (min-width: 1200px) {
  .announce-list-container {
    max-width: 900px;
  }
}
.page-announce-list {
  width: 100%;
  min-height: 20rem;
}
.page-announce-list li {
  cursor: pointer;
  display: flex;
  flex-direction: row;
  justify-content: flex-start;
  align-items: flex-start;
  position: relative;
  width: 100%;
  margin: 0.4rem 0;
  padding: 0.6rem 1rem;
}
.page-announce-list li::before {
  content: '.';
  position: absolute;
  top: 50%;
  height: 100%;
  transform: translateY(-50%);
  left: -0.4rem;
  font-size: 4.8rem;
  line-height: 1px;
  color: hsl(var(--primary-hue), var(--primary-saturation), var(--primary-lightness));
}
.page-announce-list li .news-date {
  display: none;
}
.page-announce-list li .news-info {
  width: 100%;
}
.page-announce-list li .news-info .news-title {
  width: 100%;
  display: inline-block;
  white-space: nowrap;
  text-overflow: ellipsis;
  overflow: hidden;
}
.page-announce-list li .news-info .news-intro {
  display: none;
}
@media (min-width: 768px) {
  .page-announce-list li {
    display: flex;
    flex-direction: row;
    justify-content: space-between;
    align-items: center;
    margin-bottom: 1rem;
  }
  .page-announce-list li::before {
    display: none;
  }
  .page-announce-list li .news-date {
    display: block;
    padding: 1rem 2rem;
    background-color: hsl(0, 0%, 95%);
    color: #333333;
    border-radius: 1rem;
  }
  .page-announce-list li .news-date span {
    display: block;
    text-align: center;
    font-size: 1.6rem;
  }
  .page-announce-list li .news-date span.news-day {
    font-size: 2.4rem;
  }
  .page-announce-list li .news-info {
    width: calc(100% - 10rem);
  }
  .page-announce-list li .news-info .news-title {
    font-size: 1.6rem;
  }
  .page-announce-list li .news-info .news-intro {
    margin-top: 0.2rem;
    margin-bottom: 0;
    height: 4rem;
    display: block;
    text-overflow: ellipsis;
    overflow: hidden;
  }
}
.contactus {
  margin: 0 auto;
  text-align: center;
}
.contactus ul {
  text-align: left;
  display: flex;
  flex-wrap: wrap;
  list-style: none;
  flex-direction: column;
}
.contactus ul li {
  padding: 1rem 0;
}
.contactus ul li label::after {
  content: ':';
}
.contactus ul li i {
  color: #fff;
  margin-right: 0.6rem;
}
@media (min-width: 768px) {
  .contactus .address {
    flex-direction: column;
  }
  .contactus .address li {
    margin: 1rem;
  }
}
.partners ul {
  display: flex;
  justify-content: center;
  align-items: flex-start;
  flex-wrap: wrap;
  flex-direction: column;
}
.partners ul li {
  margin: 1rem;
}
.partners ul li .logo-container {
  display: none;
}
.partners ul li a span {
  display: block;
  padding: 0.4rem;
  position: relative;
}
.partners ul li a span::before {
  content: '.';
  position: absolute;
  top: -0.4rem;
  height: 100%;
  left: -1rem;
  font-size: 4.8rem;
  line-height: 0.4rem;
  color: hsl(var(--primary-hue), var(--primary-saturation), var(--primary-lightness));
}
@media (min-width: 768px) {
  .partners ul {
    flex-direction: row;
  }
  .partners ul li {
    width: calc(25% - 4rem);
    text-align: center;
    margin: 2rem 2rem 8rem 2rem;
  }
  .partners ul li .logo-container {
    display: block;
    width: 100%;
    height: 0;
    padding-bottom: 100%;
    position: relative;
    border-radius: 50%;
    overflow: hidden;
    margin-bottom: 2rem;
  }
  .partners ul li .logo-container img {
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    width: calc(100% - 1rem);
    max-width: calc(100% - 1rem);
    max-height: calc(100% - 1rem);
    display: inline-block;
  }
  .partners ul li a span {
    padding: 0;
  }
  .partners ul li a span::before {
    display: none;
  }
}
.page-news-info {
  box-shadow: 0 0 1px 1px #ccc;
}
.page-news-info > img {
  width: 100%;
}
.page-news-info > p {
  font-size: 1.4rem;
  padding: 2rem;
}
.news-page-block-title .page-sub-groups .table {
  top: 14rem;
}
@media (min-width: 768px) {
  .news-page-block-title {
    display: none;
  }
}
.page-news-list-container {
  margin: 2rem auto;
  padding-left: 0.6rem;
  display: flex;
  flex-direction: row;
  justify-content: center;
  align-content: flex-start;
  flex-wrap: wrap;
}
.page-news-leftbar {
  display: none;
}
@media (min-width: 768px) {
  .page-news-leftbar {
    display: block;
    width: 25%;
  }
}
.page-news-leftbar dl {
  margin-bottom: 4rem;
}
.page-news-leftbar dl dt {
  font-size: 1.6rem;
  padding-bottom: 1rem;
  color: #666;
  border-bottom: 1px solid hsl(var(--primary-hue), var(--primary-saturation), var(--primary-lightness));
  margin-bottom: 1rem;
}
.page-news-leftbar dl dd {
  margin: 0;
  padding-left: 0;
}
.page-news-leftbar dl.page-news-leftbar-groups dd {
  margin-bottom: 1rem;
}
.page-news-leftbar dl.page-news-leftbar-groups dd a {
  padding: 0.4rem 1.6rem;
  display: block;
  margin-bottom: 0.1rem;
  position: relative;
}
.page-news-leftbar dl.page-news-leftbar-groups dd a::after {
  content: '';
  position: absolute;
  top: calc(50% - 0.1rem);
  left: 0;
  width: 0.8rem;
  height: 0.8rem;
  transform: rotate(-45deg) translateY(-50%);
  border-bottom: 0.1rem solid hsl(var(--primary-hue), var(--primary-saturation), calc(var(--primary-lightness) + 5%));
  border-right: 0.1rem solid hsl(var(--primary-hue), var(--primary-saturation), calc(var(--primary-lightness) + 5%));
}
.page-news-leftbar dl.page-news-leftbar-announce dd {
  padding-left: 0;
}
.page-news-leftbar dl.page-news-leftbar-announce dd a {
  padding: 0.8rem 1.2rem;
  display: block;
  margin-bottom: 0.1rem;
  font-size: 1.4rem;
  white-space: nowrap;
  text-overflow: ellipsis;
  overflow: hidden;
  position: relative;
}
.page-news-leftbar dl.page-news-leftbar-announce dd a::after {
  content: '';
  position: absolute;
  top: calc(50% - 0.1rem);
  left: 0;
  width: 0.8rem;
  height: 0.8rem;
  transform: rotate(-45deg) translateY(-50%);
  border-bottom: 0.1rem solid hsl(var(--primary-hue), var(--primary-saturation), calc(var(--primary-lightness) + 5%));
  border-right: 0.1rem solid hsl(var(--primary-hue), var(--primary-saturation), calc(var(--primary-lightness) + 5%));
}
.page-news-list {
  width: 100%;
  min-height: 20rem;
}
.page-news-list li {
  display: flex;
  flex-direction: row;
  justify-content: flex-start;
  align-items: flex-start;
  position: relative;
  width: 100%;
  margin: 0.4rem 0;
  padding: 0.6rem 1rem;
}
.page-news-list li::before {
  content: '.';
  position: absolute;
  top: 50%;
  height: 100%;
  transform: translateY(-50%);
  left: -0.4rem;
  font-size: 4.8rem;
  line-height: 1px;
  color: hsl(var(--primary-hue), var(--primary-saturation), var(--primary-lightness));
}
.page-news-list li .news-date {
  display: none;
}
.page-news-list li .news-info {
  width: 100%;
}
.page-news-list li .news-info .news-title {
  width: 100%;
  display: inline-block;
  white-space: nowrap;
  text-overflow: ellipsis;
  overflow: hidden;
}
.page-news-list li .news-info .news-intro {
  display: none;
}
@media (min-width: 768px) {
  .page-news-list {
    margin-left: 2rem;
    width: calc(75% - 2rem);
  }
  .page-news-list li {
    display: flex;
    flex-direction: row;
    justify-content: space-between;
    align-items: center;
    margin-bottom: 1rem;
  }
  .page-news-list li::before {
    display: none;
  }
  .page-news-list li .news-date {
    display: block;
    padding: 1rem 2rem;
    background-color: hsl(0, 0%, 95%);
    color: #333333;
    border-radius: 1rem;
  }
  .page-news-list li .news-date span {
    display: block;
    text-align: center;
    font-size: 1.6rem;
  }
  .page-news-list li .news-date span.news-day {
    font-size: 2.4rem;
  }
  .page-news-list li .news-info {
    width: calc(100% - 10rem);
  }
  .page-news-list li .news-info .news-title {
    font-size: 1.6rem;
  }
  .page-news-list li .news-info .news-intro {
    margin-top: 0.2rem;
    margin-bottom: 0;
    height: 4rem;
    display: block;
    text-overflow: ellipsis;
    overflow: hidden;
  }
}
.news-detail {
  min-height: 20rem;
  position: relative;
  max-width: 70rem;
  padding: 1rem;
  margin: 0 auto;
}
.news-detail .swiper-container {
  margin-bottom: 2rem;
  border: 1px solid #ccc;
  box-shadow: 0 1px 5px #ccc;
  overflow: hidden;
}
@media (min-width: 768px) {
  .news-detail .swiper-container {
    max-width: 480px;
  }
}
@media (min-width: 992px) {
  .news-detail .swiper-container {
    max-width: 640px;
  }
}
.news-detail .swiper-container .swiper-slide {
  position: relative;
  overflow: hidden;
}
.news-detail .swiper-container .swiper-slide img {
  width: 100%;
}
.news-detail .swiper-container .swiper-slide .slide-info {
  display: none;
  cursor: pointer;
  z-index: 20;
  width: 100%;
  padding: 2rem 4rem;
  position: absolute;
  bottom: 0;
  left: 50%;
  transform: translateX(-50%);
  color: white;
  text-shadow: 1px 1px 2px #333;
  background-color: rgba(0, 0, 0, 0.5);
}
@media (min-width: 768px) {
  .news-detail .swiper-container .swiper-slide .slide-info {
    display: block;
  }
}
.news-detail .swiper-prev,
.news-detail .swiper-next {
  z-index: 10;
  position: absolute;
  top: 50%;
  color: #666;
  font-size: 4rem;
  opacity: 0.8;
}
.news-detail .swiper-prev {
  left: 1rem;
}
.news-detail .swiper-next {
  right: 1rem;
}
.news-detail .swiper-button-disabled {
  opacity: 0.3;
}
.news-detail .swiper-pagination-bullet-active {
  background: hsl(var(--primary-hue), var(--primary-saturation), var(--primary-lightness)) !important;
}
.page-news-detail-container {
  margin: 2rem auto;
  padding-left: 0.6rem;
  display: flex;
  flex-direction: row;
  justify-content: center;
  align-content: flex-start;
  flex-wrap: wrap;
}
.page-news-detail-container .page-news-detail-leftbar {
  display: none;
}
@media (min-width: 768px) {
  .page-news-detail-container .page-news-detail-leftbar {
    display: block;
    width: 20rem;
    margin-top: 2rem;
  }
}
.page-news-detail-container .page-news-detail-leftbar dl {
  margin-bottom: 4rem;
}
.page-news-detail-container .page-news-detail-leftbar dl dt {
  font-size: 1.6rem;
  padding-bottom: 1rem;
  color: #666;
  border-bottom: 1px solid hsl(var(--primary-hue), var(--primary-saturation), var(--primary-lightness));
  margin-bottom: 1rem;
}
.page-news-detail-container .page-news-detail-leftbar dl dd {
  margin: 0;
  padding-left: 0;
}
.page-news-detail-container .page-news-detail-leftbar dl dd a {
  padding: 0.8rem 1.2rem;
  display: block;
  margin-bottom: 0.1rem;
  font-size: 1.4rem;
  white-space: nowrap;
  text-overflow: ellipsis;
  overflow: hidden;
  position: relative;
}
.page-news-detail-container .page-news-detail-leftbar dl dd a::after {
  content: '';
  position: absolute;
  top: calc(50% - 0.1rem);
  left: 0;
  width: 0.8rem;
  height: 0.8rem;
  transform: rotate(-45deg) translateY(-50%);
  border-bottom: 0.1rem solid hsl(var(--primary-hue), var(--primary-saturation), calc(var(--primary-lightness) + 5%));
  border-right: 0.1rem solid hsl(var(--primary-hue), var(--primary-saturation), calc(var(--primary-lightness) + 5%));
}
.page-news-detail-container .page-news-detail-content {
  width: 100%;
}
@media (min-width: 768px) {
  .page-news-detail-container .page-news-detail-content {
    display: block;
    width: calc(100% - 20rem);
  }
}
.page-news-detail-container .page-news-detail-content .page-detail-title {
  margin-top: 0;
  font-size: 1.6rem;
}
@media (min-width: 768px) {
  .page-news-detail-container .page-news-detail-content .page-detail-title {
    font-size: 1.8rem;
  }
}
.page-photo-news-list {
  width: 100%;
  min-height: 20rem;
}
.page-photo-news-list li {
  margin-bottom: 2rem;
}
.page-photo-news-list .news-cover {
  width: 100%;
  height: 0;
  padding-bottom: 75%;
  position: relative;
  overflow: hidden;
  box-shadow: 0 0 1px 1px #999999;
}
.page-photo-news-list .news-cover img {
  position: absolute;
  top: 50%;
  left: 50%;
  height: 100%;
  transform: translate(-50%, -50%);
}
.page-photo-news-list .news-info .news-title {
  display: block;
  padding: 1rem 0.4rem;
  text-align: center;
  font-size: 1.6rem;
  height: 3.6rem;
  font-weight: bold;
  text-overflow: ellipsis;
  overflow: hidden;
}
.page-photo-news-list .news-info .news-intro {
  display: none;
}
@media (min-width: 768px) {
  .page-photo-news-list {
    width: calc(75% - 2rem);
    margin-left: 2rem;
  }
  .page-photo-news-list li {
    display: flex;
    flex-direction: row;
    justify-content: flex-start;
    align-items: center;
  }
  .page-photo-news-list li .news-cover {
    width: 16rem;
    padding: 0;
    height: 12rem;
  }
  .page-photo-news-list li .news-info {
    width: calc(100% - 16rem);
    padding-left: 1rem;
  }
  .page-photo-news-list li .news-info .news-title {
    margin-bottom: 0.4rem;
    text-align: left;
  }
  .page-photo-news-list li .news-info .news-intro {
    color: #666;
    display: block;
    padding: 0 1rem;
    margin: 0;
    height: 8rem;
    line-height: 1.8;
    text-overflow: ellipsis;
    overflow: hidden;
  }
  .page-photo-news-list li:hover {
    box-shadow: 0 0 1px 1px #999999;
  }
}
.page-product-list {
  margin-top: 2rem;
  min-height: 20rem;
}
.page-product-list ul {
  display: flex;
  flex-direction: row;
  align-items: center;
  flex-wrap: wrap;
}
.page-product-list li {
  display: inline-block;
  cursor: pointer;
  width: calc(50% - 1.2rem);
  overflow: hidden;
  margin: 1rem 0.6rem;
}
@media (min-width: 768px) {
  .page-product-list li {
    width: calc(33% - 4rem);
    margin: 2rem;
    padding: 1rem;
  }
}
.page-product-list li .cover {
  display: block;
  width: 100%;
  height: 0;
  padding-bottom: 75%;
  overflow: hidden;
  text-align: center;
  position: relative;
}
.page-product-list li .cover > img {
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
  height: 100%;
}
.page-product-list li .cover-info {
  display: block;
  width: 100%;
  padding: 0.6rem 1rem;
}
.page-product-list li .cover-info .cover-title {
  font-size: 1.6rem;
  color: hsl(var(--primary-hue), var(--primary-saturation), var(--primary-lightness));
  font-weight: bold;
  padding: 1rem 0;
  display: block;
  text-align: center;
  overflow: hidden;
  height: 3.6rem;
}
.page-product-list li .cover-info .cover-content {
  display: none;
}
@media (min-width: 768px) {
  .page-product-list li .cover-info .cover-content {
    display: block;
    max-height: 4rem;
    margin-bottom: 0;
    overflow: hidden;
    text-overflow: ellipsis;
  }
}
.page-product-list li:hover {
  box-shadow: 0 0 0 0.1rem #666;
}
.product-detail-title {
  padding: 2rem 0;
  margin-bottom: 2rem;
  text-align: center;
  border-bottom: 2px solid #666;
}
.product-detail-title .product-detail-date {
  display: block;
  margin-top: 1rem;
}
.tank-tree.sub {
  padding-left: 2.9rem;
}
.tank-tree.sub li::before {
  height: 100%;
  content: '';
  position: absolute;
  left: -1rem;
  top: 0;
  border-left: 1px solid #666;
}
.tank-tree.sub li:first-child::before {
  height: 50%;
  content: '';
  position: absolute;
  left: -1rem;
  top: 50%;
  border-left: 1px solid #666;
}
.tank-tree.sub li:last-child::before {
  height: 50%;
  content: '';
  position: absolute;
  left: -1rem;
  top: 0;
  border-left: 1px solid #666;
}
.tank-tree.sub li:only-child::before {
  top: calc(50% - 1px);
  height: 1px;
}
.tank-tree ul {
  list-style: none;
  margin: 0;
  padding: 0;
  display: flex;
  flex-direction: column;
  justify-content: center;
  align-content: center;
}
.tank-tree li {
  text-align: center;
  flex-shrink: 0;
  display: flex;
  flex-direction: row;
  align-items: center;
  padding-left: 1rem;
  position: relative;
}
.tank-tree li > span {
  display: block;
  border: 1px solid #666;
  border-radius: 0.4rem;
  margin: 0.4rem 0;
  padding: 0.4rem;
  min-height: 10rem;
  position: relative;
  letter-spacing: 0.6rem;
  writing-mode: vertical-lr;
}
@media (min-width: 768px) {
  .tank-tree li > span {
    min-width: 10rem;
    min-height: unset;
    writing-mode: horizontal-tb;
  }
}
.tank-tree li > span.sub::before {
  width: 2rem;
  height: 0.1rem;
  content: '';
  position: absolute;
  left: -2rem;
  top: 50%;
  transform: translateY(-50%);
  border-top: 1px solid #666;
}
.tank-tree li > span.next::after {
  width: 2rem;
  height: 0.1rem;
  content: '';
  position: absolute;
  right: -2rem;
  top: 50%;
  transform: translateY(-50%);
  border-top: 1px solid #666;
}
.honor-list ul li {
  width: 100%;
  margin-bottom: 10rem;
}
.honor-list ul li .img-container img {
  object-fit: contain;
  width: 100%;
  height: 100%;
  display: inline-block;
}
.honor-list ul li a span {
  display: block;
  padding-left: 1.4rem;
  position: relative;
  border-bottom: 1px solid #666;
}
.honor-list ul li a span::before {
  content: '.';
  position: absolute;
  top: -0.4rem;
  height: 100%;
  left: 0;
  font-size: 4.8rem;
  line-height: 0.1rem;
  color: hsl(var(--primary-hue), var(--primary-saturation), var(--primary-lightness));
}
.honor-list ul li i {
  font-size: 1rem;
  color: #666;
}
@media (min-width: 768px) {
  .honor-list ul {
    display: flex;
    flex-wrap: wrap;
    flex-direction: row;
  }
  .honor-list ul li {
    width: calc(25% - 4rem);
    text-align: center;
    margin: 2rem 2rem 8rem 2rem;
  }
  .honor-list ul li a span {
    padding: 0;
  }
  .honor-list ul li a span::before {
    display: none;
  }
}
:root {
  font-size: 0.625rem;
}
* {
  outline: none !important;
  box-sizing: border-box;
}
/*通用设置*/
html {
  font-family: sans-serif;
  height: 100%;
  -ms-text-size-adjust: 100%;
  -moz-osx-font-smoothing: grayscale;
  -webkit-font-smoothing: antialiased;
  -webkit-text-size-adjust: 100%;
  -webkit-tap-highlight-color: rgba(0, 0, 0, 0);
}
body {
  font-family: 'Helvetica Neue', Helvetica, 'PingFang SC', 'Hiragino Sans GB', 'Microsoft YaHei', '微软雅黑', Arial, sans-serif;
  height: 100%;
  margin: 0;
  padding: 0;
  font-size: 1.4rem;
  font-weight: 400;
  line-height: 1.5;
}
.container {
  width: 100%;
  padding-right: 15px;
  padding-left: 15px;
  margin-right: auto;
  margin-left: auto;
}
@media (min-width: 576px) {
  .container {
    max-width: 540px;
  }
}
@media (min-width: 768px) {
  .container {
    max-width: 720px;
  }
}
@media (min-width: 992px) {
  .container {
    max-width: 960px;
  }
}
@media (min-width: 1200px) {
  .container {
    max-width: 1140px;
  }
}
a {
  cursor: pointer;
  color: hsl(var(--primary-hue), var(--primary-saturation), var(--primary-lightness));
  text-decoration: none;
  background-color: transparent;
}
a:hover {
  color: #666;
  text-decoration: none;
}
a.white {
  color: #fff;
}
a.white:hover {
  text-decoration: underline;
}
a.gray {
  color: #666;
}
a.gray:hover {
  color: hsl(var(--primary-hue), var(--primary-saturation), var(--primary-lightness));
  text-decoration: underline;
}
a.button-primary {
  display: inline-block;
  padding: 0.5rem 3.5rem;
  border-radius: 4rem;
  color: #fff;
  background-color: hsl(var(--primary-hue), var(--primary-saturation), var(--primary-lightness));
  border-color: hsl(var(--primary-hue), var(--primary-saturation), calc(var(--primary-lightness) - 5%));
}
a.button-primary:hover {
  background-color: hsl(var(--primary-hue), var(--primary-saturation), calc(var(--primary-lightness) - 5%));
}
a.button-primary:focus,
a.button-primary.focus {
  background-color: hsl(var(--primary-hue), var(--primary-saturation), calc(var(--primary-lightness) - 5%));
  box-shadow: 0 0 0 0.2rem hsla(var(--primary-hue), var(--primary-saturation), var(--primary-lightness), 0.5);
}
a.button-gray {
  display: inline-block;
  padding: 0.5rem 3.5rem;
  color: #333333;
  background-color: #f8f9fa;
  border-color: #666;
}
a.button-gray:hover {
  border-color: #666;
}
a.button-gray:focus,
a.button-gray.focus {
  border-color: #666;
  box-shadow: 0 0 0 0.2rem rgba(0, 0, 0, 0.5);
}
h1,
h2,
h3,
h4,
h5,
h6 {
  margin-top: 0;
  margin-bottom: 0.5rem;
}
p {
  margin-top: 0;
  margin-bottom: 1rem;
}
address {
  margin-bottom: 1rem;
  font-style: normal;
  line-height: inherit;
}
ol,
ul,
dl {
  list-style: none;
  padding: 0;
  margin: 0;
}
dt {
  font-weight: 700;
}
dd {
  margin-bottom: 0.5rem;
  margin-left: 0;
}
blockquote {
  margin: 0 0 1rem;
}
b,
strong {
  font-weight: bolder;
}
small {
  font-size: 80%;
}
sub,
sup {
  position: relative;
  font-size: 75%;
  line-height: 0;
  vertical-align: baseline;
}
sub {
  bottom: -0.25em;
}
sup {
  top: -0.5em;
}
button,
input {
  overflow: visible;
}
button,
select {
  text-transform: none;
}
select {
  word-wrap: normal;
}
button,
[type='button'],
[type='reset'],
[type='submit'] {
  -webkit-appearance: button;
}
button:not(:disabled),
[type='button']:not(:disabled),
[type='reset']:not(:disabled),
[type='submit']:not(:disabled) {
  cursor: pointer;
}
button::-moz-focus-inner,
[type='button']::-moz-focus-inner,
[type='reset']::-moz-focus-inner,
[type='submit']::-moz-focus-inner {
  padding: 0;
  border-style: none;
}
input[type='radio'],
input[type='checkbox'] {
  box-sizing: border-box;
  padding: 0;
}
input[type='date'],
input[type='time'],
input[type='datetime-local'],
input[type='month'] {
  -webkit-appearance: listbox;
}
.clear {
  clear: both;
}
.gongan img,
.gongan p {
  display: inline-block;
  vertical-align: top;
  margin: 0;
}
.page-enter-active,
.page-leave-active {
  transition: opacity 0.5s;
}
.page-enter,
.page-leave-active {
  opacity: 0;
}
#app,
#__nuxt,
#__layout {
  height: 100%;
}
[v-cloak] {
  display: none;
}
/*checkbox定义*/
.checkbox-circle {
  width: 2rem;
  height: 2rem;
  background: #ddd;
  margin: 0;
  border-radius: 100%;
  position: relative;
  box-shadow: 0px 1px 3px rgba(0, 0, 0, 0.5);
  display: inline-block;
}
.checkbox-circle label {
  display: block;
  width: 1.6rem;
  height: 1.6rem;
  border-radius: 100px;
  transition: all 0.01s ease;
  cursor: pointer;
  position: absolute;
  top: 0.2rem;
  left: 0.2rem;
  z-index: 1;
  background: #ccc;
  box-shadow: inset 0px 1px 3px rgba(0, 0, 0, 0.5);
}
.checkbox-circle input[type='checkbox'] {
  display: none;
}
.checkbox-circle input[type='checkbox']:checked + label {
  background: #26ca28;
}
.text_with_1px_border {
  text-shadow: -1px -1px 0px #fff, 0px -1px 0px #fff, 1px -1px 0px #fff, -1px 0px 0px #fff, 1px 0px 0px #fff, -1px 1px 0px #fff, 0px 1px 0px #fff, 1px 1px 0px #fff;
}
.text_with_2px_border {
  text-shadow: -1px -1px 0px #fff, 0px -1px 0px #fff, 1px -1px 0px #fff, -1px 0px 0px #fff, 1px 0px 0px #fff, -1px 1px 0px #fff, 0px 1px 0px #fff, 1px 1px 0px #fff, /* second layer at 2px */ -2px -2px 0px #fff, -1px -2px 0px #fff, 0px -2px 0px #fff, 1px -2px 0px #fff, 2px -2px 0px #fff, 2px -1px 0px #fff, 2px 0px 0px #fff, 2px 1px 0px #fff, 2px 2px 0px #fff, 1px 2px 0px #fff, 0px 2px 0px #fff, -1px 2px 0px #fff, -2px 2px 0px #fff, -2px 1px 0px #fff, -2px 0px 0px #fff, -2px -1px 0px #fff;
}
.development {
  z-index: 2000;
  background-color: rgba(0, 0, 0, 0.5);
  border-radius: 1rem;
  position: fixed;
  top: 20%;
  right: 1rem;
}
.development ul {
  display: flex;
  flex-direction: column;
  justify-content: center;
  align-items: center;
}
.development ul li {
  margin: 0.4rem;
}
.development a {
  display: inline-block;
  padding: 1.2rem;
  border-radius: 50%;
  background-color: hsl(var(--primary-hue), var(--primary-saturation), var(--primary-lightness));
  border: 1px solid #fff;
  color: white;
}
:root {
  --primary-hue: 210;
  --primary-saturation: 63%;
  --primary-lightness: 50%;
}
