@charset "UTF-8";
@import url(//fonts.googleapis.com/earlyaccess/notosanstc.css);
html, body, div, span, applet, object, iframe,
h1, h2, h3, h4, h5, h6, p, blockquote, pre,
a, abbr, acronym, address, big, cite, code,
del, dfn, em, img, ins, kbd, q, s, samp,
small, strike, strong, sub, sup, tt, var,
b, u, i, center,
dl, dt, dd, ol, ul, li,
fieldset, form, label, legend,
table, caption, tbody, tfoot, thead, tr, th, td,
article, aside, canvas, details, embed,
figure, figcaption, footer, header, hgroup,
menu, nav, output, ruby, section, summary,
time, mark, audio, video {
  margin: 0;
  padding: 0;
  border: 0;
  font-size: 100%;
  font-family: "Roboto", "Noto Sans TC", sans-serif !important;
  font: inherit;
  vertical-align: baseline;
}

/* HTML5 display-role reset for older browsers */
article, aside, details, figcaption, figure,
footer, header, hgroup, menu, nav, section {
  display: block;
}

body {
  line-height: 1;
}

ol, ul {
  list-style: none;
}

blockquote, q {
  quotes: none;
}

blockquote:before, blockquote:after,
q:before, q:after {
  content: "";
  content: none;
}

table {
  border-collapse: collapse;
  border-spacing: 0;
}

.custom-container-width {
  max-width: 1230px;
}

a, a:hover {
  color: #000;
  text-decoration: none;
}

.container {
  position: relative;
  display: block;
  max-width: 1440px;
}
.container.flex {
  display: flex;
}

.header {
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  z-index: 1000;
}
.header .header-menu {
  position: relative;
  z-index: 100;
  display: flex;
  height: 100px;
  flex-direction: row;
  align-items: center;
  transition: 0.3s ease-in;
  background: #fff;
  padding-left: 5%;
  box-shadow: 0 0 10px rgba(0, 0, 0, 0.1);
  z-index: 100;
}
.header .header-menu .logo {
  position: relative;
  z-index: 100;
  display: flex;
  align-items: center;
  justify-content: flex-start;
  flex-wrap: nowrap;
}
.header .header-menu .logo a {
  display: block;
}
.header .header-menu .logo-name {
  margin-left: 20px;
  font-size: 20px;
  color: #17376B;
  font-weight: 700;
  text-align: center;
}
.header .header-menu .menu {
  position: relative;
  z-index: 100;
  display: flex;
  height: 100%;
  padding-right: 50px;
  margin-left: auto;
}
.header .header-menu .menu ul {
  display: flex;
  align-items: center;
}
.header .header-menu .menu ul a {
  margin-left: 25px;
  font-size: 16px;
  color: #000;
}
.header .header-menu .menu ul a:hover {
  color: #ff0000;
}
.header .header-menu .mb-nav {
  position: relative;
  height: 100px;
  z-index: 100;
  display: flex;
  justify-content: center;
  align-items: center;
  padding: 0 25px;
  border-left: 1px solid #d9d9d9;
  border-right: 1px solid #d9d9d9;
}
.header .header-menu .mb-nav .hamburger {
  cursor: pointer;
}
.header .header-menu .mb-nav .hamburger .line {
  width: 45px;
  height: 5px;
  background-color: #000;
  display: block;
  margin: 8px auto;
  transition: all 0.3s ease-in-out;
}
.header .header-menu .mb-nav #hamburger.active .line:nth-child(1),
.header .header-menu .mb-nav #hamburger.active .line:nth-child(3) {
  width: 40px;
}
.header .header-menu .mb-nav #hamburger.active .line:nth-child(1) {
  transform: translateX(10px) rotate(45deg);
}
.header .header-menu .mb-nav #hamburger.active .line:nth-child(3) {
  transform: translateX(10px) rotate(-45deg);
}
.header .mb-content {
  position: fixed;
  top: 0;
  right: 0;
  z-index: 49;
  width: 100%;
  max-width: 420px;
  height: 100vh;
  padding: 140px 20px 0 20px;
  background: #fff;
  transform: translateX(100%);
  opacity: 0;
  transition: all 0.6s ease-in-out;
}
.header .mb-content.open {
  display: block;
  opacity: 1;
  transform: translateX(0);
}
.header .mb-content .item-title {
  position: relative;
  display: block;
  border-bottom: 2px solid #e2e2e2;
  cursor: pointer;
}
.header .mb-content .item-title:hover::after {
  content: "";
  position: absolute;
  transform: scaleX(1);
}
.header .mb-content .item-title:hover a {
  color: #fe0000;
}
.header .mb-content .item-title:hover a::after {
  transform: translate(-50%, 0);
}
.header .mb-content .item-title:hover ~ .item-content {
  display: block;
  padding-top: 20px;
  animation: mbnavanimation 0.4s 0.3s ease-in-out both;
}
.header .mb-content .item-title::after {
  content: "";
  position: absolute;
  width: 100px;
  background-color: #fe0000;
  bottom: -2px;
  height: 2px;
  left: 0;
  transform: scaleX(0);
  transform-origin: left;
  transition: all 0.5s ease-in-out;
}
.header .mb-content .item-title > a {
  position: relative;
  display: block;
  font-size: 22px;
  font-weight: 500;
  line-height: 1;
  padding: 20px;
  color: #000;
}
.header .mb-content .item-title > a::before {
  content: "";
  width: 12px;
  height: 1px;
  background-color: #fe0000;
  position: absolute;
  top: 50%;
  right: 5px;
  transform: translate(-50%, 0);
  z-index: 1;
}
.header .mb-content .item-title > a::after {
  content: "";
  width: 12px;
  height: 1px;
  background-color: #fe0000;
  position: absolute;
  top: 50%;
  right: 5px;
  z-index: 1;
  transform: translate(-50%, 0) rotate(90deg);
  transition: all 0.5s ease-in-out;
}
.header .mb-content .item-content {
  display: none;
  width: 100%;
  padding: 20px 30px;
}
.header .mb-content .item-content:hover, .header .mb-content .item-content.open {
  display: block;
  padding-top: 20px;
  animation: mbnavanimation 0.4s 0.3s ease-in-out both;
}
.header .mb-content .item-content li {
  padding: 5px 0;
  cursor: pointer;
}
.header .mb-content .item-content li:hover a {
  color: #fe0000;
}
.header .mb-content .item-content li a {
  display: block;
  color: #3a3a3a;
  font-size: 18px;
  font-weight: 500;
  padding: 5px 0;
}
.header .mask {
  display: none;
  position: fixed;
  left: 0;
  top: 0;
  right: 0;
  bottom: 0;
  background-color: rgba(0, 0, 0, 0.5);
  pointer-events: none;
  animation: opacity 0.5s ease-in-out;
}
.header .mask.open {
  display: block;
  pointer-events: initial;
}
.header .lang {
  position: relative;
  z-index: 100;
  display: flex;
  justify-content: center;
  align-items: center;
  width: 238px;
  height: 100%;
  background: #ff0000;
  cursor: pointer;
}
.header .lang:hover .lang-content, .header .lang.open .lang-content {
  opacity: 1;
  transform: translateY(0);
}
.header .lang p {
  font-size: 16px;
  color: #fff;
}
.header .lang .lang-content {
  position: absolute;
  left: 0;
  bottom: -80px;
  z-index: 100;
  width: 100%;
  background: #fff;
  opacity: 0;
  transform: translateY(-15px);
  transition: all 0.3s ease-in-out;
}
.header .lang .lang-content a {
  display: block;
  width: 100%;
  text-align: center;
  padding: 10px 0;
  border-bottom: 1px solid #ecf0f1;
  transition: all 0.4s ease-in-out;
}
.header .lang .lang-content a:hover, .header .lang .lang-content a.active {
  color: #fff;
  background: #ff0000;
}
.header .lang .lang-content a:last-child {
  border-bottom: 0;
}

.page-banner {
  position: relative;
  width: 100%;
  height: 229px;
  background: url(../images/banner/page-banner.png) no-repeat;
}
.page-banner::after {
  content: "";
  display: block;
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background: url(../images/banner/page-banner-bottom.png) no-repeat;
  background-size: 100% 100%;
  pointer-events: none;
}
.page-banner .contant {
  height: 229px;
  max-height: 100%;
  display: flex;
  align-items: center;
}
.page-banner .contant .text {
  font-size: 40px;
  font-weight: 700;
  color: #fff;
}
.page-banner .bread-crumbs {
  position: absolute;
  right: 0;
  bottom: 0;
  z-index: 10;
  display: block;
}
.page-banner .bread-crumbs ul {
  display: flex;
}
.page-banner .bread-crumbs ul li:last-child a:after {
  display: none;
}
.page-banner .bread-crumbs ul li a {
  position: relative;
  display: block;
  font-size: 15px;
  font-weight: 400;
  margin-right: 60px;
  color: #06193A;
}
.page-banner .bread-crumbs ul li a::after {
  content: "";
  position: absolute;
  top: 50%;
  right: -45px;
  transform: translateY(-50%);
  display: block;
  width: 26.5px;
  height: 1px;
  background: #000;
}
.page-banner .bread-crumbs ul li:last-child a {
  margin-right: 16px;
}

@media screen and (max-width: 1200px) {
  .header .header-menu .menu ul {
    text-align: center;
  }
  .header .header-menu .menu ul a {
    margin-left: 10px;
  }
}
@media screen and (max-width: 1200px) {
  .header .header-menu {
    display: flex;
    padding-left: 0;
    justify-content: space-between;
    height: 80px;
  }
  .header .header-menu .mb-nav {
    order: 1;
    height: 80px;
  }
  .header .header-menu .logo {
    order: 2;
  }
  .header .header-menu .lang {
    order: 3;
  }
  .header .header-menu .menu {
    display: none;
  }
}
@media screen and (max-width: 768px) {
  .header .header-menu .logo {
    padding: 0 20px;
    flex-wrap: wrap;
    justify-content: center;
  }
  .header .header-menu .logo img {
    width: 100%;
    max-width: 142px;
  }
  .header .header-menu .logo p {
    margin-top: 10px;
    margin-left: 20px;
  }
}
@media screen and (max-width: 576px) {
  .header .header-menu .logo {
    padding: 0;
  }
  .header .header-menu .logo img {
    max-width: 100px;
  }
  .header .header-menu .logo .logo-name {
    width: 100%;
    font-size: 16px;
  }
  .header .lang {
    width: 100px;
    max-width: inherit;
    padding: 0 15px;
  }
}
.footer {
  overflow: hidden;
  padding: 40px 0;
  background: #06193A;
}
.footer-top {
  display: flex;
  padding-bottom: 36px;
  justify-content: space-between;
  border-bottom: 1px solid #fff;
}
.footer-top .ft-logo {
  display: flex;
  align-items: center;
}
.footer-top .ft-logo p {
  font-size: 20px;
  color: #fff;
  margin-left: 14px;
}
.footer-top .ft-menu {
  display: flex;
  align-items: center;
}
.footer-top .ft-menu a {
  position: relative;
  font-size: 16px;
  margin: 0 20px;
  color: #fff;
}
.footer-top .ft-menu a:hover {
  font-weight: bold;
}
.footer-top .ft-menu a:last-child {
  margin-right: 0px;
}
.footer-top .ft-menu a:last-child::after {
  display: none;
}
.footer-top .ft-menu a::after {
  content: "";
  position: absolute;
  top: 0;
  right: -20px;
  display: block;
  width: 1px;
  height: 16px;
  background: rgba(255, 255, 255, 0.2);
}
.footer-btm {
  padding-top: 30px;
}
.footer-btm .footer-company {
  display: flex;
  flex-wrap: wrap;
  padding-bottom: 16px;
  gap: 32px;
}
.footer-btm a {
  color: #fff;
  font-size: 16px;
  line-height: 1.4;
}
.footer-btm p {
  display: block;
  font-size: 16px;
  color: rgba(255, 255, 255, 0.6);
}
@media screen and (max-width: 1180px) {
  .footer-btm {
    flex-wrap: wrap;
  }
  .footer-btm p {
    width: 100%;
  }
}
@media screen and (max-width: 992px) {
  .footer .footer-top,
  .footer-btm {
    flex-direction: column;
  }
  .footer .footer-top p,
  .footer-btm p {
    text-align: left;
  }
  .footer .ft-logo {
    margin-bottom: 36px;
  }
  .footer .ft-logo img {
    width: 25%;
  }
}
@media screen and (max-width: 576px) {
  .footer-top .ft-menu {
    flex-wrap: wrap;
  }
  .footer-top .ft-menu a {
    max-width: 100%;
    margin-bottom: 1em;
    margin-top: 1em;
  }
  .footer-top .ft-menu a:last-child {
    margin-right: 20px;
  }
  .footer-top .ft-menu a:last-child::after {
    display: block;
  }
  .footer-btm .footer-company a {
    width: 100%;
    flex-grow: 1;
  }
}
.gototopBlock {
  background-color: #006ACB;
  border-radius: 10px;
  box-shadow: rgba(0, 0, 0, 0.4) 0 0 10px;
  position: fixed;
  right: 2%;
  bottom: 2%;
  z-index: 999;
  display: none;
  transition: margin-bottom 0.3s;
  transition-delay: 0.1s;
  cursor: pointer;
}
.gototopBlock:hover {
  opacity: 0.8;
  margin-bottom: 20px;
}
.gototopBlock .gototop .gototopImg {
  display: flex;
  justify-content: center;
  align-items: center;
  width: 60px;
  height: 60px;
}

@media screen and (max-width: 576px) {
  .gototop {
    display: none;
  }
}
.pc {
  display: block;
}

.sp {
  display: none;
}

@media screen and (max-width: 576px) {
  .pc {
    display: none;
  }
  .sp {
    display: block;
  }
}
.IndexPage {
  padding-bottom: 100px;
}
.IndexPage .index-banner {
  position: relative;
}
.IndexPage .index-banner .bannerBtn {
  background-color: #C40C24;
  color: white;
  position: absolute;
  z-index: 9;
  border-radius: 0 24px 0 0;
  cursor: pointer;
  transition: 0.3s;
  font-size: 14px;
}
.IndexPage .index-banner .bannerBtn .morebtn {
  width: 164px;
  height: 46px;
  display: flex;
  justify-content: center;
  align-items: center;
}
.IndexPage .index-banner .bannerBtn span {
  transition: all ease-in 0.3s;
  margin-left: 8px;
  height: 14px;
}
.IndexPage .index-banner .bannerBtn span img {
  width: 100%;
  height: 100%;
}
.IndexPage .index-banner .bannerBtn:hover {
  transition: 0.3s;
}
.IndexPage .index-banner .bannerBtn:hover span {
  display: inline-block;
}
.IndexPage .index-banner .bannerBtn:hover span:nth-child(1) {
  margin-left: 46px;
}
.IndexPage .index-banner .bannerBtn.pc {
  right: 38.5%;
  bottom: 30%;
}
.IndexPage .index-banner .bannerBtn.sp {
  right: 10%;
  top: 34%;
  font-size: 12px;
  border-radius: 0 16px 0 0;
}
.IndexPage .index-banner .bannerBtn.sp .morebtn {
  height: 32px;
  width: 126px;
}
.IndexPage .index-banner .bannerBtn.sp span {
  margin-left: 4px;
}
.IndexPage .index-banner .bannerBottomBar {
  position: absolute;
  z-index: 9;
  bottom: -1px;
  width: 100%;
  height: 70px;
  background: url(../images/banner/page-banner-bottom.png) right bottom no-repeat;
  background-size: cover;
}
.IndexPage .index-banner .img img {
  width: 100%;
}
.IndexPage .index-banner .img .bottom {
  content: "";
  display: block;
  position: absolute;
  width: 100%;
  right: 0;
  bottom: 0;
  background: url(../images/index/banner-bottom.png) no-repeat;
}
.IndexPage .index-banner .swiper-pagination {
  position: absolute;
  left: 10%;
  bottom: 4%;
  z-index: 10000;
  text-align: inherit;
}
.IndexPage .index-banner .swiper-pagination span {
  display: inline-block;
  width: 40px;
  height: 3px;
  border-radius: 0;
  margin: 0 10px;
  cursor: pointer;
  background: rgba(255, 255, 255, 0.6);
  opacity: 1;
}
.IndexPage .index-banner .swiper-pagination span.swiper-pagination-bullet-active {
  background: #0079AD;
}
.IndexPage .index-item-1 {
  padding: 150px 0 250px;
  overflow: hidden;
}
.IndexPage .index-item-1 .company img {
  width: 100%;
  max-width: 579px;
}
.IndexPage .index-item-1-right {
  position: relative;
  width: calc(100% - 579px);
  padding-left: 100px;
}
.IndexPage .index-item-1-right::before {
  content: "";
  position: absolute;
  top: 50%;
  left: -300px;
  transform: translateY(-50%);
  display: block;
  width: 1386px;
  height: 756px;
  z-index: -1;
  border-top-left-radius: 150px;
  border-bottom-left-radius: 150px;
  background: 520px 0 url(../images/index/map.png) #e9e9e9 no-repeat;
}
.IndexPage .index-item-1-right .name {
  font-weight: 600;
  font-size: 45px;
  color: #06193A;
  margin: 20px 0 40px;
}
.IndexPage .index-item-1-right h5 {
  line-height: 1.4;
  font-weight: 400;
  font-size: 20px;
  color: #000;
}
.IndexPage .index-item-1-right .advantages {
  display: flex;
  flex-wrap: wrap;
  margin-top: 50px;
}
.IndexPage .index-item-1-right .advantages .item {
  display: flex;
  width: 50%;
  align-items: center;
  margin-bottom: 40px;
}
.IndexPage .index-item-1-right .advantages .item .icon {
  position: relative;
  display: flex;
  align-items: center;
  justify-content: center;
  min-width: 98px;
  min-height: 98px;
  background: #fff;
}
.IndexPage .index-item-1-right .advantages .item .icon::before {
  content: "";
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
  display: block;
  width: 92px;
  height: 92px;
  border: 1px dashed #8F8D8D;
}
.IndexPage .index-item-1-right .advantages .item .icon:nth-child(1) svg {
  width: 62px;
  height: 54px;
}
.IndexPage .index-item-1-right .advantages .item .text {
  padding: 0 15px;
}
.IndexPage .index-item-1-right .advantages .item .text P:nth-child(1) {
  font-size: 20px;
  font-weight: 700;
  margin-bottom: 10px;
  color: #000;
}
.IndexPage .index-item-1-right .advantages .item .text P:nth-child(2) {
  line-height: 1.3;
  font-weight: 400;
  font-size: 18px;
  color: #000;
}
.IndexPage .index-item-2 {
  position: relative;
  padding: 68px 0;
  overflow: hidden;
}
.IndexPage .index-item-2::before {
  content: "";
  display: block;
  position: absolute;
  top: 50%;
  left: 0;
  transform: translateY(-50%);
  width: 790px;
  height: 856px;
  border-top-right-radius: 150px;
  border-bottom-right-radius: 150px;
  background: -500px -100px url(../images/index/map.png) #ECECEC no-repeat;
}
.IndexPage .index-item-2 .text {
  display: flex;
  align-items: center;
  padding-top: 100px;
  margin-bottom: 100px;
}
.IndexPage .index-item-2 .text-lt p {
  color: #06193A;
  font-size: 45px;
  font-weight: 600;
}
.IndexPage .index-item-2 .text-rt {
  margin-left: 100px;
}
.IndexPage .index-item-2 .text-rt P:nth-child(1) {
  font-weight: 700;
  font-size: 25px;
  color: #000;
  margin-bottom: 20px;
}
.IndexPage .index-item-2 .text-rt P:nth-child(2) {
  font-size: 18px;
  font-weight: 400;
  color: #000;
  line-height: 1.4;
}
.IndexPage .index-item-2 .pro {
  display: flex;
  margin-bottom: 50px;
  justify-content: space-between;
}
.IndexPage .index-item-2 .pro.en-pro {
  justify-content: start;
  gap: 56px;
}
.IndexPage .index-item-2 .pro .item {
  position: relative;
  max-height: 380px;
  padding: 25px 0 30px;
  text-align: center;
  border-radius: 30px;
  background: linear-gradient(#e3e3e3 0%, #cacaca 100%);
  overflow: hidden;
  cursor: pointer;
}
.IndexPage .index-item-2 .pro .item:hover h3 {
  opacity: 0;
}
.IndexPage .index-item-2 .pro .item:hover .number {
  transform: translateY(-200px);
  z-index: 100;
}
.IndexPage .index-item-2 .pro .item:hover .bg {
  opacity: 1;
  visibility: inherit;
}
.IndexPage .index-item-2 .pro .item img {
  padding-top: 20px;
  margin-bottom: 15px;
}
.IndexPage .index-item-2 .pro .item h3 {
  position: relative;
  z-index: 10;
  font-size: 18px;
  font-weight: 700;
  color: #22437B;
}
.IndexPage .index-item-2 .pro .item .number {
  position: absolute;
  left: -20px;
  bottom: 15px;
  font-size: 96px;
  font-weight: 700;
  color: #e6e6e6;
  transition: 0.5s ease-in-out;
}
.IndexPage .index-item-2 .pro .item .bg {
  opacity: 0;
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background: rgba(34, 67, 123, 0.58);
  transition: 0.5s ease-in-out;
  visibility: hidden;
}
.IndexPage .index-item-2 .pro .item .bg p {
  position: absolute;
  left: 50%;
  width: 100%;
  margin-top: 190px;
  transform: translateX(-50%);
  font-size: 18px;
  font-weight: 700;
  color: #fff;
}
.IndexPage .index-item-2 .pro .item .bg .icon {
  position: absolute;
  top: 20px;
  right: 20px;
  width: 21px;
  height: 21px;
  fill: #fff;
}
.IndexPage .index-item-3 {
  position: relative;
  padding-top: 200px;
  overflow: hidden;
}
.IndexPage .index-item-3::after {
  content: "";
  display: block;
  position: absolute;
  top: 30%;
  left: 28%;
  width: 100%;
  height: 100vh;
  background: url(../images/index/img_index_techBg.png) no-repeat;
}
.IndexPage .index-item-3 .text {
  text-align: center;
  margin-bottom: 100px;
}
.IndexPage .index-item-3 .text p {
  font-size: 45px;
  font-weight: 600;
  color: #06193A;
  margin-bottom: 50px;
}
.IndexPage .index-item-3 .text h5 {
  font-size: 18px;
  font-weight: 400;
  color: #000;
}
.IndexPage .index-item-3 .content {
  position: relative;
  z-index: 10;
}
.IndexPage .index-item-3 .content .item {
  max-width: 192px;
  padding-left: 0;
  padding-right: 0;
}
.IndexPage .index-item-3 .content .item .icon {
  margin-bottom: 40px;
  text-align: center;
}
.IndexPage .index-item-3 .content .item .icon svg {
  display: inline-block;
  fill: #22437B !important;
}
.IndexPage .index-item-3 .content .item .icon svg:nth-child(1) {
  width: 104px;
  height: 131px;
}
.IndexPage .index-item-3 .content .item .text h4 {
  position: relative;
  display: inline-block;
  font-size: 26px;
  font-weight: 700;
  color: #C40C24;
  padding-bottom: 10px;
  border-bottom: 1px dashed #000;
  margin-bottom: 30px;
}
.IndexPage .index-item-3 .content .item .text h4::after {
  content: "";
  position: absolute;
  right: 0.5px;
  bottom: -3.5px;
  z-index: 12;
  display: block;
  width: 7px;
  height: 7px;
  background: #000;
  border-radius: 50%;
}
.IndexPage .index-item-3 .content .item .text p {
  line-height: 1.5;
  font-size: 16px;
  font-weight: 400;
  color: #000;
}
.IndexPage .more {
  display: flex;
  align-items: center;
  justify-content: center;
  width: 250px;
  height: 60px;
  color: #fff;
  font-weight: 700;
  background: #C40C24;
  border-top-right-radius: 30px;
}
.IndexPage .more span {
  transition: all ease-in 0.3s;
  margin-left: 8px;
}
.IndexPage .more span img {
  height: 12px;
}
.IndexPage .more:hover {
  box-shadow: 4px 4px 4px #9c9c9c;
  transition: 0.3s;
}
.IndexPage .more:hover span {
  display: inline-block;
}
.IndexPage .more:hover span:nth-child(1) {
  margin-left: 80px;
}

@media screen and (max-width: 1366px) {
  .IndexPage .index-item-3 .container {
    padding: 0 4em;
  }
  .IndexPage .index-item-3 .content .item .text p {
    padding: 0 1.4em;
  }
  .IndexPage .index-banner .bannerBtn.pc {
    right: 35%;
    bottom: 28%;
  }
}
@media screen and (max-width: 1200px) {
  .IndexPage .index-item-1-right {
    width: calc(100% - 300px);
    padding-left: 50px;
  }
  .IndexPage .index-item-1-right.en-text {
    width: 100%;
  }
  .IndexPage .index-item-2 {
    background: #ECECEC;
  }
  .IndexPage .index-item-2 .text {
    flex-wrap: wrap;
    margin-bottom: 50px;
  }
  .IndexPage .index-item-2 .text .text-rt {
    margin-left: 0;
    margin-top: 20px;
  }
  .IndexPage .index-item-2 .pro {
    flex-wrap: wrap;
  }
  .IndexPage .index-item-2 .pro .item {
    margin-bottom: 20px;
  }
}
@media screen and (max-width: 1180px) {
  .IndexPage .index-item-2 {
    padding: 112px;
  }
  .IndexPage .index-item-2 .pro {
    justify-content: space-around;
  }
  .IndexPage .index-item-2 .pro .item {
    margin-bottom: 5em;
  }
  .IndexPage .index-banner .bannerBtn.pc {
    right: 33%;
    bottom: 24%;
  }
}
@media screen and (max-width: 1024px) {
  .IndexPage .index-item-2 {
    padding: 60px;
  }
  .IndexPage .index-banner .bannerBtn.pc {
    right: 31%;
    bottom: 24%;
  }
}
@media screen and (max-width: 992px) {
  .IndexPage {
    padding-bottom: 0px;
  }
  .IndexPage .index-item-1-right {
    width: calc(100% - 250px);
    padding-left: 50px;
  }
  .IndexPage .index-item-1-right .advantages .item {
    flex-wrap: wrap;
  }
  .IndexPage .index-item-1-right .advantages .item .text {
    padding: 0;
    margin-top: 15px;
  }
  .IndexPage .index-item-1-right .advantages .item {
    padding: 0 16px;
  }
  .IndexPage .index-banner .img .bottom {
    height: 200px;
  }
  .IndexPage .index-item-2 {
    padding: 1rem;
  }
  .IndexPage .index-item-3 .content .item {
    padding-left: 1em;
    padding-right: 1em;
  }
  .IndexPage .index-item-3 .container {
    padding: 0 1rem;
  }
  .index-banner .bannerBtn.pc {
    right: 33.5%;
    bottom: 24%;
    border-radius: 0 18px 0 0;
  }
  .index-banner .bannerBtn.pc .morebtn {
    width: 144px;
    height: 32px;
    font-size: 12px;
  }
}
@media screen and (max-width: 820px) {
  .IndexPage .index-banner .bannerBtn.pc {
    right: 29%;
    bottom: 24%;
  }
}
@media screen and (max-width: 768px) {
  .IndexPage .index-item-1 {
    padding: 24px 0 50px;
    margin-top: 3em;
  }
  .IndexPage .index-item-1 .flex {
    flex-wrap: wrap;
    justify-content: center;
  }
  .IndexPage .company {
    display: none;
  }
  .IndexPage .index-item-1-right {
    width: 100%;
    padding: 15px 10px;
  }
  .IndexPage .index-item-1-right::before {
    height: 900px;
  }
  .index-banner .bannerBtn.pc {
    right: 30%;
    bottom: 24%;
    border-radius: 0 18px 0 0;
  }
  .index-banner .bannerBtn.pc .morebtn {
    width: 144px;
    height: 32px;
    font-size: 12px;
  }
}
@media screen and (max-width: 576px) {
  .IndexPage .index-banner {
    margin-bottom: 50px;
  }
  .IndexPage .index-item-1 {
    padding-top: 0;
    padding-bottom: 0;
    margin-top: 0;
    margin-bottom: 0;
    background-color: #e9e9e9;
  }
  .IndexPage .index-item-1 .container {
    padding-left: 0;
    padding-right: 0;
  }
  .IndexPage .index-item-1 .container .index-item-1-right {
    padding-left: 0;
    padding-right: 0;
    padding-bottom: 0;
    padding-top: 50px;
  }
  .IndexPage .index-item-1 .container .index-item-1-right::before {
    background: center 0 url(../images/index/map.png) #e9e9e9 no-repeat;
  }
  .IndexPage .index-item-1 .container .index-item-1-right p {
    text-align: center;
  }
  .IndexPage .index-item-1 .container .index-item-1-right h5 {
    padding-right: 2em;
    padding-left: 2em;
    text-align: justify;
  }
  .IndexPage .index-item-1 .container .index-item-1-right .advantages {
    padding-right: 1em;
    padding-left: 1em;
  }
  .IndexPage .index-item-1 .container .index-item-1-right .advantages .item {
    display: flex;
    align-items: center;
    justify-content: center;
    align-content: flex-start;
  }
  .IndexPage .index-item-1 .container .index-item-1-right .advantages .item .text {
    text-align: center;
  }
  .IndexPage .index-item-1 .container .index-item-1-right .advantages .item .text p {
    padding-left: 0;
  }
  .IndexPage .index-item-1 .container .index-item-1-right.en-text h5 {
    text-align: center;
  }
  .IndexPage .index-item-2 {
    padding: 0 0 25px;
    padding-bottom: 0;
    margin-top: 100px;
  }
  .IndexPage .index-item-2 .container {
    padding-left: 0;
    padding-right: 0;
  }
  .IndexPage .index-item-2 .text {
    justify-content: center;
    text-align: center;
  }
  .IndexPage .index-item-2 .text .text-lt {
    margin-bottom: 20px;
  }
  .IndexPage .index-item-2 .text .text-rt P:nth-child(2) {
    font-size: 20px;
    padding: 0 3.25em;
    line-height: 1.4em;
    text-align: justify;
  }
  .IndexPage .index-item-2 .text .text-rt.en-text P:nth-child(2) {
    text-align: left;
  }
  .IndexPage .index-item-2 .pro {
    justify-content: center;
  }
  .IndexPage .index-item-2 .pro.en-pro {
    justify-content: center;
    gap: 0;
  }
  .IndexPage .index-item-3 {
    padding-top: 80px;
  }
  .IndexPage .index-item-3 .container .text p {
    margin-bottom: 40px;
  }
  .IndexPage .index-item-3 .container .text h5 {
    font-size: 20px;
    line-height: 1.4em;
    padding-left: 2em;
    padding-right: 2em;
    text-align: justify;
  }
  .IndexPage .index-item-3 .content {
    flex-wrap: wrap;
  }
  .IndexPage .index-item-3 .content .item .text p {
    padding: initial;
  }
  .IndexPage .index-item-3.en-text .container .text h5 {
    text-align: center;
  }
}
/* company page content start */
.companyPage {
  padding-top: 100px;
  padding-bottom: 100px;
}
.companyPage .sectionCompanyInfo {
  margin-top: 64px;
}
.companyPage .company-mainImage {
  background-image: url(../images/company/img_companyImg_bottom.png), url(../images/company/img_company_main.png);
  background-repeat: no-repeat, no-repeat;
  background-position: bottom right, top center;
  background-size: auto, cover;
  height: 587px;
}
.companyPage .name-hit {
  font-size: 22px;
  font-weight: 800;
  color: #C40C24;
}
.companyPage .name {
  font-weight: 600;
  font-size: 45px;
  color: #06193A;
  margin: 20px 0 40px;
}
.companyPage .company-info {
  background: url(../images/company/img_company_main_textbg.png) top 70% left -25% no-repeat;
  height: 587px;
  padding-top: 4%;
  padding-left: 84px;
  padding-right: 20%;
  text-align: justify;
  color: #666666;
}
.companyPage .company-info .company-info-text .info-hit {
  font-size: 20px;
  font-weight: 700;
  color: black;
  line-height: 30px;
  letter-spacing: 0.11em;
  margin-bottom: 24px;
  text-align: left;
}
.companyPage .company-info .company-info-text p {
  font-size: 16px;
  font-weight: 500;
  line-height: 24px;
  letter-spacing: 0.11em;
  margin-bottom: 32px;
  text-align: left;
}
.companyPage .company-info-en {
  padding-top: 3%;
}
.companyPage .company-info-en .company-info-text .info-hit {
  letter-spacing: 0;
}
.companyPage .company-info-en .company-info-text p {
  letter-spacing: 0;
}
.companyPage .companyCV {
  margin-top: 90px;
  margin-bottom: 140px;
  background: url(../images/company/img_company_main_textbg.png) top 70% left -3% no-repeat;
}
.companyPage .companyCV .container .companyCVRound {
  display: flex;
  justify-content: space-between;
}
.companyPage .companyCV .container .companyCVRound .container {
  padding: 0;
}
.companyPage .companyCV .container .companyCVRound .round {
  display: flex;
  align-items: center;
  justify-content: center;
  position: relative;
  z-index: 1;
  width: 216px;
  height: 216px;
  border: 1px 0px 0px 0px;
  opacity: 0px;
  background: #E9EFF9;
  border-radius: 50%;
  text-align: center;
  margin-right: 70px;
}
.companyPage .companyCV .container .companyCVRound .round .text {
  font-size: 18px;
  font-weight: 700;
  letter-spacing: 0.1em;
  margin-top: 16px;
}
.companyPage .companyCV .container .companyCVRound .round::after {
  content: "";
  background: url(../images/company/img_iconAdd.png) no-repeat;
  width: 44px;
  height: 44px;
  position: absolute;
  left: 107%;
  z-index: 9;
}
.companyPage .companyCV .container .companyCVRound .round:nth-child(4) {
  margin-right: 0;
}
.companyPage .companyCV .container .companyCVRound .round:nth-child(4)::after {
  display: none;
}
.companyPage .companyCV-en .container .companyCVRound .round .text {
  letter-spacing: 0em;
}
.companyPage .companyFuture {
  text-align: center;
  color: white;
  background: url(../images/company/img_companyFuture.png) top center no-repeat;
  background-size: cover;
  padding-top: 100px;
  padding-bottom: 100px;
}
.companyPage .companyFuture p, .companyPage .companyFuture span {
  width: 100%;
}
.companyPage .companyFuture p {
  font-size: 40px;
  font-weight: 900;
  line-height: 1.5em;
  letter-spacing: 0.05em;
}
.companyPage .companyFuture .text {
  display: flex;
  align-items: center;
  justify-content: center;
}
.companyPage .companyFuture .text span {
  margin-top: 80px;
  width: 64%;
  font-size: 16px;
  font-weight: 500;
  line-height: 28px;
  letter-spacing: 0.2em;
}
.companyPage .companyFuture .text span::before {
  content: "";
  width: 100px;
  height: 6px;
  background-color: #E60012;
  display: block;
  position: absolute;
  bottom: 84px;
  left: 50%;
  margin-left: -50px;
}
.companyPage .companyFuture-en p {
  font-size: 36px;
}
.companyPage .companyFuture-en .text span {
  letter-spacing: 0.1em;
}
.companyPage .companyFuture-en .text span::before {
  bottom: 138px;
}
.companyPage .companyFooter .container {
  text-align: center;
  margin-top: 78px;
}
.companyPage .companyFooter .inner-block {
  height: 154px;
  display: flex;
  align-items: center;
  justify-content: center;
}
.companyPage .companyFooter .inner-block:nth-child(2) {
  border-left: #06193A 1px solid;
  border-right: #06193A 1px solid;
}
.companyPage .companyFooter .inner .iconImg {
  height: 90px;
  display: flex;
  align-items: center;
  justify-content: center;
  margin-bottom: 10px;
}
.companyPage .companyFooter .inner .text {
  font-size: 32px;
  font-weight: 600;
  line-height: 38.73px;
  letter-spacing: 0.05em;
  color: #016DC9;
  margin-top: 20px;
}

@media screen and (max-width: 1366px) {
  .companyPage .company-mainImage {
    background-image: url(../images/company/img_companyImg_bottom.png), url(../images/company/img_company_main.png);
    background-repeat: no-repeat, no-repeat;
    background-position: bottom -10px right -320px, top center;
    background-size: auto, cover;
    height: 587px;
  }
  .companyPage .company-info {
    padding-right: 5%;
    background: url(../images/company/img_company_main_textbg.png) top 70% left 10% no-repeat;
  }
  .companyPage .companyCV {
    background: url(../images/company/img_company_main_textbg.png) bottom left -8% no-repeat;
  }
  .companyPage .companyCV .container .companyCVRound .round {
    width: 180px;
    height: 180px;
  }
  .companyPage .companyFuture .text span {
    width: 70%;
  }
  .companyPage .companyFuture .text span::before {
    bottom: 84px;
  }
  .companyPage .companyFuture-en p {
    font-size: 24px;
  }
  .companyPage .companyFuture-en .text span {
    line-height: 1.4;
  }
  .companyPage .companyFuture-en .text span::before {
    bottom: 124px;
  }
}
@media screen and (max-width: 1024px) {
  .companyPage {
    padding-top: 80px;
  }
  .companyPage .company-info {
    height: auto;
    padding-right: 84px;
    background: url(../images/company/img_company_main_textbg.png) top 80% left 70% no-repeat;
  }
  .companyPage .companyCV {
    height: 180px;
    background: url(../images/company/img_company_main_textbg.png) bottom left -100% no-repeat;
    margin-bottom: 100px;
  }
  .companyPage .companyCV .name {
    font-size: 40px;
  }
  .companyPage .companyCV .container {
    height: auto;
    padding-left: 60px;
    padding-right: 60px;
  }
  .companyPage .companyCV .container .companyCVRound .row {
    justify-content: space-between;
  }
  .companyPage .companyCV .container .companyCVRound .round {
    width: 130px;
    height: 130px;
    margin-right: 40px;
  }
  .companyPage .companyCV .container .companyCVRound .round .round-inner-block .icon img {
    width: 60%;
  }
  .companyPage .companyCV .container .companyCVRound .round .round-inner-block .text {
    margin-top: 8px;
  }
  .companyPage .companyCV-en .container .companyCVRound .round .round-inner-block .icon img {
    height: 70px;
    width: auto;
  }
  .companyPage .companyCV-en .container .companyCVRound .round .round-inner-block .text {
    margin-top: 4px;
  }
  .companyPage .companyFuture p {
    padding-left: 14%;
    padding-right: 14%;
  }
  .companyPage .companyFuture .text span {
    width: 70%;
  }
  .companyPage .companyFuture .text span::before {
    bottom: 114px;
  }
  .companyPage .companyFuture-en p {
    font-size: 36px;
    letter-spacing: 0;
    line-height: 1.35em;
  }
  .companyPage .companyFuture-en .text p {
    letter-spacing: 0;
  }
  .companyPage .companyFuture-en .text span {
    letter-spacing: 0;
    text-align: center;
  }
  .companyPage .companyFuture-en .text span::before {
    bottom: 138px;
  }
}
@media screen and (max-width: 992px) {
  .companyPage .companyCV {
    height: 300px;
    background: url(../images/company/img_company_main_textbg.png) top 50px left -100% no-repeat;
  }
  .companyPage .companyCV .name {
    margin-bottom: 30px;
  }
  .companyPage .companyCV .container {
    height: auto;
    padding-left: 60px;
    padding-right: 60px;
  }
  .companyPage .companyCV .container .companyCVRound .row {
    justify-content: space-between;
  }
  .companyPage .companyCV .container .companyCVRound .round {
    width: 160px;
    height: 160px;
  }
  .companyPage .companyFuture p {
    padding-left: 14%;
    padding-right: 14%;
  }
  .companyPage .companyFuture .text span {
    width: 70%;
  }
  .companyPage .companyFuture .text span::before {
    bottom: 114px;
  }
}
@media screen and (max-width: 576px) {
  .companyPage .page-banner {
    margin-bottom: 50px;
    height: 200px;
  }
  .companyPage .page-banner .contant {
    height: 200px;
  }
  .companyPage .company-info {
    padding-left: 32px;
    padding-right: 32px;
  }
  .companyPage .companyCV {
    height: 400px;
    background: url(../images/company/img_company_main_textbg.png) top 50px left 6.5% no-repeat;
  }
  .companyPage .companyCV .name {
    margin-bottom: 30px;
  }
  .companyPage .companyCV .container {
    height: auto;
    padding-left: 10%;
    padding-right: 10%;
  }
  .companyPage .companyCV .container .companyCVRound .row {
    justify-content: space-between;
  }
  .companyPage .companyCV .container .companyCVRound .round {
    width: 140px;
    height: 140px;
    margin-bottom: 40px;
  }
  .companyPage .companyCV .container .companyCVRound .round:nth-child(2) {
    margin-right: 0;
  }
  .companyPage .companyCV .container .companyCVRound .round:nth-child(2)::after {
    display: none;
  }
  .companyPage .companyCV .container .companyCVRound .round::after {
    left: 120%;
  }
  .companyPage .companyFuture p {
    padding-left: 6%;
    padding-right: 6%;
    font-size: 24px;
  }
  .companyPage .companyFuture .text span {
    width: 80%;
    text-align: justify;
  }
  .companyPage .companyFuture .text span::before {
    bottom: 200px;
  }
  .companyPage .companyFuture-en .text span {
    letter-spacing: 0;
    text-align: center;
  }
  .companyPage .companyFuture-en .text span::before {
    bottom: 260px;
  }
  .companyPage .companyFooter .inner .text {
    font-size: 24px;
    margin-top: 10px;
  }
  .companyPage .companyFooter-en .inner .text {
    font-size: 18px;
    line-height: 1em;
  }
}
@media screen and (max-width: 414px) {
  .companyPage .company-info-en .company-info-text .info-hit {
    text-align: left;
  }
  .companyPage .company-info-en .company-info-text p {
    text-align: left;
  }
  .companyPage .companyCV .container .companyCVRound .round::after {
    left: 114%;
  }
  .companyPage .companyFuture p {
    padding-left: 8%;
    padding-right: 8%;
    font-size: 22px;
  }
  .companyPage .companyFuture-en .text span::before {
    bottom: 260px;
  }
  .companyPage .companyFooter-en .inner .text {
    font-size: 18px;
    line-height: 1em;
    letter-spacing: 0;
  }
}
@media screen and (max-width: 390px) {
  .companyPage .company-info {
    height: auto;
    background: url(../images/company/img_company_main_textbg.png) top 80% left 70% no-repeat;
  }
  .companyPage .companyCV .container .companyCVRound .round::after {
    left: 107%;
  }
  .companyPage .companyFuture p {
    padding-left: 8%;
    padding-right: 8%;
    font-size: 22px;
  }
  .companyPage .companyFooter .inner .text {
    font-size: 22px;
  }
}
@media screen and (max-width: 375px) {
  .companyPage .companyCV .container .companyCVRound .round::after {
    left: 103%;
  }
  .companyPage .companyFuture p {
    font-size: 21px;
  }
  .companyPage .companyFuture .text span::before {
    bottom: 230px;
  }
  .companyPage-en .text span::before {
    bottom: 200px;
  }
  .companyFooter .inner .text {
    font-size: 21px;
  }
}
/* company page content end */
table,
table.data {
  width: 100%;
  white-space: nowrap;
}

.oem {
  text-align: right;
  margin-top: 25px;
  padding: 1rem 0;
  border-top: #cdcdcd 1px solid;
}
.oem a:hover {
  color: #FF0000;
}

.page-banner {
  background: url(../images/banner/page-banner.png) top center no-repeat;
  background-size: cover;
}

.itemTable {
  scroll-behavior: smooth;
}
.itemTable .scroll-hit {
  display: none;
}
.itemTable .scroll-hit-pc {
  display: flex;
  justify-content: space-between;
}
.itemTable .scroll-hit-pc,
.itemTable .scroll-hit {
  align-items: center;
  margin-bottom: 0.5em;
}
.itemTable .scroll-hit-pc img,
.itemTable .scroll-hit img {
  height: 1em;
}
.itemTable .scroll-hit-pc span,
.itemTable .scroll-hit span {
  margin-left: 0.25em;
}
.itemTable .itemTableBlack {
  overflow-x: auto;
  scroll-behavior: auto;
  width: 100%;
}

.productsPage {
  padding-top: 100px;
}
.productsPage .flex {
  display: flex;
}
.productsPage .page-banner {
  margin-bottom: 64px;
}
.productsPage .sidebar {
  width: 360px;
}
.productsPage .sidebar .si-txt {
  display: block;
  text-align: center;
  background: #22437B;
  border-top-left-radius: 30px;
  border-top-right-radius: 30px;
}
.productsPage .sidebar .si-txt p {
  color: #fff;
  font-size: 16px;
  line-height: 57px;
}
.productsPage .sidebar .si-content {
  padding: 0 10px;
  background-color: white;
  padding-bottom: 30px;
  border-bottom-left-radius: 30px;
  border-bottom-right-radius: 30px;
}
.productsPage .sidebar .si-content > li {
  padding: 0 10px;
}
.productsPage .sidebar .si-content .pro-type {
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 15px 0;
  border-bottom: 1px solid #8f8d8d;
  cursor: pointer;
}
.productsPage .sidebar .si-content .pro-type:hover h4 {
  color: #22437B;
}
.productsPage .sidebar .si-content .pro-type.active {
  border-bottom: none;
}
.productsPage .sidebar .si-content .pro-type.active h4 {
  color: #22437B;
  font-weight: 900;
}
.productsPage .sidebar .si-content .pro-type.active .left-bar:after {
  transform-origin: center center;
  transform: rotate(-100deg);
}
.productsPage .sidebar .si-content .pro-type.active .right-bar:after {
  transform-origin: center center;
  transform: rotate(100deg);
}
.productsPage .sidebar .si-content .pro-type.active ~ ol {
  padding: 15px 0;
  max-height: 100vh;
  background: #f5f5f5;
  border-top: 2px solid #22437B;
  border-bottom: 2px solid #22437B;
}
.productsPage .sidebar .si-content .pro-type h4 {
  padding-left: 10px;
  font-size: 16px;
  font-weight: 500;
  color: #000;
  cursor: pointer;
}
.productsPage .sidebar .si-content .pro-type .arrow-icon {
  display: block;
  position: relative;
  cursor: pointer;
  border-radius: 4px;
  margin-right: 20px;
  padding-right: 10px;
}
.productsPage .sidebar .si-content .pro-type .left-bar {
  position: absolute;
  background-color: transparent;
  top: 0;
  left: 0;
  width: 9px;
  height: 2px;
  display: block;
  transform: rotate(55deg);
  float: right;
  border-radius: 2px;
}
.productsPage .sidebar .si-content .pro-type .left-bar:after {
  content: "";
  background-color: #5F6368;
  width: 9px;
  height: 2px;
  display: block;
  float: right;
  border-radius: 6px 10px 10px 6px;
  z-index: -1;
  transition: 0.3s ease-in-out;
}
.productsPage .sidebar .si-content .pro-type .right-bar {
  position: absolute;
  background-color: transparent;
  top: 0px;
  left: 4.5px;
  width: 9px;
  height: 2px;
  display: block;
  transform: rotate(-55deg);
  float: right;
  border-radius: 2px;
}
.productsPage .sidebar .si-content .pro-type .right-bar:after {
  content: "";
  background-color: #5F6368;
  width: 9px;
  height: 2px;
  display: block;
  float: right;
  border-radius: 10px 6px 6px 10px;
  z-index: -1;
  transition: 0.3s ease-in-out;
}
.productsPage .sidebar .si-content ol {
  max-height: 0;
  overflow: hidden;
  transition: all 0.4s ease-in-out;
}
.productsPage .sidebar .si-content ol li.active a {
  font-weight: 700;
  color: #22437B;
}
.productsPage .sidebar .si-content ol li {
  padding-left: 35px;
}
.productsPage .sidebar .si-content ol li:last-child a {
  margin-bottom: 0px;
}
.productsPage .sidebar .si-content ol li a {
  display: block;
  position: relative;
  font-size: 16px;
  color: #434343;
  margin-bottom: 15px;
}
.productsPage .sidebar .si-content ol li a:hover {
  font-weight: 700;
  color: #22437B;
}
.productsPage .sidebar .si-content ol li a::before {
  content: "";
  position: absolute;
  top: 50%;
  left: -16px;
  transform: translateY(-50%);
  display: block;
  width: 6px;
  height: 6px;
  border-radius: 50%;
  background: #434343;
}
.productsPage .pro {
  display: block;
  padding-left: 30px;
}
.productsPage .pro-name {
  position: relative;
  padding-bottom: 12px;
  border-bottom: 1px dashed #E60012;
}
.productsPage .pro-name::after {
  content: "";
  position: absolute;
  right: 0.5px;
  bottom: -3.5px;
  z-index: 12;
  display: block;
  width: 7px;
  height: 7px;
  background: #E60012;
  border-radius: 50%;
}
.productsPage .pro-name h2 {
  font-weight: 700;
  font-size: 25px;
  color: #000;
}
.productsPage .pro-img img {
  width: 100%;
}
.productsPage .pro-img .big-img {
  display: flex;
  justify-content: center;
  margin-top: 0em;
  margin-bottom: 1em;
}
.productsPage .pro-img .big-img .item {
  display: none;
  opacity: 0;
  animation: opacity 0.5s linear;
}
.productsPage .pro-img .big-img .item.active {
  display: block;
  opacity: 1;
}
.productsPage .pro-img .big-img .item img {
  width: 100%;
  max-width: 760px;
}
.productsPage .pro-img .small-img {
  display: block;
  margin: 0 auto 50px;
  text-align: center;
  font-size: 0;
}
.productsPage .pro-img .small-img .item {
  display: inline-block;
  transition: 0.3s;
  vertical-align: middle;
  border: 1px solid rgba(0, 0, 0, 0);
  font-size: 0;
  margin: 0 5px;
  cursor: pointer;
}
.productsPage .pro-img .small-img .item:hover {
  opacity: 0.5;
}
.productsPage .pro-img .small-img .item.active {
  border: 1px solid rgb(0, 0, 0);
}
.productsPage .pro-img .small-img .item img {
  width: 78px;
}
.productsPage .pro-txt .item {
  margin-bottom: 60px;
}
.productsPage .pro-txt .item li {
  padding-left: 10px;
  margin-bottom: 10px;
}
.productsPage .pro-txt .item li p {
  position: relative;
  padding-left: 15px;
  font-weight: 400;
  color: #000;
  font-size: 18px;
}
.productsPage .pro-txt .item li p::before {
  content: "";
  position: absolute;
  top: 12.5px;
  left: 0;
  display: block;
  width: 5px;
  height: 5px;
  background: #000;
  border-radius: 50%;
}
.productsPage .pro-txt .item .data {
  border: 1px solid #969696;
}
.productsPage .pro-txt .item .data tr {
  border-bottom: 1px solid #969696;
}
.productsPage .pro-txt .item .data tr:hover {
  background: #F1F1F1;
}
.productsPage .pro-txt .item .data tr:nth-child(odd) {
  background: #F1F1F1;
}
.productsPage .pro-txt .item .data tr:first-child td:nth-child(2), .productsPage .pro-txt .item .data tr:first-child td:nth-child(3), .productsPage .pro-txt .item .data tr:first-child td:nth-child(4) {
  font-weight: 900;
  font-size: 16px;
  color: #22437B;
}
.productsPage .pro-txt .item .data tr:last-of-type {
  border-bottom: none;
}
.productsPage .pro-txt .item .data tr td {
  padding: 10px;
  text-align: center;
  border-right: 1px solid #969696;
  vertical-align: middle;
}
.productsPage .pro-txt .item .data tr td:first-child {
  width: 0;
  min-width: -moz-fit-content;
  min-width: fit-content;
  font-weight: 700;
  font-size: 16px;
  color: #fff;
  background: #B3B3B3;
}
.productsPage .pro-txt .item .data tr td:last-child {
  border-right: none;
}
.productsPage .pro-txt h5 {
  position: relative;
  font-weight: 700;
  font-size: 25px;
  color: #c40c24;
  border-bottom: 1px dashed #000;
  padding-bottom: 15px;
  margin-bottom: 25px;
}
.productsPage .pro-txt h5::after {
  content: "";
  position: absolute;
  right: 0.5px;
  bottom: -3.5px;
  z-index: 12;
  display: block;
  width: 7px;
  height: 7px;
  background: #000;
  border-radius: 50%;
}
.productsPage .pro-txt p {
  line-height: 1.5;
  font-size: 18px;
  font-weight: 400;
  color: #000;
}
.productsPage .pro .protype {
  width: 200px;
  height: 52px;
  border: transparent 1px solid;
  display: block;
}
.productsPage .pro .protype .protypehit {
  display: none;
}
.productsPage .pro .protype .protypehit.active {
  display: block;
}
.productsPage .pro .protypeBlock {
  background-color: #C40C24;
  width: 200px;
  height: 52px;
  margin-top: 12px;
  border-radius: 0 0 50px 0;
  color: white;
  display: flex;
  justify-content: center;
  align-items: center;
  font-size: 20px;
  font-weight: bold;
}
.productsPage .more {
  display: flex;
  align-items: center;
  justify-content: center;
  width: 250px;
  height: 60px;
  color: #fff;
  font-weight: 700;
  background: #C40C24;
  border-top-right-radius: 30px;
}
.productsPage .more span {
  transition: all ease-in 0.3s;
  margin-left: 8px;
}
.productsPage .more span img {
  height: 12px;
}
.productsPage .more:hover {
  box-shadow: 4px 4px 4px #9c9c9c;
}
.productsPage .more:hover span {
  display: inline-block;
}
.productsPage .more:hover span:nth-child(1) {
  margin-left: 80px;
}

.productsPage .sidebar .si-content .pro-type-bar h4 {
  padding: 15px 0;
  width: 100%;
  color: #22437B;
  font-weight: 900;
  border-bottom: 2px solid #22437B;
  padding-left: 10px;
}

/* series-pro */
.productsPage .mainBlock {
  background: url(../images/products/img_pro_sideBg.png) left top repeat-y;
}
.productsPage .sidebarBlock {
  background-color: #F5F5F5;
  background-image: url(../images/products/img_pro_sidetopBg.png), url(../images/products/img_pro_sideRightBg.png);
  background-repeat: no-repeat, repeat-y;
  background-position: top right, right;
  padding-left: 40px;
  padding-top: 30px;
  padding-bottom: 150px;
}
.productsPage .proBlock {
  padding-top: 30px;
  padding-bottom: 150px;
  padding-left: 0;
  padding-right: 0;
  background-color: white;
}
.productsPage .proBlock .row {
  padding: 0;
}
.productsPage .proBlock .serPro {
  width: 344px;
  text-align: center;
  margin-bottom: 70px;
}
.productsPage .proBlock .serPro:hover img {
  opacity: 0.5;
  transition: 0.5s;
}
.productsPage .proBlock .serPro:hover .serProText {
  color: #4180ed;
}
.productsPage .proBlock .serPro:hover .serProImg {
  border: #4180ed 1px solid;
}
.productsPage .proBlock .serPro .serProImg {
  width: 100%;
  height: 226px;
  border-radius: 30px;
  background-image: linear-gradient(rgba(13, 10, 10, 0.1), #CACACA);
  display: flex;
  align-items: center;
  justify-content: center;
  overflow: hidden;
  margin-bottom: 32px;
  background: white;
  border: #8f8d8d 1px solid;
}
.productsPage .proBlock .serPro .serProImg img {
  width: 90%;
  transition: 0.5s;
}
.productsPage .proBlock .serPro .proNum {
  font-weight: bolder;
  font-size: 20px;
  margin-bottom: 24px;
}
.productsPage .proBlock .serPro .proNum::after {
  content: "";
  width: 72px;
  height: 72px;
  display: block;
  background: url(../images/products/img_proNumLine.png) no-repeat;
  position: absolute;
  left: 50%;
  bottom: -34px;
  margin-left: -3px;
}
.productsPage .proBlock .serPro .serProText {
  color: #22437B;
  font-size: 16px;
  font-weight: bold;
  letter-spacing: 0.1em;
  display: block;
  z-index: 9;
  position: relative;
}
.productsPage .proBlock .serPro .serProText:hover {
  color: #4180ed;
}

.allproPage {
  overflow: hidden;
  text-align: justify;
  padding-bottom: 80px;
}
.allproPage.allproPage {
  text-align: left;
}
.allproPage .proName a {
  color: #22437B;
}
.allproPage .proName a:hover {
  color: #4180ed;
}
.allproPage .imgPro img {
  transition: 0.3s;
}
.allproPage .imgPro img:hover {
  transition: 0.3s;
  opacity: 0.75;
}
.allproPage .inner-block {
  margin-bottom: 127px;
  overflow: hidden;
}
.allproPage .inner-block .contentBlock {
  overflow: hidden;
}
.allproPage .inner-block .InforBlock {
  display: flex;
  justify-content: center;
  flex-direction: column;
}
.allproPage .inner-block .InforBlock-en .proName,
.allproPage .inner-block .InforBlock-en .proInfor {
  letter-spacing: 0;
}
.allproPage .inner-block .InforBlock-en .proInfor {
  line-height: 1.5em;
}
.allproPage .inner-block.leftside .ImgBlock {
  text-align: right;
}
.allproPage .inner-block .imgPro.right-block {
  margin-left: 0;
  margin-right: 30%;
}
.allproPage .inner-block .proName {
  color: #22437B;
  font-size: 25px;
  font-weight: 600;
  line-height: 37.5px;
  letter-spacing: 0.1em;
}
.allproPage .inner-block .proName::after {
  content: "";
  display: block;
  width: 235px;
  height: 6px;
  background: url(../images/products/img_nameLine.png) no-repeat;
}
.allproPage .inner-block .proInfor {
  width: 56%;
  font-size: 18px;
  font-weight: 400;
  line-height: 32.4px;
  letter-spacing: 0.05em;
  margin-top: 30px;
  margin-bottom: 50px;
}
.allproPage .inner-block .left-block {
  margin-left: 36%;
}
.allproPage .inner-block .left-block .proInfor {
  width: 90%;
}
.allproPage .allproPageBlock .leftside .ImgBlock {
  background: url("../images/products/img-all-pro-bgLeft.png") no-repeat;
  background-position: left 50%;
}
.allproPage .allproPageBlock .rightside .ImgBlock {
  background: url("../images/products/img-all-pro-bgRight.png") no-repeat;
  background-position: right 50%;
}
.pro-txt .yt iframe {
  padding-bottom: 3em;
}
.pro-txt .yt video {
  margin-bottom: 60px;
}

@media screen and (max-width: 1366px) {
  .productsPage {
    padding-top: 80px;
  }
  .allproPage .allproPageBlock .leftside .ImgBlock {
    background-size: 100%;
  }
  .allproPage .allproPageBlock .leftside .InforBlock {
    padding-left: 5%;
  }
  .allproPage .allproPageBlock .rightside .ImgBlock {
    background-size: 100%;
  }
  .allproPage .inner-block .left-block {
    margin-left: 10%;
  }
  .allproPage .inner-block .proInfor {
    width: 90%;
  }
}
@media screen and (max-width: 1180px) {
  .allproPage .allproPageBlock .leftside .ImgBlock img {
    width: 100%;
  }
  .allproPage .allproPageBlock .rightside .ImgBlock {
    background-size: 100%;
  }
  .allproPage .inner-block .left-block {
    margin-left: 10%;
  }
  .allproPage .inner-block .proInfor {
    width: 90%;
  }
  .allproPage .inner-block .imgPro.right-block {
    margin-right: 0;
  }
  .allproPage .inner-block .imgPro.right-block img {
    width: 100%;
  }
}
@media screen and (max-width: 1024px) {
  .productsPage .page-banner {
    margin-bottom: 50px;
  }
  .productsPage .sidebarBlock {
    padding-top: 70px;
  }
  .productsPage .sidebarBlock .sidebar {
    width: 90%;
  }
  .productsPage .proBlock {
    padding-top: 70px;
  }
  .productsPage .pro {
    padding-left: 0;
    padding-right: 30px;
  }
  .productsPage .proBlock .serPro .serProImg {
    height: 180px;
  }
}
@media screen and (max-width: 992px) {
  .page-banner .contant .text {
    font-size: 28px;
  }
  .productsPage {
    /* series-pro */
  }
  .productsPage .mainBlock {
    margin-top: 100px;
  }
  .productsPage .sidebarBlock {
    background-image: none;
    padding-top: 30px;
    padding-bottom: 30px;
  }
  .productsPage .proBlock {
    padding-bottom: 100px;
  }
  .productsPage .proBlock .row {
    padding-bottom: 0;
  }
  .productsPage .pro {
    padding-right: 10%;
    padding-left: 10%;
  }
  .productsPage .pro .serPro {
    width: 100%;
    margin-bottom: 60px;
  }
  .productsPage .pro .serPro .serProImg {
    margin-bottom: 20px;
  }
  .allproPage .allproPageBlock .leftside .ImgBlock {
    text-align: center;
    background-size: 74%;
  }
  .allproPage .allproPageBlock .leftside .ImgBlock img {
    width: 80%;
  }
  .allproPage .allproPageBlock .leftside.pro1 img, .allproPage .allproPageBlock .leftside.pro3 img {
    margin-bottom: 2em;
  }
  .allproPage .allproPageBlock .rightside {
    flex-direction: column-reverse;
  }
  .allproPage .allproPageBlock .rightside .ImgBlock {
    text-align: center;
    background-size: 74%;
  }
  .allproPage .allproPageBlock .rightside .ImgBlock img {
    width: 80%;
  }
}
@media screen and (max-width: 768px) {
  .ProductsDetail {
    /* TABLE 表格 */
  }
  .ProductsDetail .bread-crumbs {
    display: none;
  }
  .ProductsDetail .pro-txt .item .data {
    width: 100%;
  }
  .productsPage {
    padding-top: 75px;
  }
  .productsPage .page-banner {
    margin-bottom: 50px;
    height: 200px;
  }
  .productsPage .page-banner .bread-crumbs {
    bottom: -30px;
  }
  .productsPage .page-banner .contant {
    height: 200px;
  }
}
@media screen and (max-width: 576px) {
  .itemTable .scroll-hit {
    display: flex;
  }
  .allproPage .allproPageBlock {
    padding-top: 3em;
  }
  .allproPage .allproPageBlock .leftside .InforBlock {
    padding-left: auto;
  }
  .allproPage .allproPageBlock .leftside .InforBlock,
  .allproPage .allproPageBlock .rightside .InforBlock {
    padding-left: 0;
    padding-right: 0;
  }
  .allproPage .inner-block .left-block {
    margin-left: auto;
  }
  .allproPage .inner-block .left-block .proInfor {
    width: auto;
  }
  .allproPage .inner-block .proInfor {
    width: auto;
  }
  .allproPage .inner-block .proName,
  .allproPage .inner-block .proInfor {
    padding-left: 10%;
    padding-right: 10%;
  }
  .allproPage .inner-block .proInfor {
    margin-bottom: 1em;
  }
}
/*  warehousing */
.warehousingPage .container {
  margin-top: 100px;
  margin-bottom: 100px;
}
.warehousingPage .container .photoBlock {
  margin-bottom: 60px;
}
.warehousingPage .container .photoBlock .photoInnerBlock {
  border: #D9D9D9 1px solid;
  padding: 0.75em 0.5em;
}
.warehousingPage .container .photoBlock .photo {
  background-color: white;
  display: flex;
  align-items: center;
  overflow: hidden;
  height: 480px;
  background-color: #D9D9D9;
}
.warehousingPage .container .photoBlock .photo img {
  width: 100%;
}
.warehousingPage .container .photoBlock p {
  background-color: #D9D9D9;
  font-size: 1em;
  text-align: center;
  padding: 1em;
}

@media screen and (max-width: 768px) {
  .warehousingPage .container {
    margin-top: 80px;
  }
  .warehousingPage .container .photoBlock .photo {
    height: auto;
  }
  .warehousingPage .container .photoBlock p {
    margin-top: auto;
  }
  .warehousingPage .page-banner {
    margin-bottom: 50px;
    height: 200px;
  }
  .warehousingPage .page-banner .contant {
    height: 200px;
  }
}
/* media */
.mediaPage .container {
  margin-top: 100px;
  margin-bottom: 240px;
}
.mediaPage .container .block {
  margin-bottom: 50px;
}
.mediaPage .container .block h1 {
  font-size: 25px;
  font-weight: bold;
  letter-spacing: 10%;
  margin-bottom: 40px;
}
.mediaPage .container .block h1::after {
  content: "";
  padding-top: 15px;
  display: block;
  width: 100%;
  height: 6px;
  background: url(../images/media/img_media_line.png) right no-repeat;
}
.mediaPage .container .block .media {
  margin-bottom: 50px;
}
.mediaPage .container .block .media .yt {
  overflow: hidden;
}
.mediaPage .container .block .media .ytTitle {
  text-align: center;
  color: #C40C24;
  margin-top: 10px;
}

@media screen and (max-width: 768px) {
  .mediaPage .page-banner {
    margin-bottom: 50px;
    height: 200px;
  }
  .mediaPage .page-banner .contant {
    height: 200px;
  }
}
.ContactPage {
  padding: 100px 0;
}
.ContactPage .page-banner {
  margin-bottom: 150px;
}
.ContactPage .ContactPageBlock {
  margin-top: 150px;
  margin-bottom: 150px;
}
.ContactPage .contact-lt .logo {
  display: flex;
  justify-content: center;
  align-items: center;
  margin-bottom: 30px;
}
.ContactPage .contact-lt .logo img {
  width: 36%;
}
.ContactPage .contact-lt .logo p {
  font-weight: 700;
  font-size: 22px;
  color: #17376B;
  margin-left: 1em;
}
.ContactPage .contact-lt .information {
  padding-top: 2em;
  padding-bottom: 1.5em;
  padding-left: 3%;
  padding-right: 3%;
  margin-bottom: 30px;
  border-top: 1px solid #9D9D9D;
  border-bottom: 1px solid #9D9D9D;
  background: #F5F5F5;
  display: flex;
  align-items: center;
  justify-content: center;
}
.ContactPage .contact-lt .information .item {
  display: flex;
  margin-bottom: 1em;
}
.ContactPage .contact-lt .information .item svg {
  display: flex;
  width: 17px;
  height: 17px;
  margin-right: 15px;
  fill: #000000;
}
.ContactPage .contact-lt .information .item.add svg {
  width: 34px;
  margin-right: 12px;
}
.ContactPage .contact-lt .information p {
  font-size: 16px;
  font-weight: 700;
}
.ContactPage .contact-lt .information p span {
  margin-left: 10px;
  font-size: 15px;
  font-weight: 400;
  color: #06193A;
}
.ContactPage .contact-lt-en .logo p {
  font-size: 21px;
}
.ContactPage .contact-rt {
  padding: 0 50px;
}
.ContactPage .contact-rt .text {
  font-size: 18px;
  color: #000;
  text-align: center;
  margin-bottom: 50px;
}
.ContactPage .contact-rt label {
  display: inline-block;
  width: 100%;
}
.ContactPage .contact-rt label::after {
  content: "";
  display: block;
  clear: both;
}
.ContactPage .contact-rt label:nth-child(1), .ContactPage .contact-rt label:nth-child(3) {
  float: left;
}
.ContactPage .contact-rt label:nth-child(2), .ContactPage .contact-rt label:nth-child(4) {
  float: right;
}
.ContactPage .contact-rt label:nth-child(1), .ContactPage .contact-rt label:nth-child(2), .ContactPage .contact-rt label:nth-child(3), .ContactPage .contact-rt label:nth-child(4) {
  width: 48%;
}
.ContactPage .contact-rt label:nth-child(5) {
  width: 100%;
}
.ContactPage .contact-rt label p {
  display: block;
  margin-bottom: 8px;
  font-size: 16px;
  font-weight: 500;
}
.ContactPage .contact-rt label p span {
  color: #FF0000;
  margin-right: 2px;
}
.ContactPage .contact-rt input {
  width: 100%;
  height: 50px;
  font-size: 18px;
  padding-left: 10px;
  margin-bottom: 20px;
  background: #FBFBFB;
  border: 1px solid #6B6B6B;
}
.ContactPage .contact-rt textarea {
  width: 100%;
  height: 380px;
  padding-top: 8px;
  padding-left: 10px;
  font-size: 18px;
  background: #FBFBFB;
  border: 1px solid #6B6B6B;
}
.ContactPage .contact-rt .btn {
  display: block;
  width: 100%;
  line-height: 60px;
  max-width: 250px;
  font-size: 15px;
  font-weight: bold;
  color: #fff;
  border: none;
  background: #C40C24;
  border-top-right-radius: 30px;
  cursor: pointer;
  margin: 50px auto 0;
}
.ContactPage .contact-rt .btn span {
  transition: all ease-in 0.3s;
  margin-left: 4px;
}
.ContactPage .contact-rt .btn span img {
  height: 12px;
}
.ContactPage .contact-rt .btn:hover {
  box-shadow: 4px 4px 4px #9c9c9c;
}
.ContactPage .contact-rt .btn:hover span {
  display: inline-block;
}
.ContactPage .contact-rt .btn:hover span:nth-child(1) {
  margin-right: 80px;
}
.ContactPage .add, .ContactPage .add-en p {
  display: flex;
}
.ContactPage .add-en span {
  line-height: 1.25em;
}

@media screen and (max-width: 1024px) {
  .ContactPage .contact-lt .logo {
    flex-wrap: wrap;
    flex-direction: column;
  }
  .ContactPage .contact-lt .logo img {
    width: auto;
  }
  .ContactPage .contact-lt .logo p {
    margin-top: 0.25em;
    margin-left: 0;
  }
  .ContactPage .contact-rt .text {
    font-size: 1em;
    line-height: 1.5em;
  }
}
@media screen and (max-width: 992px) {
  .ContactPage .contact-rt .text {
    font-size: 18px;
    margin-top: 50px;
  }
}
@media screen and (max-width: 768px) {
  .ContactPage {
    padding-top: 75px;
  }
  .ContactPage .page-banner {
    margin-bottom: 50px;
    height: 200px;
  }
  .ContactPage .page-banner .contant {
    height: 200px;
  }
  .ContactPage .ContactPageBlock {
    margin-top: 100px;
  }
  .ContactPage .contact-rt label:nth-child(1), .ContactPage .contact-rt label:nth-child(2), .ContactPage .contact-rt label:nth-child(3), .ContactPage .contact-rt label:nth-child(4) {
    width: 100%;
  }
}
.webPage {
  position: relative;
}

.allPage {
  padding-top: 100px;
}

@keyframes opacity {
  0% {
    opacity: 0;
  }
  100% {
    opacity: 1;
  }
}
@keyframes mbnavanimation {
  0% {
    opacity: 0;
    transform: translateY(-10px);
  }
  100% {
    opacity: 1;
    transform: translateY(0);
  }
}
@media screen and (max-width: 1024px) {
  .allPage {
    padding-top: 80px;
  }
}/*# sourceMappingURL=main.css.map */