/* ������ */
.zoom-container {
   min-width: 980px !important;
   transform-origin: center top;
   transition: transform 0.2s ease;
}
/* preloader css */
.preloader {
  display: -webkit-box;
  display: -ms-flexbox;
  display: -webkit-flex;
  display: flex;
  -webkit-box-pack: center;
  -ms-flex-pack: center;
  -webkit-justify-content: center;
  justify-content: center;
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
  -ms-flex-direction: column;
  -webkit-flex-direction: column;
  flex-direction: column;
  height: 100%;
  width: 100%;
  z-index: 99;
  position: fixed;
  top: 0;
  left: 0;
  background: #fff;
  text-align: center;
}
.preloader-spin {
  margin: 0 auto;
  height: 35px;
  width: 35px;
  display: inline-block;
  background: transparent;
  border-radius: 50%;
  border-width: 2px;
  border-style: solid;
  border-color: #d0d0d0 #d0d0d0 #111111 #d0d0d0;
  animation: 1s linear 0s normal none infinite running spinner_preloader;
}
@keyframes spinner_preloader {
  0% {
    transform: rotate(0deg);
  }

  50% {
    transform: rotate(360deg);
  }

  100% {
    transform: rotate(720deg);
  }
}
/* header css */
#header {
  width: 100%;
  height: 87px;
  display: flex;
  justify-content: center;
  align-items: center;
}
.navigate-box {
  width: 1294px;
  height: 87px;
  box-sizing: border-box;
 /* padding-left: 40px;
  padding-right: 40px;*/
  display: flex;
  justify-content: space-between;
  align-items: center;
  padding-left: 16px;
}
.brand-box {
  width: 49%;
  height: 100%;
  display: flex;
  justify-content: flex-start;
  align-items: center;
}
.logo-img {
  width: 40px;
  height: 40px;
}
.logo-text {
  height: 100%;
  margin-left: 20px;
  display: flex;
  flex-direction: column;
  justify-content: center;
  align-items: center;
}
.company-ch-name {
  color: #000;
  font-size: 25px;
  font-weight: bold;
  letter-spacing: 6px;
}
.company-en-name {
  color: #000;
  font-size: 12px;
  letter-spacing: 0;
}
.nav-box {
  width: 50%;
  height: 100%;
  display: flex;
  justify-content: space-around;
  align-items: center;
}
.nav-item {
  height: 40%;
  color: #000;
  font-size: 20px;
  font-weight: bold;
  display: flex;
  justify-content: center;
  align-items: center;
  cursor: pointer;
}
.nav-item:hover {
  color: #4c24ea;
  border-bottom: 4px solid #2708a3;
}
.nav-item-actice {
  color: #4c24ea;
  border-bottom: 4px solid #2708a3;
}
/* footer css */
.bottom-box {
  width: 100%;
  height: 240px;
  /* background: url('../images/bottom-bg2.png') no-repeat center center / 100% 100%; */
  margin-top: 20px;
  background-color: #f2f5f9;
  box-sizing: border-box;
  padding-left: 45px;
  padding-right: 45px;
  display: flex;
  flex-direction: column;
  justify-content: space-around;
  align-items: center;
  color: #333333;
  font-weight: bold;
}
/* 友情链接 */
.link-box {
 /* width: 1260px;*/
  width: 100%;
  height: 60px;
  box-sizing: border-box;
  padding: 10px 0;
  display: flex;
  justify-content: center;
  align-items: center;
  margin-bottom: 35px;
}
.link-box .link-options {
  width: 100%;
  height: 40px;
  display: flex;
  justify-content: flex-start;
  align-items: center;
  color: #595d6b;
}
.link-box .link-options .link-tip {
  width: 80px;
  height: 40px;
  text-align: left;
  line-height: 40px;
}
.link-box .link-options .option-box {
  width: 33%;
  height: 25px;
  margin-right: 25px;
  display: flex;
  justify-content: center;
  align-items: center;
}
.link-box .link-options .option-box select {
  width: 85%;
  height: 100%;
  border-radius: 5px;
  border: 1px solid #c2c2c2;
}
.bottom-box .outer {
  width: 1260px;
  height: 100%;
  display: flex;
  justify-content: space-between;
  align-items: flex-end;
}
.bottom-box .left-part {
  width: 100%;
  height: 90%;
  display: flex;
  flex-direction: column;
  justify-content: center;
  align-items: flex-start;
}
.bottom-box .right-part {
  width: 20%;
  height: 90%;
  display: flex;
  justify-content: flex-end;
  align-items: center;
}
.bottom-box .left-part .floor {
  width: 100%;
  height: 50px;
  display: flex;
  justify-content: flex-start;
  align-items: center;
}
.bottom-box .left-part .floor>img {
  width: 56px;
  height: 52px;
}
.bottom-box .left-part .floor .name {
  height: 50px;
  margin-left: 14px;
  display: flex;
  flex-direction: column;
  justify-content: space-between;
  align-items: flex-start;
}
.bottom-box .left-part .floor .name .ch-name {
  font-size: 22px;
  font-weight: bold;
  letter-spacing: 26.9px;
}
.bottom-box .left-part .floor .name .en-name {
  font-size: 14px;
  letter-spacing: 4.2px;
}
.bottom-box .left-part .floor2 {
  width: 90%;
  height: 60px;
  margin-top: 20px;
  display: flex;
  flex-direction: column;
  justify-content: flex-start;
  align-items: center;
}
.bottom-box .left-part .floor2 .box2 {
  width: 100%;
  font-weight: lighter !important;
}
.bottom-box .right-part .qr-box {
  width: 45%;
  height: 70%;
  display: flex;
  flex-direction: column;
  justify-content: flex-start;
  align-items: center;
}
.bottom-box .right-part .qr-box>img {
  width: 85px;
  height: 85px;
}
.bottom-box .right-part .qr-box>div {
  margin-top: 5px;
  font-size: 15px;
}
.bottom-box .left-part .floor .box {
  font-size: 15px;
}
.bottom-box .left-part .floor .box:last-of-type {
  margin-left: 20px;
}
.ba-Num-box {
  width: 100%;
  height: 50px;
  background-color: #2708a3;
  display: flex;
  justify-content: center;
  align-items: center;
  color: #FFFFFF;
  font-size: 16px;
}
.ba-Num-box span:last-of-type {
  margin-left: 10px;
}
/* footer_new css */
.bottom-new-box {
  width: 100%;
  height: 260px;
  margin-top: 20px;
  background: #142d4b;
  box-sizing: border-box;
  padding: 20px 45px 10px;
  display: flex;
  flex-direction: column;
  justify-content: flex-start;
  align-items: center;
  color: #333333;
}
.bottom-new-box .top-title-box {
  width: 60%;
  height: 60px;
  margin-bottom: 10px;
  display: flex;
  justify-content: center;
  align-items: center;
}
.bottom-new-box .top-title-box .top-item {
  width: 150px;
  cursor: pointer;
  color: #fff;
  font-size: 15px;
  text-align: center;
  border-right: 2px solid #fff;
}
.bottom-new-box .top-title-box .top-item:last-of-type {
  border-right: none;
}
.bottom-new-box .center-link-box {
  width: 60%;
  height: 45px;
}
.bottom-new-box .center-link-box .link-options {
  width: 100%;
  height: 45px;
  display: flex;
  justify-content: center;
  align-items: center;
}
.bottom-new-box .center-link-box .link-options .link-tip {
  width: 80px;
  height: 45px;
  text-align: left;
  line-height: 45px;
  color: #fff;
}
.bottom-new-box .center-link-box .link-options .option-box {
  width: 33%;
  height: 25px;
  display: flex;
  justify-content: center;
  align-items: center;
  color: #000;
}
.bottom-new-box .center-link-box .link-options .option-box select {
  width: 85%;
  height: 100%;
  border-radius: 5px;
  border: 1px solid #c2c2c2;
}
.bottom-new-box .bottom-intro-box {
  width: 60%;
  height: calc(100% - 125px);
  display: flex;
  justify-content: space-between;
  align-items: center;
}
.bottom-new-box .bottom-intro-box .left-intro {
  width: 85%;
  height: 100%;
  display: flex;
  flex-direction: column;
  justify-content: space-between;
  align-items: center;
}
.bottom-new-box .bottom-intro-box .left-intro .floor {
  width: 100%;
  height: 50%;
  display: flex;
  justify-content: center;
  align-items: center;
  color: #fff;
  font-size: 15px;
}
.bottom-new-box .bottom-intro-box .right-qrcode {
  width: 15%;
  height: 100%;
  display: flex;
  flex-direction: column;
  justify-content: center;
  align-items: center;
}
.bottom-new-box .bottom-intro-box .right-qrcode>img {
  width: 75px;
  height: 75px;
}
.bottom-new-box .bottom-intro-box .right-qrcode>div {
  margin-top: 5px;
  color: #fff;
  font-size: 15px;
}
  /*.bottom-new-box .intro-box {
    width: 60%;
    height: 45px;
    margin-bottom: 10px;
    display: flex;
    justify-content: center;
    align-items: center;
  }
  .bottom-new-box .intro-box .intro-text-box {
    height: 45px;
    color: #fff;
    font-size: 15px;
    line-height: 45px;
    margin-right: 40px;
  }
  .bottom-new-box .beian-box {
    width: 100%;
    height: 45px;
    margin-bottom: 10px;
    display: flex;
    justify-content: center;
    align-items: center;
  }
  .bottom-new-box .beian-box .center-item {
    margin-right: 50px;
    color: #fff;
    font-size: 15px;
    text-align: center;
  }
  .bottom-new-box .beian-box .center-item:last-of-type {
    margin-right: 0;
  }*/
  /* 部分盒子标题 */
.part-box-title {
  width: 100%;
  height: 50px;
  box-sizing: border-box;
  padding: 0;
  border-bottom: 1px solid #d7d7d7;
}
.pointer-box {
  cursor: pointer;
}
.part-box-title .ml-30 {
  margin-left: 30px !important;
}
.part-box-title .title-text {
  width: 90px;
  height: 100%;
  font-size: 20px;
  font-weight: bold;
  letter-spacing: 1px;
  text-align: center;
  float: left;
  color: #000;
  display: flex;
  justify-content: center;
  align-items: center;
}
.title-text-active {
  border-bottom: 3px solid #2708a3;
}
.part-box-title .title-text span:first-of-type {
  color: #c10000 !important;
}
.part-box-title .more-link {
  width: 56px;
  height: 30px;
  line-height: 50px;
  font-size: 13px;
  color: #454545;
  margin-right: 5px;
  text-align: right;
  float: right;
}
.part-box-title .more-link a {
  color: #000;
  text-decoration: none;
  cursor: pointer;
}
.part-box-title .more-link a:hover {
  color: #2708a3;
}