header {
  position: fixed;
  top: 0;
  width: 100%;
  z-index: 10;
  color: hsl(var(--primary-hue), var(--primary-saturation), calc(var(--primary-lightness) - 10%));
  background-color: #fff;
  box-shadow: 0 1px 10px hsl(var(--primary-hue), var(--primary-saturation), calc(var(--primary-lightness) + 5%));
}
@media (min-width: 768px) {
  header {
    color: hsl(var(--primary-hue), var(--primary-saturation), calc(var(--primary-lightness) - 10%));
    background-color: #fff;
    box-shadow: unset;
  }
}
header .back-link {
  display: none;
}
header.sub .back-link {
  font-size: 1.6rem;
  display: inline-block;
}
header.sub .header-logo-container {
  display: none;
}
@media (min-width: 768px) {
  header.sub {
    background-color: #fff;
  }
  header.sub .back-link {
    display: none;
  }
  header.sub .header-logo-container {
    display: flex;
  }
}
header.color {
  background-color: rgba(255, 255, 255, 0.9) !important;
  box-shadow: 0 1px 10px hsl(var(--primary-hue), var(--primary-saturation), calc(var(--primary-lightness) + 5%));
}
header > .container {
  position: relative;
  height: 8rem;
  display: flex;
  flex-direction: column;
  justify-content: center;
}
@media (min-width: 768px) {
  header > .container {
    height: 10rem;
  }
}
header .header-main {
  width: 100%;
  display: flex;
  justify-content: space-between;
  align-items: center;
}
header .header-logo-container {
  display: flex;
  flex-direction: row;
  justify-content: center;
  align-items: center;
}
header .header-logo-container .logo {
  margin-right: 4px;
}
header .header-logo-container .logo > img {
  height: 5rem;
}
@media (min-width: 768px) {
  header .header-logo-container .logo > img {
    height: 7rem;
  }
}
header .header-logo-container .company-name {
  font-size: 1.8rem;
  font-weight: bold;
  flex-grow: 1;
}
@media (min-width: 768px) {
  header .header-logo-container .company-name {
    font-size: 2.4rem;
    white-space: nowrap;
  }
}
@media (min-width: 768px) {
  header .header-topbar {
    display: block;
    background-color: hsl(var(--primary-hue), var(--primary-saturation), var(--primary-lightness));
    height: 5rem;
  }
}
header .header-tools ul {
  display: flex;
  align-items: center;
  flex-direction: row;
}
header .header-tools ul li {
  margin: 0 0.4rem;
}
header .header-tools ul li a {
  cursor: pointer;
  display: flex;
  font-size: 1.6rem;
  justify-content: center;
  align-items: center;
}
header .header-tools ul li a.disabled {
  color: #666;
  font-weight: bold;
  pointer-events: none;
}
@media (min-width: 768px) {
  header .header-tools ul li a {
    color: white;
  }
}
header .header-tools ul li a i {
  border: 1px solid hsl(var(--primary-hue), var(--primary-saturation), var(--primary-lightness));
  border-radius: 50%;
  padding: 0.5rem;
}
@media (min-width: 768px) {
  header .header-tools ul li a i {
    border: 1px solid #fff;
  }
}
header .header-tools ul li a span {
  display: none;
  margin-left: 1rem;
}
@media (min-width: 768px) {
  header .header-tools ul li a span {
    display: inline-block;
  }
}
@media (min-width: 768px) {
  header .header-tools {
    position: absolute;
    right: 1.5rem;
    top: -4rem;
    z-index: 10;
  }
}
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) - 10%), 0.95);
  position: absolute;
  top: 6rem;
  right: 0;
  width: 75%;
  height: calc(100% - 6rem);
  padding: 1.6rem 0;
}
.navbar-desktop {
  display: none;
}
@media (min-width: 768px) {
  .navbar-desktop {
    display: block;
    width: 100%;
    height: 3.9rem;
    background-color: none;
    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::after {
  content: '';
  width: 36px;
  height: 3px;
  position: absolute;
  left: 50%;
  bottom: 0;
  background-color: hsla(var(--primary-hue), var(--primary-saturation), calc(var(--primary-lightness) + 5%), 0.5);
  transform: translateX(-50%);
}
.navbar.sub {
  height: 0;
}
.navbar.sub.expand {
  transition: height 0.5s ease-out;
  height: unset;
}
.navbar.sub ul li {
  padding-left: 0.75rem;
}
@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;
    font-size: 1.8rem;
    font-weight: bold;
  }
  .navbar ul li:hover,
  .navbar ul li.acitved {
    background-color: rgba(0, 0, 0, 0);
  }
  .navbar.sub {
    position: absolute;
    z-index: 1000;
    min-width: 100%;
    padding-left: 0.6rem;
    padding-bottom: 1rem;
    left: 0;
    top: 100%;
    background-color: hsla(var(--primary-hue), var(--primary-saturation), var(--primary-lightness), 0.95);
  }
  .navbar.sub ul {
    flex-direction: column;
  }
  .navbar.sub ul li {
    font-size: 1.6rem;
    font-weight: normal;
    position: static;
    background-color: unset;
    padding: 0.4rem;
    width: 100%;
    margin: 0;
  }
  .navbar.sub ul li .sub {
    position: static;
    padding-bottom: 0;
  }
  .navbar.sub .nav-link {
    color: #fff;
  }
  .navbar.sub .nav-link:hover,
  .navbar.sub .nav-link.acitved {
    color: #fff;
  }
}
.nav-link {
  position: relative;
  display: inline-block;
  padding: 0.5rem 2rem;
  color: #fff;
}
.nav-link:hover,
.nav-link.acitved {
  color: #fff;
  text-decoration: none !important;
}
.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 {
    width: 100%;
    color: hsl(var(--primary-hue), var(--primary-saturation), calc(var(--primary-lightness) - 10%));
  }
  .nav-link::before {
    content: '';
    position: absolute;
    left: 0;
    bottom: -2px;
    width: 0;
    height: 1px;
    background: #fff;
  }
  .nav-link:hover,
  .nav-link.acitved {
    color: hsl(var(--primary-hue), var(--primary-saturation), var(--primary-lightness));
  }
  .nav-link:hover::before,
  .nav-link.acitved::before {
    width: 100%;
    transition: width 0.1s ease-in;
  }
  .nav-link .expand-icon {
    top: 0.1rem;
    display: none;
  }
}
.banner {
  color: #fff;
  text-shadow: 1px 1px 2px #333;
  height: 0;
  padding-bottom: 46.875%;
  position: relative;
}
.banner h2 {
  font-size: 1.8rem;
}
.banner p {
  font-size: 1.2rem;
}
@media (min-width: 768px) {
  .banner {
    padding-bottom: 32.8125%;
  }
  .banner h2 {
    font-size: 300%;
  }
  .banner p {
    font-size: 150%;
  }
}
.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;
}
@media (min-width: 768px) {
  .banner .swiper-slide {
    padding-bottom: 32.8125%;
  }
}
.banner .swiper-slide > img {
  position: absolute;
  top: 50%;
  left: 50%;
  width: 100%;
  object-fit: cover;
  height: 100%;
  transform: translate(-50%, -50%);
}
.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.sub {
  display: none;
}
.banner.sub .swiper-pagination-bullet {
  display: none;
}
@media (min-width: 768px) {
  .banner.sub {
    display: block;
    padding-bottom: 15.625%;
  }
  .banner.sub .carousel {
    padding-bottom: 15.625%;
  }
  .banner.sub .swiper-slide {
    padding-bottom: 15.625%;
  }
}
.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));
  background-position: center center;
  background-size: cover;
  background-repeat: no-repeat;
  color: #fff;
  display: flex;
  justify-content: space-between;
  align-items: center;
  flex-direction: column;
  line-height: 2.6rem;
}
footer .cover {
  width: 100%;
}
footer .reverse-logo {
  display: flex;
  flex-direction: row;
  justify-content: center;
}
footer .reverse-logo > img {
  margin: 1rem;
  max-height: 128px;
}
footer .contact-info {
  padding: 2rem;
  border-bottom: 1px solid rgba(255, 255, 255, 0.2);
  display: flex;
  justify-content: space-between;
  flex-direction: column-reverse;
  align-items: center;
}
@media (min-width: 768px) {
  footer .contact-info {
    flex-direction: row;
  }
}
footer .contact-info .qrcode {
  margin: 1rem;
}
footer .contact-info .qrcode img {
  height: 96px;
}
footer .contact-info .info {
  font-size: 1.4rem;
  min-width: 50%;
}
@media (min-width: 768px) {
  footer .contact-info .info {
    font-size: 1.6rem;
  }
}
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: 768px) {
  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: 8rem;
  padding-bottom: 1.5rem;
  min-height: calc(100% - 30rem);
  position: relative;
  display: flex;
  flex-direction: column;
}
@media (min-width: 768px) {
  .main {
    padding-top: 15rem;
  }
}
.main > .container {
  flex: 1;
  display: flex;
  flex-direction: column;
}
.main .page-title {
  margin-top: 3rem;
  box-sizing: border-box;
  position: relative;
}
.main .page-title > span {
  display: inline-block;
}
.main .page-title .more {
  font-weight: normal;
  font-size: 1.4rem;
  flex-grow: 1;
  text-align: right;
  border-bottom: 1px solid #999;
}
.main .page-title::before {
  content: '';
  position: absolute;
  left: 0;
  top: 15%;
  bottom: 15%;
  width: 4px;
  border-radius: 10rem;
}
.main .page-title .name {
  font-size: 18px;
  color: #555;
  font-weight: normal;
  position: relative;
  padding-bottom: 1.5rem;
}
.main .page-title .name::after {
  content: '';
  display: inline-block;
  width: 36px;
  height: 3px;
  position: absolute;
  left: 50%;
  bottom: 0;
  background-color: hsla(var(--primary-hue), var(--primary-saturation), calc(var(--primary-lightness) + 5%), 0.5);
  transform: translateX(-50%);
}
.main .page-title .subtitle {
  color: #9a9a9a;
  font-size: 18px;
  font-weight: normal;
}
@media (min-width: 768px) {
  .main .page-title {
    display: none;
  }
  .main .page-title::before {
    width: 6px;
  }
  .main .page-title .name {
    font-size: 24px;
  }
  .main .page-title .subtitle {
    font-size: 24px;
  }
}
.main .page-title.wide {
  max-width: 100% !important;
  display: block !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 {
  padding: 1.5rem 0;
  margin: 0 auto;
  width: 100%;
  min-height: 40rem;
  word-break: break-all;
  overflow: hidden;
  transition: all 0.5s;
}
.main .page-content img {
  max-width: 100% !important;
}
.main .page-content.limit-width {
  max-width: 960px;
}
@media (min-width: 768px) {
  .main .page-content {
    padding: 4rem 0;
    min-height: 50rem;
  }
}
.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: block;
  position: absolute;
  width: 100%;
  max-width: 100%;
  z-index: 1;
  background-color: transparent;
  box-sizing: border-box;
  padding: 0 15px;
  left: 0;
  bottom: 0;
  margin: 0 auto;
  transition: all 0.2s;
}
.breadCrumb-container .breadcrumb {
  display: -ms-flexbox;
  display: flex;
  -ms-flex-wrap: wrap;
  flex-wrap: wrap;
  padding: 0rem;
  list-style: none;
  margin-bottom: 10px;
  border-radius: 0.25rem;
}
.breadCrumb-container .breadcrumb-item {
  transition: all 0.3s;
  font-size: 1.8rem;
}
.breadCrumb-container .breadcrumb-item a {
  color: #fff;
}
.breadCrumb-container .breadcrumb-item i {
  vertical-align: middle;
  padding: 0 0.6rem 0 0;
  transition: all 0.3s;
}
@media (min-width: 768px) {
  .breadCrumb-container .breadcrumb-item i {
    font-size: 14px;
  }
}
.breadCrumb-container .breadcrumb-item.active {
  color: #fff;
}
.breadCrumb-container .breadcrumb-item + .breadcrumb-item {
  padding-left: 0.5rem;
}
.breadCrumb-container .breadcrumb-item + .breadcrumb-item::before {
  display: inline-block;
  padding: 0 1rem;
  color: #fff;
  content: '>';
}
.breadCrumb-container .path-bor {
  display: flex;
  flex-wrap: wrap;
  transition: all 0.2s;
}
.breadCrumb-container .path-bor .item {
  min-width: 33.33%;
  padding: 0 5px;
  background-color: rgba(255, 255, 255, 0.8);
  border: 1px solid rgba(221, 221, 221, 0.8);
  box-sizing: border-box;
  text-align: center;
  color: #555;
  text-shadow: none;
  line-height: 34px;
  cursor: pointer;
}
.breadCrumb-container .path-bor .item.action {
  background-color: hsla(var(--primary-hue), var(--primary-saturation), var(--primary-lightness), 1);
  color: #fff;
}
@media (min-width: 768px) {
  .breadCrumb-container .path-bor .item {
    line-height: 58px;
    padding: 0 10px;
    font-size: 18px;
    min-width: 160px;
  }
}
.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;
  transition: all 0.3s;
}
.page-item {
  margin-right: 2rem;
}
.page-item:last-child {
  margin-right: 0px;
}
.page-link {
  position: relative;
  display: flex;
  justify-content: center;
  align-items: center;
  width: auto;
  height: 2.8rem;
  padding: 0 1rem;
  line-height: 1.25;
  background-color: #fff;
  border: 1px solid #dee2e6;
  color: #666;
}
.page-link:hover {
  z-index: 2;
  text-decoration: none;
  background-color: hsla(var(--primary-hue), var(--primary-saturation), calc(var(--primary-lightness) + 5%), 0.1);
}
.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: hsla(var(--primary-hue), var(--primary-saturation), calc(var(--primary-lightness)), 1);
  border-color: hsla(var(--primary-hue), var(--primary-saturation), calc(var(--primary-lightness)), 1);
}
.page-item.disabled .page-link {
  color: #6c757d;
  pointer-events: none;
  cursor: auto;
  background-color: #fff;
  border-color: #dee2e6;
}
.home {
  background-color: #fff;
}
.home .white-block {
  height: 1rem;
}
@media (min-width: 768px) {
  .home .white-block {
    height: 3.6rem;
  }
}
.home .block-title {
  display: flex;
  flex-direction: column;
  align-items: center;
  padding: 2rem 0;
  margin: 2.5rem 0;
  position: relative;
  transition: all 0.2s;
}
@media (min-width: 768px) {
  .home .block-title {
    margin: 5rem 0;
  }
}
.home .block-title > span {
  display: block;
  font-size: 2rem;
  text-align: center;
  color: #666;
  font-weight: normal;
  line-height: 1;
}
@media (min-width: 768px) {
  .home .block-title > span {
    font-size: 2.6rem;
  }
}
.home .block-title::after {
  content: '';
  display: inline-block;
  width: 36px;
  height: 3px;
  position: absolute;
  left: 50%;
  bottom: 0;
  background-color: hsla(var(--primary-hue), var(--primary-saturation), calc(var(--primary-lightness) + 5%), 0.5);
  transform: translateX(-50%);
}
.home .block-title .subtitle {
  font-size: 1.4rem;
  margin-top: 0.8rem;
  color: #666;
}
@media (min-width: 768px) {
  .home .block-title .subtitle {
    font-size: 1.6rem;
  }
}
.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;
}
.home .ad-img-block .img-url {
  display: flex;
  justify-content: center;
}
.home .ad-img-block .img-url > img {
  height: 20rem;
  width: 100%;
  object-fit: cover;
}
@media (min-width: 768px) {
  .home .ad-img-block .img-url > img {
    height: 32rem;
  }
}
.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 #999;
}
.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 .news-list {
  width: 100%;
  height: 100%;
}
.home .news-block .news-list dl {
  display: flex;
  flex-direction: row;
  flex-wrap: wrap;
}
@media (min-width: 768px) {
  .home .news-block .news-list dl {
    justify-content: center;
  }
}
.home .news-block .news-list dd {
  position: relative;
  margin: 1rem;
  text-overflow: ellipsis;
  overflow: hidden;
  color: #666;
  min-width: calc(50% - 2rem);
  height: 0;
  padding-bottom: 40%;
  box-shadow: 0 0 2px rgba(102, 102, 102, 0.5);
}
@media (min-width: 768px) {
  .home .news-block .news-list dd {
    flex: 1;
    padding-bottom: 25%;
  }
}
@media (min-width: 1200px) {
  .home .news-block .news-list dd {
    padding-bottom: 15%;
    min-width: calc(33% - 2rem);
  }
}
.home .news-block .news-list dd .backimg {
  position: absolute;
  width: 100%;
  height: 100%;
  display: inherit;
  top: 0;
  left: 0;
  opacity: 1;
  object-fit: cover;
}
.home .news-block .news-list dd .content {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background-color: #fff;
  transition: all 0.5s;
  cursor: pointer;
  display: flex;
  justify-content: center;
}
@media (min-width: 768px) {
  .home .news-block .news-list dd .content:hover {
    background-color: hsla(var(--primary-hue), var(--primary-saturation), calc(var(--primary-lightness) + 5%), 0.5);
  }
  .home .news-block .news-list dd .content:hover .body .name,
  .home .news-block .news-list dd .content:hover .body .subtitle {
    color: #fff;
  }
  .home .news-block .news-list dd .content:hover .body .subtitle::after {
    background-color: white;
  }
  .home .news-block .news-list dd .content:hover .body .icon {
    filter: brightness(100);
  }
}
.home .news-block .news-list dd .content .body {
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  padding: 1rem;
}
@media (min-width: 768px) {
  .home .news-block .news-list dd .content .body {
    flex-direction: row;
  }
}
.home .news-block .news-list dd .content .body .icon {
  display: block;
  height: 4rem;
}
@media (min-width: 768px) {
  .home .news-block .news-list dd .content .body .icon {
    height: 8rem;
  }
}
.home .news-block .news-list dd .content .body .info {
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
}
.home .news-block .news-list dd .content .body .subtitle {
  position: relative;
  padding: 1rem;
  margin-bottom: 1rem;
  font-size: 1.4rem;
  color: #999;
}
@media (min-width: 768px) {
  .home .news-block .news-list dd .content .body .subtitle {
    padding: 2rem;
    margin-bottom: 2rem;
    font-size: 1.6rem;
  }
}
.home .news-block .news-list dd .content .body .subtitle::after {
  content: '';
  display: inline-block;
  width: 36px;
  height: 3px;
  position: absolute;
  left: 50%;
  bottom: 0;
  background-color: hsla(var(--primary-hue), var(--primary-saturation), calc(var(--primary-lightness) + 5%), 0.5);
  transform: translateX(-50%);
}
.home .news-block .news-list dd .content .body .name {
  color: #666;
  font-size: 1.6rem;
  display: block;
}
@media (min-width: 768px) {
  .home .news-block .news-list dd .content .body .name {
    font-size: 1.8rem;
  }
}
.home .picnews-block .looper {
  width: 100%;
  position: relative;
}
.home .picnews-block .page-news-item {
  display: flex;
  flex-direction: row;
  border-bottom: 1px solid #d3d3d3;
  transition: all 0.5s;
  padding: 1.5rem 0;
  margin: 1.5rem 0;
}
.home .picnews-block .page-news-item .news-cover {
  margin-right: 1.5rem;
}
.home .picnews-block .page-news-item .news-cover img {
  width: 12.8rem;
  height: 12.8rem;
  object-fit: cover;
}
@media (min-width: 768px) {
  .home .picnews-block .page-news-item .news-cover img {
    width: 25.6rem;
    height: 13.8rem;
  }
}
.home .picnews-block .page-news-item .news-info .news-title {
  color: hsl(var(--primary-hue), var(--primary-saturation), var(--primary-lightness));
  font-weight: bold;
  margin-bottom: 1rem;
  display: inline-block;
}
.home .picnews-block .page-news-item .news-info .news-title:hover {
  color: hsl(var(--primary-hue), var(--primary-saturation), calc(var(--primary-lightness) - 10%));
}
@media (min-width: 768px) {
  .home .picnews-block .page-news-item .news-info .news-title {
    font-size: 1.6rem;
  }
}
.home .picnews-block .page-news-item .news-info .news-intro {
  text-overflow: ellipsis;
  display: -webkit-box;
  -webkit-box-orient: vertical;
  -webkit-line-clamp: 2;
  overflow: hidden;
  color: #666;
  margin-bottom: 1rem;
  cursor: pointer;
}
@media (min-width: 768px) {
  .home .picnews-block .page-news-item .news-info .news-intro {
    display: block;
    font-size: 1.6rem;
  }
}
.home .picnews-block .page-news-item .news-info .news-date {
  color: #666;
  letter-spacing: 0.6px;
}
.home .picnews-block .tomore {
  width: 100%;
  text-align: center;
}
.home .picnews-block .tomore a {
  border: 1px solid hsl(var(--primary-hue), var(--primary-saturation), calc(var(--primary-lightness) + 5%));
  color: hsl(var(--primary-hue), var(--primary-saturation), calc(var(--primary-lightness) + 5%));
  display: inline-block;
  padding: 1rem 1.5rem 1rem 2rem;
}
.home .picnews-block .tomore a:hover {
  border: 1px solid hsl(var(--primary-hue), var(--primary-saturation), var(--primary-lightness));
  color: hsl(var(--primary-hue), var(--primary-saturation), var(--primary-lightness));
  box-shadow: 0 0 5px hsl(var(--primary-hue), var(--primary-saturation), calc(var(--primary-lightness) + 5%));
}
@media (min-width: 768px) {
  .home .picnews-block .tomore {
    text-align: right;
  }
  .home .picnews-block .tomore a {
    padding: 1rem 2.5rem 1rem 3rem;
  }
}
.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 {
    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 {
  position: relative;
  height: 0;
  padding-bottom: 30%;
}
@media (min-width: 768px) {
  .home .product-block .product-icon-container {
    display: flex;
    flex-direction: column;
    align-items: flex-start;
    height: auto;
    padding-bottom: 0;
  }
}
.home .product-block .product-cover {
  position: absolute;
  left: 0;
  top: 0;
  width: 100%;
  height: 100%;
  overflow: hidden;
}
.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;
}
@media (min-width: 768px) {
  .home .product-block .product-cover {
    position: relative;
    height: 0;
    padding-bottom: 40%;
  }
}
.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 {
  position: absolute;
  top: 50%;
  left: 1rem;
  transform: translateY(-50%);
  z-index: 2;
  padding: 1.6rem 0;
  color: #fff;
}
@media (min-width: 768px) {
  .home .product-block .product-info {
    position: static;
    top: unset;
    left: unset;
    transform: none;
    color: #666;
  }
}
.home .product-block .product-info h4 {
  font-weight: bold;
  font-size: 1.8rem;
  overflow: hidden;
  text-overflow: ellipsis;
}
.home .product-block .product-info p {
  max-height: 4rem;
  margin: 0;
  overflow: hidden;
  text-overflow: ellipsis;
}
.home .companyInfo-block {
  background-position: center bottom;
  background-size: cover;
  background-repeat: no-repeat;
  padding-bottom: 5rem;
}
.home .companyInfo-block .imgList {
  width: 100%;
  display: flex;
  flex-direction: row;
  align-items: center;
  overflow-x: scroll;
}
@media (min-width: 768px) {
  .home .companyInfo-block .imgList {
    overflow-x: hidden;
    overflow-y: hidden;
  }
}
.home .companyInfo-block .imgList dd {
  min-width: calc(49% - 1rem);
  height: 0;
  margin: 0.2rem 0.4rem;
  padding-bottom: 40%;
  position: relative;
  display: inline-block;
  flex: 1;
}
.home .companyInfo-block .imgList dd img {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  object-fit: cover;
  cursor: pointer;
}
@media (min-width: 768px) {
  .home .companyInfo-block .imgList dd {
    min-width: calc(25% - 1rem);
    padding-bottom: 20%;
  }
}
.home .companyInfo-block .text {
  overflow: hidden;
  text-overflow: ellipsis;
  margin: 1rem;
  display: -webkit-box;
  -webkit-box-orient: vertical;
  -webkit-line-clamp: 8;
  text-indent: 2em;
}
@media (min-width: 768px) {
  .home .companyInfo-block .text {
    font-size: 1.6rem;
    line-height: 2.4rem;
    -webkit-line-clamp: 5;
    margin-top: 2rem;
  }
}
.announce-list-container {
  margin: 2rem auto;
}
@media (min-width: 992px) {
  .announce-list-container {
    margin: 3rem auto;
  }
}
.page-announce-list {
  width: 100%;
  min-height: 20rem;
}
.page-announce-list li {
  cursor: pointer;
  position: relative;
  width: 100%;
  margin: 0.4rem 0;
  margin-bottom: 1rem;
  padding: 0.6rem 1rem;
  display: flex;
  flex-direction: row;
  justify-content: space-between;
  align-items: flex-start;
  transition: all 0.2s;
}
.page-announce-list li .news-date {
  display: block;
  background-color: hsl(0, 0%, 95%);
  color: #333;
  border-radius: 12%;
  margin-right: 10px;
}
.page-announce-list li .news-date span {
  text-align: center;
  font-size: 1.3rem;
  display: block;
  width: 7rem;
}
.page-announce-list li .news-date span.news-day {
  font-size: 2.2rem;
}
.page-announce-list li .news-info {
  width: calc(100% - 10rem);
}
.page-announce-list li .news-info .news-title {
  width: 100%;
  display: inline-block;
  white-space: nowrap;
  text-overflow: ellipsis;
  overflow: hidden;
  font-size: 1.4rem;
  font-weight: bold;
  margin-bottom: 0.5rem;
}
.page-announce-list li .news-info .news-intro {
  margin-bottom: 0;
  display: block;
  text-overflow: ellipsis;
  overflow: hidden;
  color: #666;
  font-size: 12px;
  line-height: 1.4;
}
@media (min-width: 768px) {
  .page-announce-list li .news-date {
    margin-right: 30px;
  }
  .page-announce-list li .news-date span {
    font-size: 2rem;
    width: 10rem;
  }
  .page-announce-list li .news-date span.news-day {
    font-size: 3.5rem;
  }
  .page-announce-list li .news-info {
    width: calc(100% - 10rem);
  }
  .page-announce-list li .news-info .news-title {
    font-size: 1.8rem;
  }
  .page-announce-list li .news-info .news-intro {
    font-size: 16px;
    line-height: 30px;
  }
  .page-announce-list li .news-info .news-intro span {
    font-size: 16px;
  }
}
.contactus {
  margin: 0 auto;
  text-align: center;
}
.contactus .map {
  margin-top: 2rem;
}
@media (min-width: 1200px) {
  .contactus .map {
    margin-top: 0rem;
    margin-left: 2rem;
    flex: auto;
  }
}
.contactus .map img {
  width: 100%;
  object-fit: cover;
  max-height: 20rem;
}
@media (min-width: 768px) {
  .contactus .map img {
    max-height: 40rem;
  }
}
.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: 1200px) {
  .contactus {
    display: flex;
    justify-content: space-between;
    align-items: flex-start;
  }
  .contactus .address {
    flex-direction: column;
  }
  .contactus .address li {
    margin: 1rem;
  }
}
.partners ul {
  display: flex;
  justify-content: left;
  align-items: flex-start;
  flex-wrap: wrap;
  flex-direction: row;
}
.partners ul li {
  width: calc(50% - 2rem);
  border: 1px solid #ccc;
  position: relative;
  margin: 0.5rem;
  display: inherit;
  transition: all 0.5s;
}
@media (min-width: 768px) {
  .partners ul li {
    margin: 4rem 1rem;
    width: calc(20% - 2rem);
  }
}
.partners ul li a {
  width: 100%;
  padding-top: 70%;
  position: relative;
  display: inline-block;
}
.partners ul li a .logo-container {
  width: 100%;
  height: 100%;
  max-height: 100%;
  position: absolute;
  top: 0;
  left: 0;
  padding: 1px;
  background-color: #fff;
}
.partners ul li a .logo-container img {
  max-width: 100%;
  max-height: 100%;
  position: absolute;
  left: 50%;
  top: 50%;
  transform: translate(-50%, -50%);
  object-fit: cover;
}
.partners ul li a span {
  position: absolute;
  left: 0;
  bottom: 0;
  width: 100%;
  height: 100%;
  box-sizing: border-box;
  display: flex;
  justify-content: center;
  background-color: hsla(var(--primary-hue), var(--primary-saturation), var(--primary-lightness), 0.8);
  align-items: center;
  color: #fff;
  font-size: 1.6rem;
  font-weight: bold;
  text-align: center;
  overflow: hidden;
  transition: all 0.5s;
  max-height: 0px;
}
@media (min-width: 768px) {
  .partners ul li a span {
    font-size: 1.8rem;
  }
}
.partners ul li a:hover span {
  max-height: 100%;
}
.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 {
  display: block;
  margin-left: auto;
  margin-right: auto;
}
@media (min-width: 768px) {
  .news-page-block-title {
    display: none;
  }
}
.page-news-list-container {
  margin-top: 2rem;
  flex: 1;
  display: flex;
  flex-direction: column;
  justify-content: center;
  align-content: flex-start;
  flex-wrap: wrap;
  transition: all 0.2s;
}
@media (min-width: 768px) {
  .page-news-list-container {
    margin-top: 4rem;
  }
}
.page-news-leftbar {
  display: none;
}
.page-news-leftbar dl {
  margin-bottom: 4rem;
}
.page-news-leftbar dl dt {
  font-size: 1.8rem;
  padding-bottom: 1rem;
  color: #666;
  border-bottom: 1px solid hsl(var(--primary-hue), var(--primary-saturation), var(--primary-lightness));
  margin-bottom: 1rem;
  padding-left: 20px;
}
.page-news-leftbar dl dd {
  margin: 0;
  padding-left: 0;
}
.page-news-leftbar dl .null {
  font-size: 15px;
  padding: 0 10px;
  color: #999;
}
.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 {
  flex: 1;
  width: 100%;
  box-sizing: border-box;
  transition: all 0.5s;
}
@media (min-width: 768px) {
  .page-news-list {
    min-height: 100%;
  }
}
.page-news-list li {
  display: flex;
  flex-direction: row;
  justify-content: space-between;
  align-items: flex-start;
  padding: 11px 0;
  border-bottom: 1px solid #d3d3d3;
  transition: all 0.5s;
}
.page-news-list li::before {
  display: none;
}
.page-news-list li .news-date {
  display: block;
  margin-right: 1rem;
}
.page-news-list li .news-date .newImg {
  width: 80px;
  height: 80px;
  object-fit: cover;
  display: block;
}
.page-news-list li .news-info {
  width: 100%;
}
.page-news-list li .news-info .news-title {
  color: hsl(var(--primary-hue), var(--primary-saturation), var(--primary-lightness));
  font-size: 1.4rem;
  font-weight: bold;
  margin-bottom: 0.5rem;
  transition: color 0.5s;
  display: inline-block;
}
.page-news-list li .news-info .news-intro {
  margin-bottom: 0;
  display: block;
  text-overflow: ellipsis;
  line-height: 1.4;
  font-size: 12px;
  color: #666;
  cursor: pointer;
}
.page-news-list li .news-info .news-date {
  text-align: left;
  margin-top: 6px;
  color: #666;
  font-size: 12px;
  line-height: 1;
  letter-spacing: 0.6px;
}
.page-news-list li:first-child {
  padding-top: 0;
}
@media (min-width: 768px) {
  .page-news-list li {
    padding: 20px 0;
  }
  .page-news-list li .news-date {
    margin-right: 3rem;
  }
  .page-news-list li .news-date .newImg {
    width: 190px;
    height: 124px;
  }
  .page-news-list li .news-info .news-title {
    font-size: 1.8rem;
    margin-bottom: 1rem;
  }
  .page-news-list li .news-info .news-intro {
    line-height: 30px;
    font-size: 16px;
  }
  .page-news-list li .news-info .news-date {
    text-align: right;
    margin-top: 9px;
    font-size: 16px;
  }
}
.page-news-list .null {
  font-size: 18px;
  color: #999;
  display: flex;
  justify-content: center;
  align-items: center;
  height: 100%;
}
.news-detail {
  position: relative;
  margin: 0 auto;
}
.news-detail .swiper-container {
  margin-bottom: 2rem;
  border: 1px solid #ccc;
  box-shadow: 0 1px 5px #ccc;
  overflow: hidden;
}
.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 .page-news-detail-content {
  width: 100%;
  transition: all 0.2s;
}
.page-news-detail-container .page-news-detail-content .page-detail-title {
  font-size: 2rem;
  color: #333;
}
.page-news-detail-container .page-news-detail-content .page-sub-title {
  color: #666;
  margin-bottom: 2rem;
}
.page-news-detail-container .page-news-detail-content .page-sub-hr {
  border-top: none;
  border-bottom: 1px solid #e5e5e5;
}
.page-photo-news-list {
  width: 100%;
  min-height: 20rem;
  padding: 0 15px;
  transition: all 0.2s;
}
.page-photo-news-list ul {
  display: flex;
  flex-wrap: wrap;
  justify-content: space-between;
}
.page-photo-news-list li {
  margin-bottom: 2rem;
  width: calc(50% - 1rem);
}
.page-photo-news-list li:last-child {
  margin-bottom: 0;
}
.page-photo-news-list .news-cover {
  width: 100%;
  height: 0;
  padding-bottom: 75%;
  position: relative;
  overflow: hidden;
}
.page-photo-news-list .news-cover img {
  position: absolute;
  top: 50%;
  left: 50%;
  height: 100%;
  transform: translate(-50%, -50%);
  border-radius: 7px;
  width: 100%;
  object-fit: cover;
}
.page-photo-news-list .news-info .news-title {
  display: block;
  padding: 1rem 0.4rem;
  text-align: center;
  font-size: 1.4rem;
  font-weight: bold;
  text-overflow: ellipsis;
  overflow: hidden;
}
.page-photo-news-list .news-info .news-intro {
  display: none;
  font-size: 12px;
}
.page-photo-news-list .news-info .news-date {
  text-align: left;
  margin-top: 6px;
  color: #666;
  font-size: 12px;
  line-height: 1;
  letter-spacing: 0.6px;
  display: none;
}
@media (min-width: 768px) {
  .page-photo-news-list ul {
    display: block;
  }
  .page-photo-news-list li {
    width: calc(100%);
    display: flex;
    flex-direction: row;
    justify-content: flex-start;
  }
  .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 {
    text-align: left;
    font-size: 1.4rem;
  }
  .page-photo-news-list li .news-info .news-intro {
    display: block;
    padding: 0 1rem;
    margin: 0;
    text-overflow: ellipsis;
    overflow: hidden;
    color: #666;
  }
  .page-photo-news-list li .news-info .news-date {
    display: block;
  }
}
@media (min-width: 768px) {
  .page-photo-news-list li .news-cover {
    width: 20rem;
    padding: 0;
    height: 15rem;
  }
  .page-photo-news-list li .news-info {
    width: calc(100% - 20rem);
  }
  .page-photo-news-list li .news-info .news-title {
    font-size: 1.8rem;
  }
  .page-photo-news-list li .news-info .news-intro {
    font-size: 1.6rem;
  }
  .page-photo-news-list li .news-info .news-date {
    text-align: right;
    margin-top: 9px;
    font-size: 1.6rem;
  }
}
.page-product-head {
  margin-top: 1.5rem;
  margin-bottom: 1.5rem;
  font-size: 1.5rem;
  line-height: 1.75;
  white-space: pre-wrap;
  transition: all 0.2s;
}
.page-product-list {
  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-title a {
  transition: all 0.2s;
  color: #666;
}
.page-product-list li .cover-info .cover-content {
  display: none;
  color: #666;
}
@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;
  }
}
.product-detail-title {
  margin-bottom: 2rem;
  text-align: center;
  width: 100%;
  transition: all 0.2s;
}
.product-detail-title .product-detail-date {
  display: block;
  margin-top: 0rem;
}
.product-detail-title .name {
  margin-top: 0;
  padding: 0;
  font-size: 1.8rem;
  line-height: 1.3;
  font-weight: normal;
  color: #555;
}
.product-detail-title .product-detail-date {
  color: #666;
  font-size: 1.2rem;
  margin-top: 10px;
  font-weight: normal;
}
.product-detail-title .product-sub-hr {
  margin-top: 15px;
  margin-bottom: 15px;
  box-sizing: content-box;
  height: 0;
  margin: 15px 0;
  border: 0;
  border-top: 1px solid #e5e5e5;
}
@media (min-width: 768px) {
  .product-detail-title .name {
    font-size: 2.4rem;
  }
  .product-detail-title .product-detail-date {
    font-size: 1.6rem;
    margin-top: 15px;
  }
  .product-detail-title .product-sub-hr {
    margin-top: 20px;
    margin-bottom: 20px;
  }
}
.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 {
  transition: all 0.5s;
}
.honor-list ul {
  display: flex;
  flex-wrap: wrap;
  flex-direction: row;
}
.honor-list ul li {
  width: 40%;
  margin-left: 5%;
  margin-right: 5%;
  margin-bottom: 1rem;
  transition: all 0.5s;
}
.honor-list ul li .img-container {
  height: 86%;
  display: inline-block;
}
.honor-list ul li .img-container img {
  object-fit: contain;
  width: 100%;
  height: 100%;
  display: inline-block;
}
.honor-list ul li a {
  color: #000000;
}
.honor-list ul li a:hover {
  text-decoration: none;
}
.honor-list ul li a.gray {
  display: block;
  padding-top: 0.5rem;
}
.honor-list ul li a span {
  display: block;
  position: relative;
  text-align: center;
}
.honor-list ul li i {
  font-size: 1rem;
  color: #666;
  display: block;
  text-align: center;
  display: none;
}
@media (min-width: 580px) {
  .honor-list ul li {
    width: 27%;
    margin-left: 3%;
    margin-right: 3%;
  }
}
@media (min-width: 768px) {
  .honor-list ul li {
    width: calc(25% - 4rem);
    text-align: center;
    margin: 0rem 2rem 1.5rem 2rem;
  }
  .honor-list ul li a span {
    padding: 0;
    font-size: 16px;
  }
}
.hr-list {
  min-height: 40rem;
}
.hr-list .item-focus {
  position: fixed;
  width: 100%;
  padding-top: 10rem;
  padding-bottom: 10rem;
  height: 100%;
  background-color: rgba(255, 255, 255, 0.95);
  top: 0;
  left: 0;
  z-index: 100;
  overflow-y: scroll;
  display: flex;
  flex-direction: row;
  justify-content: center;
}
.hr-list .item-focus.hidden {
  display: none;
}
.hr-list .item-focus .close-bar {
  position: fixed;
  z-index: 101;
  width: 100%;
  top: 0;
  left: 0;
  background-color: hsl(var(--primary-hue), var(--primary-saturation), var(--primary-lightness));
  color: white;
  padding: 1rem;
  text-align: right;
}
.hr-list .item-focus .close-bar i {
  font-size: 3.6rem;
}
.hr-list .item-focus .info-container {
  padding: 2rem;
  max-width: 100%;
}
@media (min-width: 576px) {
  .hr-list .item-focus .info-container {
    max-width: 540px;
  }
}
@media (min-width: 768px) {
  .hr-list .item-focus .info-container {
    max-width: 720px;
  }
}
.hr-list .item-focus dl dd {
  padding: 1.5rem 0;
}
.hr-list .item-focus dl .cover {
  height: 12rem;
  width: 12rem;
  border-radius: 0.4rem;
  object-fit: cover;
}
.hr-list .item-focus dl .property {
  display: block;
  color: hsl(var(--primary-hue), var(--primary-saturation), calc(var(--primary-lightness) - 10%));
  font-weight: bold;
  min-width: 12rem;
  font-size: 1.6rem;
  white-space: nowrap;
  text-overflow: clip;
  overflow: hidden;
}
.hr-list .item-focus dl .value {
  display: block;
}
@media (min-width: 768px) {
  .hr-list ul {
    display: flex;
    flex-direction: row;
  }
}
.hr-list ul li {
  border-radius: 0.4rem;
  border: 1px solid #999;
  padding: 1rem 1rem 4rem 1rem;
  margin: 1rem;
  position: relative;
}
@media (min-width: 768px) {
  .hr-list ul li {
    width: calc(33% - 2rem);
  }
}
@media (min-width: 1200px) {
  .hr-list ul li {
    width: calc(25% - 2rem);
  }
}
.hr-list ul li .more-info {
  position: absolute;
  bottom: 1rem;
  left: 50%;
  transform: translateX(-50%);
  font-size: 0.9rem;
}
.hr-list ul li .more-info.hidden {
  display: none;
}
.hr-list ul li .info {
  transition: all 0.3s;
}
.hr-list ul li .info dl dt {
  display: flex;
  flex-direction: row;
  align-items: center;
  padding-bottom: 1rem;
  margin-bottom: 1rem;
  border-bottom: 1px solid #999;
}
.hr-list ul li .info dl dt .cover {
  height: 6.4rem;
  width: 6.4rem;
  border-radius: 0.4rem;
  object-fit: cover;
}
.hr-list ul li .info dl dt h3 {
  padding-left: 1rem;
}
.hr-list ul li .info dl dd {
  display: block;
}
.hr-list ul li .info dl dd > div {
  display: flex;
  flex-direction: row;
  min-height: 3.6rem;
  align-items: center;
}
.hr-list ul li .info dl dd .property {
  display: block;
  color: #666;
  font-size: 1.1rem;
  font-weight: normal;
  min-width: 12rem;
  white-space: nowrap;
  text-overflow: clip;
  overflow: hidden;
}
.hr-list ul li .info dl dd .value {
  display: block;
  color: hsl(var(--primary-hue), var(--primary-saturation), calc(var(--primary-lightness) - 10%));
  font-weight: bold;
}
.user-section .role-list ul {
  display: flex;
  flex-direction: row;
  align-items: center;
  border-bottom: 1px solid #999;
}
.user-section .role-list ul li {
  padding: 1rem 2rem;
  font-size: 1.6rem;
  border-top: 1px solid #999;
  border-left: 1px solid #999;
  border-right: 1px solid #999;
  color: #666;
  cursor: pointer;
}
.user-section .role-list ul li.active {
  border: 1px solid hsl(var(--primary-hue), var(--primary-saturation), var(--primary-lightness));
  background-color: hsl(var(--primary-hue), var(--primary-saturation), calc(var(--primary-lightness) + 5%));
  color: white;
}
.user-section .user-focus {
  position: fixed;
  width: 100%;
  height: 100%;
  padding-top: 10rem;
  padding-bottom: 10rem;
  background-color: rgba(255, 255, 255, 0.98);
  top: 0;
  left: 0;
  z-index: 100;
  overflow-y: scroll;
  overflow-x: hidden;
  display: flex;
  flex-direction: row;
  justify-content: center;
}
.user-section .user-focus.hidden {
  display: none;
}
.user-section .user-focus .info-container {
  padding: 2rem;
  max-width: 100%;
}
@media (min-width: 576px) {
  .user-section .user-focus .info-container {
    max-width: 540px;
  }
}
@media (min-width: 768px) {
  .user-section .user-focus .info-container {
    max-width: 720px;
  }
}
.user-section .user-focus hr {
  border-top: 1px solid hsl(var(--primary-hue), var(--primary-saturation), calc(var(--primary-lightness) + 5%));
  margin: 2rem 0;
}
.user-section .user-focus .close-bar {
  position: fixed;
  z-index: 101;
  width: 100%;
  top: 0;
  left: 0;
  background-color: hsl(var(--primary-hue), var(--primary-saturation), var(--primary-lightness));
  color: white;
  padding: 1rem;
  text-align: right;
}
.user-section .user-focus .close-bar i {
  font-size: 3.6rem;
}
.user-section .user-focus .user-contact-info {
  top: 10rem;
}
.user-section .user-list {
  padding: 1rem 0;
}
.user-section .user-list ul {
  display: flex;
  flex-direction: row;
  align-items: center;
  flex-wrap: wrap;
}
.user-section .user-list ul li {
  margin: 1rem 0;
  border: 1px solid #999;
  width: 100%;
}
@media (min-width: 768px) {
  .user-section .user-list ul li {
    margin: 1rem 0.5rem;
    width: calc(50% - 1rem);
  }
}
@media (min-width: 1400px) {
  .user-section .user-list ul li {
    width: calc(33% - 1rem);
  }
}
.user-section .user-list ul li .info-container {
  padding: 1rem;
  display: flex;
  flex-direction: column;
  position: relative;
}
@media (min-width: 768px) {
  .user-section .user-list ul li .info-container {
    flex-direction: row;
  }
}
.user-section .user-list ul li .more-info {
  padding: 1rem;
  display: flex;
  justify-content: center;
  flex-direction: row;
}
.user-section .head-img {
  width: 12rem;
  height: 12rem;
  margin-bottom: 1.5rem;
  border-radius: 4px;
  overflow: hidden;
}
@media (min-width: 768px) {
  .user-section .head-img {
    margin-right: 1.5rem;
  }
}
.user-section .head-img img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}
.user-section .basic-info {
  flex: 1;
}
@media (min-width: 768px) {
  .user-section .basic-info {
    padding-right: 2rem;
  }
}
.user-section .basic-info h3 {
  padding-bottom: 1rem;
  margin-bottom: 1rem;
  position: relative;
}
.user-section .basic-info h3::after {
  content: '';
  position: absolute;
  bottom: 0;
  left: 0;
  width: 6rem;
  height: 0.2rem;
  background-color: hsl(var(--primary-hue), var(--primary-saturation), var(--primary-lightness));
}
.user-section .basic-info dd {
  display: flex;
  flex-direction: row;
  align-items: center;
}
.user-section .basic-info .property {
  display: block;
  color: hsl(var(--primary-hue), var(--primary-saturation), calc(var(--primary-lightness) - 10%));
  min-width: 8rem;
  font-size: 1.2rem;
  font-weight: bold;
  white-space: nowrap;
  text-overflow: clip;
  padding: 1rem 0;
  overflow: hidden;
}
.user-section .basic-info .value {
  display: -webkit-box;
  -webkit-box-orient: vertical;
  -webkit-line-clamp: 2;
  overflow: hidden;
}
.user-section .user-contact-info {
  position: absolute;
  right: -0.5rem;
  top: 0.5rem;
  display: flex;
  flex-direction: column;
}
.user-section .user-contact-info a {
  padding: 1rem;
  margin: 1rem;
  width: 3.2rem;
  height: 3.2rem;
  border: 1px solid hsl(var(--primary-hue), var(--primary-saturation), var(--primary-lightness));
  border-radius: 50%;
  font-weight: bold;
  font-size: 1.6rem;
  display: flex;
  flex-direction: column;
  justify-content: center;
  align-items: center;
}
: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%;
  margin-right: auto;
  margin-left: auto;
  padding-right: 15px;
  padding-left: 15px;
}
@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;
  }
}
@media (min-width: 1400px) {
  .container {
    max-width: 1320px;
  }
}
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.under-line {
  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: #333;
  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;
}
.dev-tools {
  z-index: 2000;
  background-color: rgba(0, 0, 0, 0.5);
  border-radius: 1rem;
  position: fixed;
  top: 20%;
  right: 1rem;
}
.dev-tools ul {
  display: flex;
  flex-direction: column;
  justify-content: center;
  align-items: center;
}
.dev-tools ul li {
  margin: 0.4rem;
}
.dev-tools 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;
}
.my-5 {
  margin-top: 2.5rem;
  margin-bottom: 2.5rem;
}
:root {
  --primary-hue: 160;
  --primary-saturation: 100%;
  --primary-lightness: 30%;
}
