header *,
main *,
footer * {
  transition: all 0.3s;
  -moz-transition: all 0.3s;
  /* Firefox 4 */
  -webkit-transition: all 0.3s;
  /* Safari 和 Chrome */
  -o-transition: all 0.3s;
  /* Opera */
}
.app-width {
  width: 1600px;
  margin: auto;
}
.app-flex {
  display: flex;
  justify-content: space-between;
}
.app-flex .flex-item {
  display: inline-block;
}
.fix-to-top {
  position: fixed;
  right: 60px;
  bottom: 100px;
  cursor: pointer;
  box-shadow: 0px 3px 5px #0000000f;
  z-index: 1;
  display: none;
  width: 60px;
  height: 60px;
}
.fix-to-top img {
  width: 100%;
  height: 100%;
}
.fix-to-top:hover {
  opacity: 0.7;
}
.fix-to-top.show {
  display: block;
}
.clear-float {
  content: "";
  display: block;
  visibility: hidden;
  clear: both;
}
.nav-wrapper {
  position: fixed;
  width: 100%;
  top: 0;
  height: 110px;
  background: rgba(0, 0, 0, 0.4);
  z-index: 1;
}
.nav-wrapper .logo {
  position: relative;
  top: 23px;
  width: 117px;
  float: left;
}
.nav-wrapper .logo img {
  width: 100%;
}
.nav-wrapper .nav-list {
  position: relative;
  top: 45px;
  height: 20px;
  float: right;
  line-height: 20px;
}
.nav-wrapper .nav-list .nav-item {
  width: 118px;
  float: left;
  position: relative;
  padding: 0 10px;
  text-align: center;
}
.nav-wrapper .nav-list .nav-item a {
  color: #a9a9a9ff;
  font-size: 18px;
  font-weight: 500;
  text-decoration: none;
  cursor: pointer;
}
.nav-wrapper .nav-list .nav-item .sub-list {
  position: absolute;
  width: 118px;
  left: 0px;
  padding-top: 44px;
  display: none;
}
.nav-wrapper .nav-list .nav-item .sub-list .sub-item {
  width: 100%;
  display: inline-block;
  height: 50px;
  line-height: 50px;
  background: rgba(0, 0, 0, 0.4);
  font-size: 14px;
}
.nav-wrapper .nav-list .nav-item .sub-list .sub-item:hover,
.nav-wrapper .nav-list .nav-item .sub-list .sub-item.active {
  color: #fff;
}
.nav-wrapper .nav-list .nav-item:hover .sub-list {
  display: block;
}
.nav-wrapper .nav-list .nav-item:hover > a {
  color: #fff;
}
.nav-wrapper .nav-list .nav-item.active > a {
  color: #fff;
}
.nav-wrapper .search-bar {
  position: relative;
  top: 42px;
  width: 190px;
  float: right;
  display: flex;
  justify-content: end;
}
.nav-wrapper .search-bar .search-input {
  width: 120px;
  float: left;
  margin-right: 8px;
}
.nav-wrapper .search-bar .search-input input {
  width: 100%;
  background: transparent;
  border: none;
  line-height: 24px;
  font-size: 14px;
  color: #fff;
}
.nav-wrapper .search-bar .search-input input::-webkit-input-placeholder {
  color: #A9A9A9FF;
}
.nav-wrapper .search-bar .search-input input:focus {
  border: none;
  outline: none;
}
.nav-wrapper .search-bar .search-btn {
  float: left;
  opacity: 0.5;
  cursor: pointer;
}
.nav-wrapper .search-bar .search-btn svg {
  width: 19px;
}
.nav-wrapper .search-bar .search-btn:hover {
  opacity: 1;
}
.nav-wrapper.blue {
  background: #0078ff;
  box-shadow: 0px 3px 5px #0000000f;
}
.nav-wrapper.blue .nav-list .nav-item a {
  color: rgba(255, 255, 255, 0.5);
}
.nav-wrapper.blue .nav-list .nav-item .sub-list .sub-item {
  background: #0078ff;
}
.nav-wrapper.blue .nav-list .nav-item:hover > a,
.nav-wrapper.blue .nav-list .nav-item.active > a {
  color: #ffffff;
}
.nav-wrapper.blue .search-bar .search-input input::-webkit-input-placeholder {
  color: rgba(255, 255, 255, 0.5);
}
.nav-wrapper-mobile {
  position: fixed;
  width: 100%;
  top: 0;
  height: 70px;
  background: #0078ff;
  z-index: 10;
  display: none;
}
.nav-wrapper-mobile .nav {
  position: absolute;
  width: 100%;
  height: 100%;
  top: 0;
}
.nav-wrapper-mobile .nav .logo {
  position: relative;
  width: 96px;
  height: 54px;
  top: 10px;
  left: 14px;
}
.nav-wrapper-mobile .nav .logo img {
  width: 100%;
  height: 100%;
}
.nav-wrapper-mobile .nav .nav-more {
  position: absolute;
  right: 12px;
  top: 16px;
  width: 40px;
  height: 40px;
  display: flex;
  justify-content: center;
  align-items: center;
  cursor: pointer;
}
.nav-wrapper-mobile .nav .nav-more svg {
  width: 30px;
}
.nav-wrapper-mobile .nav .nav-more .more {
  display: block;
}
.nav-wrapper-mobile .nav .nav-more .close {
  display: none;
}
.nav-wrapper-mobile .nav .nav-more.nav-close .more {
  display: none;
}
.nav-wrapper-mobile .nav .nav-more.nav-close .close {
  display: block;
}
.nav-wrapper-mobile .nav .nav-mask {
  display: none;
  background: rgba(53, 58, 77, 0.3);
  height: 1920px;
  width: 100%;
  position: relative;
  left: 0px;
  top: 50px;
}
.nav-wrapper-mobile .nav .nav-list {
  position: absolute;
  background: #fff;
  top: 70px;
  width: 100%;
  font-size: 14px;
  display: none;
  justify-content: space-between;
  flex-wrap: wrap;
}
.nav-wrapper-mobile .nav .nav-list .toggle-target {
  display: none;
}
.nav-wrapper-mobile .nav .nav-list .nav-item {
  position: relative;
  width: 50%;
  height: auto;
  line-height: 36px;
  text-align: left;
  padding: 0 15px;
  color: #353A42;
  margin-bottom: 20px;
}
.nav-wrapper-mobile .nav .nav-list .nav-item a {
  text-decoration: none;
  color: #000;
  font-weight: bold;
}
.nav-wrapper-mobile .nav .nav-list .nav-item > a {
  pointer-events: none;
}
.nav-wrapper-mobile .nav .nav-list .nav-item .sub-list .sub-item {
  font-weight: 300;
  margin-right: 12px;
}
.nav-wrapper-mobile .nav .nav-list .nav-item .sub-list .sub-item.active {
  color: #0078ff;
}
.header-wrapper {
  width: 100%;
  height: 750px;
  background-image: url("../image/header-bg.png");
  background-size: cover;
  background-position: center;
  color: #fff;
}
.header-wrapper .banner-wrapper {
  padding-top: 260px;
}
.header-wrapper .banner-wrapper .banner-title {
  font-size: 54px;
  line-height: 100px;
}
.header-wrapper .banner-wrapper .banner-jump {
  margin-top: 100px;
  display: flex;
  align-items: center;
  cursor: pointer;
  width: max-content;
  color: #fff;
  text-decoration: none;
}
.header-wrapper .banner-wrapper .banner-jump .jump-text {
  display: inline-block;
  font-size: 22px;
  line-height: 100px;
}
.header-wrapper .banner-wrapper .banner-jump .jump-icon {
  display: inline-block;
  position: relative;
  left: 20px;
  width: 30px;
  height: 30px;
  border-radius: 50%;
  background: #fff;
}
.header-wrapper .banner-wrapper .banner-jump .jump-icon svg {
  position: relative;
  left: 1px;
  top: 8px;
  width: 30px;
}
.header-wrapper .banner-wrapper .banner-jump:hover .jump-text {
  text-decoration: underline;
}
.header-wrapper .banner-wrapper .banner-jump:hover .jump-icon {
  left: 26px;
}
.banner-img-wrapper {
  width: 100%;
  height: 500px;
  background-position: center;
}
.banner-img-wrapper.company {
  background-image: url("../image/company-bg.png");
}
.banner-img-wrapper.quality {
  background-image: url("../image/quality-bg.png");
}
.banner-img-wrapper.product {
  background-image: url("../image/product-bg.png");
}
.banner-img-wrapper.technology {
  background-image: url("../image/technology-bg.png");
}
.banner-img-wrapper.news {
  background-image: url("../image/news-bg.png");
}
.banner-img-wrapper.join {
  background-image: url("../image/join-bg.png");
}
.banner-img-wrapper.contact {
  background-image: url("../image/contact-bg.png");
}
.banner-img-wrapper.app {
  background-image: url("../image/app-bg.png");
}
.content-wrapper {
  background: #f8f8f8;
  padding-top: 110px;
  padding-bottom: 100px;
}
.content-wrapper .content .left-box {
  width: 100%;
  float: left;
}
.content-wrapper .content .left-box .block-info {
  color: #333333;
  margin-bottom: 50px;
  float: left;
}
.content-wrapper .content .left-box .block-info .b-title {
  font-size: 24px;
  font-weight: bold;
  line-height: 18px;
  margin-bottom: 14px;
}
.content-wrapper .content .left-box .block-info .b-title-en {
  font-size: 16px;
  font-weight: bold;
  line-height: 18px;
  margin-bottom: 14px;
}
.content-wrapper .content .left-box .block-info .p-border {
  width: 20px;
  height: 4px;
  background: #0078ff;
}
.content-wrapper .content .left-box .nav-info {
  float: right;
}
.content-wrapper .content .right-box {
  width: 100%;
  height: 440px;
  float: right;
  background: #fff;
}
.content-wrapper .content .right-box .r-link {
  cursor: pointer;
  text-decoration: none;
}
.content-wrapper .content .right-box .r-link .desc {
  display: inline-block;
}
.content-wrapper .content .right-box .r-link .icon {
  position: relative;
  left: 9px;
  display: inline-block;
  width: 0;
  height: 0;
  border-top: 6px solid transparent;
  border-left: 10px solid #0078ff;
  border-bottom: 6px solid transparent;
}
.content-wrapper .content .right-box .r-link:hover .desc {
  text-decoration: underline;
}
.content-wrapper .content .right-box .r-link:hover .icon {
  left: 15px;
}
.content-wrapper .content .right-box .link-jump {
  width: 90px;
  display: flex;
  cursor: pointer;
  text-decoration: none;
}
.content-wrapper .content .right-box .link-jump .jump-text {
  font-size: 14px;
  font-weight: 500;
  color: #4D4D4D;
  line-height: 24px;
}
.content-wrapper .content .right-box .link-jump .jump-icon {
  position: relative;
  left: 10px;
}
.content-wrapper .content .right-box .link-jump:hover .jump-text {
  text-decoration: underline;
}
.content-wrapper .content .right-box .link-jump:hover .jump-icon {
  left: 16px;
}
.content-wrapper .content .link-info .link {
  position: relative;
  font-size: 14px;
  font-weight: 500;
  color: #4d4d4d;
  line-height: 24px;
  cursor: pointer;
  text-decoration: none;
}
.content-wrapper .content .link-info .link svg {
  position: relative;
  top: 7px;
  left: 0;
}
.content-wrapper .content .link-info .link:hover {
  text-decoration: underline;
}
.content-wrapper .content .link-info .link:hover svg {
  left: 7px;
}
.content-wrapper .content .link-info .border {
  width: 250px;
  height: 2px;
  background: #333333;
  margin-top: 24px;
}
.content-wrapper.dark {
  background: #27303b;
  color: #fff;
}
.content-wrapper.dark .left-box .block-info {
  color: #ffffffff;
}
.content-wrapper.dark .left-box .link-info .link {
  color: #ffffff;
}
.content-wrapper.dark .left-box .link-info .border {
  background: #999999;
}
.content-wrapper .about-us .right-box {
  height: auto;
  display: flex;
}
.content-wrapper .about-us .right-box .about-info {
  padding: 80px 72px;
  width: 40%;
}
.content-wrapper .about-us .right-box .about-info .title {
  width: 160px;
  height: 40px;
  border-bottom: 1px solid #e0e0e0ff;
  font-weight: bold;
  margin-bottom: 30px;
}
.content-wrapper .about-us .right-box .about-info .desc {
  font-size: 14px;
  font-weight: 500;
  color: #808080;
  margin-bottom: 45px;
  line-height: 30px;
  text-indent: 30px;
}
.content-wrapper .about-us .right-box .about-info .desc p {
  margin-bottom: 10px;
}
.content-wrapper .about-us .right-box .about-info .r-link {
  margin-bottom: 40px;
}
.content-wrapper .about-us .right-box .about-info .award-box {
  width: 100%;
  height: 104px;
  display: flex;
}
.content-wrapper .about-us .right-box .about-info .award-box .award-item {
  margin-right: 36px;
}
.content-wrapper .about-us .right-box .about-info .award-box .award-item .item-count {
  width: 70px;
  height: 70px;
  background: url("../image/about-award-item-bg.png");
  font-size: 30px;
  font-weight: bold;
  color: #011935;
  line-height: 70px;
  text-align: center;
  margin-bottom: 20px;
}
.content-wrapper .about-us .right-box .about-info .award-box .award-item .item-desc {
  width: 70px;
  text-align: center;
  font-size: 16px;
  font-weight: 500;
  color: #333333;
  line-height: 24px;
}
.content-wrapper .about-us .right-box .about-info .award-box .award-item-border {
  height: 70px;
  display: flex;
  align-items: center;
  margin-right: 36px;
}
.content-wrapper .about-us .right-box .about-pic {
  width: 60%;
}
.content-wrapper .about-us .right-box .about-pic img {
  width: 100%;
}
.content-wrapper .product-center .right-box .p-list {
  float: left;
  width: 30%;
  height: 100%;
  padding-top: 60px;
  padding-bottom: 60px;
  padding-left: 50px;
}
.content-wrapper .product-center .right-box .p-list .p-item {
  position: relative;
  height: 70px;
  border-left: 4px dotted #e0e0e0ff;
  margin-bottom: 5px;
  padding-left: 16px;
}
.content-wrapper .product-center .right-box .p-list .p-item .circle {
  position: absolute;
  width: 10px;
  height: 10px;
  left: -7px;
  top: 2px;
  border-radius: 50%;
  background: #fff;
  outline: 2px solid #e0e0e0ff;
}
.content-wrapper .product-center .right-box .p-list .p-item:last-child {
  border-left: 4px dotted #fff;
}
.content-wrapper .product-center .right-box .p-list .p-item.active .circle {
  outline: 2px solid #0078ffff;
}
.content-wrapper .product-center .right-box .p-list .p-item.active:before {
  content: "";
  position: absolute;
  right: 0px;
  top: 0px;
  width: 0;
  height: 0;
  border-top: 8px solid transparent;
  border-right: 8px solid #0078ffff;
  border-left: 8px solid transparent;
  border-bottom: 8px solid transparent;
}
.content-wrapper .product-center .right-box .p-info {
  float: left;
  width: 70%;
  height: 100%;
  background: url("../image/product-info01.png");
  padding: 50px 78px;
}
.content-wrapper .product-center .right-box .p-info .title {
  font-size: 20px;
  font-weight: bold;
  color: #333333;
  line-height: 18px;
  margin-bottom: 52px;
}
.content-wrapper .product-center .right-box .p-info .desc {
  font-size: 14px;
  font-weight: 500;
  line-height: 24px;
  color: #666666;
  margin-bottom: 34px;
}
.content-wrapper .news-center .left-box .nav-info {
  margin-bottom: 134px;
}
.content-wrapper .news-center .right-box {
  height: 428px;
  background: transparent;
}
.content-wrapper .news-center .right-box .news-list {
  display: flex;
  justify-content: space-between;
}
.content-wrapper .news-center .right-box .news-list .news-item {
  width: 380px;
  height: 428px;
  background: #fff;
}
.content-wrapper .news-center .right-box .news-list .news-item .news-cover {
  width: 100%;
  height: 214px;
  overflow: hidden;
}
.content-wrapper .news-center .right-box .news-list .news-item .news-cover img {
  width: 100%;
}
.content-wrapper .news-center .right-box .news-list .news-item .news-info {
  padding: 46px 38px 0 38px;
  display: flex;
  justify-content: space-between;
  margin-bottom: 20px;
}
.content-wrapper .news-center .right-box .news-list .news-item .news-info .info-title {
  width: 216px;
  font-size: 16px;
  font-weight: 500;
  color: #1a1a1a;
  line-height: 28px;
}
.content-wrapper .news-center .right-box .news-list .news-item .news-info .info-date {
  width: 90px;
  text-align: right;
}
.content-wrapper .news-center .right-box .news-list .news-item .news-info .info-date .date-day {
  width: 100%;
  font-size: 32px;
  font-weight: bold;
  color: #011935;
  line-height: 30px;
}
.content-wrapper .news-center .right-box .news-list .news-item .news-info .info-date .date-ym {
  font-size: 14px;
  font-weight: 500;
  color: #999999;
  line-height: 30px;
}
.content-wrapper .news-center .right-box .news-list .news-item .news-border {
  width: 300px;
  height: 1px;
  background: #ebebeb;
  margin: auto;
}
.content-wrapper .news-center .right-box .news-list .news-item .news-link {
  height: 84px;
  padding: 0 38px;
  display: flex;
  align-items: center;
  justify-content: space-between;
}
.content-wrapper .news-center .right-box .news-list .news-item .news-link .link-zs {
  width: 20px;
  height: 3px;
  background: #00343f;
}
.content-wrapper .join-us .right-box {
  width: 1100px;
  height: 460px;
  background: red;
  position: relative;
  background: url("../image/home-join-us-bg.png");
}
.content-wrapper .join-us .right-box .join-info {
  position: absolute;
  width: 600px;
  height: 216px;
  bottom: 0;
  left: 0;
  background: #fff;
  padding: 40px;
}
.content-wrapper .join-us .right-box .join-info .info-title {
  font-size: 20px;
  font-weight: bold;
  color: #333333;
  line-height: 18px;
  margin-bottom: 20px;
}
.content-wrapper .join-us .right-box .join-info .info-border {
  width: 160px;
  height: 1px;
  background: #e0e0e0;
  margin-bottom: 30px;
}
.content-wrapper .join-us .right-box .join-info .info-desc {
  font-size: 14px;
  font-weight: 500;
  color: #808080;
  line-height: 24px;
  margin-bottom: 30px;
}
.home-block-wrapper {
  padding: 110px 0 150px 0;
  background: #F8F8F8FF;
}
.home-block-wrapper .block-content .block-info {
  display: flex;
  justify-content: space-between;
}
.home-block-wrapper .block-content .block-info .block-nav {
  color: #333333;
  margin-bottom: 50px;
}
.home-block-wrapper .block-content .block-info .block-nav .b-title {
  font-size: 24px;
  font-weight: bold;
  line-height: 18px;
  margin-bottom: 14px;
}
.home-block-wrapper .block-content .block-info .block-nav .b-title-en {
  font-size: 16px;
  font-weight: bold;
  line-height: 18px;
  margin-bottom: 14px;
}
.home-block-wrapper .block-content .block-info .block-nav .p-border {
  width: 20px;
  height: 4px;
  background: #0078ff;
}
.home-block-wrapper .block-content .link-info {
  margin-top: 100px;
}
.home-block-wrapper .block-content .link-info .link {
  position: relative;
  font-size: 14px;
  font-weight: 500;
  color: #4d4d4d;
  line-height: 24px;
  cursor: pointer;
  text-decoration: none;
}
.home-block-wrapper .block-content .link-info .link svg {
  position: relative;
  top: 7px;
  left: 0;
}
.home-block-wrapper .block-content .link-info .link:hover {
  text-decoration: underline;
}
.home-block-wrapper .block-content .link-info .link:hover svg {
  left: 7px;
}
.home-block-wrapper .block-content .link-info .border {
  width: 250px;
  height: 2px;
  background: #333333;
  margin-top: 24px;
}
.home-block-wrapper.about-us .block-content .about-info {
  background: #fff;
  display: flex;
}
.home-block-wrapper.about-us .block-content .about-info .left {
  padding: 80px 72px;
  width: 40%;
  background: #fff;
}
.home-block-wrapper.about-us .block-content .about-info .left .title {
  width: 160px;
  height: 40px;
  border-bottom: 1px solid #e0e0e0ff;
  font-weight: bold;
  margin-bottom: 30px;
}
.home-block-wrapper.about-us .block-content .about-info .left .desc {
  font-size: 14px;
  font-weight: 500;
  color: #808080;
  margin-bottom: 45px;
  line-height: 30px;
  text-indent: 30px;
}
.home-block-wrapper.about-us .block-content .about-info .left .desc p {
  margin-bottom: 10px;
  word-break: break-all;
}
.home-block-wrapper.about-us .block-content .about-info .left .r-link {
  margin-bottom: 40px;
}
.home-block-wrapper.about-us .block-content .about-info .left .award-box {
  width: 100%;
  height: 104px;
  display: flex;
}
.home-block-wrapper.about-us .block-content .about-info .left .award-box .award-item {
  margin-right: 36px;
}
.home-block-wrapper.about-us .block-content .about-info .left .award-box .award-item .item-count {
  width: 70px;
  height: 70px;
  background-image: url("../image/about-award-item-bg.png");
  background-position: center;
  background-size: cover;
  font-size: 30px;
  font-weight: bold;
  color: #011935;
  line-height: 70px;
  text-align: center;
  margin-bottom: 20px;
}
.home-block-wrapper.about-us .block-content .about-info .left .award-box .award-item .item-desc {
  width: 100%;
  text-align: center;
  font-size: 16px;
  font-weight: 500;
  color: #333333;
  line-height: 24px;
}
.home-block-wrapper.about-us .block-content .about-info .left .award-box .award-item-border {
  height: 70px;
  display: flex;
  align-items: center;
  margin-right: 36px;
}
.home-block-wrapper.about-us .block-content .about-info .right {
  width: 60%;
  background-image: url("../image/home-about-pic.png");
  background-position: center;
  background-size: cover;
}
.home-block-wrapper.product-center {
  background: #fff;
}
.home-block-wrapper.product-center .block-content .product-box {
  background: #f8f8f8ff;
  display: flex;
}
.home-block-wrapper.product-center .block-content .product-box .p-list {
  width: 30%;
  background: #f8f8f8ff;
  display: none;
}
.home-block-wrapper.product-center .block-content .product-box .p-list .p-wrapper {
  width: 100%;
  height: 380px;
  padding-top: 30px;
  padding-left: 50px;
}
.home-block-wrapper.product-center .block-content .product-box .p-list .p-item {
  position: relative;
  height: 96px;
  border-left: 4px dotted #e0e0e0ff;
  margin-bottom: 5px;
  padding-left: 16px;
  cursor: pointer;
}
.home-block-wrapper.product-center .block-content .product-box .p-list .p-item .circle {
  position: absolute;
  width: 22px;
  height: 22px;
  left: -13px;
  top: -1px;
  border-radius: 50%;
  background: #f8f8f8;
  border: 4px solid #e0e0e0ff;
}
.home-block-wrapper.product-center .block-content .product-box .p-list .p-item:last-child {
  height: 45px;
  border-left: 4px dotted #fff0;
}
.home-block-wrapper.product-center .block-content .product-box .p-list .p-item.active .circle {
  border: 4px solid #0078ffff;
}
.home-block-wrapper.product-center .block-content .product-box .p-list.active {
  display: block;
}
.home-block-wrapper.product-center .block-content .product-box .p-info {
  width: 70%;
  background-image: url("../image/product-info01.png");
  background-size: cover;
  background-position: center;
  padding: 50px 78px;
  display: none;
}
.home-block-wrapper.product-center .block-content .product-box .p-info.active {
  display: block;
}
.home-block-wrapper.product-center .block-content .product-box .p-info .title {
  font-size: 20px;
  font-weight: bold;
  color: #333333;
  line-height: 18px;
  margin-bottom: 52px;
}
.home-block-wrapper.product-center .block-content .product-box .p-info .desc {
  font-size: 14px;
  font-weight: 500;
  line-height: 24px;
  color: #666666;
  margin-bottom: 34px;
}
.home-block-wrapper.news-center {
  background: #27303BFF;
}
.home-block-wrapper.news-center .block-content .block-info .block-nav {
  color: #fff;
}
.home-block-wrapper.news-center .block-content .news-box .news-list {
  display: flex;
  justify-content: space-between;
  flex-wrap: wrap;
}
.home-block-wrapper.news-center .block-content .news-box .news-list .news-item {
  width: 380px;
  height: 428px;
  background: #fff;
  margin-bottom: 26px;
  display: none;
}
.home-block-wrapper.news-center .block-content .news-box .news-list .news-item .news-cover {
  width: 100%;
  height: 214px;
  overflow: hidden;
}
.home-block-wrapper.news-center .block-content .news-box .news-list .news-item .news-cover img {
  width: 100%;
}
.home-block-wrapper.news-center .block-content .news-box .news-list .news-item .news-info {
  padding: 46px 38px 0 38px;
  display: flex;
  justify-content: space-between;
  margin-bottom: 20px;
}
.home-block-wrapper.news-center .block-content .news-box .news-list .news-item .news-info .info-title {
  width: 216px;
  font-size: 16px;
  font-weight: 500;
  color: #1a1a1a;
  line-height: 28px;
}
.home-block-wrapper.news-center .block-content .news-box .news-list .news-item .news-info .info-date {
  width: 90px;
  text-align: right;
}
.home-block-wrapper.news-center .block-content .news-box .news-list .news-item .news-info .info-date .date-day {
  width: 100%;
  font-size: 32px;
  font-weight: bold;
  color: #011935;
  line-height: 30px;
}
.home-block-wrapper.news-center .block-content .news-box .news-list .news-item .news-info .info-date .date-ym {
  font-size: 14px;
  font-weight: 500;
  color: #999999;
  line-height: 30px;
}
.home-block-wrapper.news-center .block-content .news-box .news-list .news-item .news-border {
  width: 300px;
  height: 1px;
  background: #ebebeb;
  margin: auto;
}
.home-block-wrapper.news-center .block-content .news-box .news-list .news-item .news-link {
  height: 84px;
  padding: 0 38px;
  display: flex;
  align-items: center;
  justify-content: space-between;
}
.home-block-wrapper.news-center .block-content .news-box .news-list .news-item.active {
  display: block;
}
.home-block-wrapper.news-center .block-content .link-info {
  margin-top: 74px;
}
.home-block-wrapper.news-center .block-content .link-info .link {
  color: #fff;
}
.home-block-wrapper.join-us {
  background: #f8f8f8ff;
}
.home-block-wrapper.join-us .block-content .join-box {
  width: 100%;
  height: 672px;
  position: relative;
  background-image: url("../image/home-join-us-bg.png");
  background-position: center;
  background-size: cover;
}
.home-block-wrapper.join-us .block-content .join-box .join-info {
  position: absolute;
  width: 54%;
  height: 320px;
  bottom: 0;
  left: 0;
  background: #fff;
  padding: 60px 50px;
}
.home-block-wrapper.join-us .block-content .join-box .join-info .info-title {
  font-size: 20px;
  font-weight: bold;
  color: #333333;
  line-height: 18px;
  margin-bottom: 32px;
}
.home-block-wrapper.join-us .block-content .join-box .join-info .info-border {
  width: 160px;
  height: 1px;
  background: #e0e0e0;
  margin-bottom: 36px;
}
.home-block-wrapper.join-us .block-content .join-box .join-info .info-desc {
  font-size: 14px;
  font-weight: 500;
  color: #808080;
  line-height: 24px;
  margin-bottom: 80px;
}
.content-border {
  width: 100%;
  height: 10px;
  background: #f8f8f8;
}
.content-border img {
  width: 100%;
  height: 100%;
}
.footer-wrapper {
  width: 100%;
  padding-top: 80px;
  background: #fff;
}
.footer-wrapper .nav-list {
  display: flex;
  justify-content: left;
  margin-bottom: 150px;
}
.footer-wrapper .nav-list .nav-item {
  width: 100px;
  margin-right: 40px;
}
.footer-wrapper .nav-list .nav-item .nav-main {
  display: inline-block;
  font-size: 16px;
  font-weight: bold;
  color: #333333;
  line-height: 18px;
  margin-bottom: 20px;
  text-decoration: none;
}
.footer-wrapper .nav-list .nav-item .nav-main:hover {
  text-decoration: underline;
}
.footer-wrapper .nav-list .nav-item .nav-border {
  width: 100%;
  height: 1px;
  background: #e0e0e0;
  margin-bottom: 20px;
}
.footer-wrapper .nav-list .nav-item .nav-sub {
  display: block;
  width: 100%;
  font-size: 14px;
  font-weight: 500;
  color: #808080;
  line-height: 28px;
  cursor: pointer;
  text-decoration: none;
}
.footer-wrapper .nav-list .nav-item .nav-sub:hover {
  text-decoration: underline;
}
.footer-wrapper .contact-list {
  display: flex;
  justify-content: right;
  margin-bottom: 60px;
}
.footer-wrapper .contact-list .contact-item {
  width: 50px;
  height: 50px;
  position: relative;
  margin-right: 54px;
  cursor: pointer;
}
.footer-wrapper .contact-list .contact-item .icon {
  width: 50px;
  height: 50px;
}
.footer-wrapper .contact-list .contact-item .icon img {
  width: 100%;
}
.footer-wrapper .contact-list .contact-item .qr-code {
  display: none;
  position: absolute;
  bottom: 70px;
  left: -64px;
  width: 180px;
  height: 180px;
  background: #FFFFFF;
  box-shadow: 0px 0px 16px 0px #6a6a6a3b;
  padding: 10px;
}
.footer-wrapper .contact-list .contact-item .qr-code img {
  width: 160px;
  height: 160px;
}
.footer-wrapper .contact-list .contact-item .text {
  width: 200px;
  height: auto;
  line-height: 60px;
  text-align: center;
}
.footer-wrapper .contact-list .contact-item .text p {
  font-size: 16px;
  color: #333333;
  height: 40px;
  line-height: 40px;
}
.footer-wrapper .contact-list .contact-item .text.telephone {
  width: 200px;
  left: calc(25px - 100px);
}
.footer-wrapper .contact-list .contact-item .text.address {
  width: 444px;
  left: calc(25px - 222px);
}
.footer-wrapper .contact-list .contact-item .text.email {
  width: 300px;
  left: calc(25px - 200px);
}
.footer-wrapper .contact-list .contact-item:hover .icon {
  opacity: 0.7;
}
.footer-wrapper .contact-list .contact-item:hover .qr-code {
  display: block;
}
.footer-wrapper .copy-right {
  font-size: 14px;
  font-weight: 500;
  text-align: center;
  margin-bottom: 30px;
}
.footer-wrapper .copy-right a {
  color: #808080;
  text-decoration: none;
}
.footer-wrapper .copy-right a:hover {
  text-decoration: underline;
}
.c-block-info {
  color: #333333;
  margin-bottom: 50px;
}
.c-block-info .b-title {
  font-size: 24px;
  font-weight: bold;
  line-height: 18px;
  margin-bottom: 14px;
}
.c-block-info .b-title-en {
  font-size: 16px;
  font-weight: bold;
  line-height: 18px;
  margin-bottom: 14px;
}
.c-block-info .p-border {
  width: 20px;
  height: 4px;
  background: #0078ff;
}
.c-block-info .block-nav {
  margin-bottom: 50px;
}
.c-block-info.c-block-info-dark .block-nav {
  color: #fff;
}
.c-main-padding {
  padding-top: 100px;
  padding-bottom: 150px;
}
.c-nav-list {
  display: flex;
}
.c-nav-list .nav-item {
  position: relative;
  width: 260px;
  height: 60px;
  line-height: 60px;
  background: #fff;
  cursor: pointer;
  margin-right: 10px;
  text-align: center;
  outline: 1px solid #BBBBBB;
}
.c-nav-list .nav-item.active {
  color: #fff;
  background: #0078ff;
  outline: 1px solid #0078ff;
}
.c-nav-list .nav-item:last-child {
  margin-right: 0;
}
.c-nav-list-vertical .nav-item {
  position: relative;
  width: 260px;
  height: 60px;
  line-height: 60px;
  background: #fff;
  cursor: pointer;
  margin-right: 10px;
  text-align: center;
}
.c-nav-list-vertical .nav-item .n-icon {
  position: absolute;
  left: 20px;
  top: 26px;
  width: 6px;
  height: 6px;
  background: #e0e0e0ff;
}
.c-nav-list-vertical .nav-item .n-text {
  text-align: left;
  text-indent: 70px;
}
.c-nav-list-vertical .nav-item.active {
  color: #fff;
  background: #0078ff;
}
.c-nav-list-vertical .nav-item.active .n-icon {
  background: #fff;
}
.c-nav-list-vertical .nav-item.active:after {
  content: "";
  position: absolute;
  right: -20px;
  top: 20px;
  width: 0;
  height: 0;
  border-top: 10px solid transparent;
  border-left: 10px solid #0078ff;
  border-right: 10px solid transparent;
  border-bottom: 10px solid transparent;
}
.c-nav-list-vertical .nav-item:last-child {
  margin-right: 0;
}
.c-form {
  width: 100%;
}
.c-form .input-block {
  width: 100%;
  height: 60px;
  display: flex;
  justify-content: space-between;
  margin-bottom: 36px;
}
.c-form .input-block .label {
  width: 20%;
  height: 100%;
  font-size: 16px;
  font-weight: bold;
  color: #333333;
  line-height: 60px;
}
.c-form .input-block .input {
  width: 80%;
  height: 100%;
  background: #f8f8f8ff;
  outline: none;
  border: none;
  padding: 23px 26px;
  font-size: 14px;
  font-weight: 500;
  color: #333333;
  line-height: 30px;
}
.c-form .input-block .input:focus {
  outline: 1px solid #0078FFFF;
}
.c-form .input-block .btn {
  width: 80%;
  background: #0078FFFF;
  font-size: 16px;
  font-weight: bold;
  color: #FFFFFF;
  line-height: 60px;
  cursor: pointer;
  text-align: center;
}
.c-form .input-block .btn:hover {
  opacity: 0.7;
}
.c-form .textarea-block {
  width: 100%;
  height: 140px;
  display: flex;
  justify-content: space-between;
  margin-bottom: 36px;
}
.c-form .textarea-block .label {
  width: 20%;
  height: 100%;
  font-size: 16px;
  font-weight: bold;
  color: #333333;
  line-height: 24px;
}
.c-form .textarea-block .textarea {
  width: 80%;
  height: 100%;
  background: #f8f8f8ff;
  outline: none;
  border: none;
  padding: 22px 25px;
  font-size: 14px;
  font-weight: 500;
  color: #333333;
  line-height: 30px;
}
.c-form .textarea-block .textarea:focus {
  outline: 1px solid #0078FFFF;
}
.c-link-jump {
  width: 90px;
  display: flex;
  cursor: pointer;
  text-decoration: none;
}
.c-link-jump .jump-text {
  font-size: 14px;
  font-weight: 500;
  color: #4D4D4D;
  line-height: 24px;
}
.c-link-jump .jump-icon {
  position: relative;
  left: 10px;
}
.c-link-jump:hover .jump-text {
  text-decoration: underline;
}
.c-link-jump:hover .jump-icon {
  left: 16px;
}
.c-swiper {
  width: 100%;
  z-index: 0;
}
.c-swiper .swiper-wrapper .swiper-slide img {
  display: block;
  width: 100%;
  height: 100%;
  object-fit: cover;
}
.c-swiper .swiper-pagination {
  bottom: 50px;
}
.c-swiper .swiper-pagination .swiper-pagination-bullet {
  width: 24px;
  height: 6px;
  background: #fff;
  border-radius: 0;
  opacity: 1;
  margin: 0 13px;
}
.c-swiper .swiper-pagination .swiper-pagination-bullet-active {
  background: #0078ff;
}
.common-comp-pages {
  display: none;
  margin-top: 60px;
  margin-bottom: 0px;
}
.common-comp-pages .pgae-list {
  width: fit-content;
  height: 40px;
  margin: auto;
  display: flex;
  justify-content: space-between;
}
.common-comp-pages .pgae-list .page-item {
  width: 50px;
  height: 50px;
  line-height: 50px;
  text-align: center;
  cursor: pointer;
  font-size: 20px;
  font-weight: 500;
  display: inline-block;
  margin: 0 2px;
  color: #585858;
}
.common-comp-pages .pgae-list .page-item.num:hover,
.common-comp-pages .pgae-list .page-item.num.current {
  color: #0078ff;
}
.common-comp-pages .pgae-list .page-item.pre-next {
  display: flex;
  align-items: center;
  width: 80px;
}
.common-comp-pages .pgae-list .page-item.pre-next svg {
  width: 100%;
}
.common-comp-pages .pgae-list .page-item.pre-next:hover svg .bg {
  fill: #0078ff;
}
.common-comp-pages .pgae-list .page-item.pre-next:hover svg .ln {
  fill: #fff;
}
.common-comp-pages .pgae-list .page-item.pre-next.disabled {
  pointer-events: none;
}
.c-page-data {
  display: none;
}
.c-box-info {
  width: 100%;
}
.c-box-info .b-title {
  font-size: 20px;
  font-weight: bold;
  color: #333333;
  margin-bottom: 18px;
}
.c-box-info .b-border {
  width: 81px;
  height: 1px;
  background: #E0E0E0;
  margin-bottom: 30px;
}
.c-box-info .b-desc {
  font-size: 14px;
  font-weight: 500;
  color: #333333;
  line-height: 30px;
}
.c-page-empty {
  width: 100%;
  height: 100%;
  display: flex;
  flex-wrap: wrap;
  padding: 40px 0 60px;
}
.c-page-empty .icon {
  width: 100%;
  height: auto;
  display: flex;
  justify-content: space-around;
  margin-bottom: 50px;
}
.c-page-empty .icon img {
  width: 240px;
}
.c-page-empty .tip {
  width: 100%;
  text-align: center;
  font-size: 20px;
  color: #bababa;
}
.merge-nav-list {
  margin-bottom: 50px;
}
.page-company {
  background: #f8f8f8ff;
}
.page-company .page-box {
  display: flex;
  background: #fff;
}
.page-company .page-box .box-left {
  width: 47.5%;
  padding: 40px;
}
.page-company .page-box .box-left .title {
  font-size: 20px;
  font-weight: bold;
  color: #333333;
  line-height: 18px;
  margin-bottom: 20px;
}
.page-company .page-box .box-left .border {
  width: 160px;
  height: 1px;
  background: #e0e0e0;
  margin-bottom: 40px;
}
.page-company .page-box .box-left .desc {
  font-size: 15px;
  font-weight: 500;
  color: #808080;
  line-height: 32px;
  text-indent: 30px;
}
.page-company .page-box .box-left .desc p {
  margin-bottom: 12px;
}
.page-company .page-box .box-right {
  width: 42.5%;
}
.page-honor .page-nav {
  margin-bottom: 60px;
}
.page-honor .page-box {
  width: 100%;
}
.page-honor .page-box .honor-list {
  display: flex;
}
.page-honor .page-box .honor-list .honor-item {
  width: 30%;
  height: 580px;
  max-width: 340px;
  margin-bottom: 40px;
  text-align: center;
}
.page-honor .page-box .honor-list .honor-item .img {
  margin-bottom: 46px;
  height: 444px;
  display: flex;
  align-items: center;
}
.page-honor .page-box .honor-list .honor-item .img img {
  width: 100%;
  outline: 10px solid #333333;
}
.page-honor .page-box .honor-list .honor-item .title {
  font-size: 16px;
  font-weight: bold;
  color: #333333;
  margin-bottom: 16px;
  line-height: 24px;
}
.page-honor .page-box .honor-list .honor-item .border {
  width: 81px;
  height: 1px;
  background: #e0e0e0;
  margin: auto;
  margin-bottom: 26px;
}
.page-honor .page-box .honor-list .honor-item .desc {
  font-size: 20px;
  font-weight: 500;
  color: #333333;
  line-height: 30px;
}
.page-honor .common-comp-pages {
  margin-top: 20px;
}
.page-culture {
  background: #f8f8f8ff;
}
.page-culture .page-box {
  display: flex;
  justify-content: space-between;
}
.page-culture .page-box .box-left {
  width: 30%;
}
.page-culture .page-box .box-right {
  width: 70%;
  background: #fff;
  display: none;
}
.page-culture .page-box .box-right .img {
  width: 100%;
}
.page-culture .page-box .box-right .img img {
  width: 100%;
}
.page-culture .page-box .box-right .img .culture-bg {
  width: 100%;
  height: 560px;
  background: red;
}
.page-culture .page-box .box-right .c-swiper .swiper-wrapper .swiper-slide .culture-bg {
  width: 100%;
  height: 560px;
  background-size: cover;
  background-position: center;
}
.page-culture .page-box .box-right .c-swiper .swiper-wrapper .swiper-slide .culture-img {
  width: 100%;
  height: 560px;
}
.page-culture .page-box .box-right .box-info {
  padding: 46px 60px 62px 60px;
}
.page-culture .page-box .box-right.active {
  display: block;
}
.page-quality-management {
  background: #f8f8f8ff;
}
.page-quality-management .page-box {
  background: #fff;
  display: flex;
}
.page-quality-management .page-box .box-left {
  width: 47.5%;
  padding: 60px 80px;
}
.page-quality-management .page-box .box-left .title {
  font-size: 20px;
  font-weight: bold;
  color: #333333;
  line-height: 18px;
  margin-bottom: 20px;
}
.page-quality-management .page-box .box-left .border {
  width: 111px;
  height: 1px;
  background: #E0E0E0;
  margin-bottom: 19px;
}
.page-quality-management .page-box .box-left .desc {
  font-size: 15px;
  font-weight: 500;
  color: #808080;
  line-height: 32px;
  margin-bottom: 63px;
}
.page-quality-management .page-box .box-right {
  width: 52.5%;
  position: relative;
  background-image: url("../image/quality-management-info-bg.png");
  background-position: center;
  background-size: cover;
}
.page-quality-certification .page-box {
  background: #fff;
}
.page-quality-certification .page-box .box-right {
  width: 100%;
  position: relative;
  bottom: -10px;
}
.page-quality-certification .page-box .box-right .img-list {
  display: flex;
  justify-content: space-around;
}
.page-quality-certification .page-box .box-right .img-list .img-item {
  width: 30%;
  max-width: 400px;
}
.page-quality-certification .page-box .box-right .img-list .img-item > img {
  width: 100%;
  outline: 10px solid #333333;
}
.page-quality-certification .page-box .box-right .img-list .img-item .img-desktop {
  display: none;
}
.page-quality-certification .page-box .box-desktop {
  width: 100%;
}
.page-quality-certification .page-box .box-desktop img {
  width: 100%;
}
.page-product-classification .product-classification {
  display: flex;
  margin-bottom: 50px;
}
.page-product-classification .product-classification .classification-item {
  width: 220px;
  height: 50px;
  outline: 1px solid #BBBBBB;
  font-size: 16px;
  font-weight: 500;
  color: #808080;
  line-height: 50px;
  text-align: center;
  margin-right: 10px;
  cursor: pointer;
}
.page-product-classification .product-classification .classification-item.active {
  color: #fff;
  background: #0078ff;
  outline: 1px solid #0078ff;
}
.page-product-classification .page-box .tb-item {
  width: 100%;
  display: flex;
}
.page-product-classification .page-box .tb-item .c-item {
  width: 10%;
  border-left: 1px solid #000;
  border-top: 1px solid #000;
  text-align: center;
  min-height: 40px;
  display: flex;
  justify-content: center;
  align-items: center;
  color: #333333;
  line-height: 24px;
  padding: 20px;
}
.page-product-classification .page-box .tb-item .c-item:last-child {
  border-right: 1px solid #000;
}
.page-product-classification .page-box .tb-item .c-item.ci1 {
  width: 5%;
}
.page-product-classification .page-box .tb-item .c-item.ci4 {
  width: 20%;
}
.page-product-classification .page-box .tb-item .c-item.ci5 {
  width: 12%;
}
.page-product-classification .page-box .tb-item .c-item.ci6 {
  width: 8%;
}
.page-product-classification .page-box .tb-item .c-item.ci7 {
  width: 14%;
}
.page-product-classification .page-box .tb-item .c-item.ci8 {
  width: 25%;
}
.page-product-classification .page-box .tb-item.tb-head .c-item {
  background: #D9D9D9;
  font-weight: bold;
}
.page-product-classification .page-box .tb-item:last-child {
  border-bottom: 1px solid #000;
}
.page-product-classification .common-comp-pages {
  margin-top: 60px;
}
.page-equipment-support .page-box .equipment-list {
  display: flex;
  flex-wrap: wrap;
  justify-content: space-around;
}
.page-equipment-support .page-box .equipment-list .equipment-item {
  width: 350px;
  height: 350px;
  margin-bottom: 0px;
}
.page-equipment-support .page-box .equipment-list .equipment-item .cover {
  width: 100%;
  display: flex;
  justify-content: center;
  margin-bottom: 18px;
}
.page-equipment-support .page-box .equipment-list .equipment-item .cover img {
  width: 220px;
  height: 220px;
}
.page-equipment-support .page-box .equipment-list .equipment-item .name {
  width: 100%;
  text-align: center;
  font-size: 18px;
  font-weight: bold;
  color: #333333;
  line-height: 18px;
}
.page-process-technology .page-box img {
  width: 100%;
}
.page-technology-process .page-box .box-right {
  width: 90%;
  margin: auto;
}
.page-technology-process .page-box .box-right img {
  width: 100%;
}
.page-news-industry {
  background: #f8f8f8ff;
}
.page-news-industry .page-box .news-list .news-item {
  width: 100%;
  height: 200px;
  display: flex;
  justify-content: space-between;
  margin-bottom: 30px;
}
.page-news-industry .page-box .news-list .news-item .date {
  width: 200px;
  padding-top: 52px;
}
.page-news-industry .page-box .news-list .news-item .date .day {
  width: 100%;
  text-align: center;
  font-size: 60px;
  font-weight: 400;
  color: #cfcfcf;
  line-height: 30px;
  margin-bottom: 30px;
}
.page-news-industry .page-box .news-list .news-item .date .ym {
  font-size: 30px;
  font-weight: 400;
  color: #CFCFCF;
  line-height: 30px;
  text-align: left;
}
.page-news-industry .page-box .news-list .news-item .info {
  width: calc(100% - 200px);
  display: flex;
  justify-content: start;
  background: #fff;
}
.page-news-industry .page-box .news-list .news-item .info .cover {
  height: 100%;
}
.page-news-industry .page-box .news-list .news-item .info .cover img {
  width: 270px;
  height: 200px;
}
.page-news-industry .page-box .news-list .news-item .info .preview {
  padding: 32px 50px;
}
.page-news-industry .page-box .news-list .news-item .info .preview .title {
  font-size: 20px;
  font-weight: bold;
  color: #333333;
  line-height: 18px;
  margin-bottom: 13px;
}
.page-news-industry .page-box .news-list .news-item .info .preview .border {
  width: 80px;
  height: 1px;
  background: #e0e0e0;
  margin-bottom: 13px;
}
.page-news-industry .page-box .news-list .news-item .info .preview .editor {
  font-size: 14px;
  font-weight: 500;
  color: #999999;
  line-height: 30px;
  margin-bottom: 50px;
}
.page-news-industry .page-box .news-list .news-item .info .preview .link-jump {
  width: 90px;
  display: flex;
  cursor: pointer;
  text-decoration: none;
}
.page-news-industry .page-box .news-list .news-item .info .preview .link-jump .jump-text {
  font-size: 14px;
  font-weight: 500;
  color: #4D4D4D;
  line-height: 24px;
}
.page-news-industry .page-box .news-list .news-item .info .preview .link-jump .jump-icon {
  position: relative;
  left: 10px;
}
.page-news-industry .page-box .news-list .news-item .info .preview .link-jump:hover .jump-text {
  text-decoration: underline;
}
.page-news-industry .page-box .news-list .news-item .info .preview .link-jump:hover .jump-icon {
  left: 16px;
}
.page-news-industry .page-box .news-list-m {
  display: none;
}
.page-corporate-welfare {
  background: #f8f8f8ff;
}
.page-corporate-welfare .page-box {
  background: #fff;
  display: flex;
  justify-content: space-between;
}
.page-corporate-welfare .page-box .box-left {
  width: 47.5%;
  padding: 60px 80px;
}
.page-corporate-welfare .page-box .box-left .title {
  font-size: 20px;
  font-weight: bold;
  color: #333333;
  line-height: 18px;
  margin-bottom: 20px;
}
.page-corporate-welfare .page-box .box-left .border {
  width: 111px;
  height: 1px;
  background: #E0E0E0;
  margin-bottom: 19px;
}
.page-corporate-welfare .page-box .box-left .desc {
  font-size: 15px;
  font-weight: 500;
  color: #808080;
  line-height: 32px;
  margin-bottom: 63px;
}
.page-corporate-welfare .page-box .box-right {
  width: 52.5%;
  position: relative;
  background-image: url("../image/join-info-item-bg.png");
  background-position: center;
  background-size: cover;
}
.page-join-recruitment {
  background: #f8f8f8ff;
}
.page-join-recruitment .page-box .box-right {
  width: 100%;
}
.page-join-recruitment .page-box .box-right .job-list .job-item {
  width: 100%;
  background: #fff;
  padding: 32px 40px;
  margin-bottom: 30px;
}
.page-join-recruitment .page-box .box-right .job-list .job-item .title {
  font-size: 20px;
  font-weight: bold;
  color: #333333;
  line-height: 18px;
  margin-bottom: 14px;
}
.page-join-recruitment .page-box .box-right .job-list .job-item .border {
  width: 80px;
  height: 1px;
  background: #e0e0e0;
  margin-bottom: 22px;
}
.page-join-recruitment .page-box .box-right .job-list .job-item .tip {
  font-size: 14px;
  font-weight: 500;
  color: #333333;
  line-height: 30px;
  margin-bottom: 30px;
}
.page-join-recruitment .page-box .box-right .job-list .job-item .desc {
  font-size: 14px;
  font-weight: 500;
  color: #999999;
  line-height: 30px;
}
.page-message {
  background: #f8f8f8ff;
}
.page-message .page-box {
  background: #fff;
  display: flex;
  justify-content: space-between;
}
.page-message .page-box .box-left {
  width: 50%;
  background-image: url("../image/message-info-bg.png");
  background-position: center;
  background-size: cover;
}
.page-message .page-box .box-right {
  width: 50%;
  padding: 36px 100px 36px 80px;
}
.page-contact {
  background: #f8f8f8ff;
}
.page-contact .page-box {
  background: #fff;
  display: flex;
  justify-content: space-between;
}
.page-contact .page-box .box-left {
  width: 50%;
  background-image: url("../image/contact-info-bg.png");
  background-size: cover;
  background-position: center;
}
.page-contact .page-box .box-right {
  width: 50%;
  padding-top: 90px;
  padding-left: 100px;
  padding-right: 100px;
}
.page-contact .page-box .box-right .title {
  font-size: 15px;
  font-weight: 500;
  color: #808080;
  line-height: 32px;
  margin-bottom: 20px;
}
.page-contact .page-box .box-right .title p {
  margin-bottom: 21px;
}
.page-contact .page-box .box-right .border {
  width: 161px;
  height: 1px;
  background: #E0E0E0;
  margin-bottom: 19px;
}
.page-contact .page-box .box-right .tip {
  font-size: 20px;
  font-weight: bold;
  color: #333333;
  line-height: 32px;
  margin-bottom: 78px;
}
.page-map .page-content img {
  width: 100%;
}
.page-news {
  padding-top: 40px;
  padding-bottom: 80px;
}
.page-news .news-content {
  background: #FFFFFF;
  box-shadow: 0px 9px 21px 0px rgba(79, 92, 108, 0.09);
}
.page-news .news-content .title {
  padding: 40px 30px 0;
  font-size: 30px;
  font-weight: bold;
  color: #000000;
  margin-bottom: 23px;
  line-height: 46px;
}
.page-news .news-content .date {
  padding: 0 30px;
  font-size: 14px;
  font-weight: 500;
  color: #76808E;
  margin-bottom: 31px;
}
.page-news .news-content .content {
  padding: 0 30px;
  font-size: 16px;
  font-weight: 400;
  color: #353A42;
  line-height: 30px;
  padding-bottom: 70px;
}
.page-news .news-content .content img {
  width: 100%;
  max-width: 768px;
  margin: auto;
}
.page-news .news-content .content p {
  margin-bottom: 36px;
}
.page-news .news-content .content p img {
  position: relative;
  display: block;
}
.page-news .news-content .content p strong {
  font-weight: bold;
}
.page-news .news-content .content p span {
  font-size: 16px !important;
}
.page-search {
  background: #f8f8f8ff;
}
.page-search .search-list .search-item {
  width: 100%;
  padding: 50px 40px;
  background: #fff;
  margin-bottom: 30px;
  display: flex;
  justify-content: space-between;
  align-items: center;
  cursor: pointer;
  text-decoration: none;
}
.page-search .search-list .search-item .title {
  font-size: 20px;
  font-weight: bold;
  color: #333333;
  line-height: 26px;
  text-decoration: none;
}
.page-search .search-list .search-item .date {
  min-width: 80px;
  font-size: 14px;
  font-weight: 500;
  color: #999999;
  line-height: 20px;
  text-decoration: none;
}
.page-search .search-list .search-item:hover {
  box-shadow: 0px 9px 21px 0px #4f5c6c17;
}
.page-search .common-comp-pages {
  margin-top: 70px;
}
.page-development-history {
  padding-bottom: 0px;
}
.page-development-history .page-box .history-bg {
  position: relative;
  width: 100%;
  height: 1000px;
  background-image: url("../image/history-bg.png");
  background-size: cover;
  background-position: center;
}
.page-development-history .page-box .history-bg .history-line {
  position: absolute;
  width: 100%;
  height: 100%;
  display: flex;
  justify-content: space-between;
  align-items: center;
}
.page-development-history .page-box .history-bg .history-line img {
  width: 100%;
}
.page-development-history .page-box .my-swiper {
  width: 100%;
  height: 100%;
  z-index: 0;
}
.page-development-history .page-box .my-swiper .swiper-wrapper {
  align-items: center;
}
.page-development-history .page-box .my-swiper .swiper-wrapper .swiper-slide {
  height: 700px;
  text-align: center;
  font-size: 18px;
  color: #fff;
  display: flex;
  flex-wrap: wrap;
  align-content: flex-start;
  justify-content: space-between;
  opacity: 0.8;
  flex-direction: column;
}
.page-development-history .page-box .my-swiper .swiper-wrapper .swiper-slide .is {
  width: 100%;
}
.page-development-history .page-box .my-swiper .swiper-wrapper .swiper-slide .is .img {
  width: 100%;
  margin: auto;
  margin-top: 36px;
  margin-bottom: 36px;
}
.page-development-history .page-box .my-swiper .swiper-wrapper .swiper-slide .is .img img {
  max-width: 300px;
  max-height: 196px;
}
.page-development-history .page-box .my-swiper .swiper-wrapper .swiper-slide .is .sub-title {
  width: 100%;
  text-align: center;
  font-size: 28px;
  font-weight: 800;
  opacity: 0.8;
}
.page-development-history .page-box .my-swiper .swiper-wrapper .swiper-slide .icon {
  position: absolute;
  top: 299px;
  width: 100%;
  margin-top: 28px;
  margin-bottom: 50px;
  transform: rotate(180deg);
  -ms-transform: rotate(180deg);
  /* IE 9 */
  -moz-transform: rotate(180deg);
  /* Firefox */
  -webkit-transform: rotate(180deg);
  /* Safari 和 Chrome */
  -o-transform: rotate(180deg);
  /* Opera */
}
.page-development-history .page-box .my-swiper .swiper-wrapper .swiper-slide .icon-m {
  position: absolute;
  width: 100%;
  display: none;
}
.page-development-history .page-box .my-swiper .swiper-wrapper .swiper-slide .tld {
  width: 100%;
}
.page-development-history .page-box .my-swiper .swiper-wrapper .swiper-slide .tld .title {
  width: 100%;
  text-align: center;
  font-size: 50px;
  font-weight: 800;
  margin-bottom: 26px;
}
.page-development-history .page-box .my-swiper .swiper-wrapper .swiper-slide .tld .border {
  width: 100%;
  height: 1px;
  display: flex;
  justify-content: space-around;
  margin-bottom: 40px;
}
.page-development-history .page-box .my-swiper .swiper-wrapper .swiper-slide .tld .border .line {
  width: 40%;
  height: 100%;
  background: #fff;
}
.page-development-history .page-box .my-swiper .swiper-wrapper .swiper-slide .tld .desc {
  width: 100%;
  max-width: 500px;
  margin: auto;
  font-size: 18px;
  line-height: 26px;
  overflow: hidden;
  text-overflow: ellipsis;
  display: -webkit-box;
  -webkit-line-clamp: 3;
  line-clamp: 3;
  -webkit-box-orient: vertical;
  text-align: center;
}
.page-development-history .page-box .my-swiper .swiper-wrapper .swiper-slide.swiper-slide-active {
  opacity: 1;
}
.page-development-history .page-box .my-swiper .swiper-wrapper .swiper-slide:nth-child(even) {
  flex-direction: column-reverse;
}
.page-development-history .page-box .my-swiper .swiper-wrapper .swiper-slide:nth-child(even) .icon {
  top: 163px;
  margin-top: 50px;
  margin-bottom: 28px;
  transform: rotate(0deg);
  -ms-transform: rotate(0deg);
  /* IE 9 */
  -moz-transform: rotate(0deg);
  /* Firefox */
  -webkit-transform: rotate(0deg);
  /* Safari 和 Chrome */
  -o-transform: rotate(0deg);
  /* Opera */
}
.page-development-history .page-box .my-swiper .swiper-wrapper .swiper-slide:nth-child(even) .is {
  display: flex;
  flex-wrap: wrap;
  flex-direction: column-reverse;
}
.page-development-history .page-box .my-swiper .swiper-button-next,
.page-development-history .page-box .my-swiper .swiper-button-prev {
  width: 90px;
  height: 90px;
  border-radius: 50%;
  background: rgba(255, 255, 255, 0.1);
  top: calc(50% - 21px);
}
.page-development-history .page-box .my-swiper .swiper-button-next:after,
.page-development-history .page-box .my-swiper .swiper-button-prev:after {
  font-size: 34px;
  color: #fff;
}
.page-development-history .page-box .my-swiper .swiper-button-next:hover,
.page-development-history .page-box .my-swiper .swiper-button-prev:hover {
  background: rgba(255, 255, 255, 0.3);
}
.page-applications .page-box .app-list {
  display: flex;
  flex-wrap: wrap;
  justify-content: space-between;
}
.page-applications .page-box .app-list .app-item {
  position: relative;
  width: 33%;
  height: 500px;
  padding: 50px 30px;
  background-size: cover;
  background-position: center;
  cursor: pointer;
  margin-bottom: 5px;
  text-decoration: none;
}
.page-applications .page-box .app-list .app-item .bg {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
}
.page-applications .page-box .app-list .app-item .icon {
  position: relative;
  width: 100%;
  display: flex;
  justify-content: space-around;
  margin-bottom: 30px;
}
.page-applications .page-box .app-list .app-item .title {
  position: relative;
  width: 100%;
  font-size: 34px;
  font-weight: 400;
  color: #FFFFFF;
  text-align: center;
  transition: none;
  -moz-transition: none;
  /* Firefox 4 */
  -webkit-transition: none;
  /* Safari 和 Chrome */
  -o-transition: none;
  /* Opera */
}
.page-applications .page-box .app-list .app-item .desc {
  position: relative;
  font-size: 18px;
  font-weight: 400;
  color: #FFFFFF;
  line-height: 30px;
  display: none;
  text-indent: 36px;
}
.page-applications .page-box .app-list .app-item .mask {
  position: absolute;
  width: 100%;
  height: 100%;
  left: 0;
  top: 0;
  background: rgba(0, 120, 255, 0.7);
}
.page-applications .page-box .app-list .app-item:nth-child(even) .mask {
  background: rgba(87, 87, 87, 0.7);
}
.page-applications .page-box .app-list .app-item:hover {
  padding: 50px 30px;
}
.page-applications .page-box .app-list .app-item:hover .icon {
  display: none;
}
.page-applications .page-box .app-list .app-item:hover .title {
  margin-bottom: 46px;
}
.page-applications .page-box .app-list .app-item:hover .desc {
  display: block;
}
.page-application {
  background: #f8f8f8;
}
.page-application .page-box {
  display: flex;
  background: #fff;
}
.page-application .page-box .img {
  max-width: 790px;
  max-height: 526px;
  width: 50%;
  height: 100%;
  overflow: hidden;
}
.page-application .page-box .img img {
  width: 100%;
  height: 100%;
}
.page-application .page-box .info {
  width: 50%;
  padding: 60px 48px;
}
.page-application .page-box .info .title {
  font-size: 30px;
  font-weight: bold;
  color: #333333;
  margin-bottom: 50px;
}
.page-application .page-box .info .border {
  display: none;
  width: 80px;
  height: 1px;
  background: #E0E0E0;
  margin-bottom: 20px;
}
.page-application .page-box .info .desc {
  font-size: 16px;
  font-weight: 400;
  color: #4C4C4C;
  line-height: 30px;
}
.page-advantages .page-box .adv-list {
  display: flex;
  flex-wrap: wrap;
}
.page-advantages .page-box .adv-list .adv-item {
  width: 33%;
  min-height: 390px;
  background-position: center;
  background-size: cover;
}
.page-advantages .page-box .adv-list .adv-item .desc {
  font-size: 20px;
  font-weight: 500;
  color: #2C2C2C;
  line-height: 42px;
}
.page-advantages .page-box .adv-list .adv-item .icon {
  width: 100%;
  display: flex;
  justify-content: space-around;
  margin-bottom: 80px;
}
.page-advantages .page-box .adv-list .adv-item .icon img {
  width: 140px;
  height: 140px;
}
.page-advantages .page-box .adv-list .adv-item .title {
  width: 100%;
  text-align: center;
  font-size: 26px;
  font-weight: bold;
  color: #fff;
}
.page-advantages .page-box .adv-list .adv-item:nth-child(odd) {
  padding: 98px 62px;
}
.page-advantages .page-box .adv-list .adv-item:nth-child(even) {
  padding: 64px 0px;
}
.page-advantages .page-box .adv-list .adv-item:nth-child(1) {
  background-image: url("../image/adv-item-bg01.png");
}
.page-advantages .page-box .adv-list .adv-item:nth-child(2) {
  background-image: url("../image/adv-item-bg02.png");
}
.page-advantages .page-box .adv-list .adv-item:nth-child(3) {
  background-image: url("../image/adv-item-bg03.png");
}
.page-advantages .page-box .adv-list .adv-item:nth-child(4) {
  background-image: url("../image/adv-item-bg04.png");
}
.page-advantages .page-box .adv-list .adv-item:nth-child(5) {
  background-image: url("../image/adv-item-bg05.png");
}
.page-advantages .page-box .adv-list .adv-item:nth-child(6) {
  background-image: url("../image/adv-item-bg06.png");
}
@media screen and (max-width: 1620px) {
  .app-width {
    width: 80%;
  }
  .nav-wrapper {
    height: 100px;
  }
  .nav-wrapper .logo {
    top: 18px;
  }
  .nav-wrapper .nav-list {
    top: 40px;
  }
  .nav-wrapper .nav-list .nav-item {
    width: auto;
    float: left;
  }
  .nav-wrapper .nav-list .nav-item a {
    font-size: 16px;
  }
  .nav-wrapper .nav-list .nav-item .sub-list {
    padding-top: 40px;
    width: 100%;
  }
  .nav-wrapper .search-bar {
    top: 37px;
  }
  .content-wrapper .about-us .right-box {
    flex-wrap: wrap;
  }
  .content-wrapper .about-us .right-box .about-info {
    padding: 40px;
    width: 100%;
  }
  .content-wrapper .about-us .right-box .about-pic {
    width: 100%;
    padding: 6% 8%;
  }
  .content-wrapper .news-center .right-box .news-list .news-item:nth-child(3) {
    display: none;
  }
  .content-wrapper .join-us .right-box {
    width: 1000px;
  }
  .page-company .page-box {
    display: inline-block;
  }
  .page-company .page-box .box-left {
    width: 100%;
  }
  .page-company .page-box .box-right {
    display: block;
    margin: auto;
    width: 70%;
    margin-bottom: 60px;
  }
  .page-company .page-box .box-right img {
    width: 100%;
  }
  .page-culture .page-box .box-right .c-swiper .swiper-wrapper .swiper-slide .culture-img {
    height: 436px;
  }
}
@media screen and (max-width: 1360px) {
  .app-width {
    width: 90%;
  }
}
@media screen and (max-width: 1200px) {
  .app-flex {
    flex-wrap: wrap;
    justify-content: space-between;
  }
  .home-block-wrapper.about-us .block-content .about-info {
    display: flex;
    justify-content: end;
    flex-wrap: wrap;
  }
  .home-block-wrapper.about-us .block-content .about-info .left {
    width: 100%;
  }
  .home-block-wrapper.about-us .block-content .about-info .right {
    width: 100%;
    height: 400px;
  }
  .nav-wrapper {
    display: none;
  }
  .nav-wrapper-mobile {
    display: block;
  }
  .footer-wrapper .nav-list {
    flex-wrap: wrap;
  }
  .footer-wrapper .nav-list .nav-item {
    margin-bottom: 50px;
  }
  .page-culture .page-box {
    flex-wrap: wrap;
  }
  .page-culture .page-box .box-left {
    width: 100%;
  }
  .page-culture .page-box .box-left .nav-info {
    margin-bottom: 50px;
  }
  .page-culture .page-box .box-left .nav-info .c-nav-list-vertical {
    display: flex;
    justify-content: space-between;
    flex-wrap: wrap;
  }
  .page-culture .page-box .box-left .nav-info .c-nav-list-vertical .nav-item {
    margin-bottom: 10px;
    margin-right: 0;
  }
  .page-culture .page-box .box-left .nav-info .c-nav-list-vertical .nav-item.active:after {
    display: none;
  }
  .page-culture .page-box .box-right {
    width: 100%;
  }
  .page-quality-management .page-box {
    flex-wrap: wrap;
    flex-direction: column-reverse;
  }
  .page-quality-management .page-box .box-left {
    width: 100%;
    padding: 25px 15px;
  }
  .page-quality-management .page-box .box-right {
    width: 100%;
    height: 280px;
  }
  .page-quality-certification .page-box .box-right .img-list {
    display: flex;
    flex-wrap: wrap;
  }
  .page-quality-certification .page-box .box-right .img-list .img-item {
    width: 100%;
    display: flex;
    flex-wrap: wrap;
    justify-content: space-around;
    margin-bottom: 40px;
  }
  .page-quality-certification .page-box .box-right .img-list .img-item > img {
    max-width: 400px;
    width: 60%;
    position: relative;
    z-index: 1;
  }
  .page-quality-certification .page-box .box-right .img-list .img-item .img-desktop {
    display: block;
    width: 100%;
    position: relative;
    top: -5px;
    z-index: 0;
  }
  .page-quality-certification .page-box .box-right .img-list .img-item .img-desktop > img {
    width: 100%;
  }
  .page-quality-certification .page-box .box-desktop {
    display: none;
  }
  .page-news-industry .page-box .news-list {
    display: none;
  }
  .page-news-industry .page-box .news-list-m {
    display: flex;
    justify-content: space-around;
    flex-wrap: wrap;
  }
  .page-news-industry .page-box .news-list-m .news-item {
    width: 345px;
    height: auto;
    background: #fff;
    margin-bottom: 26px;
  }
  .page-news-industry .page-box .news-list-m .news-item .news-cover img {
    width: 100%;
  }
  .page-news-industry .page-box .news-list-m .news-item .news-info {
    padding: 20px;
    padding-bottom: 0;
    display: flex;
    justify-content: space-between;
    margin-bottom: 5px;
  }
  .page-news-industry .page-box .news-list-m .news-item .news-info .info-title {
    width: 216px;
    font-size: 13px;
    font-weight: 500;
    color: #1a1a1a;
    line-height: 18px;
  }
  .page-news-industry .page-box .news-list-m .news-item .news-info .info-date {
    width: 60px;
    text-align: right;
  }
  .page-news-industry .page-box .news-list-m .news-item .news-info .info-date .date-day {
    width: 100%;
    font-size: 20px;
    font-weight: 400;
    color: #011935;
    line-height: 30px;
  }
  .page-news-industry .page-box .news-list-m .news-item .news-info .info-date .date-ym {
    font-size: 10px;
    font-weight: 400;
    color: #999999;
    line-height: 30px;
  }
  .page-news-industry .page-box .news-list-m .news-item .news-border {
    width: 300px;
    height: 1px;
    background: #ebebeb;
    margin: auto;
  }
  .page-news-industry .page-box .news-list-m .news-item .news-link {
    padding: 17px 20px;
    display: flex;
    align-items: center;
    justify-content: space-between;
  }
  .page-corporate-welfare .page-box {
    flex-direction: column-reverse;
    flex-wrap: wrap;
  }
  .page-corporate-welfare .page-box .box-left {
    width: 100%;
  }
  .page-corporate-welfare .page-box .box-right {
    width: 100%;
    height: 500px;
  }
  .page-message .page-box {
    flex-wrap: wrap;
  }
  .page-message .page-box .box-left {
    height: 542px;
    width: 100%;
  }
  .page-message .page-box .box-right {
    width: 100%;
  }
  .page-contact .page-box {
    display: flex;
    justify-content: space-between;
    flex-wrap: wrap;
  }
  .page-contact .page-box .box-left {
    width: 100%;
    height: 542px;
  }
  .page-contact .page-box .box-right {
    width: 100%;
  }
  .page-applications .page-box .app-list .app-item {
    width: 49%;
    margin-bottom: 20px;
  }
  .page-application .page-box {
    flex-wrap: wrap;
  }
  .page-application .page-box .img {
    width: 100%;
  }
  .page-application .page-box .info {
    width: 100%;
  }
  .page-development-history .page-box .history-bg {
    height: auto;
  }
  .page-development-history .page-box .my-swiper {
    height: 760px;
  }
  .page-development-history .page-box .my-swiper .swiper-wrapper .swiper-slide:nth-child(even) {
    flex-direction: column;
  }
  .page-development-history .page-box .my-swiper .swiper-wrapper .swiper-slide:nth-child(even) .icon {
    position: absolute;
    top: 299px;
    width: 100%;
    margin-top: 28px;
    margin-bottom: 50px;
    transform: rotate(180deg);
    -ms-transform: rotate(180deg);
    /* IE 9 */
    -moz-transform: rotate(180deg);
    /* Firefox */
    -webkit-transform: rotate(180deg);
    /* Safari 和 Chrome */
    -o-transform: rotate(180deg);
    /* Opera */
  }
}
@media screen and (max-width: 840px) {
  .nav-wrapper-mobile .nav .logo {
    position: relative;
    width: 64px;
    height: 36px;
    top: 17px;
    left: 14px;
  }
  .nav-wrapper-mobile .nav .nav-more svg {
    width: 24px;
  }
  .nav-wrapper-mobile .nav .nav-list {
    padding-bottom: 100px;
    overflow: auto;
  }
  .nav-wrapper-mobile .nav .nav-list .nav-item {
    width: 100%;
  }
  .header-wrapper {
    position: relative;
    margin-top: 70px;
    height: 250px;
  }
  .header-wrapper .banner-wrapper {
    padding-top: 60px;
  }
  .header-wrapper .banner-wrapper .banner-title {
    font-size: 19px;
    line-height: 27px;
  }
  .header-wrapper .banner-wrapper .banner-jump {
    margin-top: 50px;
  }
  .header-wrapper .banner-wrapper .banner-jump .jump-text {
    font-size: 10px;
    font-weight: 400;
    line-height: 16px;
  }
  .header-wrapper .banner-wrapper .banner-jump .jump-icon {
    width: 13px;
    height: 13px;
    left: 7px;
  }
  .header-wrapper .banner-wrapper .banner-jump .jump-icon svg {
    width: 7px;
    height: 7px;
    top: -3px;
    left: 4px;
  }
  .header-wrapper .banner-wrapper .banner-jump:hover .jump-icon {
    left: 10px;
  }
  .banner-img-wrapper {
    height: 152px;
    position: relative;
    margin-top: 70px;
    background-size: cover;
  }
  .banner-img-wrapper.company {
    background-image: url("../image/m-company-bg.png");
  }
  .banner-img-wrapper.quality {
    background-image: url("../image/m-quality-bg.png");
  }
  .banner-img-wrapper.product {
    background-image: url("../image/m-product-bg.png");
  }
  .banner-img-wrapper.news {
    background-image: url("../image/m-news-bg.png");
  }
  .banner-img-wrapper.join {
    background-image: url("../image/m-join-bg.png");
  }
  .banner-img-wrapper.contact {
    background-image: url("../image/m-contact-bg.png");
  }
  .banner-img-wrapper.app {
    background-image: url("../image/m-app-bg.png");
  }
  .banner-img-wrapper.technology {
    background-image: url("../image/m-technology-bg.png");
  }
  .home-block-wrapper {
    padding: 50px 0;
  }
  .home-block-wrapper .block-content .link-info {
    margin-top: 30px;
  }
  .home-block-wrapper .block-content .link-info .link {
    font-size: 10px;
    font-weight: 400;
  }
  .home-block-wrapper .block-content .link-info .link svg {
    width: 15px;
    height: 15px;
    top: 3px;
  }
  .home-block-wrapper.about-us .block-content .about-info {
    display: flex;
    flex-direction: column-reverse;
  }
  .home-block-wrapper.about-us .block-content .about-info .left {
    padding: 20px 20px 50px 20px;
  }
  .home-block-wrapper.about-us .block-content .about-info .left .title {
    width: 80px;
    height: 24px;
    font-size: 14px;
    font-weight: 500;
    margin-bottom: 10px;
  }
  .home-block-wrapper.about-us .block-content .about-info .left .desc {
    font-size: 12px;
    font-weight: 400;
    line-height: 16px;
    margin-bottom: 35px;
  }
  .home-block-wrapper.about-us .block-content .about-info .left .award-box {
    height: 52px;
  }
  .home-block-wrapper.about-us .block-content .about-info .left .award-box .award-item {
    margin-right: 16px;
  }
  .home-block-wrapper.about-us .block-content .about-info .left .award-box .award-item .item-count {
    width: 45px;
    height: 45px;
    font-size: 15px;
    line-height: 45px;
    text-align: center;
    margin-bottom: 7px;
  }
  .home-block-wrapper.about-us .block-content .about-info .left .award-box .award-item .item-desc {
    font-size: 10px;
  }
  .home-block-wrapper.about-us .block-content .about-info .left .award-box .award-item-border {
    height: 45px;
    margin-right: 16px;
  }
  .home-block-wrapper.about-us .block-content .about-info .right {
    height: 200px;
  }
  .home-block-wrapper.product-center .block-content .product-box .p-info {
    padding: 26px 30px;
  }
  .home-block-wrapper.product-center .block-content .product-box .p-info .title {
    font-size: 13px;
    margin-bottom: 20px;
  }
  .home-block-wrapper.product-center .block-content .product-box .p-info .desc {
    font-size: 11px;
    line-height: 16px;
  }
  .home-block-wrapper.product-center .block-content .product-box .p-list {
    padding: 28px 10px;
  }
  .home-block-wrapper.product-center .block-content .product-box .p-list .p-wrapper {
    height: auto;
  }
  .home-block-wrapper.product-center .block-content .product-box .p-list .p-item {
    height: 64px;
    padding-left: 10px;
    font-size: 13px;
  }
  .home-block-wrapper.product-center .block-content .product-box .p-list .p-item .circle {
    width: 16px;
    height: 16px;
    border: 3px solid #e0e0e0ff;
    left: -10px;
    top: -1px;
  }
  .home-block-wrapper.product-center .block-content .product-box .p-list .p-item.active .circle {
    border: 3px solid #0078ffff;
  }
  .home-block-wrapper.product-center .block-content .product-box .p-list .p-item.active:before {
    display: none;
  }
  .home-block-wrapper.news-center .block-content .news-box .news-list {
    display: flex;
    justify-content: space-around;
  }
  .home-block-wrapper.news-center .block-content .news-box .news-list .news-item {
    width: 100%;
    height: auto;
    max-width: 380px;
  }
  .home-block-wrapper.news-center .block-content .news-box .news-list .news-item .news-info {
    width: 100%;
    padding: 20px 20px 10px 20px;
    margin-bottom: 0;
  }
  .home-block-wrapper.news-center .block-content .news-box .news-list .news-item .news-info .info-title {
    font-size: 13px;
    font-weight: 400;
    line-height: 18px;
  }
  .home-block-wrapper.news-center .block-content .news-box .news-list .news-item .news-info .info-date .date-day {
    font-size: 20px;
    line-height: 20px;
    margin-bottom: 10px;
  }
  .home-block-wrapper.news-center .block-content .news-box .news-list .news-item .news-info .info-date .date-ym {
    font-size: 10px;
    line-height: 10px;
  }
  .home-block-wrapper.news-center .block-content .news-box .news-list .news-item .news-border {
    width: calc(100% - 40px);
  }
  .home-block-wrapper.news-center .block-content .news-box .news-list .news-item .news-link {
    height: auto;
    padding: 15px 20px;
  }
  .home-block-wrapper.news-center .block-content .link-info {
    margin-top: 30px;
  }
  .home-block-wrapper.join-us .block-content .join-box {
    height: 270px;
  }
  .home-block-wrapper.join-us .block-content .join-box .join-info {
    height: 144px;
    width: 80%;
    padding: 16px 20px;
    left: -1px;
    bottom: -1px;
  }
  .home-block-wrapper.join-us .block-content .join-box .join-info .info-title {
    font-size: 14px;
    line-height: 14px;
    margin-bottom: 10px;
  }
  .home-block-wrapper.join-us .block-content .join-box .join-info .info-border {
    width: 80px;
    margin-bottom: 14px;
  }
  .home-block-wrapper.join-us .block-content .join-box .join-info .info-desc {
    font-size: 12px;
    line-height: 18px;
    margin-bottom: 15px;
  }
  .c-main-padding {
    padding-top: 40px;
    padding-bottom: 20px;
  }
  .c-block-info {
    margin-bottom: 25px;
  }
  .c-block-info .b-title {
    font-size: 17px;
    margin-bottom: 8px;
  }
  .c-block-info .b-title-en {
    font-size: 13px;
    margin-bottom: 14px;
  }
  .c-block-info .p-border {
    width: 10px;
    height: 2px;
  }
  .c-block-info .block-nav {
    margin-bottom: 0px;
  }
  .c-nav-list {
    margin-top: 25px;
  }
  .c-nav-list .nav-item {
    width: 170px;
    height: 40px;
    line-height: 40px;
    font-size: 13px;
  }
  .merge-nav-list {
    margin-bottom: 24px;
  }
  .c-box-info .b-title {
    font-size: 14px;
    margin-bottom: 13px;
  }
  .c-box-info .b-border {
    margin-bottom: 15px;
  }
  .c-box-info .b-desc {
    font-size: 13px;
    line-height: 22px;
  }
  .c-link-jump .jump-text {
    font-size: 7px;
  }
  .c-link-jump .jump-icon {
    left: 7px;
  }
  .c-link-jump .jump-icon svg {
    width: 15px;
  }
  .c-form .input-block,
  .c-form .textarea-block {
    margin-bottom: 18px;
  }
  .c-form .input-block .label,
  .c-form .textarea-block .label {
    font-size: 13px;
    font-weight: 400;
    line-height: 36px;
  }
  .c-form .input-block .input,
  .c-form .textarea-block .input,
  .c-form .input-block .textarea,
  .c-form .textarea-block .textarea {
    font-size: 12px;
    padding: 10px 8px;
  }
  .c-form .input-block .btn,
  .c-form .textarea-block .btn {
    line-height: 36px;
    font-size: 14px;
  }
  .c-form .input-block {
    height: 36px;
  }
  .c-swiper .swiper-pagination {
    bottom: 20px;
  }
  .c-swiper .swiper-pagination .swiper-pagination-bullet {
    width: 16px;
    height: 4px;
    background: #fff;
    border-radius: 0;
    opacity: 1;
    margin: 0 6px;
  }
  .c-swiper .swiper-pagination .swiper-pagination-bullet-active {
    background: #0078ff;
  }
  .c-page-empty {
    padding: 20px 0 50px;
  }
  .c-page-empty .icon {
    margin-bottom: 30px;
  }
  .c-page-empty .icon img {
    width: 140px;
  }
  .c-page-empty .tip {
    font-size: 12px;
  }
  .page-company .page-box {
    display: flex;
    flex-wrap: wrap;
    flex-direction: column-reverse;
  }
  .page-company .page-box .box-left {
    padding: 15px;
  }
  .page-company .page-box .box-left .title {
    font-size: 14px;
    margin-bottom: 15px;
  }
  .page-company .page-box .box-left .border {
    width: 26%;
    margin-bottom: 16px;
  }
  .page-company .page-box .box-left .desc {
    font-size: 13px;
    line-height: 24px;
    font-weight: 400;
  }
  .page-company .page-box .box-left .desc p {
    margin-bottom: 6px;
  }
  .page-company .page-box .box-right {
    width: 100%;
    margin-bottom: 0px;
  }
  .page-honor .page-box .honor-list .honor-item {
    width: 100%;
    height: auto;
    display: flex;
    max-width: initial;
  }
  .page-honor .page-box .honor-list .honor-item .img {
    width: 30%;
    min-width: 120px;
    margin-right: 6%;
    height: auto;
  }
  .page-honor .page-box .honor-list .honor-item .img img {
    outline: 4px solid #333333;
  }
  .page-honor .page-box .honor-list .honor-item .info {
    text-align: left;
  }
  .page-honor .page-box .honor-list .honor-item .title {
    font-size: 14px;
    margin-bottom: 13px;
  }
  .page-honor .page-box .honor-list .honor-item .border {
    display: none;
  }
  .page-honor .page-box .honor-list .honor-item .desc {
    font-size: 12px;
    font-weight: 500;
    line-height: 20px;
  }
  .page-culture .page-box .box-left .nav-info {
    margin-bottom: 25px;
  }
  .page-culture .page-box .box-left .nav-info .c-nav-list-vertical .nav-item {
    width: 49%;
    height: 40px;
    line-height: 40px;
    font-size: 13px;
  }
  .page-culture .page-box .box-left .nav-info .c-nav-list-vertical .nav-item .n-icon {
    left: 16px;
    top: 18px;
    width: 4px;
    height: 4px;
  }
  .page-culture .page-box .box-left .nav-info .c-nav-list-vertical .nav-item .n-text {
    text-indent: 30px;
  }
  .page-culture .page-box .box-right .box-info {
    padding: 28px 15px 60px;
  }
  .page-quality-management .page-box .box-left .title {
    font-size: 13px;
    margin-bottom: 10px;
  }
  .page-quality-management .page-box .box-left .border {
    width: 55px;
    margin-bottom: 5px;
  }
  .page-quality-management .page-box .box-left .desc {
    font-size: 13px;
    margin-bottom: 34px;
  }
  .page-quality-certification .page-box .box-right .img-list .img-item > img {
    outline: 5px solid #333333;
  }
  .page-product-classification {
    flex-wrap: wrap;
    justify-content: space-between;
  }
  .page-product-classification .product-classification {
    display: flex;
    flex-wrap: wrap;
    justify-content: space-between;
  }
  .page-product-classification .product-classification .classification-item {
    width: 49%;
    height: 40px;
    line-height: 40px;
    font-size: 13px;
    margin-bottom: 10px;
    margin-right: 0;
  }
  .page-product-classification .page-box {
    overflow: auto;
  }
  .page-product-classification .page-box .table-block {
    width: 1200px;
  }
  .page-product-classification .page-box .tb-item .c-item {
    font-size: 12px;
    line-height: 16px;
    padding: 3px;
  }
  .page-equipment-support {
    background: #f8f8f8ff;
  }
  .page-equipment-support .page-box .equipment-list .equipment-item {
    width: 48%;
    height: 200px;
    background: #fff;
    margin-bottom: 10px;
  }
  .page-equipment-support .page-box .equipment-list .equipment-item .cover {
    margin-top: 20px;
    margin-bottom: 26px;
  }
  .page-equipment-support .page-box .equipment-list .equipment-item .cover img {
    width: 110px;
    height: 110px;
  }
  .page-equipment-support .page-box .equipment-list .equipment-item .name {
    font-size: 10px;
  }
  .page-corporate-welfare .page-box .box-left {
    padding: 16px 15px;
  }
  .page-corporate-welfare .page-box .box-left .title {
    font-size: 14px;
    margin-bottom: 15px;
  }
  .page-corporate-welfare .page-box .box-left .border {
    margin-bottom: 20px;
  }
  .page-corporate-welfare .page-box .box-left .desc {
    font-size: 12px;
    line-height: 20px;
    font-weight: 400;
  }
  .page-corporate-welfare .page-box .box-right {
    height: 271px;
  }
  .page-join-recruitment .page-box .box-right .job-list .job-item {
    padding: 18px 20px;
    margin-bottom: 15px;
  }
  .page-join-recruitment .page-box .box-right .job-list .job-item .title {
    font-size: 13px;
    font-weight: 500;
    margin-bottom: 11px;
  }
  .page-join-recruitment .page-box .box-right .job-list .job-item .border {
    margin-bottom: 11px;
  }
  .page-join-recruitment .page-box .box-right .job-list .job-item .tip {
    font-size: 12px;
    font-weight: 500;
    margin-bottom: 16px;
  }
  .page-join-recruitment .page-box .box-right .job-list .job-item .desc {
    font-size: 12px;
    font-weight: 500;
    line-height: 22px;
    white-space: pre-wrap;
    word-wrap: break-word;
  }
  .page-message .page-box .box-left {
    height: 270px;
  }
  .page-message .page-box .box-right {
    padding: 28px 17px;
  }
  .page-contact .page-box .box-left {
    width: 100%;
    height: 370px;
  }
  .page-contact .page-box .box-right {
    padding: 30px 15px;
  }
  .page-contact .page-box .box-right .title {
    font-size: 13px;
    font-weight: 400;
    margin-bottom: 15px;
  }
  .page-contact .page-box .box-right .title p {
    margin-bottom: 0px;
  }
  .page-contact .page-box .box-right .border {
    width: 80px;
    margin-bottom: 15px;
  }
  .page-contact .page-box .box-right .tip {
    font-size: 12px;
    font-weight: 400;
    margin-bottom: 40px;
  }
  .page-news {
    padding-top: 20px;
    padding-bottom: 60px;
  }
  .page-news .news-content .banner {
    margin-bottom: 20px;
  }
  .page-news .news-content .title {
    padding: 20px 10px 0px;
    font-size: 15px;
    margin-bottom: 12px;
    line-height: 23px;
  }
  .page-news .news-content .date {
    padding: 0 10px;
    font-size: 11px;
    margin-bottom: 23px;
  }
  .page-news .news-content .content {
    padding: 0 10px;
    font-size: 14px;
    line-height: 23px;
    padding-bottom: 10px;
  }
  .page-news .news-content .content p {
    margin-bottom: 20px;
  }
  .page-news .news-content .content p img {
    left: 0;
  }
  .page-news .news-content .content p span {
    font-size: 14px !important;
  }
  .page-search .search-list .search-item {
    padding: 25px 20px;
    margin-bottom: 15px;
  }
  .page-search .search-list .search-item .title {
    font-size: 12px;
    line-height: 16px;
  }
  .page-search .search-list .search-item .date {
    font-size: 10px;
    line-height: 14px;
  }
  .page-search .common-comp-pages {
    margin-top: 30px;
  }
  .page-advantages .page-box .adv-list {
    flex-direction: column-reverse;
  }
  .page-advantages .page-box .adv-list .adv-item {
    width: 100%;
    min-height: 250px;
  }
  .page-advantages .page-box .adv-list .adv-item .icon {
    margin-bottom: 40px;
  }
  .page-advantages .page-box .adv-list .adv-item .icon img {
    width: 70px;
    height: 70px;
  }
  .page-advantages .page-box .adv-list .adv-item .title {
    font-size: 14px;
    line-height: 20px;
  }
  .page-advantages .page-box .adv-list .adv-item .desc {
    font-size: 14px;
    line-height: 21px;
  }
  .page-advantages .page-box .adv-list .adv-item:nth-child(odd) {
    padding: 33px 22px;
  }
  .page-advantages .page-box .adv-list .adv-item:nth-child(even) {
    padding: 60px 0px;
  }
  .common-comp-pages {
    padding-bottom: 30px;
    margin: 0px;
  }
  .common-comp-pages .pgae-list {
    height: auto;
  }
  .common-comp-pages .pgae-list .page-item {
    width: 25px;
    height: 25px;
    line-height: 25px;
    margin: 0 6px;
    font-size: 13px;
  }
  .common-comp-pages .pgae-list .page-item svg {
    width: 25px;
    height: 25px;
  }
  .common-comp-pages .pgae-list .page-item.pre-next {
    width: 40px;
  }
  .page-application .page-box .img {
    width: 100%;
  }
  .page-application .page-box .info {
    padding: 25px 16px;
  }
  .page-application .page-box .info .title {
    font-size: 16px;
    margin-bottom: 15px;
  }
  .page-application .page-box .info .border {
    display: block;
  }
  .page-application .page-box .info .desc {
    font-size: 13px;
    line-height: 20px;
  }
  .page-application .common-comp-pages {
    margin-top: 50px;
  }
}
@media screen and (max-width: 640px) {
  .app-width {
    width: 94%;
  }
  .fix-to-top {
    right: 16px;
  }
  .footer-wrapper {
    padding-top: 20px;
  }
  .footer-wrapper .nav-list .nav-item {
    width: 100%;
    display: flex;
    flex-wrap: wrap;
  }
  .footer-wrapper .nav-list .nav-item .nav-parent {
    width: 100%;
    margin-right: 20px;
  }
  .footer-wrapper .nav-list .nav-item .nav-parent .nav-border {
    width: 100px;
  }
  .footer-wrapper .nav-list .nav-item .nav-sub {
    width: max-content;
    margin-right: 20px;
  }
  .page-applications .page-box .app-list .app-item {
    width: 100%;
    height: 320px;
    padding: 50px 10px;
  }
  .page-applications .page-box .app-list .app-item .icon {
    margin-bottom: 40px;
  }
  .page-applications .page-box .app-list .app-item .icon img {
    width: 120px;
  }
  .page-applications .page-box .app-list .app-item .title {
    font-size: 20px;
  }
  .page-applications .page-box .app-list .app-item .desc {
    overflow: hidden;
    -webkit-line-clamp: 9;
    -webkit-box-orient: vertical;
  }
  .page-applications .page-box .app-list .app-item:hover {
    padding: 20px;
  }
  .page-applications .page-box .app-list .hover-desc:hover .title {
    margin-bottom: 20px;
  }
  .page-applications .page-box .app-list .hover-desc:hover .desc {
    font-size: 14px;
    text-indent: 28px;
    line-height: 26px;
  }
  .page-development-history .page-box .history-bg {
    min-height: 360px;
  }
  .page-development-history .page-box .history-bg .history-line {
    justify-content: space-around;
  }
  .page-development-history .page-box .history-bg .history-line img {
    width: 84%;
  }
  .page-development-history .page-box .my-swiper {
    height: 380px;
  }
  .page-development-history .page-box .my-swiper .swiper-wrapper .swiper-slide {
    height: 100%;
    padding: 30px 0;
  }
  .page-development-history .page-box .my-swiper .swiper-wrapper .swiper-slide .is .img {
    margin: 0;
  }
  .page-development-history .page-box .my-swiper .swiper-wrapper .swiper-slide .is .img img {
    max-width: 215px;
    max-height: 120px;
  }
  .page-development-history .page-box .my-swiper .swiper-wrapper .swiper-slide .is .sub-title {
    display: none;
  }
  .page-development-history .page-box .my-swiper .swiper-wrapper .swiper-slide .icon {
    display: none;
  }
  .page-development-history .page-box .my-swiper .swiper-wrapper .swiper-slide .icon-m {
    display: block;
    top: 180px;
  }
  .page-development-history .page-box .my-swiper .swiper-wrapper .swiper-slide .icon-m img {
    width: 20px;
    height: 20px;
  }
  .page-development-history .page-box .my-swiper .swiper-wrapper .swiper-slide .tld {
    width: 90%;
    margin-left: 5%;
    height: 110px;
  }
  .page-development-history .page-box .my-swiper .swiper-wrapper .swiper-slide .tld .title {
    font-size: 20px;
    margin-bottom: 16px;
  }
  .page-development-history .page-box .my-swiper .swiper-wrapper .swiper-slide .tld .border {
    display: none;
  }
  .page-development-history .page-box .my-swiper .swiper-wrapper .swiper-slide .tld .desc {
    font-size: 13px;
    font-weight: 500;
    line-height: 18px;
  }
  .page-development-history .page-box .my-swiper .swiper-button-next,
  .page-development-history .page-box .my-swiper .swiper-button-prev {
    width: 45px;
    height: 45px;
    top: calc(50% - 1px);
  }
  .page-development-history .page-box .my-swiper .swiper-button-next:after,
  .page-development-history .page-box .my-swiper .swiper-button-prev:after {
    font-size: 16px;
  }
  .page-culture .page-box .box-right .c-swiper .swiper-wrapper .swiper-slide .culture-img {
    height: 260px;
  }
  .home-block-wrapper.product-center .block-content .product-box .p-info {
    padding: 10px;
    width: 60%;
  }
  .home-block-wrapper.product-center .block-content .product-box .p-list {
    width: 40%;
    padding: 20px 10px;
  }
  .home-block-wrapper.product-center .block-content .product-box .p-list .p-wrapper {
    padding-top: 0;
    padding-left: 10px;
  }
  .home-block-wrapper.product-center .block-content .product-box .p-list .p-wrapper .p-item {
    height: 40px;
  }
}
@media screen and (max-width: 600px) {
  .footer-wrapper .nav-list {
    margin-bottom: 30px;
  }
  .footer-wrapper .nav-list .nav-item {
    width: 100%;
    height: 30px;
    margin-bottom: 20px;
    flex-wrap: nowrap;
  }
  .footer-wrapper .nav-list .nav-item .nav-parent {
    width: 75px;
    height: 100%;
  }
  .footer-wrapper .nav-list .nav-item .nav-parent .nav-main {
    line-height: 30px;
    font-size: 12px;
    margin-bottom: 0;
  }
  .footer-wrapper .nav-list .nav-item .nav-parent .nav-border {
    width: 50px;
    margin-bottom: 0;
  }
  .footer-wrapper .nav-list .nav-item .nav-subs {
    width: calc(100% - 75px);
    display: flex;
    flex-wrap: wrap;
    align-items: center;
  }
  .footer-wrapper .nav-list .nav-item .nav-subs .nav-sub {
    font-size: 11px;
    height: 50%;
    line-height: 15px;
  }
  .footer-wrapper .contact-list {
    justify-content: center;
    margin-bottom: 40px;
  }
  .footer-wrapper .contact-list .contact-item {
    width: 25px;
    height: 25px;
  }
  .footer-wrapper .contact-list .contact-item .icon {
    width: 25px;
    height: 25px;
  }
  .footer-wrapper .contact-list .contact-item .qr-code {
    width: 90px;
    height: 90px;
    bottom: 32px;
    left: -30px;
    padding: 5px;
  }
  .footer-wrapper .contact-list .contact-item .qr-code img {
    width: 80px;
    height: 80px;
  }
  .footer-wrapper .contact-list .contact-item .qr-code.text {
    height: auto;
  }
  .footer-wrapper .contact-list .contact-item .qr-code.text p {
    font-size: 12px;
    line-height: 20px;
    height: 20px;
  }
  .footer-wrapper .contact-list .contact-item .qr-code.telephone {
    width: 140px;
    left: calc(13px - 70px);
  }
  .footer-wrapper .contact-list .contact-item .qr-code.address {
    width: 320px;
    left: calc(13px - 160px);
  }
  .footer-wrapper .contact-list .contact-item .qr-code.email {
    width: 200px;
    left: calc(13px - 162px);
  }
  .footer-wrapper .copy-right {
    font-size: 10px;
    font-weight: 400;
    margin-bottom: 33px;
  }
}
/*# sourceMappingURL=app.css.map */