/* 1.header */
header {
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  height: 120px;
  z-index: 100;
  box-sizing: border-box;
  background-color: #ffffff;
  border-bottom: 1px solid #dfdfdf;
  /* box-shadow: 3px 5px 13px 0px rgba(0, 0, 0, 0.08); */
}

header .hd-bom {
  position: relative;
  height: 90px;
}

header .hd-bom .inside {
  height: 100%;
  display: flex;
  justify-content: space-between;
  align-items: center;
}

.header-shadow {
  /* 阴影 */
  box-shadow: 3px 5px 13px 0px rgba(0, 0, 0, 0.08);
  animation: skell-header-top 1s ease-out 0s backwards;
}

header .logo {
  display: block;
  width: auto;
  height: 82px;
}

header .logo img {
  width: auto;
  height: 100%;
}

header .gation {
  box-sizing: border-box;
  font-size: 17px;
  display: flex;
  align-items: center;
}

header .gation li {
  box-sizing: border-box;
  position: relative;
  padding: 0 30px;
  line-height: 17px;
  border-right: 1px solid #dadada;
}

header .gation li:first-child {
  padding-left: 0;
}

header .gation li:last-child {
  padding-right: 0;
  border-right: 0;
}

header .gation li a {
  display: inline-block;
  color: #000000;
  text-align: center;
  /* 过渡 */
  -webkit-transition: all 0.5s;
  -moz-transition: all 0.5s;
  -o-transition: all 0.5s;
  -ms-transition: all 0.5s;
  transition: all 0.5s;
}

header .gation li.active a,
header .gation li:hover a {
  color: #046eb7;
  /* 过渡 */
  -webkit-transition: all 0.5s;
  -moz-transition: all 0.5s;
  -o-transition: all 0.5s;
  -ms-transition: all 0.5s;
  transition: all 0.5s;
}

header .gatopen {
  display: none;
  width: 24px;
  height: 24px;
  cursor: pointer;
}

header .gatopen img {
  width: 100%;
  height: 100%;
}

.topside {
  width: 100%;
  height: 30px;
  overflow: hidden;
  font-size: 14px;
  color: #ffffff;
  background-color: #252c32;
}

.topside .inside {
  height: 100%;
  display: flex;
  justify-content: space-between;
  align-items: center;
}

.topside .rg {
  display: flex;
  align-items: center;
}

.topside .log span:not(:last-child) {
  margin-right: 30px;
}

.topside .log span img {
  width: 12px;
  height: auto;
  margin-right: 3px;
  margin-bottom: 3px;
}

.topside .log span {
  cursor: pointer;
}

.topside .log span a {
  display: inline-block;
  color: #ffffff;
}

#my-gps {
  display: none;
}

@media (max-width: 1400px) {
  .topside {
    font-size: 13px;
  }
}

@media (max-width: 1000px) {
  .topside {
    font-size: 12px;
  }
  .topside .log span:not(:last-child) {
    margin-right: 10px;
  }
  .topside .log span img {
    width: 10px;
    margin-right: 2px;
    margin-bottom: 2px;
  }
}

@media (max-width: 1400px) {
  header {
    height: 105px;
  }
  header .hd-bom {
    height: 75px;
  }
  header .logo {
    height: 65px;
  }
  header .gation {
    font-size: 15px;
    line-height: 75px;
  }
  header .gation li {
    padding: 0 15px;
    line-height: 15px;
  }
}

@media (max-width: 1000px) {
  header {
    height: 77px;
  }
  header .hd-bom {
    height: 47px;
  }
  header .gatopen {
    display: block;
  }
  header .logo {
    height: 30px;
  }
  header .gation-box {
    display: none;
    position: fixed;
    top: 77px;
    left: 0;
    width: 100%;
    height: auto;
    box-sizing: border-box;
    padding: 13px 3%;
    border-top: 1px solid rgba(0, 0, 0, 1);
    text-align: center;
    background-color: #ffffff;
    overflow: hidden;
    /* 阴影 */
    box-shadow: 3px 5px 13px 0px rgba(0, 0, 0, 0.08);
    z-index: 100;
  }
  .header-shadow .gation-box {
    top: 47px;
  }
  header .gation {
    flex-direction: column;
    font-size: 13px;
  }
  header .gation li {
    width: 100%;
    padding: 0;
    border-right: 0;
    line-height: 37px;
  }
}

/* 2.index-swiper-pc */
.index-swiper-pc {
  width: 100%;
  height: auto;
  overflow: hidden;
  position: relative;
  overflow: hidden;
}

.index-swiper-pc .swiper-container {
  width: 100%;
  height: 100%;
  overflow: hidden;
}

.index-swiper-pc .swiper-slide {
  display: block;
  width: 100%;
  height: 100%;
  overflow: hidden;
}

.index-swiper-pc .swiper-slide a {
  display: block;
  width: 100%;
  height: 100%;
  position: relative;
  overflow: hidden;
  cursor: pointer;
}

.index-swiper-pc .img {
  width: 100%;
  height: 100%;
}

.index-swiper-pc .img img {
  height: 100%;
  object-fit: cover;
}

@media (max-width: 800px) {
  .index-swiper-pc {
    height: 230px;
  }
}

/* 3.crumbs */
.crumbs {
  font-size: 17px;
  line-height: 40px;
  margin: 40px 0 30px;
}

.crumbs img {
  width: 20px;
  height: auto;
  margin-right: 10px;
  vertical-align: middle;
  margin-bottom: 5px;
}

.crumbs a,
.crumbs i {
  color: #b1b1b1;
  -webkit-transition: all 0.3s;
  -moz-transition: all 0.3s;
  -o-transition: all 0.3s;
  -ms-transition: all 0.3s;
  transition: all 0.3s;
}

.crumbs a:hover {
  color: #046eb7;
}

.crumbs i {
  display: inline-block;
  margin-left: 5px;
  margin-right: 5px;
  vertical-align: middle;
  margin-bottom: 3px;
}

.crumbs span {
  color: #b1b1b1;
  cursor: pointer;
}

@media (max-width: 1400px) {
  .crumbs {
    font-size: 16px;
    line-height: 30px;
    margin: 30px 0 20px;
  }
  .crumbs img {
    margin-right: 7px;
    margin-bottom: 3px;
  }
  .crumbs i {
    margin-left: 5px;
    margin-right: 5px;
    margin-bottom: 2px;
  }
}

@media (max-width: 1000px) {
  .crumbs {
    margin: 15px 0;
    font-size: 13px;
    line-height: 23px;
  }
  .crumbs img {
    width: 15px;
    margin-right: 3px;
  }
  .crumbs i {
    margin-left: 3px;
    margin-right: 3px;
  }
}

/* 4.footer */
footer {
  width: 100%;
  height: auto;
  overflow: hidden;
  position: relative;
  background-color: #2c2c2c;
  color: #b1b1b1;
}

footer a {
  color: #b1b1b1;
}

footer a:hover,
footer a:focus {
  color: #b1b1b1;
}

footer .inside {
  height: 100%;
}

footer .copy {
  box-sizing: border-box;
  padding: 10px 0;
  text-align: center;
  border-top: 2px solid #343636;
}

footer .copy a {
  display: inline-block;
  font-size: 14px;
  line-height: 32px;
  text-align: center;
}

footer .copy a:first-child {
  margin-right: 10px;
}

footer .copy a:hover {
  text-decoration: underline;
}

footer .code {
  box-sizing: border-box;
  padding: 50px 0 30px;
  display: flex;
  justify-content: center;
  align-items: flex-start;
}

footer .code li {
  display: inline-block;
  text-align: center;
}

footer .code li:first-child {
  margin-right: 50px;
}

footer .code li img {
  width: 120px;
  height: 120px;
  margin-bottom: 10px;
}

@media (max-width: 1000px) {
  footer .code li img {
    width: 80px;
    height: 80px;
    margin-bottom: 7px;
  }
  footer .code {
    padding: 30px 0 15px;
  }
  footer .copy a {
    display: block;
    font-size: 12px;
    line-height: 27px;
  }
  footer .copy a:first-child {
    margin-right: 0;
  }
}

/* 5.login-box */
.login-box {
  display: none;
  position: fixed;
  top: 0;
  left: 0;
  z-index: 200;
  width: 100%;
  height: 100%;
  background-color: rgba(0, 0, 0, 0.7);
}

.login-popu {
  width: 95%;
  max-width: 500px;
  box-sizing: border-box;
  padding: 50px;
  background-color: #ffffff;
  border-radius: 10px;
  position: fixed;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
}

.login-sub {
  text-align: center;
  font-size: 30px;
  font-weight: bold;
}

.my-login {
  max-width: 420px;
}

.login ul li {
  width: 100%;
  height: auto;
  margin-top: 15px;
  display: flex;
  flex-wrap: wrap;
  justify-content: space-between;
  align-items: center;
}

.login ul li:first-child {
  margin-top: 0;
}

.login ul li.login-mit {
  margin-top: 20px;
}

.login ul li span {
  flex: 1;
  text-align: right;
  padding-right: 15px;
}

.login ul li span i {
  color: #ff6a6a;
  margin-left: 5px;
  font-weight: bold;
}

.login ul li .item {
  width: 320px;
  display: flex;
  justify-content: space-between;
  align-items: center;
  box-sizing: border-box;
  overflow: hidden;
}

.login ul li input {
  width: 100%;
  height: 45px;
  border: 1px solid #e9e9e9;
  padding: 0 15px;
}

.login ul li textarea{
  width: 100%;
  height: 80px;
  border: 1px solid #e9e9e9;
  padding: 0 15px;
}

.login ul li .item-veify input {
    width: 58%;
}

.login ul li .item-veify .verify {
  display: block;
  width: 40%;
  height: 45px;
  border: 1px solid #e9e9e9;
  box-sizing: border-box;
  padding: 10px;
  cursor: pointer;
}

.login ul li .item-veify .verify img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.login .login-mit em {
  display: block;
  width: 46%;
  height: 45px;
  line-height: 43px;
  text-align: center;
  color: #ffffff;
  background-color: #046eb7;
  border: 1px solid #046eb7;
  cursor: pointer;
}

.login .login-mit-one em {
  width: 100%;
}

.login .login-mit em:hover {
  color: #046eb7;
  background-color: #ffffff;
  border: 1px solid #046eb7;
}

.login input::-webkit-input-placeholder,
.login textarea::-webkit-input-placeholder {
  /* WebKit browsers 适配谷歌 */
  color: #cecece;
}
.login input:-moz-placeholder,
.login textarea:-moz-placeholder {
  /* Mozilla Firefox 4 to 18 适配火狐 */
  color: #cecece;
}
.login input::-moz-placeholder,
.login textarea::-moz-placeholder {
  /* Mozilla Firefox 19+ 适配火狐 */
  color: #cecece;
}
.login input:-ms-input-placeholder,
.login textarea:-ms-input-placeholder {
  /* Internet Explorer 10+  适配ie*/
  color: #cecece;
}

@media (max-width: 1000px) {
  .login-sub {
    font-size: 20px;
  }
  .login-popu {
    padding: 30px 20px;
  }
  .my-login {
    max-width: 440px;
  }
  .login ul li {
    margin-top: 10px;
  }
  .login ul li .item {
    width: 360px;
  }
  .login ul li span {
    font-size: 12px;
  }
  .login ul li input {
    height: 40px;
    font-size: 12px;
    padding: 0 10px;
  }
  .login ul li .item-veify .verify {
    height: 40px;
    padding: 10px;
  }
  .login .login-mit em {
    height: 40px;
    line-height: 38px;
  }
}

@media (max-width: 770px) {
  .login ul li {
    flex-direction: column;
  }
  .login ul li span {
    width: 100%;
    text-align: left;
    padding-right: 0;
  }
  .login ul li .item {
    width: 100%;
    margin-top: 3px;
  }
}

/* 6.title */
.title {
  width: 100%;
  display: flex;
  justify-content: space-between;
  align-items: center;
  margin-bottom: 23px;
}

.title h2 em {
  font-size: 28px;
  font-weight: bold;
  color: #046eb7;
  margin-right: 15px;
}

.title h2 i {
  color: #b1b1b1;
  font-size: 12px;
  text-transform: uppercase;
  letter-spacing: 2px;
}

.title a:hover {
  color: #046eb7;
  text-decoration: underline;
}

.pudong-tabs {
  width: 100%;
  display: flex;
  justify-content: center;
  align-items: center;
  border-bottom: 2px solid #efefef;
}

.pudong-tabs li {
  width: 50%;
  text-align: center;
  font-weight: bold;
  position: relative;
  cursor: pointer;
}

.pudong-tabs li span {
  display: inline-block;
  padding-bottom: 10px;
  font-size: 17px;
  border-bottom: 2px solid #ffffff;
  -webkit-transition: all 0.5s;
  -moz-transition: all 0.5s;
  -o-transition: all 0.5s;
  -ms-transition: all 0.5s;
  transition: all 0.5s;
}

.pudong-tabs li:hover span,
.pudong-tabs li.active span {
  color: #046eb7;
}

.pudong-tabs li:hover span,
.pudong-tabs li.active span {
  border-bottom: 2px solid #046eb7;
  -webkit-transition: all 0.5s;
  -moz-transition: all 0.5s;
  -o-transition: all 0.5s;
  -ms-transition: all 0.5s;
  transition: all 0.5s;
}

@media (max-width: 1400px) {
  .title h2 em {
    font-size: 24px;
  }
}

@media (max-width: 1000px) {
  .title {
    margin-bottom: 15px;
  }
  .title h2 em {
    font-size: 18px;
    margin-right: 7px;
  }
  .pudong-tabs li span {
    padding-bottom: 5px;
    font-size: 15px;
  }
}


.cljubao{
    position:fixed;
    top:50%;
    right:20px;
    z-index:100;
    width:60px;
    height:60px;
    background:#046eb7;
    border-radius:5px;
    text-align:center;
    font-size:12px;
    color:#fff;
    padding:5px 0
}
.cljubao img{
    height:25px;
}
.cljubao span{
    display:block;
    padding-top:5px;
}
