* {
  margin: 0;
  padding: 0;
  font-size: 0;
  list-style: none;
  text-decoration: none;
  box-sizing: border-box;
}
@font-face {
  font-family: HRegular;
  src: url(../fonts/H-Regular.ttf);
}
@font-face {
  font-family: HBold;
  src: url(../fonts/H-Bold.ttf);
}
@font-face {
  font-family: CK;
  src: url(../fonts/CK.ttf);
}
p,
a,
li {
  font-family: HRegular;
}
h1,
h2,
h3,
h4,
h5 {
  font-family: HBold;
}
@keyframes pc-dropMenuShow {
  0% {
    opacity: 0;
  }
  100% {
    opacity: 1;
  }
}
.common-width {
  width: 95%;
  margin: 0 auto;
}
@media screen and (min-width: 1500px) {
  .common-width {
    width: 1440px;
  }
}
.common-button {
  width: 197px;
  height: 46px;
  margin-top: 30px;
  font-size: 18px;
  color: #ffffff;
  display: flex;
  align-items: center;
  justify-content: center;
  border-radius: 10px;
  background-image: linear-gradient(-45deg, #ff6600 0%, #ff0000 100%);
}
.common-button:hover {
  background: #ff0000;
}
@media screen and (max-width: 1199px) {
  .common-button {
    width: 2rem;
    height: 0.5rem;
    margin-top: 0.3rem;
    font-size: 0.18rem;
    border-radius: 0.1rem;
  }
}
.pc-header {
  display: none;
}
@media screen and (min-width: 1200px) {
  .pc-header {
    display: block;
    width: 100%;
    height: 80px;
    position: relative;
    z-index: 2;
    background: transparent;
    transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
    border-bottom: 1px solid rgba(255, 255, 255, 0.13);
  }
  .pc-header .pc-header-container {
    height: 100%;
    display: flex;
    justify-content: space-between;
  }
  .pc-header .pc-header-container > .logo a {
    height: 100%;
    display: flex;
    align-items: center;
  }
  .pc-header .pc-header-container > .logo a p {
    color: #ffffff;
    font-size: 25px;
    font-family: CK;
    margin-left: 15px;
  }
  .pc-header .pc-header-container > ul {
    width: 796px;
    height: 100%;
    display: flex;
    align-items: center;
    justify-content: space-between;
  }
  .pc-header .pc-header-container > ul > li {
    height: 100%;
    text-transform: uppercase;
  }
  .pc-header .pc-header-container > ul > li > a {
    height: 100%;
    font-size: 15px;
    color: #ffffff;
    display: flex;
    align-items: center;
    justify-content: center;
  }
  .pc-header .pc-header-container > ul > li .pc-dropMenu {
    width: 100%;
    height: 456px;
    background: #ffffff;
    position: absolute;
    left: 0;
    display: none;
    animation: pc-dropMenuShow 1s;
  }
  .pc-header .pc-header-container > ul > li .pc-dropMenu .pc-dropMenu-container {
    height: 100%;
    display: flex;
    align-items: center;
    justify-content: space-between;
  }
  .pc-header .pc-header-container > ul > li .pc-dropMenu .pc-dropMenu-container .left-ol {
    width: 480px;
    height: 100%;
    padding-top: 50px;
    background: #faf5f5;
    display: flex;
  }
  .pc-header .pc-header-container > ul > li .pc-dropMenu .pc-dropMenu-container .left-ol ol {
    width: 100%;
    display: flex;
    flex-direction: column;
    align-items: flex-end;
  }
  .pc-header .pc-header-container > ul > li .pc-dropMenu .pc-dropMenu-container .left-ol ol li {
    width: 50%;
    padding: 14px 11px;
    text-transform: capitalize;
  }
  .pc-header .pc-header-container > ul > li .pc-dropMenu .pc-dropMenu-container .left-ol ol li a {
    width: 100%;
    height: 100%;
    color: #333333;
    font-size: 16px;
    display: flex;
    align-items: center;
    justify-content: space-between;
  }
  .pc-header .pc-header-container > ul > li .pc-dropMenu .pc-dropMenu-container .left-ol ol li a span {
    color: #333333;
  }
  .pc-header .pc-header-container > ul > li .pc-dropMenu .pc-dropMenu-container .left-ol ol li a span:first-child {
    font-size: 16px;
  }
  .pc-header .pc-header-container > ul > li .pc-dropMenu .pc-dropMenu-container .left-ol ol li a span:last-child {
    font-size: 13px;
  }
  .pc-header .pc-header-container > ul > li .pc-dropMenu .pc-dropMenu-container .left-ol ol li:first-child,
  .pc-header .pc-header-container > ul > li .pc-dropMenu .pc-dropMenu-container .left-ol ol li:hover {
    background: #ffffff;
  }
  .pc-header .pc-header-container > ul > li .pc-dropMenu .pc-dropMenu-container .left-ol ol li:first-child a span,
  .pc-header .pc-header-container > ul > li .pc-dropMenu .pc-dropMenu-container .left-ol ol li:hover a span {
    color: #ff0000;
  }
  .pc-header .pc-header-container > ul > li .pc-dropMenu .pc-dropMenu-container .center > div {
    width: 459px;
    display: none;
  }
  .pc-header .pc-header-container > ul > li .pc-dropMenu .pc-dropMenu-container .center > div h1 {
    color: #333333;
    font-size: 35px;
  }
  .pc-header .pc-header-container > ul > li .pc-dropMenu .pc-dropMenu-container .center > div p {
    color: #333333;
    font-size: 15px;
    line-height: 25px;
    margin-top: 20px;
    margin-bottom: 40px;
    text-transform: capitalize;
  }
  .pc-header .pc-header-container > ul > li .pc-dropMenu .pc-dropMenu-container .center > div a {
    width: 168px;
    height: 45px;
    color: #333333;
    font-size: 15px;
    border-radius: 23px;
    display: flex;
    align-items: center;
    justify-content: center;
    border: 1px solid #dddddd;
  }
  .pc-header .pc-header-container > ul > li .pc-dropMenu .pc-dropMenu-container .center > div:first-child {
    display: block;
  }
  .pc-header .pc-header-container > ul > li .pc-dropMenu .pc-dropMenu-container .right-image {
    width: 731px;
    height: 100%;
    overflow: hidden;
  }
  .pc-header .pc-header-container > ul > li .pc-dropMenu .pc-dropMenu-container .right-image img {
    width: 100%;
    height: auto;
  }
  .pc-header .pc-header-container > ul > li .pc-dropMenu .pc-dropMenu-container .right-image .background {
    position: absolute;
    top: 0;
    width: 367px;
    height: 456px;
    background: linear-gradient(90deg, #ffffff, rgba(0, 0, 0, 0));
  }
  .pc-header .pc-header-container > ul > li .pc-dropMenu .pc-dropMenu-container .right-image .images {
    position: relative;
    height: 100%;
    display: none;
  }
  .pc-header .pc-header-container > ul > li .pc-dropMenu .pc-dropMenu-container .right-image .images img {
    width: auto;
    height: 100%;
  }
  .pc-header .pc-header-container > ul > li .pc-dropMenu .pc-dropMenu-container .right-image .images .background {
    position: absolute;
    top: 0;
    width: 367px;
    height: 456px;
    background: linear-gradient(90deg, #ffffff, rgba(0, 0, 0, 0));
  }
  .pc-header .pc-header-container > ul > li .pc-dropMenu .pc-dropMenu-container .right-image .images:first-child {
    display: block;
  }
  .pc-header .pc-header-container > ul > li:hover .pc-dropMenu {
    display: block;
  }
  .pc-header .pc-header-container > ol {
    height: 100%;
    display: flex;
    align-items: center;
  }
  .pc-header .pc-header-container > ol li a span {
    color: #ffffff;
  }
  .pc-header .pc-header-container > ol li.search-button a span {
    font-size: 22px;
  }
  .pc-header .pc-header-container > ol li.language {
    margin-left: 25px;
  }
  .pc-header .pc-header-container > ol li.language a span {
    font-size: 15px;
  }
  .pc-header .pc-header-container > ol li.language a span::before {
    font-size: 18px;
    margin-right: 5px;
  }
  .pc-header .pc-header-container > ol li:hover a span {
    color: #ff0000;
  }
  .pc-header.scrolled {
    position: fixed;
    top: 0;
    background: #ffffff;
    border-bottom: none;
    box-shadow: 0 2px 10px rgba(0, 0, 0, 0.1);
  }
  .pc-header.scrolled,
  .pc-header:hover {
    background: #ffffff;
  }
  .pc-header.scrolled .pc-header-container > .logo a p,
  .pc-header:hover .pc-header-container > .logo a p {
    color: #333333;
  }
  .pc-header.scrolled .pc-header-container > ul > li > a,
  .pc-header:hover .pc-header-container > ul > li > a {
    color: #333333;
  }
  .pc-header.scrolled .pc-header-container > ul > li:hover > a,
  .pc-header:hover .pc-header-container > ul > li:hover > a {
    color: #ff0000;
  }
  .pc-header.scrolled .pc-header-container > ol li a span,
  .pc-header:hover .pc-header-container > ol li a span {
    color: #333333;
  }
  .pc-header.scrolled .pc-header-container > ol li:hover a span,
  .pc-header:hover .pc-header-container > ol li:hover a span {
    color: #ff0000;
  }
}
.search-box {
  position: fixed;
  z-index: 200;
  top: 0;
  width: 100%;
  height: 100%;
  background: rgba(0, 0, 0, 0.5);
  display: none;
  padding-left: 30px;
  padding-right: 30px;
}
.search-box > div {
  width: 100%;
  height: 100%;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  position: relative;
}
.search-box > div > p {
  position: absolute;
  right: 0;
  top: 40px;
  cursor: pointer;
}
.search-box > div > p span {
  font-size: 39px;
  color: #ffffff;
}
.search-box > div form .search-input {
  width: 1200px;
  height: 40px;
  border: none;
  outline: none;
  font-size: 36px;
  color: #ffffff;
  background: transparent;
  border-bottom: 2px solid rgba(255, 255, 255, 0.33);
}
.search-box > div form .search-input::placeholder {
  color: #ffffff;
}
.search-box > div form .search-submit {
  background: transparent;
  border: none;
  outline: none;
  color: #ffffff;
  cursor: pointer;
  margin-left: -25px;
}
.search-box > div form .search-submit span {
  font-size: 36px;
}
.mobile-header {
  display: none;
}
@media screen and (max-width: 1199px) {
  .mobile-header {
    width: 100%;
    display: block;
  }
  .mobile-header .phone-nav {
    width: 100%;
    padding: 0.15rem;
    background: #333333;
    position: relative;
  }
  .mobile-header .phone-nav .top {
    display: flex;
    justify-content: space-between;
    align-items: center;
  }
  .mobile-header .phone-nav .top .mobile-logo {
    font-size: 0;
    display: flex;
    align-items: center;
  }
  .mobile-header .phone-nav .top .mobile-logo p {
    font-size: 0.4rem;
    font-family: CK;
    color: #ffffff;
    margin-left: 0.15rem;
  }
  .mobile-header .phone-nav .top .icon-daohang {
    font-size: 0.35rem;
    color: #ffffff;
  }
  .mobile-header .phone-nav .drop {
    background: #ffffff;
    padding: 0.2rem;
    position: absolute;
    width: 100%;
    height: auto;
    z-index: 111;
    display: none;
    left: 0;
  }
  .mobile-header .phone-nav .drop > li {
    line-height: 0.3rem;
  }
  .mobile-header .phone-nav .drop > li > a,
  .mobile-header .phone-nav .drop > li .drop-one > a {
    color: #333333;
    font-size: 0.2rem;
    font-weight: 600;
  }
  .mobile-header .phone-nav .drop > li .drop-one {
    display: flex;
    align-items: center;
    justify-content: space-between;
  }
  .mobile-header .phone-nav .drop > li .drop-menu {
    padding-left: 0.4rem;
    display: none;
  }
  .mobile-header .phone-nav .drop > li .drop-menu ol li {
    line-height: 0.2rem;
  }
  .mobile-header .phone-nav .drop > li .drop-menu ol li a {
    font-size: 0.18rem;
    color: #ff0000;
    line-height: 0.35rem;
  }
}
.pc-footer {
  display: none;
}
@media screen and (min-width: 1200px) {
  .pc-footer {
    display: block;
    padding-top: 20px;
    padding-bottom: 20px;
    margin-top: 70px;
    background: #0c1115;
  }
  .pc-footer .footer-container .container-top {
    display: flex;
  }
  .pc-footer .footer-container .container-top .logo {
    display: flex;
  }
  .pc-footer .footer-container .container-top .logo a {
    display: flex;
    align-items: center;
  }
  .pc-footer .footer-container .container-top .logo a p {
    font-size: 37px;
    color: #ffffff;
    font-family: CK;
    margin-left: 20px;
  }
  .pc-footer .footer-container .container-top .logo::after {
    display: block;
    content: '';
    width: 2px;
    height: 56px;
    background-image: linear-gradient(0deg, #ffffff 0%, rgba(255, 255, 255, 0.96) 32%, #ffffff 71%, #ffffff 100%);
    opacity: 0.15;
    margin-left: 25px;
  }
  .pc-footer .footer-container .container-top .right {
    margin-left: 25px;
  }
  .pc-footer .footer-container .container-top .right p:first-child {
    color: #ffffff;
    font-size: 20px;
    font-family: HBold;
  }
  .pc-footer .footer-container .container-top .right p:first-child span {
    font-size: 20px;
    color: #ff0000;
  }
  .pc-footer .footer-container .container-top .right p:last-child {
    color: #ffffff;
    font-size: 16px;
    margin-top: 10px;
  }
  .pc-footer .footer-container .container-center {
    margin-top: 30px;
    padding-top: 30px;
    border-top: 1px solid rgba(255, 255, 255, 0.1);
    display: flex;
    justify-content: space-between;
  }
  .pc-footer .footer-container .container-center ul {
    width: 15%;
  }
  .pc-footer .footer-container .container-center ul li:first-child {
    font-size: 20px;
    margin-bottom: 15px;
    color: #ffffff;
    font-family: HBold;
    text-transform: capitalize;
  }
  .pc-footer .footer-container .container-center ul li:not(:first-child) {
    text-transform: capitalize;
  }
  .pc-footer .footer-container .container-center ul li:not(:first-child) a {
    font-size: 16px;
    line-height: 30px;
    color: #707070;
  }
  .pc-footer .footer-container .container-center ul li:not(:first-child) a:hover {
    color: #ff0000;
  }
  .pc-footer .footer-container .container-center ul.information {
    width: 18%;
  }
  .pc-footer .footer-container .container-center ul.information li:last-child {
    margin-top: 30px;
  }
  .pc-footer .footer-container .container-center ul.information li:last-child a {
    display: flex;
    align-items: center;
  }
  .pc-footer .footer-container .container-center ul.information li:last-child a img {
    width: 120px;
    height: 120px;
  }
  .pc-footer .footer-container .container-center ul.information li:last-child a p {
    margin-left: 30px;
    font-size: 15px;
    line-height: 25xp;
    color: #707070;
    text-align: center;
    width: 76px;
  }
  .pc-footer .footer-container .container-center ul.information li:not(:first-child) {
    text-transform: capitalize;
  }
  .pc-footer .footer-container .container-center ul.information li.phone a:not(:nth-child(1)) {
    display: none;
  }
  .pc-footer .footer-container .copyright {
    margin-top: 45px;
    padding-top: 30px;
    border-top: 1px solid rgba(255, 255, 255, 0.1);
  }
  .pc-footer .footer-container .copyright .copyright-container .friend-links ul {
    display: flex;
    align-items: center;
    justify-content: center;
  }
  .pc-footer .footer-container .copyright .copyright-container .friend-links ul p {
    font-family: HBold;
    font-size: 15px;
    color: #ffffff;
  }
  .pc-footer .footer-container .copyright .copyright-container .friend-links ul p > span {
    font-size: 17px;
    color: #ff0000;
  }
  .pc-footer .footer-container .copyright .copyright-container .friend-links ul p:nth-child(2) {
    margin-left: 6px;
    margin-right: 20px;
  }
  .pc-footer .footer-container .copyright .copyright-container .friend-links ul li {
    display: flex;
  }
  .pc-footer .footer-container .copyright .copyright-container .friend-links ul li a {
    font-size: 15px;
    color: #707070;
    display: flex;
    align-items: center;
  }
  .pc-footer .footer-container .copyright .copyright-container .friend-links ul li a:not(:last-child)::after {
    display: block;
    content: '';
    width: 1px;
    height: 17px;
    background: #707070;
    margin-left: 15px;
    margin-right: 15px;
  }
  .pc-footer .footer-container .copyright .copyright-container > p {
    text-align: center;
    font-size: 14px;
    color: #707070;
    margin-top: 20px;
  }
  .pc-footer .footer-container .copyright .copyright-container > p a {
    font-size: 14px;
    color: #707070;
  }
}
.mobile-footer {
  display: none;
}
@media screen and (max-width: 1199px) {
  .mobile-footer {
    display: block;
    margin-top: 0.3rem;
    width: 100%;
    position: relative;
    height: 4rem;
  }
  .mobile-footer .top {
    background: #333333;
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: center;
    padding-top: 0.2rem;
    padding-bottom: 1.2rem;
    position: absolute;
    bottom: 0;
    width: 100%;
  }
  .mobile-footer .top .logo {
    width: auto;
    height: auto;
  }
  .mobile-footer .top .logo a {
    display: flex;
    align-items: center;
  }
  .mobile-footer .top .logo a img {
    width: auto;
    height: auto;
    margin-right: 0.2rem;
  }
  .mobile-footer .top .logo a p {
    color: #ffffff;
    font-family: CK;
    font-size: 0.4rem;
  }
  .mobile-footer .top .tel {
    margin-top: 0.25rem;
    margin-bottom: 0.25rem;
  }
  .mobile-footer .top .tel p {
    text-align: center;
  }
  .mobile-footer .top .tel p:nth-child(1) {
    font-size: 0.25rem;
    color: #666666;
  }
  .mobile-footer .top .tel p:nth-child(2) {
    font-size: 0;
  }
  .mobile-footer .top .tel p:nth-child(2) a {
    font-size: 0.25rem;
    color: #ffffff;
  }
  .mobile-footer .top .copyright {
    width: 100%;
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: center;
    font-size: 0;
  }
  .mobile-footer .top .copyright span,
  .mobile-footer .top .copyright a {
    font-size: 0.25rem;
    color: #666666;
  }
  .mobile-footer .bottom {
    width: 100%;
    display: flex;
    justify-content: center;
    align-items: center;
    background: #ff0000;
    padding-top: 0.15rem;
    padding-bottom: 0.15rem;
    box-shadow: 0px -0.03rem 0.16rem 0px rgba(0, 0, 0, 0.23);
    position: fixed;
    bottom: 0;
    z-index: 300;
  }
  .mobile-footer .bottom p:nth-child(1) {
    width: 0.6rem;
    height: 0.6rem;
    background: #ffffff;
    border-radius: 50%;
    display: flex;
    justify-content: center;
    align-items: center;
  }
  .mobile-footer .bottom p:nth-child(1) span {
    font-size: 0.25rem;
    color: #ff0000;
  }
  .mobile-footer .bottom p:nth-child(2) {
    font-size: 0.3rem;
    margin-left: 0.18rem;
  }
  .mobile-footer .bottom p:nth-child(2) a {
    font-size: 0.2rem;
    color: #ffffff;
  }
}
.common-banner {
  margin-top: -70px;
  position: relative;
}
.common-banner .image {
  width: 100%;
  height: auto;
}
.common-banner .image img {
  width: 100%;
  height: auto;
}
.common-banner .banner-text {
  width: 100%;
  height: 100%;
  position: absolute;
  top: 0;
}
.common-banner .banner-text .banner-text-container {
  height: 100%;
  display: flex;
  flex-direction: column;
  justify-content: center;
}
.common-banner .banner-text .banner-text-container > p {
  font-size: 50px;
  font-family: HBold;
  color: #ffffff;
}
.common-banner .banner-text .banner-text-container .bread-nav {
  display: flex;
  align-items: center;
  margin-top: 25px;
}
.common-banner .banner-text .banner-text-container .bread-nav > span {
  margin-right: 10px;
  font-size: 20px;
  color: #ff0000;
}
.common-banner .banner-text .banner-text-container .bread-nav > p {
  font-size: 15px;
  color: #ffffff;
}
.common-banner .banner-text .banner-text-container .bread-nav > p a {
  font-size: 15px;
  color: #ffffff;
}
@media screen and (max-width: 1199px) {
  .common-banner {
    margin-top: 0px;
  }
  .common-banner .banner-text .banner-text-container > p {
    font-size: 0.3rem;
  }
  .common-banner .banner-text .banner-text-container .bread-nav {
    margin-top: 0.25rem;
  }
  .common-banner .banner-text .banner-text-container .bread-nav > span {
    margin-right: 0.1rem;
    font-size: 0.25rem;
  }
  .common-banner .banner-text .banner-text-container .bread-nav > p {
    font-size: 0.18rem;
  }
  .common-banner .banner-text .banner-text-container .bread-nav > p a {
    font-size: 0.18rem;
  }
}
.search_pagination {
  margin-top: 40px;
}
.search_pagination .pagination {
  display: flex;
  justify-content: center;
}
.search_pagination .pagination li {
  width: 45px;
  height: 45px;
  border-radius: 50%;
  border: none;
  display: flex;
  justify-content: center;
  align-items: center;
  background: transparent;
  font-size: 25px;
  font-family: HRegular;
}
.search_pagination .pagination li a {
  display: flex;
  justify-content: center;
  align-items: center;
  width: 100%;
  height: 100%;
  color: #999999;
  font-size: 25px;
  font-family: HRegular;
}
.search_pagination .pagination li:last-child,
.search_pagination .pagination li:first-child {
  width: 45px;
  height: 45px;
  border-radius: 50%;
  border: none;
  font-size: 14px;
  display: flex;
  justify-content: center;
  align-items: center;
}
.search_pagination .pagination li:not(:last-child) {
  margin-right: 10px;
}
.search_pagination .pagination li:hover,
.search_pagination .pagination li.active {
  background: #ff0000;
}
.search_pagination .pagination li:hover a,
.search_pagination .pagination li.active a {
  color: #ffffff;
}
@media screen and (max-width: 1199px) {
  .search_pagination {
    margin-top: 0.3rem;
  }
  .search_pagination .pagination li {
    width: auto;
    height: auto;
    padding: 0.15rem;
    border-radius: 0.05rem;
    border: solid 0.01rem transparent;
    font-size: 0.25rem;
  }
  .search_pagination .pagination li:last-child,
  .search_pagination .pagination li:first-child {
    width: auto;
    height: auto;
    border-radius: 0.05rem;
    padding: 0.15rem 0.1rem;
  }
  .search_pagination .pagination li:not(:last-child) {
    margin-right: 0.1rem;
  }
}
.about-top {
  padding-top: 17px;
  border-bottom: 1px solid #ebebeb;
}
.about-top ul {
  display: flex;
  margin: 0 auto;
}
.about-top ul li {
  padding-bottom: 15px;
}
.about-top ul li a {
  color: #333333;
  font-size: 15px;
}
.about-top ul li:not(:last-child) {
  margin-right: 36px;
}
.about-top ul li:hover,
.about-top ul li.active {
  border-bottom: 2px solid #ff0000;
}
.about-top ul li:hover a,
.about-top ul li.active a {
  font-weight: 600;
  color: #ff0000;
}
@media screen and (max-width: 1199px) {
  .about-top {
    padding-top: 0.2rem;
    border-bottom: 0.01rem solid #ebebeb;
  }
  .about-top ul li {
    padding-bottom: 0.2rem;
  }
  .about-top ul li a {
    font-size: 0.2rem;
  }
  .about-top ul li:not(:last-child) {
    margin-right: 0.35rem;
  }
  .about-top ul li:hover,
  .about-top ul li.active {
    border-bottom: 0.02rem solid #ff0000;
  }
}
.about-banner .banner-text .banner-text-container > p:first-child {
  font-size: 20px;
  margin-bottom: 20px;
  color: #ffffff;
  font-family: HRegular;
}
.about-banner .banner-text .banner-text-container > p:nth-child(2) {
  font-size: 50px;
  color: #ffffff;
  font-family: HBold;
}
.about-banner .banner-text .banner-text-container > p:nth-child(2) span {
  font-size: 50px;
  color: #ff0000;
  font-family: HBold;
}
@media screen and (max-width: 1199px) {
  .about-banner .banner-text .banner-text-container > p:first-child {
    font-size: 0.2rem;
    margin-bottom: 0.2rem;
  }
  .about-banner .banner-text .banner-text-container > p:nth-child(2) {
    font-size: 0.25rem;
  }
  .about-banner .banner-text .banner-text-container > p:nth-child(2) span {
    font-size: 0.25rem;
  }
}
.products-top {
  padding-top: 17px;
  border-bottom: 1px solid #ebebeb;
}
.products-top ul {
  display: flex;
  margin: 0 auto;
}
.products-top ul li {
  padding-bottom: 15px;
}
.products-top ul li a {
  color: #333333;
  font-size: 15px;
}
.products-top ul li:not(:last-child) {
  margin-right: 36px;
}
.products-top ul li:hover,
.products-top ul li.active {
  border-bottom: 2px solid #ff0000;
}
.products-top ul li:hover a,
.products-top ul li.active a {
  font-weight: 600;
  color: #ff0000;
}
@media screen and (max-width: 1199px) {
  .products-top {
    padding-top: 0.2rem;
    border-bottom: 0.01rem solid #ebebeb;
  }
  .products-top ul li {
    padding-bottom: 0.2rem;
  }
  .products-top ul li a {
    font-size: 0.2rem;
  }
  .products-top ul li:not(:last-child) {
    margin-right: 0.35rem;
  }
  .products-top ul li:hover,
  .products-top ul li.active {
    border-bottom: 0.02rem solid #ff0000;
  }
}
.media-top {
  padding-top: 17px;
  border-bottom: 1px solid #ebebeb;
}
.media-top ul {
  display: flex;
  margin: 0 auto;
}
.media-top ul li {
  padding-bottom: 15px;
}
.media-top ul li a {
  color: #333333;
  font-size: 15px;
}
.media-top ul li:not(:last-child) {
  margin-right: 36px;
}
.media-top ul li:hover,
.media-top ul li.active {
  border-bottom: 2px solid #ff0000;
}
.media-top ul li:hover a,
.media-top ul li.active a {
  font-weight: 600;
  color: #ff0000;
}
@media screen and (max-width: 1199px) {
  .media-top {
    padding-top: 0.2rem;
    border-bottom: 0.01rem solid #ebebeb;
  }
  .media-top ul li {
    padding-bottom: 0.2rem;
  }
  .media-top ul li a {
    font-size: 0.2rem;
  }
  .media-top ul li:not(:last-child) {
    margin-right: 0.35rem;
  }
  .media-top ul li:hover,
  .media-top ul li.active {
    border-bottom: 0.02rem solid #ff0000;
  }
}
#inxBox .banner {
  width: 100%;
  height: auto;
  margin-top: -80px;
  position: relative;
}
#inxBox .banner .swiper-wrapper {
  width: 100%;
  height: 100%;
}
#inxBox .banner .swiper-wrapper .swiper-slide img {
  width: 100%;
  height: auto;
}
#inxBox .banner .banner-text {
  width: 100%;
  height: 100%;
  position: absolute;
  top: 0;
  z-index: 2;
}
#inxBox .banner .banner-text .text {
  height: 100%;
  display: flex;
  flex-direction: column;
  justify-content: center;
}
#inxBox .banner .banner-text .text > p:nth-child(1) {
  color: #ffffff;
  font-size: 20px;
  font-family: HRegular;
}
#inxBox .banner .banner-text .text > p:nth-child(2) {
  color: #ffffff;
  font-size: 50px;
  margin-top: 20px;
  margin-bottom: 20px;
  font-family: HBold;
}
#inxBox .banner .banner-text .text > p:nth-child(2) span {
  color: #ff0000;
  font-size: 50px;
}
#inxBox .banner .banner-text .text > p:nth-child(3) {
  color: #ffffff;
  font-size: 18px;
  letter-spacing: 1px;
}
#inxBox .products-category {
  background: #f5f5f5;
  padding-top: 70px;
  padding-bottom: 70px;
}
#inxBox .products-category .common-width > p {
  text-align: center;
}
#inxBox .products-category .common-width > p:nth-child(1) {
  color: #333333;
  font-size: 45px;
  margin-bottom: 15px;
  font-family: HBold;
}
#inxBox .products-category .common-width > p:nth-child(2) {
  color: #666666;
  font-size: 16px;
  margin-bottom: 40px;
}
#inxBox .products-category .common-width ul {
  display: flex;
  justify-content: space-between;
}
#inxBox .products-category .common-width ul li {
  width: 280px;
  height: 524px;
  border-radius: 5px;
  overflow: hidden;
  transition: all 0.5s cubic-bezier(0.22, 0.61, 0.36, 1);
}
#inxBox .products-category .common-width ul li a {
  display: block;
  height: 100%;
  position: relative;
}
#inxBox .products-category .common-width ul li a .mask {
  width: 100%;
  height: 100%;
  background: rgba(0, 0, 0, 0.5);
  position: relative;
  z-index: 1;
}
#inxBox .products-category .common-width ul li a .background-image {
  width: 100%;
  height: 100%;
  position: absolute;
  top: 0;
  z-index: 0;
  background-position: center !important;
}
#inxBox .products-category .common-width ul li a .text {
  width: 100%;
  height: 100%;
  position: absolute;
  bottom: 0;
  z-index: 2;
  display: flex;
  align-items: center;
  justify-content: center;
}
#inxBox .products-category .common-width ul li a .text h5 {
  color: #ffffff;
  font-size: 30px;
}
#inxBox .products-category .common-width ul li a .text-active {
  display: none;
  transform: translateY(20px);
  transition: all 0.5s cubic-bezier(0.22, 0.61, 0.36, 1);
}
#inxBox .products-category .common-width ul li.active {
  width: 840px;
}
#inxBox .products-category .common-width ul li.active a .mask {
  background: rgba(0, 0, 0, 0.2);
}
#inxBox .products-category .common-width ul li.active a .background-image {
  background-size: cover;
}
#inxBox .products-category .common-width ul li.active a .text {
  display: none;
}
#inxBox .products-category .common-width ul li.active a .text-active {
  width: 100%;
  height: 100%;
  padding: 40px;
  position: absolute;
  bottom: 0;
  display: flex;
  flex-direction: column;
  justify-content: flex-end;
  z-index: 2;
}
#inxBox .products-category .common-width ul li.active a .text-active p.iconfont {
  color: #ffffff;
  font-size: 47px;
}
#inxBox .products-category .common-width ul li.active a .text-active p:last-child {
  color: #ff0000;
  font-size: 15px;
}
#inxBox .products-category .common-width ul li.active a .text-active h5 {
  color: #ffffff;
  margin-top: 20px;
  margin-bottom: 20px;
  font-size: 30px;
}
#inxBox .products-category .common-width > a {
  color: #666666;
  font-size: 16px;
  margin-top: 40px;
  display: flex;
  justify-content: center;
  align-items: center;
  text-decoration: underline !important;
}
#inxBox .products-category .common-width > a:hover {
  color: #ff0000;
}
#inxBox .about-us {
  height: 650px;
  display: flex;
  align-items: center;
}
#inxBox .about-us .left-image {
  width: 750px;
  height: 650px;
  overflow: hidden;
}
#inxBox .about-us .left-image img {
  width: 100%;
}
#inxBox .about-us .right {
  width: 1147px;
  height: 100%;
  padding-left: 70px;
  background: url(../images/about-background.webp) no-repeat;
  background-size: cover;
  display: flex;
  align-items: center;
}
#inxBox .about-us .right .right-text {
  width: 852px;
}
#inxBox .about-us .right .right-text > p:nth-child(1) {
  color: #333333;
  font-size: 45px;
  font-family: HBold;
}
#inxBox .about-us .right .right-text > p:nth-child(2) {
  color: #333333;
  margin-top: 35px;
  margin-bottom: 50px;
  font-size: 16px;
  text-indent: 32px;
  line-height: 25px;
}
#inxBox .about-us .right .right-text > ul {
  display: flex;
  justify-content: space-between;
}
#inxBox .about-us .right .right-text > ul li p:nth-child(1) {
  font-size: 45px;
}
#inxBox .about-us .right .right-text > ul li p:nth-child(2) {
  color: #333333;
  font-size: 20px;
  margin-top: 15px;
  margin-bottom: 15px;
}
#inxBox .about-us .right .right-text > ul li p:nth-child(2) span {
  color: #ff0000;
  font-size: 40px;
  font-family: HBold;
}
#inxBox .about-us .right .right-text > ul li p:nth-child(2) span:last-child {
  margin-right: 9px;
}
#inxBox .about-us .right .right-text > ul li p:nth-child(3) {
  color: #333333;
  font-size: 18px;
  font-family: HBold;
}
#inxBox .timeline {
  position: relative;
  margin-top: 90px;
}
#inxBox .timeline .border-line {
  position: absolute;
  left: 50%;
  top: 50%;
  transform: translate(-50%, -50%);
  width: 100%;
  height: 1px;
  background: #ccc;
  z-index: 1;
}
#inxBox .timeline .timeline-swiper {
  overflow: hidden;
}
#inxBox .timeline .timeline-swiper .swiper-wrapper {
  align-items: stretch;
}
#inxBox .timeline .timeline-swiper .swiper-wrapper .swiper-slide {
  width: 336px !important;
  height: auto;
  display: flex;
  flex-direction: column;
}
#inxBox .timeline .timeline-swiper .swiper-wrapper .swiper-slide .top-text {
  margin-bottom: 37px;
  flex: 1;
  min-height: 200px;
  padding-bottom: 37px;
}
#inxBox .timeline .timeline-swiper .swiper-wrapper .swiper-slide .top-text p {
  text-align: center;
}
#inxBox .timeline .timeline-swiper .swiper-wrapper .swiper-slide .top-text p.year {
  font-size: 40px;
  color: #ff0000;
  font-family: HBold;
}
#inxBox .timeline .timeline-swiper .swiper-wrapper .swiper-slide .top-text p:nth-child(2) {
  color: #333333;
  margin-top: 35px;
  margin-bottom: 17px;
  font-size: 20px;
  font-family: HBold;
}
#inxBox .timeline .timeline-swiper .swiper-wrapper .swiper-slide .top-text p:nth-child(3) {
  color: #666666;
  font-size: 15px;
  line-height: 20px;
  overflow: hidden;
  min-height: 60px;
}
#inxBox .timeline .timeline-swiper .swiper-wrapper .swiper-slide .top-text::after {
  display: none;
}
#inxBox .timeline .timeline-swiper .swiper-wrapper .swiper-slide .bottom-image {
  width: 100%;
  height: auto;
  border-radius: 10px;
  overflow: hidden;
}
#inxBox .timeline .timeline-swiper .swiper-wrapper .swiper-slide .bottom-image img {
  width: 100%;
  height: auto;
}
#inxBox .timeline .timeline-swiper .swiper-pagination {
  display: none;
}
#inxBox .timeline .timeline-swiper .swiper-button-prev,
#inxBox .timeline .timeline-swiper .swiper-button-next {
  width: 51px;
  height: 51px;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  background-image: linear-gradient(-45deg, #ff6600 0%, #ff0000 100%);
  top: 50%;
  transform: translateY(-10%);
}
#inxBox .timeline .timeline-swiper .swiper-button-prev:hover,
#inxBox .timeline .timeline-swiper .swiper-button-next:hover {
  background: #ff0000;
}
#inxBox .timeline .timeline-swiper .swiper-button-prev.swiper-button-prev,
#inxBox .timeline .timeline-swiper .swiper-button-next.swiper-button-prev {
  left: var(--swiper-navigation-sides-offset, 155px);
}
#inxBox .timeline .timeline-swiper .swiper-button-prev.swiper-button-next,
#inxBox .timeline .timeline-swiper .swiper-button-next.swiper-button-next {
  right: var(--swiper-navigation-sides-offset, 155px);
}
#inxBox .timeline .timeline-swiper .swiper-button-prev::after,
#inxBox .timeline .timeline-swiper .swiper-button-next::after {
  color: #ffffff;
  font-size: 26px;
}
#inxBox .news {
  margin-top: 70px;
  padding-top: 70px;
  padding-bottom: 70px;
  background: url(../images/news-background.webp) no-repeat;
  background-attachment: fixed;
}
#inxBox .news .news-container > p {
  color: #ffffff;
  font-size: 45px;
  font-family: HBold;
  text-align: center;
  margin-bottom: 40px;
}
#inxBox .news .news-container .news-swiper {
  position: relative;
  overflow: hidden;
}
#inxBox .news .news-container .news-swiper .swiper-wrapper .swiper-slide {
  width: 467px !important;
  overflow: hidden;
}
#inxBox .news .news-container .news-swiper .swiper-wrapper .swiper-slide .news-image {
  width: 100%;
  height: 330px;
  overflow: hidden;
  border-radius: 10px 10px 0 0;
}
#inxBox .news .news-container .news-swiper .swiper-wrapper .swiper-slide .news-image img {
  width: 100%;
  height: auto;
  transform: scale(1, 1);
  transition: all 0.3s linear;
}
#inxBox .news .news-container .news-swiper .swiper-wrapper .swiper-slide .news-text {
  background: #ffffff;
  padding: 20px;
  border-radius: 0 0 10px 10px;
}
#inxBox .news .news-container .news-swiper .swiper-wrapper .swiper-slide .news-text .news-title {
  font-size: 20px;
  color: #333333;
}
#inxBox .news .news-container .news-swiper .swiper-wrapper .swiper-slide .news-text .news-description {
  color: #666666;
  font-size: 16px;
  line-height: 25px;
  margin-top: 15px;
  margin-bottom: 25px;
}
#inxBox .news .news-container .news-swiper .swiper-wrapper .swiper-slide .news-text .category-and-time {
  display: flex;
}
#inxBox .news .news-container .news-swiper .swiper-wrapper .swiper-slide .news-text .category-and-time .category {
  color: #333333;
  font-size: 16px;
  margin-right: 15px;
  font-family: HBold;
}
#inxBox .news .news-container .news-swiper .swiper-wrapper .swiper-slide .news-text .category-and-time .time {
  font-size: 16px;
  color: #666666;
}
#inxBox .news .news-container .news-swiper .swiper-wrapper .swiper-slide:hover .news-image img {
  transform: scale(1.1, 1.1);
}
#inxBox .news .news-container .news-swiper .swiper-wrapper .swiper-slide:hover .news-text .news-title {
  color: #ff0000;
}
#inxBox .contact-and-faq {
  margin-top: 70px;
  display: flex;
  justify-content: space-between;
}
#inxBox .contact-and-faq .contact {
  width: 673px;
  padding: 50px;
  box-shadow: 0px 0px 10px 0px rgba(0, 0, 0, 0.1);
  border-radius: 15px;
}
#inxBox .contact-and-faq .contact > p {
  color: #333333;
  text-align: center;
  font-size: 30px;
  font-family: HBold;
}
#inxBox .contact-and-faq .contact form {
  margin-top: 35px;
}
#inxBox .contact-and-faq .contact form table {
  width: 100%;
}
#inxBox .contact-and-faq .contact form table tr {
  display: flex;
  justify-content: space-between;
  margin-bottom: 15px;
}
#inxBox .contact-and-faq .contact form table tr td {
  width: 100%;
}
#inxBox .contact-and-faq .contact form table tr td p {
  font-size: 18px;
  color: #333333;
  font-family: HBold;
}
#inxBox .contact-and-faq .contact form table tr td input {
  width: 95%;
  height: 41px;
  margin-top: 10px;
  background: #f5f5f5;
  outline: none;
  border: none;
  border-radius: 5px;
  font-size: 14px;
  color: #999999;
  padding-left: 15px;
  padding-right: 15px;
}
#inxBox .contact-and-faq .contact form table tr td input::placeholder {
  color: #999999;
}
#inxBox .contact-and-faq .contact form table tr td textarea {
  width: 100%;
  height: 121px;
  margin-top: 10px;
  background: #f5f5f5;
  border-radius: 5px;
  padding: 15px;
  outline: none;
  color: #999999;
  font-size: 14px;
  line-height: 25px;
  border: none;
}
#inxBox .contact-and-faq .contact form table tr td button {
  width: 100%;
  height: 48px;
  border-radius: 24px;
  background: #ff0000;
  border: none;
  outline: none;
  font-size: 18px;
  color: #ffffff;
  display: flex;
  justify-content: center;
  align-items: center;
  cursor: pointer;
}
#inxBox .contact-and-faq .faq {
  width: 674px;
}
#inxBox .contact-and-faq .faq > p:nth-child(1) {
  color: #666666;
  font-size: 15px;
}
#inxBox .contact-and-faq .faq > p:nth-child(2) {
  color: #333333;
  font-size: 40px;
  margin-top: 50px;
  font-family: HBold;
}
#inxBox .contact-and-faq .faq > ul {
  margin-top: 50px;
}
#inxBox .contact-and-faq .faq > ul li {
  padding-top: 17px;
  padding-bottom: 20px;
  border-bottom: 1px solid #ebebeb;
}
#inxBox .contact-and-faq .faq > ul li .question {
  display: flex;
  align-items: center;
  justify-content: space-between;
}
#inxBox .contact-and-faq .faq > ul li .question .question-text {
  font-size: 16px;
  line-height: 25px;
  color: #333333;
  margin-right: auto;
  margin-left: 10px;
}
#inxBox .contact-and-faq .faq > ul li .question span.icon-duigou {
  font-size: 17px;
  color: #ff0000;
}
#inxBox .contact-and-faq .faq > ul li .question span.icon-jia {
  font-weight: 600;
  font-size: 18px;
  color: #333333;
  align-self: flex-end;
  cursor: pointer;
}
#inxBox .contact-and-faq .faq > ul li .question span.icon-closel {
  font-weight: 600;
  font-size: 18px;
  color: #ff0000;
  align-self: flex-end;
  cursor: pointer;
  display: none;
}
#inxBox .contact-and-faq .faq > ul li .answer {
  font-size: 16px;
  line-height: 25px;
  color: #333333;
  margin-top: 24px;
  display: none;
}
#inxBox .contact-and-faq .faq > ul li:first-child {
  border-top: 1px solid #ebebeb;
}
#inxBox .contact-and-faq .faq > ul li.active .question .question-text {
  color: #ff0000;
  font-weight: 600;
}
#inxBox .contact-and-faq .faq > ul li.active .question span.icon-jia {
  display: none;
}
#inxBox .contact-and-faq .faq > ul li.active .question span.icon-closel {
  display: block;
}
#inxBox .contact-and-faq .faq > ul li.active .answer {
  animation: pc-dropMenuShow 1s;
  display: block;
}
#aboutUsBox .about-us-container .content {
  margin-top: 70px;
}
#aboutUsBox .about-us-container .content h6 {
  font-size: 30px;
  margin-bottom: 28px;
  color: #333333;
}
#aboutUsBox .about-us-container .content > p {
  font-size: 16px;
  text-indent: 32px;
  line-height: 30px;
  color: #333333;
}
#aboutUsBox .about-us-container .content > ul {
  display: flex;
  justify-content: space-between;
  margin-top: 40px;
}
#aboutUsBox .about-us-container .content > ul li p:nth-child(1) {
  font-size: 45px;
}
#aboutUsBox .about-us-container .content > ul li p:nth-child(2) {
  color: #333333;
  font-size: 20px;
  margin-top: 15px;
  margin-bottom: 15px;
}
#aboutUsBox .about-us-container .content > ul li p:nth-child(2) span {
  color: #ff0000;
  font-size: 50px;
  font-family: HBold;
}
#aboutUsBox .about-us-container .content > ul li p:nth-child(2) span:last-child {
  margin-right: 9px;
}
#aboutUsBox .about-us-container .content > ul li p:nth-child(3) {
  color: #333333;
  font-size: 18px;
  font-family: HBold;
}
#aboutUsBox .about-us-container .content > ol {
  display: flex;
  justify-content: space-between;
  margin-top: 70px;
}
#aboutUsBox .about-us-container .content > ol li {
  width: 33%;
}
#aboutUsBox .about-us-container .content > ol li img {
  width: 100%;
  height: auto;
}
#zuzhiBox .zuzhi-container .content {
  margin-top: 70px;
}
#zuzhiBox .zuzhi-container .content img {
  width: 100%;
  height: auto;
}
#timelineBox .timeline-container .content {
  position: relative;
  margin-top: 70px;
}
#timelineBox .timeline-container .content .border-line {
  position: absolute;
  left: 50%;
  top: 50%;
  transform: translate(-50%, -50%);
  width: 100%;
  height: 1px;
  background: #ccc;
  z-index: 1;
}
#timelineBox .timeline-container .content .timeline-swiper {
  overflow: hidden;
}
#timelineBox .timeline-container .content .timeline-swiper .swiper-wrapper {
  align-items: stretch;
}
#timelineBox .timeline-container .content .timeline-swiper .swiper-wrapper .swiper-slide {
  width: 336px !important;
  height: auto;
  display: flex;
  flex-direction: column;
}
#timelineBox .timeline-container .content .timeline-swiper .swiper-wrapper .swiper-slide .top-text {
  margin-bottom: 37px;
  padding-bottom: 35px;
  flex: 1;
  min-height: 200px;
}
#timelineBox .timeline-container .content .timeline-swiper .swiper-wrapper .swiper-slide .top-text p {
  text-align: center;
}
#timelineBox .timeline-container .content .timeline-swiper .swiper-wrapper .swiper-slide .top-text p.year {
  font-size: 40px;
  color: #ff0000;
  font-family: HBold;
}
#timelineBox .timeline-container .content .timeline-swiper .swiper-wrapper .swiper-slide .top-text p:nth-child(2) {
  color: #333333;
  margin-top: 35px;
  margin-bottom: 17px;
  font-size: 20px;
  font-family: HBold;
}
#timelineBox .timeline-container .content .timeline-swiper .swiper-wrapper .swiper-slide .top-text p:nth-child(3) {
  color: #666666;
  font-size: 15px;
  line-height: 20px;
  overflow: hidden;
  min-height: 60px;
}
#timelineBox .timeline-container .content .timeline-swiper .swiper-wrapper .swiper-slide .top-text::after {
  display: none;
}
#timelineBox .timeline-container .content .timeline-swiper .swiper-wrapper .swiper-slide .bottom-image {
  width: 100%;
  height: auto;
  border-radius: 10px;
}
#timelineBox .timeline-container .content .timeline-swiper .swiper-wrapper .swiper-slide .bottom-image img {
  width: 100%;
  height: auto;
}
#timelineBox .timeline-container .content .timeline-swiper .swiper-pagination {
  display: none;
}
#timelineBox .timeline-container .content .timeline-swiper .swiper-button-prev,
#timelineBox .timeline-container .content .timeline-swiper .swiper-button-next {
  width: 51px;
  height: 51px;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  background-image: linear-gradient(-45deg, #ff6600 0%, #ff0000 100%);
  top: 50%;
  transform: translateY(-10%);
}
#timelineBox .timeline-container .content .timeline-swiper .swiper-button-prev:hover,
#timelineBox .timeline-container .content .timeline-swiper .swiper-button-next:hover {
  background: #ff0000;
}
#timelineBox .timeline-container .content .timeline-swiper .swiper-button-prev.swiper-button-prev,
#timelineBox .timeline-container .content .timeline-swiper .swiper-button-next.swiper-button-prev {
  left: var(--swiper-navigation-sides-offset, 155px);
}
#timelineBox .timeline-container .content .timeline-swiper .swiper-button-prev.swiper-button-next,
#timelineBox .timeline-container .content .timeline-swiper .swiper-button-next.swiper-button-next {
  right: var(--swiper-navigation-sides-offset, 155px);
}
#timelineBox .timeline-container .content .timeline-swiper .swiper-button-prev::after,
#timelineBox .timeline-container .content .timeline-swiper .swiper-button-next::after {
  color: #ffffff;
  font-size: 26px;
}
#factoryBox {
  background: #f5f5f5;
}
#factoryBox .factory-container .factory-content {
  margin-top: 70px;
}
#factoryBox .factory-container .factory-content .paging_container .paging_list {
  display: flex;
  justify-content: space-between;
  flex-wrap: wrap;
}
#factoryBox .factory-container .factory-content .paging_container .paging_list .paging_box {
  width: 341px;
  margin-bottom: 25px;
  background: #ffffff;
  border-radius: 5px;
  overflow: hidden;
}
#factoryBox .factory-container .factory-content .paging_container .paging_list .paging_box .factory-image {
  width: 100%;
  height: auto;
}
#factoryBox .factory-container .factory-content .paging_container .paging_list .paging_box .factory-image img {
  width: 100%;
  height: auto;
  transform: translateY(0);
  transition: all 0.3s linear;
}
#factoryBox .factory-container .factory-content .paging_container .paging_list .paging_box .factory-title {
  padding-top: 15px;
  padding-bottom: 15px;
  text-align: center;
  color: #333333;
  font-size: 18px;
}
#factoryBox .factory-container .factory-content .paging_container .paging_list .paging_box:hover .factory-image img {
  transform: translateY(-10px);
}
#factoryBox .factory-container .factory-content .paging_container .paging_list .paging_box:hover .factory-title {
  color: #ff0000;
}
#zhiliangBox .zhiliang-container .content {
  margin-top: 70px;
}
#zhiliangBox .zhiliang-container .content h5 {
  font-size: 25px;
  color: #333333;
}
#zhiliangBox .zhiliang-container .content p {
  font-size: 16px;
  margin-top: 20px;
  line-height: 30px;
  color: #333333;
}
#zhiliangBox .zhiliang-container .content h6 {
  margin-top: 20px;
  font-size: 16px;
  color: #333333;
}
#zhiliangBox .zhiliang-container .content h6 span {
  font-size: 16px;
  color: #ff0000;
}
#productsListBox .products-list-container .list-content {
  margin-top: 50px;
}
#productsListBox .products-list-container .list-content .paging_container .paging_list {
  display: flex;
  justify-content: space-between;
  flex-wrap: wrap;
}
#productsListBox .products-list-container .list-content .paging_container .paging_list .paging_box {
  width: 345px;
  margin-bottom: 20px;
  border: 1px solid #eeeeee;
}
#productsListBox .products-list-container .list-content .paging_container .paging_list .paging_box a .products-image {
  width: 100%;
  overflow: hidden;
}
#productsListBox .products-list-container .list-content .paging_container .paging_list .paging_box a .products-image img {
  width: 100%;
  height: auto;
  transform: scale(1, 1);
  transition: all 0.3s linear;
}
#productsListBox .products-list-container .list-content .paging_container .paging_list .paging_box a .products-text {
  padding: 20px;
}
#productsListBox .products-list-container .list-content .paging_container .paging_list .paging_box a .products-text .products-title {
  font-size: 18px;
  color: #333333;
  text-align: center;
}
#productsListBox .products-list-container .list-content .paging_container .paging_list .paging_box a .products-text .products-description {
  font-size: 15px;
  margin-top: 15px;
  line-height: 25px;
  color: #666666;
  text-align: center;
}
#productsListBox .products-list-container .list-content .paging_container .paging_list .paging_box:hover a .products-image img {
  transform: scale(1.1, 1.1);
}
#productsListBox .products-list-container .list-content .paging_container .paging_list .paging_box:hover a .products-text .products-title {
  color: #ff0000;
}
#productsShowBox .products-show-container .products-top {
  background: #f5f5f5;
}
#productsShowBox .products-show-container .content-top {
  padding-top: 50px;
  padding-bottom: 50px;
  background: #f5f5f5;
}
#productsShowBox .products-show-container .content-top .common-width {
  display: flex;
  align-items: center;
  justify-content: space-between;
}
#productsShowBox .products-show-container .content-top .common-width .left-image {
  width: 596px;
  overflow: hidden;
}
#productsShowBox .products-show-container .content-top .common-width .left-image img {
  width: 100%;
  height: auto;
}
#productsShowBox .products-show-container .content-top .common-width .right-text {
  width: 779px;
}
#productsShowBox .products-show-container .content-top .common-width .right-text > h1 {
  font-size: 25px;
  color: #333333;
}
#productsShowBox .products-show-container .content-top .common-width .right-text .time {
  font-size: 14px;
  color: #666666;
  margin-top: 15px;
  margin-bottom: 20px;
}
#productsShowBox .products-show-container .content-top .common-width .right-text ul {
  display: flex;
  align-items: center;
  margin-bottom: 35px;
}
#productsShowBox .products-show-container .content-top .common-width .right-text ul span {
  font-size: 20px;
  color: #ff0000;
  margin-right: 15px;
}
#productsShowBox .products-show-container .content-top .common-width .right-text ul strong {
  font-size: 16px;
  color: #333333;
  margin-right: 15px;
}
#productsShowBox .products-show-container .content-top .common-width .right-text ul li {
  font-size: 16px;
  color: #666666;
  display: flex;
  align-items: center;
}
#productsShowBox .products-show-container .content-top .common-width .right-text ul li a {
  font-size: 16px;
  color: #666666;
}
#productsShowBox .products-show-container .content-top .common-width .right-text ul li:not(:last-child) {
  margin-right: 15px;
}
#productsShowBox .products-show-container .content-top .common-width .right-text ul li:not(:last-child)::after {
  display: block;
  content: '|';
  font-size: 16px;
  color: #666666;
  margin-left: 15px;
}
#productsShowBox .products-show-container .content-top .common-width .right-text .description {
  font-size: 16px;
  line-height: 25px;
  color: #666666;
}
#productsShowBox .products-show-container .content-top .common-width .right-text .two-buttons {
  display: flex;
  margin-top: 20px;
}
#productsShowBox .products-show-container .content-top .common-width .right-text .two-buttons a {
  display: flex;
  align-items: center;
  justify-content: center;
  width: 163px;
  height: 43px;
  border-radius: 5px;
  font-size: 16px;
  font-family: HBold;
}
#productsShowBox .products-show-container .content-top .common-width .right-text .two-buttons a span {
  font-size: 22px;
  margin-right: 5px;
}
#productsShowBox .products-show-container .content-top .common-width .right-text .two-buttons a:nth-child(1) {
  background: #333333;
  color: #ffffff;
  margin-right: 15px;
}
#productsShowBox .products-show-container .content-top .common-width .right-text .two-buttons a:nth-child(1) span {
  color: #ffffff;
}
#productsShowBox .products-show-container .content-top .common-width .right-text .two-buttons a:nth-child(2) {
  border: 1px solid #333333;
  color: #333333;
}
#productsShowBox .products-show-container .content-top .common-width .right-text .two-buttons a:nth-child(2) span {
  color: #333333;
}
#productsShowBox .products-show-container .content-top .common-width .right-text .two-buttons a:hover {
  background: #ff0000;
}
#productsShowBox .products-show-container .content-top .common-width .right-text .two-buttons a:hover:nth-child(2) {
  border: none;
  color: #ffffff;
}
#productsShowBox .products-show-container .content-top .common-width .right-text .two-buttons a:hover:nth-child(2) span {
  color: #ffffff;
}
#productsShowBox .products-show-container .content-top .common-width .right-text .prev-next {
  margin-top: 20px;
}
#productsShowBox .products-show-container .content-top .common-width .right-text .prev-next div {
  font-size: 16px;
  color: #999999;
}
#productsShowBox .products-show-container .content-top .common-width .right-text .prev-next div strong,
#productsShowBox .products-show-container .content-top .common-width .right-text .prev-next div a {
  font-weight: 100;
  font-size: 16px;
  color: #999999;
}
#productsShowBox .products-show-container .content-top .common-width .right-text .prev-next div:hover a {
  color: #ff0000;
}
#productsShowBox .products-show-container .content-bottom {
  margin-top: 70px;
}
#productsShowBox .products-show-container .content-bottom .cpjs > p,
#productsShowBox .products-show-container .content-bottom .jscs > p {
  font-size: 25px;
  color: #333333;
  border-bottom: 1px solid #eeeeee;
  font-family: HBold;
}
#productsShowBox .products-show-container .content-bottom .cpjs > p::after,
#productsShowBox .products-show-container .content-bottom .jscs > p::after {
  display: block;
  content: '';
  width: 98px;
  height: 2px;
  background: #ff0000;
  margin-top: 15px;
}
#productsShowBox .products-show-container .content-bottom .cpjs .cpjs-content {
  padding-top: 30px;
}
#productsShowBox .products-show-container .content-bottom .cpjs .cpjs-content > p {
  font-size: 15px;
  line-height: 28px;
  color: #666666;
}
#productsShowBox .products-show-container .content-bottom .cpjs .cpjs-content > p > img {
  margin-top: 20px;
  margin-bottom: 20px;
  width: 85%;
  height: auto;
}
#productsShowBox .products-show-container .content-bottom .jscs {
  margin-top: 30px;
}
#productsShowBox .products-show-container .content-bottom .jscs .jscs-content {
  padding-top: 30px;
  font-size: 15px;
  color: #666666;
}
#productsShowBox .products-show-container .content-bottom .jscs .jscs-content > p {
  font-size: 15px;
  color: #666666;
}
#productsShowBox .products-show-container .content-bottom .jscs .jscs-content > table {
  width: 100%;
  margin-top: 20px;
  margin-bottom: 20px;
}
#productsShowBox .products-show-container .content-bottom .jscs .jscs-content > table tr td {
  padding: 17px !important;
}
#productsShowBox .products-show-container .content-bottom .jscs .jscs-content > table tr:nth-child(2n) {
  background: #f5f5f5;
}
#productsShowBox .products-show-container .content-bottom .jscs .jscs-content > table tr:nth-child(2n) td {
  font-size: 15px;
  color: #666666;
}
#productsShowBox .products-show-container .content-bottom .jscs .jscs-content > table tr:nth-child(2n) td p,
#productsShowBox .products-show-container .content-bottom .jscs .jscs-content > table tr:nth-child(2n) td span {
  font-size: 15px;
  color: #666666;
}
#productsShowBox .products-show-container .content-bottom .jscs .jscs-content > table tr:nth-child(2n+1) {
  background: #eeeeee;
}
#productsShowBox .products-show-container .content-bottom .jscs .jscs-content > table tr:nth-child(2n+1) td {
  font-size: 15px;
  color: #666666;
}
#productsShowBox .products-show-container .content-bottom .jscs .jscs-content > table tr:nth-child(2n+1) td p,
#productsShowBox .products-show-container .content-bottom .jscs .jscs-content > table tr:nth-child(2n+1) td span {
  font-size: 15px;
  color: #666666;
}
#productsShowBox .products-show-container .content-bottom .jscs .jscs-content > table tr:nth-child(1) {
  background: #ff0000;
}
#productsShowBox .products-show-container .content-bottom .jscs .jscs-content > table tr:nth-child(1) td {
  font-size: 15px;
  font-family: HBold;
  color: #ffffff;
}
#productsShowBox .products-show-container .content-bottom .jscs .jscs-content > table tr:nth-child(1) td p,
#productsShowBox .products-show-container .content-bottom .jscs .jscs-content > table tr:nth-child(1) td span {
  font-size: 15px;
  font-family: HBold;
  color: #ffffff;
}
#productsShowBox .products-show-container .related-products {
  background: #f5f5f5;
  margin-top: 50px;
  padding-top: 50px;
  padding-bottom: 50px;
}
#productsShowBox .products-show-container .related-products > p {
  text-align: center;
  font-size: 35px;
  color: #333333;
  font-family: HBold;
}
#productsShowBox .products-show-container .related-products ul {
  margin-top: 10px;
  display: flex;
  flex-wrap: wrap;
  justify-content: space-between;
}
#productsShowBox .products-show-container .related-products ul li {
  width: 345px;
  margin-bottom: 20px;
  background: #ffffff;
  border: 1px solid #eeeeee;
}
#productsShowBox .products-show-container .related-products ul li a .products-image {
  width: 100%;
  overflow: hidden;
}
#productsShowBox .products-show-container .related-products ul li a .products-image img {
  width: 100%;
  height: auto;
  transform: scale(1, 1);
  transition: all 0.3s linear;
}
#productsShowBox .products-show-container .related-products ul li a .products-text {
  padding: 20px;
}
#productsShowBox .products-show-container .related-products ul li a .products-text .products-title {
  font-size: 18px;
  color: #333333;
  text-align: center;
}
#productsShowBox .products-show-container .related-products ul li a .products-text .products-description {
  font-size: 15px;
  margin-top: 15px;
  line-height: 25px;
  color: #666666;
  text-align: center;
}
#productsShowBox .products-show-container .related-products ul li:hover a .products-image img {
  transform: scale(1.1, 1.1);
}
#productsShowBox .products-show-container .related-products ul li:hover a .products-text .products-title {
  color: #ff0000;
}
#productsShowBox .contact-table {
  width: 100%;
  height: 100%;
  position: fixed;
  top: 0;
  z-index: 999;
  background: rgba(0, 0, 0, 0.8);
  justify-content: center;
  align-items: center;
  display: none;
}
#productsShowBox .contact-table .table-container {
  width: 600px;
  border-radius: 10px;
  padding: 16px 30px 50px 30px;
  background: #ffffff;
}
#productsShowBox .contact-table .table-container > p:nth-child(1) {
  font-size: 40px;
  color: #333333;
  font-family: HBold;
}
#productsShowBox .contact-table .table-container > p:nth-child(2) {
  font-size: 15px;
  color: #333333;
  margin-top: 25px;
}
#productsShowBox .contact-table .table-container > p:nth-child(3) {
  font-size: 25px;
  color: #333333;
  text-align: right;
  margin-top: 15px;
  cursor: pointer;
}
#productsShowBox .contact-table .table-container form {
  width: 100%;
  margin-top: 30px;
}
#productsShowBox .contact-table .table-container form table {
  width: 100%;
}
#productsShowBox .contact-table .table-container form table tr {
  display: flex;
  justify-content: space-between;
  margin-bottom: 15px;
}
#productsShowBox .contact-table .table-container form table tr td {
  width: 100%;
}
#productsShowBox .contact-table .table-container form table tr td p {
  font-size: 18px;
  color: #333333;
  font-family: HBold;
}
#productsShowBox .contact-table .table-container form table tr td input {
  width: 95%;
  height: 41px;
  margin-top: 10px;
  background: #f5f5f5;
  outline: none;
  border: none;
  border-radius: 5px;
  font-size: 14px;
  color: #999999;
  padding-left: 15px;
  padding-right: 15px;
}
#productsShowBox .contact-table .table-container form table tr td input::placeholder {
  color: #999999;
}
#productsShowBox .contact-table .table-container form table tr td textarea {
  width: 100%;
  height: 121px;
  margin-top: 10px;
  background: #f5f5f5;
  border-radius: 5px;
  padding: 15px;
  outline: none;
  color: #999999;
  font-size: 14px;
  line-height: 25px;
  border: none;
}
#productsShowBox .contact-table .table-container form table tr td button {
  width: 100%;
  height: 48px;
  border-radius: 24px;
  background: #ff0000;
  border: none;
  outline: none;
  font-size: 18px;
  color: #ffffff;
  display: flex;
  justify-content: center;
  align-items: center;
  cursor: pointer;
}
#productsShowBox .contact-table.active {
  display: flex;
  opacity: 1;
}
#productsShowBox .pc-footer {
  margin-top: 0;
}
#mediaListBox .media-list-container .media-page {
  margin-top: 50px;
}
#mediaListBox .media-list-container .media-page .paging_container .paging_list .paging_box {
  padding-bottom: 36px;
  border-bottom: 1px solid #ebebeb;
}
#mediaListBox .media-list-container .media-page .paging_container .paging_list .paging_box a {
  display: flex;
  align-items: center;
  justify-content: space-between;
}
#mediaListBox .media-list-container .media-page .paging_container .paging_list .paging_box a .media-image {
  width: 364px;
  height: 260px;
  border-radius: 10px;
  overflow: hidden;
}
#mediaListBox .media-list-container .media-page .paging_container .paging_list .paging_box a .media-image img {
  width: 100%;
  height: auto;
  transform: scale(1, 1);
  transition: all 0.3s linear;
}
#mediaListBox .media-list-container .media-page .paging_container .paging_list .paging_box a .media-text {
  width: 990px;
}
#mediaListBox .media-list-container .media-page .paging_container .paging_list .paging_box a .media-text .time-and-author {
  display: flex;
  align-items: center;
}
#mediaListBox .media-list-container .media-page .paging_container .paging_list .paging_box a .media-text .time-and-author span {
  font-size: 16px;
  color: #999999;
}
#mediaListBox .media-list-container .media-page .paging_container .paging_list .paging_box a .media-text .time-and-author span:not(:last-child) {
  margin-right: 30px;
}
#mediaListBox .media-list-container .media-page .paging_container .paging_list .paging_box a .media-text .media-title {
  font-size: 20px;
  margin-top: 15px;
  margin-bottom: 20px;
  color: #333333;
}
#mediaListBox .media-list-container .media-page .paging_container .paging_list .paging_box a .media-text .media-description {
  font-size: 15px;
  line-height: 25px;
  color: #666666;
  margin-bottom: 35px;
}
#mediaListBox .media-list-container .media-page .paging_container .paging_list .paging_box a .media-text .media-button {
  width: 141px;
  height: 37px;
  font-size: 15px;
  border: 1px solid #ff0000;
  color: #ff0000;
  display: flex;
  align-items: center;
  justify-content: center;
}
#mediaListBox .media-list-container .media-page .paging_container .paging_list .paging_box:not(:last-child) {
  margin-bottom: 35px;
}
#mediaListBox .media-list-container .media-page .paging_container .paging_list .paging_box:hover a .media-image img {
  transform: scale(1.1, 1.1);
}
#mediaListBox .media-list-container .media-page .paging_container .paging_list .paging_box:hover a .media-text .media-title {
  color: #ff0000;
}
#mediaListBox .media-list-container .media-page .paging_container .paging_list .paging_box:hover a .media-text .media-button {
  background: #ff0000;
  color: #ffffff;
}
#mediaShowBox .media-show-container .media-show-content {
  margin-top: 50px;
}
#mediaShowBox .media-show-container .media-show-content .media-title {
  font-size: 35px;
  color: #333333;
}
#mediaShowBox .media-show-container .media-show-content .time-and-author {
  display: flex;
  align-items: center;
  margin-top: 20px;
  margin-bottom: 25px;
}
#mediaShowBox .media-show-container .media-show-content .time-and-author span {
  font-size: 16px;
  color: #999999;
}
#mediaShowBox .media-show-container .media-show-content .time-and-author span:not(:last-child) {
  margin-right: 30px;
}
#mediaShowBox .media-show-container .media-show-content .show-content {
  padding-top: 20px;
  padding-bottom: 40px;
  border-top: 1px solid #ebebeb;
  border-bottom: 1px solid #ebebeb;
}
#mediaShowBox .media-show-container .media-show-content .show-content li,
#mediaShowBox .media-show-container .media-show-content .show-content p,
#mediaShowBox .media-show-container .media-show-content .show-content a,
#mediaShowBox .media-show-container .media-show-content .show-content strong,
#mediaShowBox .media-show-container .media-show-content .show-content u {
  font-size: 16px;
  line-height: 26px;
  color: #666666;
}
#mediaShowBox .media-show-container .media-show-content .show-content li img,
#mediaShowBox .media-show-container .media-show-content .show-content p img,
#mediaShowBox .media-show-container .media-show-content .show-content a img,
#mediaShowBox .media-show-container .media-show-content .show-content strong img,
#mediaShowBox .media-show-container .media-show-content .show-content u img {
  width: 78%;
  height: auto;
  margin: 20px auto;
  display: block;
}
#mediaShowBox .media-show-container .media-show-content .show-content strong {
  color: #333333;
}
#mediaShowBox .media-show-container .media-show-content .prev-next {
  margin-top: 30px;
}
#mediaShowBox .media-show-container .media-show-content .prev-next div {
  font-size: 16px;
  color: #999999;
  cursor: pointer;
}
#mediaShowBox .media-show-container .media-show-content .prev-next div strong,
#mediaShowBox .media-show-container .media-show-content .prev-next div a {
  font-size: 16px;
  color: #999999;
}
#mediaShowBox .media-show-container .media-show-content .prev-next div:last-child {
  margin-top: 15px;
}
#mediaShowBox .media-show-container .media-show-content .prev-next div:hover {
  font-weight: 600;
  color: #ff0000;
}
#mediaShowBox .media-show-container .media-show-content .prev-next div:hover strong,
#mediaShowBox .media-show-container .media-show-content .prev-next div:hover a {
  font-weight: 600;
  color: #ff0000;
}
#mediaShowBox .media-show-container .media-show-content .related-media {
  margin-top: 50px;
}
#mediaShowBox .media-show-container .media-show-content .related-media > p {
  font-size: 35px;
  color: #333333;
  font-family: HBold;
}
#mediaShowBox .media-show-container .media-show-content .related-media > ul {
  margin-top: 35px;
  display: flex;
  justify-content: space-between;
  flex-wrap: wrap;
}
#mediaShowBox .media-show-container .media-show-content .related-media > ul li {
  width: 467px;
  background: #f5f5f5;
  overflow: hidden;
  border-radius: 10px;
}
#mediaShowBox .media-show-container .media-show-content .related-media > ul li .news-image {
  width: 100%;
  height: 330px;
  overflow: hidden;
  border-radius: 10px 10px 0 0;
}
#mediaShowBox .media-show-container .media-show-content .related-media > ul li .news-image img {
  width: 100%;
  height: auto;
  transform: scale(1, 1);
  transition: all 0.3s linear;
}
#mediaShowBox .media-show-container .media-show-content .related-media > ul li .news-text {
  padding: 20px;
  border-radius: 0 0 10px 10px;
}
#mediaShowBox .media-show-container .media-show-content .related-media > ul li .news-text .news-title {
  font-size: 20px;
  color: #333333;
}
#mediaShowBox .media-show-container .media-show-content .related-media > ul li .news-text .news-description {
  color: #666666;
  font-size: 16px;
  line-height: 25px;
  margin-top: 15px;
  margin-bottom: 25px;
}
#mediaShowBox .media-show-container .media-show-content .related-media > ul li .news-text .category-and-time {
  display: flex;
}
#mediaShowBox .media-show-container .media-show-content .related-media > ul li .news-text .category-and-time .category {
  color: #333333;
  font-size: 16px;
  margin-right: 15px;
  font-family: HBold;
}
#mediaShowBox .media-show-container .media-show-content .related-media > ul li .news-text .category-and-time .time {
  font-size: 16px;
  color: #666666;
}
#mediaShowBox .media-show-container .media-show-content .related-media > ul li:hover .news-image img {
  transform: scale(1.1, 1.1);
}
#mediaShowBox .media-show-container .media-show-content .related-media > ul li:hover .news-text .news-title {
  color: #ff0000;
}
#videoListBox .video-list-container .video-page {
  margin-top: 50px;
}
#videoListBox .video-list-container .video-page .paging_container .paging_list {
  display: flex;
  justify-content: space-between;
  flex-wrap: wrap;
}
#videoListBox .video-list-container .video-page .paging_container .paging_list .paging_box {
  width: 463px;
  margin-bottom: 30px;
}
#videoListBox .video-list-container .video-page .paging_container .paging_list .paging_box a .video-image {
  border-radius: 5px;
  width: 100%;
  height: auto;
  position: relative;
  overflow: hidden;
}
#videoListBox .video-list-container .video-page .paging_container .paging_list .paging_box a .video-image img {
  width: 100%;
  height: auto;
  transform: scale(1, 1);
  transition: all 0.3s linear;
}
#videoListBox .video-list-container .video-page .paging_container .paging_list .paging_box a .video-image span {
  font-size: 66px;
  color: #ff0000;
  position: absolute;
  top: 0;
  width: 100%;
  height: 100%;
  display: flex;
  justify-content: center;
  align-items: center;
}
#videoListBox .video-list-container .video-page .paging_container .paging_list .paging_box a .video-title {
  margin-top: 20px;
  font-size: 18px;
  color: #333333;
  text-align: center;
}
#videoListBox .video-list-container .video-page .paging_container .paging_list .paging_box a:hover .video-image img {
  transform: scale(1.1, 1.1);
}
#videoListBox .video-list-container .video-page .paging_container .paging_list .paging_box a:hover .video-title {
  color: #ff0000;
}
#applicationListBox .application-list-container {
  margin-top: 55px;
}
#applicationListBox .application-list-container .paging_container .paging_list {
  display: flex;
  justify-content: space-between;
  flex-wrap: wrap;
}
#applicationListBox .application-list-container .paging_container .paging_list .paging_box {
  width: 467px;
  background: #f5f5f5;
  border-radius: 10px;
  margin-bottom: 20px;
}
#applicationListBox .application-list-container .paging_container .paging_list .paging_box .news-image {
  width: 100%;
  height: 330px;
  overflow: hidden;
  border-radius: 10px 10px 0 0;
}
#applicationListBox .application-list-container .paging_container .paging_list .paging_box .news-image img {
  width: 100%;
  height: auto;
  transform: scale(1, 1);
  transition: all 0.3s linear;
}
#applicationListBox .application-list-container .paging_container .paging_list .paging_box .news-text {
  padding: 20px;
  border-radius: 0 0 10px 10px;
}
#applicationListBox .application-list-container .paging_container .paging_list .paging_box .news-text .news-title {
  font-size: 20px;
  color: #333333;
}
#applicationListBox .application-list-container .paging_container .paging_list .paging_box .news-text .news-description {
  color: #666666;
  font-size: 16px;
  line-height: 25px;
  margin-top: 15px;
  margin-bottom: 25px;
}
#applicationListBox .application-list-container .paging_container .paging_list .paging_box .news-text .category-and-time {
  display: flex;
}
#applicationListBox .application-list-container .paging_container .paging_list .paging_box .news-text .category-and-time .category {
  color: #333333;
  font-size: 16px;
  margin-right: 15px;
  font-family: HBold;
}
#applicationListBox .application-list-container .paging_container .paging_list .paging_box .news-text .category-and-time .time {
  font-size: 16px;
  color: #666666;
}
#applicationListBox .application-list-container .paging_container .paging_list .paging_box:hover .news-image img {
  transform: scale(1.1, 1.1);
}
#applicationListBox .application-list-container .paging_container .paging_list .paging_box:hover .news-text .news-title {
  color: #ff0000;
}
#kfzxBox .kfzx-cotnainer .content {
  margin-top: 70px;
}
#kfzxBox .kfzx-cotnainer .content li,
#kfzxBox .kfzx-cotnainer .content p,
#kfzxBox .kfzx-cotnainer .content a,
#kfzxBox .kfzx-cotnainer .content strong,
#kfzxBox .kfzx-cotnainer .content u {
  font-size: 16px;
  line-height: 26px;
  color: #666666;
}
#kfzxBox .kfzx-cotnainer .content li img,
#kfzxBox .kfzx-cotnainer .content p img,
#kfzxBox .kfzx-cotnainer .content a img,
#kfzxBox .kfzx-cotnainer .content strong img,
#kfzxBox .kfzx-cotnainer .content u img {
  width: 78%;
  height: auto;
  margin: 20px auto;
  display: block;
}
#faqBox .faq-container {
  margin-top: 40px;
}
#faqBox .faq-container > p:nth-child(1) {
  font-size: 15px;
  color: #666666;
}
#faqBox .faq-container > p:nth-child(2) {
  color: #333333;
  font-size: 40px;
  margin-top: 35px;
  font-family: HBold;
}
#faqBox .faq-container > ul {
  margin-top: 50px;
}
#faqBox .faq-container > ul li {
  padding-top: 17px;
  padding-bottom: 20px;
  border-bottom: 1px solid #ebebeb;
}
#faqBox .faq-container > ul li .question {
  display: flex;
  align-items: center;
  justify-content: space-between;
}
#faqBox .faq-container > ul li .question .question-text {
  font-size: 16px;
  line-height: 25px;
  color: #333333;
  margin-right: auto;
  margin-left: 10px;
}
#faqBox .faq-container > ul li .question span.icon-duigou {
  font-size: 17px;
  color: #ff0000;
}
#faqBox .faq-container > ul li .question span.icon-jia {
  font-weight: 600;
  font-size: 18px;
  color: #333333;
  align-self: flex-end;
  cursor: pointer;
}
#faqBox .faq-container > ul li .question span.icon-closel {
  font-weight: 600;
  font-size: 18px;
  color: #ff0000;
  align-self: flex-end;
  cursor: pointer;
  display: none;
}
#faqBox .faq-container > ul li .answer {
  font-size: 16px;
  line-height: 25px;
  color: #333333;
  margin-top: 24px;
  display: none;
}
#faqBox .faq-container > ul li:first-child {
  border-top: 1px solid #ebebeb;
}
#faqBox .faq-container > ul li.active .question .question-text {
  color: #ff0000;
  font-weight: 600;
}
#faqBox .faq-container > ul li.active .question span.icon-jia {
  display: none;
}
#faqBox .faq-container > ul li.active .question span.icon-closel {
  display: block;
}
#faqBox .faq-container > ul li.active .answer {
  animation: pc-dropMenuShow 1s;
  display: block;
}
#contactBox .contact-container {
  margin-top: 60px;
  display: flex;
  align-items: center;
  justify-content: space-between;
}
#contactBox .contact-container .left > p:nth-child(1) {
  font-size: 40px;
  color: #333333;
  font-family: HBold;
}
#contactBox .contact-container .left > p:nth-child(2) {
  font-size: 15px;
  color: #666666;
  margin-top: 25px;
}
#contactBox .contact-container .left form {
  margin-top: 50px;
  width: 673px;
  padding: 50px;
  box-shadow: 0px 0px 10px 0px rgba(0, 0, 0, 0.1);
  border-radius: 15px;
}
#contactBox .contact-container .left form > p:nth-child(1) {
  font-size: 30px;
  font-family: HBold;
  color: #333333;
}
#contactBox .contact-container .left form > p:nth-child(2) {
  font-size: 15px;
  line-height: 36px;
  color: #666666;
  margin-bottom: 35px;
}
#contactBox .contact-container .left form > p:nth-child(2) a {
  margin-top: 10px;
  font-size: 15px;
  color: #666666;
}
#contactBox .contact-container .left form table {
  width: 100%;
}
#contactBox .contact-container .left form table tr {
  display: flex;
  justify-content: space-between;
  margin-bottom: 15px;
}
#contactBox .contact-container .left form table tr td {
  width: 100%;
}
#contactBox .contact-container .left form table tr td p {
  font-size: 18px;
  color: #333333;
  font-family: HBold;
}
#contactBox .contact-container .left form table tr td input {
  width: 95%;
  height: 41px;
  margin-top: 10px;
  background: #f5f5f5;
  outline: none;
  border: none;
  border-radius: 5px;
  font-size: 14px;
  color: #999999;
  padding-left: 15px;
  padding-right: 15px;
}
#contactBox .contact-container .left form table tr td input::placeholder {
  color: #999999;
}
#contactBox .contact-container .left form table tr td textarea {
  width: 100%;
  height: 121px;
  margin-top: 10px;
  background: #f5f5f5;
  border-radius: 5px;
  padding: 15px;
  outline: none;
  color: #999999;
  font-size: 14px;
  line-height: 25px;
  border: none;
}
#contactBox .contact-container .left form table tr td button {
  width: 100%;
  height: 48px;
  border-radius: 24px;
  background: #ff0000;
  border: none;
  outline: none;
  font-size: 18px;
  color: #ffffff;
  display: flex;
  justify-content: center;
  align-items: center;
  cursor: pointer;
}
#contactBox .contact-container .right {
  width: 666px;
}
#contactBox .contact-container .right > p {
  font-size: 30px;
  color: #333333;
  font-family: HBold;
}
#contactBox .contact-container .right > ul {
  margin-top: 50px;
  display: flex;
  flex-wrap: wrap;
}
#contactBox .contact-container .right > ul li {
  width: 100%;
  display: flex;
  margin-bottom: 25px;
  align-items: center;
  padding-bottom: 30px;
  border-bottom: 1px solid #f1f1f1;
}
#contactBox .contact-container .right > ul li > span {
  display: flex;
  justify-content: center;
  align-items: center;
  width: 53px;
  height: 53px;
  border-radius: 50%;
  background: #f1f1f1;
  font-size: 20px;
}
#contactBox .contact-container .right > ul li > p {
  display: flex;
  flex-direction: column;
  margin-left: 12px;
}
#contactBox .contact-container .right > ul li > p > span {
  font-size: 18px;
  margin-bottom: 10px;
  color: #333333;
  font-family: HBold;
}
#contactBox .contact-container .right > ul li > p > a {
  font-size: 16px;
  color: #707070;
}
#contactBox .contact-container .right > ul li > p > strong {
  font-size: 16px;
  color: #707070;
  font-weight: 100;
}
#contactBox .contact-container .right > ul li > p > strong > a {
  font-size: 16px;
  color: #707070;
}
#contactBox .contact-container .right > ul li > p > strong > a:not(:last-child) {
  margin-right: 15px;
}
#contactBox .contact-container .right > ul li:nth-child(2),
#contactBox .contact-container .right > ul li:nth-child(3) {
  width: 49%;
}
#contactBox .contact-container .right > ul li:hover > span {
  background: #ff0000;
  color: #ffffff;
}
#contactBox .contact-container .right ol li span:first-child {
  font-size: 22px;
  color: #333333;
}
#contactBox .contact-container .right ol li span:nth-child(2) {
  font-size: 18px;
  font-family: HBold;
  color: #333333;
  margin-left: 11px;
  margin-right: 13px;
}
#contactBox .contact-container .right ol li span:last-child {
  font-size: 16px;
  color: #666666;
}
#contactBox .contact-container .right ol li span:last-child a {
  font-size: 16px;
  color: #666666;
}
#contactBox .contact-container .right .phone-tiktok {
  margin-top: 30px;
  display: flex;
  justify-content: space-between;
}
#contactBox .contact-container .right .phone-tiktok .phone > p {
  font-size: 18px;
  margin-bottom: 10px;
  font-family: HBold;
}
#contactBox .contact-container .right .phone-tiktok .phone li {
  font-size: 16px;
  line-height: 25px;
  color: #666666;
}
#contactBox .contact-container .right .phone-tiktok .phone li a {
  font-size: 16px;
  color: #666666;
  margin-left: 15px;
}
#contactBox .contact-container .right .phone-tiktok .tiktok {
  display: flex;
  align-items: center;
  justify-content: space-between;
}
#contactBox .contact-container .right .phone-tiktok .tiktok .text {
  margin-left: 30px;
}
#contactBox .contact-container .right .phone-tiktok .tiktok .text p {
  font-size: 15px;
  line-height: 25px;
  color: #707070;
  text-align: center;
}
@media screen and (max-width: 1199px) {
  #inxBox .banner {
    margin-top: 0px;
  }
  #inxBox .banner .swiper-wrapper {
    width: 100%;
    height: 100%;
  }
  #inxBox .banner .banner-text .text > p:nth-child(1) {
    font-size: 0.25rem;
  }
  #inxBox .banner .banner-text .text > p:nth-child(2) {
    font-size: 0.25rem;
    margin-top: 0.1rem;
    margin-bottom: 0.1rem;
  }
  #inxBox .banner .banner-text .text > p:nth-child(2) span {
    color: #ff0000;
    font-size: 0.25rem;
  }
  #inxBox .banner .banner-text .text > p:nth-child(3) {
    font-size: 0.25rem;
  }
  #inxBox .products-category {
    padding-top: 0.35rem;
    padding-bottom: 0.35rem;
  }
  #inxBox .products-category .common-width > p:nth-child(1) {
    font-size: 0.35rem;
    margin-bottom: 0.15rem;
  }
  #inxBox .products-category .common-width > p:nth-child(2) {
    font-size: 0.25rem;
    margin-bottom: 0.2rem;
  }
  #inxBox .products-category .common-width ul {
    flex-wrap: wrap;
  }
  #inxBox .products-category .common-width ul li {
    width: 100%;
    height: 3rem;
    border-radius: 0.25rem;
    margin-bottom: 0.2rem;
  }
  #inxBox .products-category .common-width ul li a .text h5 {
    font-size: 0.45rem;
  }
  #inxBox .products-category .common-width ul li.active {
    width: 100%;
    height: 3rem;
    border-radius: 0.25rem;
    margin-bottom: 0.2rem;
  }
  #inxBox .products-category .common-width ul li.active a .text {
    display: block;
    display: flex;
    align-items: center;
    justify-content: center;
  }
  #inxBox .products-category .common-width ul li.active a .text h5 {
    font-size: 0.45rem;
  }
  #inxBox .products-category .common-width ul li.active a .text-active {
    display: none;
  }
  #inxBox .products-category .common-width > a {
    font-size: 0.25rem;
    margin-top: 0.2rem;
  }
  #inxBox .about-us {
    height: auto;
    padding-top: 0.4rem;
    padding-bottom: 0.4rem;
    display: flex;
    flex-wrap: wrap;
    align-items: center;
  }
  #inxBox .about-us .left-image {
    width: 100%;
    height: auto;
  }
  #inxBox .about-us .right {
    width: 95%;
    height: auto;
    padding-left: 0;
    background: url(../images/about-background.webp) no-repeat;
    background-size: cover;
    display: flex;
    align-items: center;
    justify-content: center;
    margin: 0.2rem auto;
  }
  #inxBox .about-us .right .right-text {
    width: 100%;
  }
  #inxBox .about-us .right .right-text > p:nth-child(1) {
    font-size: 0.45rem;
  }
  #inxBox .about-us .right .right-text > p:nth-child(2) {
    margin-top: 0.35rem;
    margin-bottom: 0.5rem;
    font-size: 0.2rem;
    text-indent: 0;
    line-height: 0.3rem;
  }
  #inxBox .about-us .right .right-text > ul {
    display: none;
  }
  #inxBox .timeline {
    position: relative;
    margin-top: 0.3rem;
    height: auto;
  }
  #inxBox .timeline .border-line {
    display: none;
  }
  #inxBox .timeline .timeline-swiper {
    overflow: hidden;
  }
  #inxBox .timeline .timeline-swiper .swiper-wrapper .swiper-slide {
    width: 100% !important;
  }
  #inxBox .timeline .timeline-swiper .swiper-wrapper .swiper-slide .top-text {
    margin-bottom: 0.25rem;
    min-height: 2rem;
  }
  #inxBox .timeline .timeline-swiper .swiper-wrapper .swiper-slide .top-text p.year {
    font-size: 0.4rem;
  }
  #inxBox .timeline .timeline-swiper .swiper-wrapper .swiper-slide .top-text p:nth-child(2) {
    margin-top: 0.35rem;
    margin-bottom: 0.25rem;
    font-size: 0.25rem;
  }
  #inxBox .timeline .timeline-swiper .swiper-wrapper .swiper-slide .top-text p:nth-child(3) {
    font-size: 0.25rem;
    line-height: 0.3rem;
    min-height: 0.6rem;
  }
  #inxBox .timeline .timeline-swiper .swiper-wrapper .swiper-slide .top-text::after {
    display: none;
  }
  #inxBox .timeline .timeline-swiper .swiper-wrapper .swiper-slide .bottom-image {
    border-radius: 0.1rem;
  }
  #inxBox .timeline .timeline-swiper .swiper-pagination {
    display: none;
  }
  #inxBox .timeline .timeline-swiper .swiper-button-prev,
  #inxBox .timeline .timeline-swiper .swiper-button-next {
    display: none;
  }
  #inxBox .news {
    margin-top: 0.35rem;
    padding-top: 0.35rem;
    padding-bottom: 0.35rem;
  }
  #inxBox .news .news-container > p {
    color: #ffffff;
    font-size: 0.45rem;
    margin-bottom: 0.2rem;
  }
  #inxBox .news .news-container .news-swiper .swiper-wrapper .swiper-slide {
    width: 100% !important;
  }
  #inxBox .news .news-container .news-swiper .swiper-wrapper .swiper-slide .news-image {
    height: auto;
    border-radius: 0.1rem 0.1rem 0 0;
  }
  #inxBox .news .news-container .news-swiper .swiper-wrapper .swiper-slide .news-text {
    background: #ffffff;
    padding: 0.2rem;
    border-radius: 0 0 0.1rem 0.1rem;
  }
  #inxBox .news .news-container .news-swiper .swiper-wrapper .swiper-slide .news-text .news-title {
    font-size: 0.25rem;
  }
  #inxBox .news .news-container .news-swiper .swiper-wrapper .swiper-slide .news-text .news-description {
    font-size: 0.25rem;
    line-height: 0.35rem;
    margin-top: 0.2rem;
    margin-bottom: 0.35rem;
  }
  #inxBox .news .news-container .news-swiper .swiper-wrapper .swiper-slide .news-text .category-and-time .category {
    color: #333333;
    font-size: 0.2rem;
    margin-right: 0.15rem;
  }
  #inxBox .news .news-container .news-swiper .swiper-wrapper .swiper-slide .news-text .category-and-time .time {
    font-size: 0.2rem;
  }
  #inxBox .contact-and-faq {
    margin-top: 0.35rem;
    display: flex;
    flex-wrap: wrap;
  }
  #inxBox .contact-and-faq .contact {
    width: 100%;
    padding: 0.25rem;
    box-shadow: 0px 0px 0.1rem 0px rgba(0, 0, 0, 0.1);
    border-radius: 0.2rem;
  }
  #inxBox .contact-and-faq .contact > p {
    font-size: 0.3rem;
  }
  #inxBox .contact-and-faq .contact form {
    margin-top: 0.2rem;
  }
  #inxBox .contact-and-faq .contact form table {
    width: 100%;
  }
  #inxBox .contact-and-faq .contact form table tr {
    display: flex;
    flex-wrap: wrap;
    justify-content: space-between;
    margin-bottom: 0.3em;
  }
  #inxBox .contact-and-faq .contact form table tr td {
    margin-bottom: 0.3rem;
  }
  #inxBox .contact-and-faq .contact form table tr td p {
    font-size: 0.3rem;
  }
  #inxBox .contact-and-faq .contact form table tr td input {
    width: 100%;
    height: auto;
    padding: 0.15rem;
    margin-top: 0.1rem;
    border-radius: 0.05rem;
    font-size: 0.25rem;
  }
  #inxBox .contact-and-faq .contact form table tr td textarea {
    width: 100%;
    height: 2rem;
    margin-top: 0.15rem;
    border-radius: 0.05rem;
    padding: 0.15rem;
    font-size: 0.25rem;
    line-height: 0.3rem;
  }
  #inxBox .contact-and-faq .contact form table tr td button {
    width: 100%;
    height: auto;
    border-radius: 0.24rem;
    font-size: 0.25rem;
    padding: 0.2rem 0.15rem;
  }
  #inxBox .contact-and-faq .faq {
    margin-top: 0.3rem;
    width: 100%;
  }
  #inxBox .contact-and-faq .faq > p:nth-child(1) {
    font-size: 0.25rem;
  }
  #inxBox .contact-and-faq .faq > p:nth-child(2) {
    font-size: 0.4rem;
    margin-top: 0.2rem;
  }
  #inxBox .contact-and-faq .faq > ul {
    margin-top: 0.25rem;
  }
  #inxBox .contact-and-faq .faq > ul li {
    padding-top: 0.2rem;
    padding-bottom: 0.2rem;
    border-bottom: 0.01rem solid #ebebeb;
  }
  #inxBox .contact-and-faq .faq > ul li .question .question-text {
    font-size: 0.25rem;
    line-height: 0.3rem;
    margin-left: 0.1rem;
  }
  #inxBox .contact-and-faq .faq > ul li .question span.icon-duigou {
    font-size: 0.25rem;
  }
  #inxBox .contact-and-faq .faq > ul li .question span.icon-jia {
    font-size: 0.25rem;
  }
  #inxBox .contact-and-faq .faq > ul li .question span.icon-closel {
    font-weight: 600;
    font-size: 0.25rem;
  }
  #inxBox .contact-and-faq .faq > ul li .answer {
    font-size: 0.25rem;
    line-height: 0.3rem;
    margin-top: 0.2rem;
  }
  #inxBox .contact-and-faq .faq > ul li:first-child {
    border-top: 0.01rem solid #ebebeb;
  }
  #aboutUsBox .about-us-container .content {
    margin-top: 0.35rem;
  }
  #aboutUsBox .about-us-container .content h6 {
    font-size: 0.3rem;
    margin-bottom: 0.25rem;
  }
  #aboutUsBox .about-us-container .content > p {
    font-size: 0.2rem;
    text-indent: 0.4rem;
    line-height: 0.3rem;
  }
  #aboutUsBox .about-us-container .content > ul {
    margin-top: 0.35rem;
  }
  #aboutUsBox .about-us-container .content > ul li p:nth-child(1) {
    font-size: 0.45rem;
  }
  #aboutUsBox .about-us-container .content > ul li p:nth-child(2) {
    font-size: 0.2rem;
    margin-top: 0.15rem;
    margin-bottom: 0.15rem;
  }
  #aboutUsBox .about-us-container .content > ul li p:nth-child(2) span {
    font-size: 0.5rem;
  }
  #aboutUsBox .about-us-container .content > ul li p:nth-child(2) span:last-child {
    margin-right: 0.1rem;
  }
  #aboutUsBox .about-us-container .content > ul li p:nth-child(3) {
    font-size: 0.2rem;
  }
  #aboutUsBox .about-us-container .content > ol {
    margin-top: 0.35rem;
  }
  #zuzhiBox .zuzhi-container .content {
    margin-top: 0.35rem;
  }
  #zuzhiBox .zuzhi-container .content img {
    width: 100%;
    height: auto;
  }
  #timelineBox .timeline-container .content .border-line {
    display: none;
  }
  #timelineBox .timeline-container .content .timeline-swiper {
    overflow: hidden;
  }
  #timelineBox .timeline-container .content .timeline-swiper .swiper-wrapper .swiper-slide {
    width: 100% !important;
  }
  #timelineBox .timeline-container .content .timeline-swiper .swiper-wrapper .swiper-slide .top-text {
    margin-bottom: 0.25rem;
    min-height: 2rem;
  }
  #timelineBox .timeline-container .content .timeline-swiper .swiper-wrapper .swiper-slide .top-text p.year {
    font-size: 0.4rem;
  }
  #timelineBox .timeline-container .content .timeline-swiper .swiper-wrapper .swiper-slide .top-text p:nth-child(2) {
    margin-top: 0.35rem;
    margin-bottom: 0.25rem;
    font-size: 0.25rem;
  }
  #timelineBox .timeline-container .content .timeline-swiper .swiper-wrapper .swiper-slide .top-text p:nth-child(3) {
    font-size: 0.25rem;
    line-height: 0.3rem;
    min-height: 0.6rem;
  }
  #timelineBox .timeline-container .content .timeline-swiper .swiper-wrapper .swiper-slide .top-text::after {
    display: none;
  }
  #timelineBox .timeline-container .content .timeline-swiper .swiper-wrapper .swiper-slide .bottom-image {
    border-radius: 0.1rem;
  }
  #timelineBox .timeline-container .content .timeline-swiper .swiper-pagination {
    display: none;
  }
  #timelineBox .timeline-container .content .timeline-swiper .swiper-button-prev,
  #timelineBox .timeline-container .content .timeline-swiper .swiper-button-next {
    display: none;
  }
  #factoryBox .factory-container .factory-content {
    margin-top: 0.35rem;
  }
  #factoryBox .factory-container .factory-content .paging_container .paging_list .paging_box {
    width: 49%;
    margin-bottom: 0.2rem;
    border-radius: 0.05rem;
  }
  #factoryBox .factory-container .factory-content .paging_container .paging_list .paging_box .factory-title {
    padding-top: 0.15rem;
    padding-bottom: 0.15rem;
    font-size: 0.2rem;
  }
  #zhiliangBox .zhiliang-container .content {
    margin-top: 0.35rem;
  }
  #zhiliangBox .zhiliang-container .content h5 {
    font-size: 0.25rem;
  }
  #zhiliangBox .zhiliang-container .content p {
    font-size: 0.2rem;
    margin-top: 0.2rem;
    line-height: 0.3rem;
  }
  #zhiliangBox .zhiliang-container .content h6 {
    margin-top: 0.2rem;
    font-size: 0.2rem;
  }
  #zhiliangBox .zhiliang-container .content h6 span {
    font-size: 0.2rem;
  }
  #productsListBox .products-list-container .list-content {
    margin-top: 0.25rem;
  }
  #productsListBox .products-list-container .list-content .paging_container .paging_list .paging_box {
    width: 49%;
    margin-bottom: 0.15rem;
    border: 0.01rem solid #eeeeee;
  }
  #productsListBox .products-list-container .list-content .paging_container .paging_list .paging_box a .products-text {
    padding: 0.15rem;
  }
  #productsListBox .products-list-container .list-content .paging_container .paging_list .paging_box a .products-text .products-title {
    font-size: 0.25rem;
  }
  #productsListBox .products-list-container .list-content .paging_container .paging_list .paging_box a .products-text .products-description {
    font-size: 0.2rem;
    margin-top: 0.2rem;
    line-height: 0.25rem;
  }
  #productsShowBox .products-show-container .content-top {
    padding-top: 0.25rem;
    padding-bottom: 0.25rem;
  }
  #productsShowBox .products-show-container .content-top .common-width {
    flex-direction: column;
  }
  #productsShowBox .products-show-container .content-top .common-width .left-image {
    width: 90%;
  }
  #productsShowBox .products-show-container .content-top .common-width .right-text {
    margin-top: 0.3rem;
    width: 100%;
  }
  #productsShowBox .products-show-container .content-top .common-width .right-text > h1 {
    font-size: 0.3rem;
  }
  #productsShowBox .products-show-container .content-top .common-width .right-text .time {
    font-size: 0.2rem;
    margin-top: 0.15rem;
    margin-bottom: 0.15rem;
  }
  #productsShowBox .products-show-container .content-top .common-width .right-text ul {
    margin-bottom: 0.25rem;
  }
  #productsShowBox .products-show-container .content-top .common-width .right-text ul span {
    font-size: 0.2rem;
    margin-right: 0.1rem;
  }
  #productsShowBox .products-show-container .content-top .common-width .right-text ul strong {
    font-size: 0.2rem;
    margin-right: 0.1rem;
  }
  #productsShowBox .products-show-container .content-top .common-width .right-text ul li {
    font-size: 0.2rem;
  }
  #productsShowBox .products-show-container .content-top .common-width .right-text ul li a {
    font-size: 0.2rem;
  }
  #productsShowBox .products-show-container .content-top .common-width .right-text ul li:not(:last-child) {
    margin-right: 0.1rem;
  }
  #productsShowBox .products-show-container .content-top .common-width .right-text ul li:not(:last-child)::after {
    font-size: 0.2rem;
    margin-left: 0.1rem;
  }
  #productsShowBox .products-show-container .content-top .common-width .right-text .description {
    font-size: 0.2rem;
    line-height: 0.28rem;
  }
  #productsShowBox .products-show-container .content-top .common-width .right-text .two-buttons {
    margin-top: 0.2rem;
  }
  #productsShowBox .products-show-container .content-top .common-width .right-text .two-buttons a {
    width: auto;
    height: auto;
    padding: 0.15rem 0.2rem;
    border-radius: 0.05rem;
    font-size: 0.18rem;
  }
  #productsShowBox .products-show-container .content-top .common-width .right-text .two-buttons a span {
    font-size: 22px;
    margin-right: 0.05rem;
  }
  #productsShowBox .products-show-container .content-top .common-width .right-text .two-buttons a:nth-child(1) {
    margin-right: 0.1rem;
  }
  #productsShowBox .products-show-container .content-top .common-width .right-text .two-buttons a:nth-child(2) {
    border: 0.01rem solid #333333;
  }
  #productsShowBox .products-show-container .content-top .common-width .right-text .prev-next {
    margin-top: 0.15rem;
  }
  #productsShowBox .products-show-container .content-top .common-width .right-text .prev-next div {
    font-size: 0.2rem;
  }
  #productsShowBox .products-show-container .content-top .common-width .right-text .prev-next div strong,
  #productsShowBox .products-show-container .content-top .common-width .right-text .prev-next div a {
    font-size: 0.2rem;
  }
  #productsShowBox .products-show-container .content-bottom {
    margin-top: 0.35rem;
  }
  #productsShowBox .products-show-container .content-bottom .cpjs > p,
  #productsShowBox .products-show-container .content-bottom .jscs > p {
    font-size: 0.25rem;
    border-bottom: 0.01rem solid #eeeeee;
  }
  #productsShowBox .products-show-container .content-bottom .cpjs > p::after,
  #productsShowBox .products-show-container .content-bottom .jscs > p::after {
    display: none;
  }
  #productsShowBox .products-show-container .content-bottom .cpjs .cpjs-content {
    padding-top: 0.3rem;
  }
  #productsShowBox .products-show-container .content-bottom .cpjs .cpjs-content > p {
    font-size: 0.2rem;
    line-height: 0.25rem;
  }
  #productsShowBox .products-show-container .content-bottom .cpjs .cpjs-content > p > img {
    margin-top: 0.2rem;
    margin-bottom: 0.2rem;
    width: 95%;
    height: auto;
  }
  #productsShowBox .products-show-container .content-bottom .jscs {
    margin-top: 0.3rem;
  }
  #productsShowBox .products-show-container .content-bottom .jscs .jscs-content {
    padding-top: 0.3rem;
    font-size: 0.2rem;
  }
  #productsShowBox .products-show-container .content-bottom .jscs .jscs-content > p {
    font-size: 0.2rem;
  }
  #productsShowBox .products-show-container .content-bottom .jscs .jscs-content > table {
    margin-top: 0.2rem;
    margin-bottom: 0.2rem;
  }
  #productsShowBox .products-show-container .content-bottom .jscs .jscs-content > table tr td {
    padding: 0.15rem;
  }
  #productsShowBox .products-show-container .content-bottom .jscs .jscs-content > table tr:nth-child(1) td {
    font-size: 0.2rem;
    font-family: HBold;
    color: #ffffff;
  }
  #productsShowBox .products-show-container .content-bottom .jscs .jscs-content > table tr:nth-child(1) td p,
  #productsShowBox .products-show-container .content-bottom .jscs .jscs-content > table tr:nth-child(1) td span {
    font-size: 0.2rem;
    font-family: HBold;
    color: #ffffff;
  }
  #productsShowBox .products-show-container .content-bottom .jscs .jscs-content > table tr:nth-child(2n) {
    background: #e5e5e5;
  }
  #productsShowBox .products-show-container .content-bottom .jscs .jscs-content > table tr:nth-child(2n) td {
    font-size: 0.2rem;
  }
  #productsShowBox .products-show-container .content-bottom .jscs .jscs-content > table tr:nth-child(2n) td span {
    font-size: 0.2rem;
  }
  #productsShowBox .products-show-container .content-bottom .jscs .jscs-content > table tr:nth-child(2n+1) td {
    font-size: 0.2rem;
  }
  #productsShowBox .products-show-container .content-bottom .jscs .jscs-content > table tr:nth-child(2n+1) td span {
    font-size: 0.2rem;
  }
  #productsShowBox .products-show-container .content-bottom .jscs .jscs-content > table tr:nth-child(1) {
    background: #ff0000;
  }
  #productsShowBox .products-show-container .content-bottom .jscs .jscs-content > table tr:nth-child(1) td {
    font-size: 0.2rem;
    color: #ffffff;
  }
  #productsShowBox .products-show-container .content-bottom .jscs .jscs-content > table tr:nth-child(1) td span {
    font-size: 0.2rem;
    color: #ffffff;
  }
  #productsShowBox .products-show-container .related-products {
    margin-top: 0.25rem;
    padding-top: 0.25rem;
    padding-bottom: 0.25rem;
  }
  #productsShowBox .products-show-container .related-products > p {
    font-size: 0.35rem;
  }
  #productsShowBox .products-show-container .related-products ul {
    margin-top: 0.2rem;
  }
  #productsShowBox .products-show-container .related-products ul li {
    width: 49%;
    margin-bottom: 0.15rem;
    border: 0.01rem solid #eeeeee;
  }
  #productsShowBox .products-show-container .related-products ul li a .products-text {
    padding: 0.15rem;
  }
  #productsShowBox .products-show-container .related-products ul li a .products-text .products-title {
    font-size: 0.25rem;
  }
  #productsShowBox .products-show-container .related-products ul li a .products-text .products-description {
    font-size: 0.2rem;
    margin-top: 0.15rem;
    line-height: 0.25rem;
  }
  #productsShowBox .contact-table .table-container {
    width: 80%;
    border-radius: 0.1rem;
    padding: 0.2rem;
  }
  #productsShowBox .contact-table .table-container > p:nth-child(1) {
    font-size: 0.4rem;
  }
  #productsShowBox .contact-table .table-container > p:nth-child(2) {
    font-size: 0.2rem;
    margin-top: 0.25rem;
  }
  #productsShowBox .contact-table .table-container > p:nth-child(3) {
    font-size: 0.25rem;
    margin-top: 0.2rem;
  }
  #productsShowBox .contact-table .table-container form {
    width: 100%;
    margin-top: 0.25rem;
  }
  #productsShowBox .contact-table .table-container form table {
    width: 100%;
  }
  #productsShowBox .contact-table .table-container form table tr {
    margin-bottom: 0.15rem;
  }
  #productsShowBox .contact-table .table-container form table tr td {
    width: 100%;
  }
  #productsShowBox .contact-table .table-container form table tr td p {
    font-size: 0.2rem;
  }
  #productsShowBox .contact-table .table-container form table tr td input {
    width: 95%;
    height: auto;
    padding: 0.15rem;
    margin-top: 0.1rem;
    border-radius: 5px;
    font-size: 0.2rem;
  }
  #productsShowBox .contact-table .table-container form table tr td textarea {
    width: 100%;
    height: 1.5rem;
    margin-top: 0.1rem;
    background: #f5f5f5;
    border-radius: 0.05rem;
    padding: 0.15rem;
    font-size: 0.2rem;
    line-height: 0.25rem;
  }
  #productsShowBox .contact-table .table-container form table tr td button {
    width: 100%;
    height: auto;
    padding: 0.15rem 0.2rem;
    border-radius: 0.25rem;
    font-size: 0.2rem;
  }
  #productsShowBox .pc-footer {
    margin-top: 0;
  }
  #mediaListBox .media-list-container .media-page {
    margin-top: 0.3rem;
  }
  #mediaListBox .media-list-container .media-page .paging_container .paging_list .paging_box {
    padding-bottom: 0.35rem;
    border-bottom: 0.01rem solid #ebebeb;
  }
  #mediaListBox .media-list-container .media-page .paging_container .paging_list .paging_box a {
    flex-direction: column;
  }
  #mediaListBox .media-list-container .media-page .paging_container .paging_list .paging_box a .media-image {
    width: 95%;
    height: auto;
    border-radius: 0.1rem;
  }
  #mediaListBox .media-list-container .media-page .paging_container .paging_list .paging_box a .media-text {
    width: 100%;
    margin-top: 0.3rem;
  }
  #mediaListBox .media-list-container .media-page .paging_container .paging_list .paging_box a .media-text .time-and-author span {
    font-size: 0.2rem;
  }
  #mediaListBox .media-list-container .media-page .paging_container .paging_list .paging_box a .media-text .time-and-author span:not(:last-child) {
    margin-right: 0.3rem;
  }
  #mediaListBox .media-list-container .media-page .paging_container .paging_list .paging_box a .media-text .media-title {
    font-size: 0.25rem;
    margin-top: 0.2rem;
    margin-bottom: 0.2rem;
  }
  #mediaListBox .media-list-container .media-page .paging_container .paging_list .paging_box a .media-text .media-description {
    font-size: 0.2rem;
    line-height: 0.3rem;
    margin-bottom: 0.3rem;
  }
  #mediaListBox .media-list-container .media-page .paging_container .paging_list .paging_box a .media-text .media-button {
    width: auto;
    height: auto;
    padding: 0.15rem 0.2rem;
    font-size: 0.2rem;
  }
  #mediaListBox .media-list-container .media-page .paging_container .paging_list .paging_box:not(:last-child) {
    margin-bottom: 0.3rem;
  }
  #mediaShowBox .media-show-container .media-show-content {
    margin-top: 0.5rem;
  }
  #mediaShowBox .media-show-container .media-show-content .media-title {
    font-size: 0.35rem;
  }
  #mediaShowBox .media-show-container .media-show-content .time-and-author {
    margin-top: 0.2rem;
    margin-bottom: 0.2rem;
  }
  #mediaShowBox .media-show-container .media-show-content .time-and-author span {
    font-size: 0.2rem;
  }
  #mediaShowBox .media-show-container .media-show-content .time-and-author span:not(:last-child) {
    margin-right: 0.3rem;
  }
  #mediaShowBox .media-show-container .media-show-content .show-content {
    padding-top: 0.2rem;
    padding-bottom: 0.4rem;
  }
  #mediaShowBox .media-show-container .media-show-content .show-content li,
  #mediaShowBox .media-show-container .media-show-content .show-content p,
  #mediaShowBox .media-show-container .media-show-content .show-content a,
  #mediaShowBox .media-show-container .media-show-content .show-content strong,
  #mediaShowBox .media-show-container .media-show-content .show-content u {
    font-size: 0.2rem;
    line-height: 0.3rem;
  }
  #mediaShowBox .media-show-container .media-show-content .show-content li img,
  #mediaShowBox .media-show-container .media-show-content .show-content p img,
  #mediaShowBox .media-show-container .media-show-content .show-content a img,
  #mediaShowBox .media-show-container .media-show-content .show-content strong img,
  #mediaShowBox .media-show-container .media-show-content .show-content u img {
    width: 95%;
    margin: 0.2rem auto;
  }
  #mediaShowBox .media-show-container .media-show-content .prev-next {
    margin-top: 0.3rem;
  }
  #mediaShowBox .media-show-container .media-show-content .prev-next div {
    font-size: 0.2rem;
  }
  #mediaShowBox .media-show-container .media-show-content .prev-next div strong,
  #mediaShowBox .media-show-container .media-show-content .prev-next div a {
    font-size: 0.2rem;
  }
  #mediaShowBox .media-show-container .media-show-content .prev-next div:last-child {
    margin-top: 0.2rem;
  }
  #mediaShowBox .media-show-container .media-show-content .related-media {
    margin-top: 0.3rem;
  }
  #mediaShowBox .media-show-container .media-show-content .related-media > p {
    font-size: 0.35rem;
  }
  #mediaShowBox .media-show-container .media-show-content .related-media > ul {
    margin-top: 0.35rem;
  }
  #mediaShowBox .media-show-container .media-show-content .related-media > ul li {
    width: 33%;
    border-radius: 0.1rem;
  }
  #mediaShowBox .media-show-container .media-show-content .related-media > ul li .news-image {
    width: 100%;
    height: auto;
    border-radius: 0.1rem 0.1rem 0 0;
  }
  #mediaShowBox .media-show-container .media-show-content .related-media > ul li .news-text {
    padding: 0.15rem;
    border-radius: 0 0 10px 10px;
  }
  #mediaShowBox .media-show-container .media-show-content .related-media > ul li .news-text .news-title {
    font-size: 0.25rem;
  }
  #mediaShowBox .media-show-container .media-show-content .related-media > ul li .news-text .news-description {
    display: none;
  }
  #mediaShowBox .media-show-container .media-show-content .related-media > ul li .news-text .category-and-time {
    display: none;
  }
  #videoListBox .video-list-container .video-page {
    margin-top: 0.5rem;
  }
  #videoListBox .video-list-container .video-page .paging_container .paging_list .paging_box {
    width: 49%;
    margin-bottom: 0.25rem;
  }
  #videoListBox .video-list-container .video-page .paging_container .paging_list .paging_box a .video-image {
    border-radius: 0.05rem;
  }
  #videoListBox .video-list-container .video-page .paging_container .paging_list .paging_box a .video-image span {
    font-size: 0.6rem;
  }
  #videoListBox .video-list-container .video-page .paging_container .paging_list .paging_box a .video-title {
    margin-top: 0.2rem;
    font-size: 0.25rem;
  }
  #applicationListBox .application-list-container {
    margin-top: 0.3rem;
  }
  #applicationListBox .application-list-container .paging_container .paging_list .paging_box {
    width: 49%;
    border-radius: 0.1rem;
    margin-bottom: 0.2rem;
  }
  #applicationListBox .application-list-container .paging_container .paging_list .paging_box .news-image {
    width: 100%;
    height: auto;
    border-radius: 0.1rem 0.1rem 0 0;
  }
  #applicationListBox .application-list-container .paging_container .paging_list .paging_box .news-text {
    padding: 0.15rem;
    border-radius: 0 0 0.1rem 0.1rem;
  }
  #applicationListBox .application-list-container .paging_container .paging_list .paging_box .news-text .news-title {
    font-size: 0.25rem;
  }
  #applicationListBox .application-list-container .paging_container .paging_list .paging_box .news-text .news-description {
    font-size: 0.2rem;
    line-height: 0.3rem;
    margin-top: 0.15rem;
    margin-bottom: 0.15rem;
  }
  #applicationListBox .application-list-container .paging_container .paging_list .paging_box .news-text .category-and-time .time {
    font-size: 0.2rem;
  }
  #faqBox .faq-container {
    margin-top: 0.2rem;
  }
  #faqBox .faq-container > p:nth-child(1) {
    font-size: 0.25rem;
  }
  #faqBox .faq-container > p:nth-child(2) {
    font-size: 0.35rem;
    margin-top: 0.35rem;
  }
  #faqBox .faq-container > ul {
    margin-top: 0.35rem;
  }
  #faqBox .faq-container > ul li {
    padding-top: 0.17rem;
    padding-bottom: 0.2rem;
    border-bottom: 0.01rem solid #ebebeb;
  }
  #faqBox .faq-container > ul li .question .question-text {
    font-size: 0.2rem;
    line-height: 0.25rem;
    margin-left: 0.1rem;
  }
  #faqBox .faq-container > ul li .question span.icon-duigou {
    font-size: 0.2rem;
  }
  #faqBox .faq-container > ul li .question span.icon-jia {
    font-size: 0.2rem;
  }
  #faqBox .faq-container > ul li .question span.icon-closel {
    font-size: 0.2rem;
  }
  #faqBox .faq-container > ul li .answer {
    font-size: 0.2rem;
    line-height: 0.25rem;
    margin-top: 0.2rem;
  }
  #faqBox .faq-container > ul li:first-child {
    border-top: 0.01rem solid #ebebeb;
  }
  #faqBox .faq-container > ul li.active .answer {
    animation: pc-dropMenuShow 1s;
    display: block;
  }
  #contactBox .contact-container {
    margin-top: 0.3rem;
    flex-direction: column;
  }
  #contactBox .contact-container .left > p:nth-child(1) {
    font-size: 0.35rem;
  }
  #contactBox .contact-container .left > p:nth-child(2) {
    font-size: 0.2rem;
    margin-top: 0.25rem;
  }
  #contactBox .contact-container .left form {
    width: 100%;
    margin-top: 0.25rem;
    padding: 0.25rem;
    box-shadow: 0px 0px 0.1rem 0px rgba(0, 0, 0, 0.1);
    border-radius: 0.2rem;
  }
  #contactBox .contact-container .left form > p:nth-child(1) {
    font-size: 0.3rem;
  }
  #contactBox .contact-container .left form > p:nth-child(2) {
    font-size: 0.25rem;
    line-height: 0.35rem;
    margin-bottom: 0.25rem;
  }
  #contactBox .contact-container .left form > p:nth-child(2) a {
    margin-top: 0.1rem;
    font-size: 0.25rem;
  }
  #contactBox .contact-container .left form table {
    width: 100%;
  }
  #contactBox .contact-container .left form table tr {
    margin-bottom: 0.1rem;
  }
  #contactBox .contact-container .left form table tr td {
    width: 100%;
  }
  #contactBox .contact-container .left form table tr td p {
    font-size: 0.25rem;
  }
  #contactBox .contact-container .left form table tr td input {
    width: 95%;
    height: auto;
    margin-top: 0.15rem;
    background: #f5f5f5;
    border-radius: 0.1rem;
    font-size: 0.2rem;
    padding: 0.2rem;
  }
  #contactBox .contact-container .left form table tr td textarea {
    width: 100%;
    height: 1.5rem;
    margin-top: 0.15rem;
    background: #f5f5f5;
    border-radius: 0.1rem;
    padding: 0.2rem;
    font-size: 0.2rem;
    line-height: 0.25rem;
  }
  #contactBox .contact-container .left form table tr td button {
    width: 100%;
    height: auto;
    padding: 0.2rem 0.15rem;
    border-radius: 0.25rem;
    font-size: 0.2rem;
  }
  #contactBox .contact-container .right {
    margin-top: 0.25rem;
    width: 100%;
  }
  #contactBox .contact-container .right > p {
    font-size: 0.3rem;
  }
  #contactBox .contact-container .right > ul {
    margin-top: 0.25rem;
  }
  #contactBox .contact-container .right > ul li {
    width: 100%;
    margin-bottom: 0.25rem;
    padding-bottom: 0.3rem;
    border-bottom: 0.01rem solid #f1f1f1;
  }
  #contactBox .contact-container .right > ul li > span {
    width: 0.53rem;
    height: 0.53rem;
    font-size: 0.2rem;
  }
  #contactBox .contact-container .right > ul li > p {
    margin-left: 0.12rem;
  }
  #contactBox .contact-container .right > ul li > p > span {
    font-size: 0.18rem;
    margin-bottom: 0.1rem;
  }
  #contactBox .contact-container .right > ul li > p > a {
    font-size: 0.18rem;
  }
  #contactBox .contact-container .right > ul li > p > strong {
    font-size: 0.18rem;
  }
  #contactBox .contact-container .right > ul li > p > strong > a {
    font-size: 0.18rem;
    color: #707070;
  }
  #contactBox .contact-container .right > ul li > p > strong > a:not(:last-child) {
    margin-right: 0.15rem;
  }
  #contactBox .contact-container .right ol li span:first-child {
    font-size: 0.25rem;
  }
  #contactBox .contact-container .right ol li span:nth-child(2) {
    font-size: 0.25rem;
    margin-left: 0.1rem;
    margin-right: 0.15rem;
  }
  #contactBox .contact-container .right ol li span:last-child {
    font-size: 0.2rem;
  }
  #contactBox .contact-container .right ol li span:last-child a {
    font-size: 0.2rem;
  }
  #contactBox .contact-container .right .phone-tiktok {
    margin-top: 0.3rem;
  }
  #contactBox .contact-container .right .phone-tiktok .phone > p {
    font-size: 0.18rem;
    margin-bottom: 0.1rem;
  }
  #contactBox .contact-container .right .phone-tiktok .phone li {
    font-size: 0.2rem;
    line-height: 0.25rem;
  }
  #contactBox .contact-container .right .phone-tiktok .phone li a {
    font-size: 0.2rem;
    color: #666666;
    margin-left: 0.15rem;
  }
  #contactBox .contact-container .right .phone-tiktok .tiktok .left-image {
    width: 1.2rem;
    height: 1.2rem;
  }
  #contactBox .contact-container .right .phone-tiktok .tiktok .left-image img {
    width: 100%;
  }
  #contactBox .contact-container .right .phone-tiktok .tiktok .text {
    margin-left: 0.15rem;
  }
  #contactBox .contact-container .right .phone-tiktok .tiktok .text p {
    font-size: 0.18rem;
    line-height: 0.25rem;
  }
}
@media screen and (max-width: 767px) {
  #mediaShowBox .media-show-container .media-show-content .related-media > ul li {
    width: 100%;
    margin-bottom: 0.25rem;
  }
}
