/* =====================================================================公共 */
/*滚动条宽高及背景*/ ::-webkit-scrollbar {
  width: 6px;
  height: 6px;
}
/*轨道颜色、内阴影及圆角*/ ::-webkit-scrollbar-track {
  box-shadow: inset 0 0 6px rgba(0, 0, 0, .3);
  -webkit-box-shadow: inset 0 0 6px rgba(0, 0, 0, .3);
  background-color: fff;
  border-radius: 0px;
}
/*滑块*/ ::-webkit-scrollbar-thumb {
  border-radius: 2px;
  box-shadow: inset 0 0 6px rgba(0, 0, 0, .3);
  -webkit-box-shadow: inset 0 0 6px rgba(0, 0, 0, .3);
  background-color: #8e8e8f;
}
/*两端按钮*/ ::-webkit-scrollbar-button {
  background-color: none;
  height: 0;
}
/*右下角汇合处样式*/ ::-webkit-scrollbar-corner {
  background: khaki;
}
/*  */
.inner {
  width: 86%;
  margin: 0 auto;
}

@media(max-width:1024px) {
.inner {
  width: 90%;
}
}
/*  */
.More {
  display: inline-block;
  position: relative;
  cursor: pointer;
  background: #0b5daf;
}
.More a {
  display: flex;
  align-items: center;
  font-size: 16px;
  padding: 15px 35px;
  color: #fff;
  font-weight: 600;
  position: relative;
  z-index: 2;
}
.More .bg {
  width: 100%;
  height: 0;
  background: #0878b9;
  position: absolute;
  left: 0;
  bottom: 0;
  transition: all .68s;
}
.More a img {
  width: 20px;
  margin-left: 15px;
}
.More a svg {
  width: 18px;
  height: 18px;
  margin-left: 15px;
}
.More a svg path {
  fill: #fff;
}



@keyframes yb {
  0% {
    transform: translateX(0);
  }
  50% {
    transform: translateX(-10px);
  }
  100% {
    transform: translateX(0);
  }
}
.More a:hover .img1 {
  display: block;
}
.More a:hover .img2 {
  display: none;
}
.More.white {
  background: #fff;
}
.More.white a {
  color: #0b5daf;
}
.More.white a svg path {
  fill: #0b5daf;
}
.More.white a:hover .img2 {
  display: block;
}
.More.white a:hover .img1 {
  display: none;
}
/* .More:hover a {
    color: #fff;
}

.More:hover a svg path {
    fill: #fff;
} */
.More:hover .bg {
  height: 100%;
}


@media(max-width:1024px) {
.More a {
  display: flex;
  align-items: center;
  font-size: 15px;
  padding: 10px 10px;
  color: #fff;
  font-weight: 600;
  position: relative;
  z-index: 2;
}
}



/* == */
.Tit {
  margin-bottom: 68px;
  position: relative;
  z-index: 2;
}
.Tit b {
  display: block;
  font-size: 16px;
  line-height: 1;
  color: #999;
  text-transform: capitalize;
  position: relative;
  margin-bottom: 30px;
}
.Tit i {
  display: block;
  width: 1px;
  height: 80px;
  background: #eee;
  margin: 0 30px;
}
.Tit span {
  display: inline-block;
  font-size: 50px;
  line-height: 1.2;
  color: #333;
  font-weight: 600;
  text-transform: uppercase;
  position: relative;
}
.Tit p {
  padding-top: 10px;
  font-size: 18px;
  color: #444;
}
.Tit.center {
  text-align: center;
}
.Tit.white span, .Tit.white b, .Tit.white p {
  color: #fff;
}
.Tit.flex {
  display: flex;
  align-items: flex-end;
  justify-content: space-between;
}
.inImg img {
  width: 100%;
  height: 100%;
  position: absolute;
  left: 0;
  top: 0;
  object-fit: cover;
  transition: all 0.48s;
  -webkit-transition: all 0.48s;
  -moz-transition: all 0.48s;
  -ms-transition: all 0.48s;
  -o-transition: all 0.48s;
}
@media(max-width:1600px) {
  
  .Tit span {
    font-size: 40px;
  } 
}

@media(max-width:1024px) {
  .Tit {
    margin-bottom: 30px;
  }
  .Tit span {
    font-size: 28px;
  }
}
/* =================================================================================公共 */
/* 导航 */
.header {
  width: 100%;
  position: absolute;
  left: 0;
  top: 0;
  z-index: 999;
  transition: all .48s;
  border-bottom: 1px solid rgb(255 255 255 / 20%);
}
.header .inner {
  width: 94%;
  padding-left: 11%;
  display: flex;
  align-items: center;
  justify-content: flex-end;
  position: relative;
}
.hLogo {
  width: 10%;
  position: absolute;
  left: 2%;
  left: 0%;
  top: 50%;
  transform: translateY(-50%);
}
.hLogo img {
  width: 160px;
}
.header .img2 {
  display: none;
}
.hNav ul {
  display: flex;
  justify-content: space-between;
  border-right: 1px solid rgba(255, 255, 255, .18);
}
.hNav ul li {
  position: relative;
}
.hNav ul li::after {
  content: '';
  width: 1px;
  height: 16%;
  background: rgba(255, 255, 255, .18);
  position: absolute;
  right: 0;
  top: 50%;
  transform: translateY(-50%);
}
.hNav ul li:last-child::after {
  display: none;
}
.hNav ul li a {
  display: block;
  margin: 0 20px;
  padding: 30px 20px;
  color: #fff;
  font-size: 16px;
  transition: all .48s;
  position: relative;
}
.hNav ul li a:hover {
  transition: all .48s;
}
.headerMain-bg .img2 {
  display: block;
}
.headerMain-bg .img1 {
  display: none;
}
/*  */
.headR {
  display: flex;
  align-items: center;
  padding-left: 3%;
}
.hSs {
  height: 100%;
  display: flex;
  align-items: center;
  justify-content: center;
  position: relative;
  transition: all .48s;
}
.hSs {
  position: relative;
}
.hSs svg {
  width: 20px;
  height: 20px;
  position: relative;
  z-index: 2;
  cursor: pointer;
}
.hSs svg path {
  fill: #fff;
}
.hSs span {
  display: block;
  padding: 0 10px;
  padding-right: 15px;
  color: #fff;
  font-size: 16px;
  position: relative;
}
.hSs span::after {
  content: '';
  width: 1px;
  height: 60%;
  background: rgba(255, 255, 255, .18);
  position: absolute;
  right: 0;
  top: 50%;
  transform: translateY(-50%);
}
.hSs a {
  display: block;
  margin-left: 15px;
  color: #ff7900;
  font-size: 26px; font-family: impact;
}
/* 搜索 */
.search {
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  height: 100vh;
  background: #EFEFEF;
  z-index: 230000;
  display: none;
}
.searchBox {
  width: 100%;
  height: 100%;
  display: flex;
  justify-content: center;
  align-items: center;
}
.searchXq {
  width: 60%;
}
.searchXq span {
  display: block;
  text-align: center;
  font-size: 36px;
  text-transform: uppercase;
  color: #666;
  font-weight: bold;
  margin-bottom: 118px;
}
.searchIpt {
  display: flex;
}
.searchIpt input {
  border: none;
  width: 100%;
  border-radius: 0;
  background: transparent;
  outline: none;
  resize: none;
  margin: 0;
  padding: 0 20px;
  z-index: 1;
  display: block;
  color: #000;
  font-size: 20px;
  text-transform: uppercase;
  padding-bottom: 10px;
  border-bottom: 1px solid rgba(0, 0, 0, .1);
}
.searchIpt input::placeholder {
  color: #A7A6A6;
  font-size: 20px;
  text-transform: uppercase;
}
.searchIpt a {
  display: flex;
  align-items: center;
  padding: 0 25px;
  font-size: 20px;
  text-transform: uppercase;
  border-bottom: 2px solid #333;
}
.searchIpt a svg {
  width: 36px;
  height: 28px;
  margin-left: 20px;
}
.searchIpt a svg path {
  fill: #333;
}
.close {
  width: 40px;
  position: absolute;
  top: 40px;
  right: 5%;
  cursor: pointer;
}
.hamburger-box .line {
  position: absolute;
  left: 0;
  display: block;
  background-color: currentColor;
  width: 100%;
  height: 2px;
  -webkit-transition: .4s;
  transition: .4s;
  -webkit-transform-origin: center;
  transform-origin: center;
}
.hamburger-box .line--1 {
  width: 100%;
  transform: translate3d(0, -50%, 0) rotate(45deg);
  top: 50%;
}
.hamburger-box .line--3 {
  width: 100%;
  transform: translate3d(0, 50%, 0) rotate(-45deg);
  bottom: 50%;
}
/* 导航展开 */
.hZk {
  width: 120%;
  position: absolute;
  left: 0;
  top: 88px;
  box-shadow: 0 0 1px rgba(0, 0, 0, .18);
  display: none;
}
.hNav_zkBox {
  width: 100%;
  padding: 20px;
  background: #fff;
}
.hNav_zkL {
  text-align: center;
}
.hNav ul li .hNav_zkL a {
  height: auto;
  line-height: 45px;
  padding: 5px 0px;
  margin: 0 0;
  font-size: 16px;
  color: #333;
  border-bottom: 1px solid #e2e4e6;
  transition: all .48s;
}
.hNav ul li .hNav_zkL a::after {
  display: none;
}
.hNav ul li .hNav_zkL a:hover {
  color: #116cbe;
  border-color: #116cbe;
}
/*900px导航*/
.headMenu {
  cursor: pointer;
  position: fixed;
  z-index: 99999;
  right: 0;
  top: 10px;
  display: none;
  margin-right: 24px;
}
.headMenu span {
  display: block;
  width: 26px;
  height: 2px;
  margin: 6px 0;
  background: #fff;
  -webkit-transition: all 0.48s ease-in-out;
  -moz-transition: all 0.48s ease-in-out;
  -ms-transition: all 0.48s ease-in-out;
  -o-transition: all 0.48s ease-in-out;
  transition: all 0.48s ease-in-out;
}
.headerMain-bg .headMenu span {
  background: #333;
}
.header.white .headMenu span {
  background: #333;
}
.header.black .headMenu span {
  background: #333;
}
.header.white.headerMain-bg .headMenu span {
  background: #333;
}
.headMenu.active span {
  background: #333;
}
.headMenu.active span.headMenu_span1 {
  transform: rotate(45deg) translate(6px, 7px);
}
.headMenu.active span.headMenu_span2 {
  opacity: 0;
}
.headMenu.active span.headMenu_span3 {
  transform: rotate(-45deg) translate(4px, -6px);
}
.moHead_mlb {
  display: none;
  position: fixed;
  top: 0;
  right: 0;
  width: 100%;
  height: 100vh;
  background-color: #fff;
  /* background-image: url(../images/bg3.jpg); */
  background: #fff;
  background-repeat: no-repeat;
  background-position: center left;
  background-size: cover;
  z-index: 99990;
  padding: 80px 20px 0;
}
.moHead_mlb::after {
  content: '';
  width: 100%;
  height: 1px;
  border-bottom: 1px solid rgba(0, 0, 0, .08);
  position: absolute;
  left: 0;
  top: 64px;
}
.moHead_mlb .moHead_ico {
  text-align: center;
}
.moHead_mlb .moHead_ico a:last-child {
  display: inline-block;
}
/* .moHead_mlb ul {
    padding: 68px 0;
} */
.moHead_mlb li {
  font-size: 15px;
  line-height: 2;
  padding: 14px 0;
  border-bottom: 1px dotted rgba(27, 47, 95, 0.18);
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  justify-content: space-between;
}
.moHead_mlb a {
  color: #242b3e;
  letter-spacing: 1px;
}
.moHead_mlb a svg {
  float: right;
  width: 21px;
  height: 24px;
  opacity: 0.8;
}
.moHead_mlb a svg path {
  fill: #242b3e;
}
.moHead_mlb .moHead_ico a {
  vertical-align: top;
  margin: 0 14px;
  display: inline-block;
  width: 45px;
  height: 45px;
  line-height: 45px;
  border-radius: 50%;
  border: 1px solid rgba(27, 47, 95, 0.23);
}
.moHead_mlb .moHead_ico svg {
  width: 24px;
  height: 24px;
}
.moHead_mlb .moHead_ico svg path {
  fill: #242b3e;
}
.moHead_mlb .moHead_ico img, .moHead_mlb .moHead_ico svg {
  margin-top: 10px;
}
.moHead_mlb i {
  position: relative;
  display: block;
  float: right;
  transition: all .48s;
}
.moHead_mlb i img {
  width: 19px;
}
.moHead_ej {
  width: 100%;
  position: relative;
  display: none;
  padding-top: 8px;
}
.moHead_ej a {
  display: block;
  font-size: 14px;
  padding: 3px 0;
  color: #999;
}
.moHead_mlb a.on i::before {
  opacity: 0;
  transition: all .48s;
}
.moHead_mlb li.on i {
  transform: rotate(180deg);
}
/* 下拉导航变化 */
.headerMain-bg.header {
  position: fixed;
  border-bottom: none;
  background: #fff;
  box-shadow: 0 0px 5px 0 rgb(0 0 0 / 20%);
}
.none-bg.header {
  background: none !important;
}
.headerMain-bg .hNav ul li a {
  color: #333;
}
.headerMain-bg .hNav ul li::after {
  background: rgba(0, 0, 0, .18);
}
.headerMain-bg .hNav ul {
  border-right: 1px solid rgba(0, 0, 0, .18);
}
.headerMain-bg .hSs svg path {
  fill: #333;
}
.headerMain-bg .hSs span {
  color: #333;
}
.headerMain-bg .hSs a {
  color: #333;
}
/* 白底导航 */
.header.white {
  background: #fff;
}
.header.white .img1 {
  display: none;
}
.header.white .img2 {
  display: block;
}
.header.white .hNav ul {
  border-right: 1px solid rgba(0, 0, 0, .18);
}
.header.white .hNav ul li a {
  color: #333;
}
.header.white .hNav ul li a.on {
  color: #fff;
}
.header.white .hNav ul li::after, .hSs span::after {
  background: rgba(0, 0, 0, .18);
}
.header.white .hSs svg path {
  fill: #333;
}
.header.white .hSs span {
  color: #333;
}
.header.white .hSs a {
  color: #333;
}
/* 黑底导航 */
.header.black {
  /* background: none; */
  border-bottom: 1px solid rgb(0 0 0 / 8%);
}
.header.black.headerMain-bg {
  /* border-bottom: none; */
  box-shadow: none;
}
.header.black .img1 {
  display: none;
}
.header.black .img2 {
  display: block;
}
.header.black .hNav ul {
  border-right: 1px solid rgba(0, 0, 0, .18);
}
.header.black .hNav ul li a {
  color: #333;
}
.header.black .hNav ul li a.on {
  color: #fff;
}
.header.black .hNav ul li::after, .hSs span::after {
  background: rgba(0, 0, 0, .18);
}
.header.black .hSs svg path {
  fill: #333;
}
.header.black .hSs span {
  color: #333;
}
.header.black .hSs a {
  color: #333;
}
/* ========================================================================= 内页公共 */
/* 底部 */
.footer {
  background: #1b1b1b;
  position: relative;
  padding-top: 80px;
}
.footBox {
  overflow: hidden;
  padding: 60px 0;
  display: flex;
  justify-content: space-between;
}
.footBox ul {
  width: 60%;
  display: flex;
  flex-wrap: wrap;
  justify-content: space-between;
}
.footBox ul li a {
  color: rgba(255, 255, 255, .6);
  display: block;
  margin-bottom: 20px;
}
.footBox ul li a:hover span {
  color: #fff;
}
.footBox ul li a span {
  font-size: 20px;
  color: #fff;
}
.footItem {
  padding: 0 15px;
}
.footItem h5 {
  color: #333;
  font-size: 20px;
  font-weight: 600;
  text-transform: uppercase;
  margin-bottom: 15px;
}
.footItem p {
  color: #ffffff99;
  font-size: 16px; line-height: 36px;
}
.footItem h3 {
  font-size: 20px;
  color: #fff;
  margin-bottom: 20px;
}
.footItem h4 {
  font-size: 20px;
  color: #fff;
  margin-bottom: 20px;
}

.footItem .ewm {
  margin-top: 80px;
}
.footItem .ewm img {
  width: 100px;
}
/*  */
.footLink {
  width: 100%;
  margin-top: 60px;
  display: flex;
  align-items: center;
}
.footLink p {
  color: rgba(255, 255, 255, .6);
  font-size: 14px;
}
.footLink p a {
  color: rgba(255, 255, 255, .6);
  font-size: 14px;
}
.footBox .xian {
  width: 1px;
  border-left: 1px solid rgba(255, 255, 255, .08);
}
.footFd {
  width: 220px;
  display: flex;
  flex-wrap: wrap;
}
.footFd a {
  width: 50%;
}
@media (max-width: 1680px) {}
@media(max-width: 1480px) {
  .footBox ul li a span {
    font-size: 18px;
  }
  .footItem .ewm img {
    width: 88px;
  }
  .footItem .ewm {
    margin-top: 68px;
  }
  .footBox {
    padding: 50px 0;
  }
}
@media(max-width: 1368px) {
  .hNav ul li a {
    margin: 0 10px;
  }
  .footBox ul li a {
    font-size: 14px;
  }
  .footer {
    padding-top: 60px;
  }
}
@media(max-width: 1280px) {}
@media(max-width: 1200px) {
  .hNav ul li a {
    padding: 20px 10px;
    font-size: 14px;
  }
  .hZk {
    top: 65px;
  }
  .hNav ul li .hNav_zkL a {
    font-size: 12px;
    line-height: 36px;
  }
}
@media(max-width: 1024px) {
	 .footer {
    padding-top: 30px;
  }
  .headMenu {
    display: block;
  }
  .hSs {
    margin-right: 55px;
    display: none;
  }
  .hLogo {
    z-index: 9999999;
  }
  .Tit span {
    font-size: 32px;
  }
  .padd {
    padding: 56px 0;
  }
  .hNav {
    display: none;
  }
  .header {
    height: 60px;
  }
  .headerTop, .headerTop .inner {
    height: 100%;
  }
  .footBox {
    padding: 40px 0;
  }
  .footBox .xian, .footItem {
    display: none;
  }
  .footBox ul {
    width: 100%;
  }
  .footLink {
    margin-top: 40px;
  }
}
@media(max-width: 900px) {}
@media(max-width: 768px) {}
@media(max-width: 680px) {
  .footer {
    padding-top: 10px;
  }
  .footBox {
    padding: 30px 0;
    flex-wrap: wrap;
  }
  .footBox ul li {
    display: none;
  }
  .footItem {
    width: 100%;
    display: block;
    padding: 0;
    order: -1;
  }
  .footItem .ewm {
    margin-top: 40px;
  }
  .footItem .ewm img {
    width: 68px;
  }
  .footLink {
    margin-top: 30px;
    flex-wrap: wrap;
  }
}