@charset "UTF-8";
.header .nav-banner {
  width: 100%;
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 0 0 0 160px;
  position: fixed;
  left: 0;
  top: 0;
  z-index: 999;
  height: 120px;
}

.header .nav-banner .nav {
  display: flex;
  justify-content: center;
  height: 100%;
  max-width: 0;
  transition: max-width 0.3s;
  overflow: hidden;
}

.header .nav-banner .nav li {
  height: 100%;
  padding: 0 30px;
  line-height: 120px;
}

.header .nav-banner .nav li a {
  color: #fff;
}

.header .nav-banner .nav li a.active {
  color: red;
}

.header .nav-banner .nav.long {
  max-width: 600px;
  transition: max-width 0.3s;
}

.header .nav-banner .nav.over {
  overflow: unset;
}

.header .nav-banner .right {
  display: flex;
  align-items: center;
  height: 100%;
}

.header .nav-banner .select {
  width: 66px;
  height: 33px;
  border: 1px solid #fff;
  border-radius: 4px;
  font-size: 16px;
  line-height: 33px;
  text-align: center;
  color: #fff;
  cursor: pointer;
}

.header .nav-banner .menu {
  width: 160px;
  height: 100%;
  line-height: 120px;
  background-color: #d82323;
  margin-left: 50px;
  text-align: center;
  cursor: pointer;
}

.header .nav-banner .menu i {
  font-size: 40px;
  color: #fff;
}

.header .nav-banner .menu .open {
  display: block;
}

.header .nav-banner .menu .close {
  display: none;
}

.header .nav-banner .menu.active .open {
  display: none;
}

.header .nav-banner .menu.active .close {
  display: block;
}

.header .nav-banner .select select {
  width: 66px;
  height: 33px;
  border: solid 1px #ddd;
  color: #ddd;
  padding: 5px 10px;
  background-color: transparent;
  border-radius: 4px;
}

.header .nav-banner.fixed {
  background-color: #fff;
}

.header .nav-banner.fixed .nav li a {
  color: #000;
}

.header .nav-banner.fixed .nav li a.active {
  color: red;
}

.header .nav-banner.fixed .select {
  color: #333;
  border: 1px solid #333;
}

.header .nav-banner.fixed .select select {
  border: solid 1px #000;
  color: #000;
}

.header .header-bg {
  position: relative;
}

.header .header-bg img {
  width: 100%;
}

.header .header-bg .header-title {
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
  color: #fff;
  text-align: center;
}

.header .header-bg .header-title .cn {
  font-size: 50px;
}

.header .header-bg .header-title .en {
  font-size: 24px;
}

.header .header-bg::before {
  content: '';
  width: 100%;
  height: 100%;
  position: absolute;
  top: 0;
  left: 0;
  background-color: rgba(0, 0, 0, 0.3);
}

.header-nav {
  height: 120px;
  position: fixed;
  width: 100%;
  top: 0;
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding-left: 8.333%;
  z-index: 100;
}

.header-nav .logo {
  width: 268px;
  display: block;
}

.header-nav .logo img {
  width: 100%;
}

.header-nav .logo img.light {
  display: block;
}

.header-nav .logo img.dark {
  display: none;
}

.header-nav .nav {
  height: 100%;
  display: flex;
  align-items: center;
  overflow: hidden;
  transition: max-width 0.3s;
  max-width: 0;
}

.header-nav .nav .item {
  padding: 0 10px;
  height: 100%;
  display: block;
  font-size: 16px;
  line-height: 120px;
  color: #fff;
  margin-right: 40px;
}

.header-nav .nav .item:last-child {
  margin-right: 0;
}

.header-nav .nav .item:hover, .header-nav .nav .item.active {
  color: #d82323 !important;
}

.header-nav .nav.long {
  max-width: 600px;
  transition: max-width 0.3s;
}

.header-nav .nav.over {
  overflow: unset;
}

.header-nav .right {
  display: flex;
  align-items: center;
  height: 100%;
}

.header-nav .right .language {
  width: 66px;
  height: 33px;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 16px;
  border-radius: 4px;
  border: 1px solid #fff;
  color: #fff;
  cursor: pointer;
}

.header-nav .right .language i {
  display: inline-block;
  margin-left: 5px;
  font-size: 12px;
  zoom: 0.7;
}

.header-nav .right .menu-box {
  width: 160px;
  height: 100%;
  display: flex;
  align-items: center;
  justify-content: center;
  color: #fff;
  background-color: #d82323;
  margin-left: 50px;
  cursor: pointer;
}

.header-nav .right .menu-box i {
  font-size: 24px;
}

.header-nav .right .menu-box .open {
  display: block;
}

.header-nav .right .menu-box .close {
  display: none;
}

.header-nav .right .menu-box.active .open {
  display: none;
}

.header-nav .right .menu-box.active .close {
  display: block;
}

.header-nav.lan .nav .item {
  color: #333;
}

.header-nav.lan .right .language {
  border: 1px solid #ddd;
  color: #333;
}

.header-nav.lan .right .language i {
  color: #666;
}

.header-nav.logo-active img.dark {
  display: block;
}

.header-nav.logo-active img.light {
  display: none;
}

.footer {
  background-color: #333;
  color: #fff;
}

.footer .top-info {
  padding: 48px 160px;
  display: flex;
  justify-content: space-between;
  align-items: center;
}

.footer .top-info .basic-info {
  width: 25%;
}

.footer .top-info .basic-info .phone {
  font-size: 30px;
}

.footer .top-info .basic-info .address {
  font-size: 14px;
}

.footer .top-info .nav {
  width: 50%;
}

.footer .top-info .nav ul {
  display: flex;
  justify-content: center;
}

.footer .top-info .nav ul li {
  padding: 0 38px;
  line-height: 30px;
}

.footer .top-info .nav ul li a {
  color: #fff;
}

.footer .top-info .search {
  width: 275px;
  height: 40px;
  border: 1px solid #898989;
  cursor: pointer;
  position: relative;
}

.footer .top-info .search .tops {
  width: 100%;
  display: flex;
  align-items: center;
}

.footer .top-info .search .tops span {
  display: inline-block;
  width: 100%;
  padding-left: 12px;
}

.footer .top-info .search .tops .arr-box {
  font-size: 16px;
  color: #fff;
  height: 100%;
  line-height: 40px;
  text-align: center;
  flex-shrink: 0;
  width: 40px;
  position: relative;
}

.footer .top-info .search .tops .arr-box:before {
  content: '';
  position: absolute;
  width: 1px;
  height: calc(100% - 1px);
  border-left: 1px solid #898989;
  left: 0;
  top: 0;
}

.footer .top-info .search .down-box {
  position: absolute;
  width: 100%;
  top: 39px;
  left: 0;
  display: none;
}

.footer .top-info .search .down-box .item {
  text-align: center;
  height: 40px;
  line-height: 40px;
  text-align: center;
  padding: 0 12px;
  width: 100%;
  color: #333;
  background-color: #fff;
  border-bottom: 1px solid #e6e6e6;
}

.footer .top-info .search .down-box .item:hover {
  background-color: #d82323;
  color: #fff;
}

.footer .bottom-info {
  padding: 0 160px;
  line-height: 60px;
  display: flex;
  justify-content: space-between;
}

.footer .bottom-info a {
  color: #fff;
}

.footer .line {
  border-top: 1px solid rgba(255, 255, 255, 0.1);
}

.com-page {
  height: 100px;
  line-height: 100px;
  text-align: center;
}

.com-page a {
  border: 1px solid #ccc;
  padding: 7px 11px;
  cursor: pointer;
}

.com-page a.active {
  background-color: #e54240;
  border: #e54240;
  color: #fff;
}

.com-title {
  text-align: center;
  padding: 75px 0;
}

.com-title .cn {
  font-size: 36px;
}

.com-title .en {
  color: #999;
  font-size: 18px;
}

.prevBtn,
.nextBtn {
  position: absolute;
  top: 50%;
  transform: translateY(-50%);
  z-index: 100;
  width: 50px;
  height: 50px;
  border-radius: 50%;
  box-shadow: 0 0 3px rgba(0, 0, 0, 0.7);
  display: flex;
  justify-content: center;
  align-items: center;
  color: #fff;
}

.second-box {
  box-shadow: 0 0 20px rgba(0, 0, 0, 0.1);
}

.second-box ul {
  display: flex;
  justify-content: center;
}

.second-box ul li {
  text-align: center;
  width: 120px;
  cursor: pointer;
}

.second-box ul li a {
  display: block;
  line-height: 60px;
}

.second-box ul li.active {
  color: #cf1f1b;
  border-bottom: 2px solid #cf1f1b;
}

.main {
  width: 100%;
}

.main .info {
  width: 1400px;
  margin: 0 auto;
}

.m-header {
  display: none;
}

.mobile-banner {
  display: none;
}

.m-cover-dark {
  display: none;
}

.container {
  width: 1400px;
  margin: 0 auto;
  position: relative;
}
.container.p-center{
  width: 100%;
}
@-webkit-keyframes circleroll {
  /* 渐入 */
  from {
    transform: rotate(0);
  }
  to {
    transform: rotate(360deg);
  }
}

@keyframes circleroll {
  from {
    transform: rotate(0);
  }
  to {
    transform: rotate(360deg);
  }
}

#map .BMapLabel {
  border: none !important;
}

#map .BMapLabel .info-div {
  position: relative;
  background: #fff;
  padding: 10px;
  display: inline-block;
}

#map .BMapLabel .info-div .t1 {
  color: #2b5fac;
  font-size: 16px;
  font-weight: bold;
  margin-bottom: 5px;
}

#map .BMapLabel .info-div .t2 {
  color: #333;
  font-size: 14px;
}

#map .BMapLabel .info-div .arrow {
  display: block;
  width: 15px;
  height: 15px;
  border-top: 1px solid #ddd;
  border-left: 1px solid #ddd;
  position: absolute;
  background: #fff;
  transform: rotate(-136deg);
  bottom: -9px;
  left: calc(50% - 7.5px);
}
