header {
  width: 100%;
  height: 100px;
  position: fixed;
  top: 0;
  left: 0;
  z-index: 10000;
  transition: 0.5s;
  /* 线性渐变背景 */
  background-image: linear-gradient(to bottom, rgba(0, 0, 0, 0.2), rgba(255, 255, 255, 0));
}
header .pc-header {
  width: 90%;
  height: 100px;
  display: flex;
  justify-content: space-between;
  align-items: center;
  padding: 0 5%;
}
header .pc-header .logo {
  width: 160px;
  height: 48px;
  position: relative;
}
header .pc-header .logo img {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: 0.5s;
}
header .pc-header .logo img:nth-child(2) {
  opacity: 0;
}
header .pc-header .center {
  height: 100%;
}
header .pc-header .center nav {
  height: 100%;
}
header .pc-header .center nav ul {
  display: flex;
  height: 100%;
}
header .pc-header .center nav ul li {
  margin: 0 75px;
  height: 100%;
  position: relative;
}
header .pc-header .center nav ul li > a {
  font-weight: bold;
  font-size: 16px;
  color: #fff;
  line-height: 100px;
  transition: 0.5s;
  position: relative;
  display: block;
  z-index: 2;
  text-shadow: 1px 2px 5px rgba(0, 0, 0, 0.3);
}
header .pc-header .center nav ul li > a::after {
  content: '';
  width: 0;
  height: 3px;
  position: absolute;
  left: 0;
  bottom: 17px;
  background-color: #D13239;
  transition: 0.5s;
}
header .pc-header .center nav ul li .list {
  position: absolute;
  left: 0;
  top: 100%;
  z-index: 3;
  padding-top: 7px;
  display: none;
}
header .pc-header .center nav ul li .list::after {
  content: '';
  width: 0;
  height: 0;
  border-left: 7.5px solid transparent;
  /* 总宽 = 左7.5 + 右7.5 = 15px */
  border-right: 7.5px solid transparent;
  border-bottom: 7px solid #fff;
  /* 高度由下边框宽度决定 (7px) */
  position: absolute;
  top: 1px;
  left: 20px;
}
header .pc-header .center nav ul li .list .box {
  background-color: #fff;
  padding: 20px;
  box-shadow: 0 0 20px 0 rgba(0, 0, 0, 0.05);
}
header .pc-header .center nav ul li .list .box .item {
  margin-bottom: 20px;
}
header .pc-header .center nav ul li .list .box .item:last-child {
  margin-bottom: 0;
}
header .pc-header .center nav ul li .list .box .item a {
  font-size: 12px;
  color: #333;
  white-space: nowrap;
  transition: 0.5s;
}
header .pc-header .center nav ul li .list .box .item a span {
  font-family: "DINNextLTProMedium";
}
header .pc-header .center nav ul li .list .box .item a:hover {
  color: #D13239;
}
header .pc-header .center nav ul li:hover a::after {
  width: 100%;
}
header .pc-header .right {
  width: 135px;
  height: 32px;
  background: #D13239;
  border-radius: 163px 163px 163px 163px;
}
header .pc-header .right a {
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 16px;
  color: #FFFFFF;
}
header.innerHeader {
  background-image: none;
  background-color: #fff;
}
header.innerHeader .pc-header .logo img:nth-child(1) {
  opacity: 0;
}
header.innerHeader .pc-header .logo img:nth-child(2) {
  opacity: 1;
}
header.innerHeader .pc-header .center nav ul li a {
  color: #333;
  text-shadow: 1px 2px 5px rgba(0, 0, 0, 0);
}
header.active {
  background-image: none;
  background-color: #fff;
  height: 280px;
}
header.active .pc-header .logo img:nth-child(1) {
  opacity: 0;
}
header.active .pc-header .logo img:nth-child(2) {
  opacity: 1;
}
header.active .pc-header .center nav ul li a {
  color: #333;
  text-shadow: 1px 2px 5px rgba(0, 0, 0, 0);
}
header.soclle {
  height: 80px;
  background-image: none;
  background-color: rgba(255, 255, 255, 0.8);
  -webkit-backdrop-filter: saturate(180%) blur(20px);
  backdrop-filter: saturate(180%) blur(20px);
}
header.soclle .pc-header {
  height: 80px;
}
header.soclle .pc-header .logo img:nth-child(1) {
  opacity: 0;
}
header.soclle .pc-header .logo img:nth-child(2) {
  opacity: 1;
}
header.soclle .pc-header .center nav ul li a {
  line-height: 80px;
  color: #333;
  text-shadow: 1px 2px 5px rgba(0, 0, 0, 0);
}
header.soclle .pc-header .center nav ul li .list .box .item a {
  line-height: 12px;
}
header .m-header {
  display: none;
}
.down-popups {
  width: 470px;
  height: 228px;
  position: fixed;
  top: 107px;
  right: 4px;
  z-index: 100;
  background-color: #fff;
  box-shadow: 0 0 4px 0 rgba(0, 0, 0, 0.1);
  display: none;
}
.down-popups::after {
  content: '';
  border-left: 7.5px solid transparent;
  /* 左边透明 */
  border-right: 7.5px solid transparent;
  /* 右边透明 */
  border-bottom: 5px solid #fff;
  /* 底边，箭头的颜色 */
  position: absolute;
  top: -5px;
  left: 70%;
}
.down-popups .box {
  width: 100%;
  height: 100%;
  display: flex;
  align-items: center;
  justify-content: center;
}
.down-popups .box .left {
  width: 260px;
  height: 168px;
  padding-right: 23px;
  margin-right: 23px;
  position: relative;
}
.down-popups .box .left::after {
  content: '';
  width: 1px;
  height: 100%;
  background-color: #dcdcdc;
  position: absolute;
  right: 0;
  top: 0;
}
.down-popups .box .left .info1 {
  width: calc(100% - 24px);
  height: 100%;
  display: flex;
  justify-content: space-between;
  flex-wrap: wrap;
  position: absolute;
  top: 0;
  left: 0;
}
.down-popups .box .left .info1 .item {
  width: 120px;
  height: 78px;
  border: solid 1px #dcdcdc;
  border-radius: 5px;
  margin-bottom: 10px;
  cursor: pointer;
  position: relative;
  display: flex;
  transition: 0.5s;
}
.down-popups .box .left .info1 .item .name {
  margin-top: 9px;
  margin-left: 14px;
}
.down-popups .box .left .info1 .item .name .en {
  font-family: "DINNextLTProMedium";
  font-size: 14px;
  line-height: 18px;
  color: #55565b;
}
.down-popups .box .left .info1 .item .name .cn {
  font-size: 14px;
  line-height: 18px;
  color: #55565b;
}
.down-popups .box .left .info1 .item .icon {
  width: 7px;
  height: 12px;
  position: absolute;
  right: 13px;
  bottom: 11px;
}
.down-popups .box .left .info1 .item .icon img {
  width: 100%;
}
.down-popups .box .left .info1 .item:hover {
  border: solid 1px #D13239;
}
.down-popups .box .left .info2,
.down-popups .box .left .info3,
.down-popups .box .left .info4,
.down-popups .box .left .info5 {
  width: calc(100% - 24px);
  height: 100%;
  position: absolute;
  top: 0;
  left: 0;
  display: none;
}
.down-popups .box .left .info2 .top,
.down-popups .box .left .info3 .top,
.down-popups .box .left .info4 .top,
.down-popups .box .left .info5 .top {
  width: 100%;
  display: flex;
  align-items: center;
  justify-content: space-between;
  cursor: pointer;
}
.down-popups .box .left .info2 .top .name,
.down-popups .box .left .info3 .top .name,
.down-popups .box .left .info4 .top .name,
.down-popups .box .left .info5 .top .name {
  font-size: 14px;
  line-height: 14px;
  color: #55565b;
  transition: 0.5s;
}
.down-popups .box .left .info2 .top .icon,
.down-popups .box .left .info3 .top .icon,
.down-popups .box .left .info4 .top .icon,
.down-popups .box .left .info5 .top .icon {
  width: 7px;
  height: 12px;
  transform: rotateZ(90deg);
  transition: 0.5s;
}
.down-popups .box .left .info2 .top:hover .name,
.down-popups .box .left .info3 .top:hover .name,
.down-popups .box .left .info4 .top:hover .name,
.down-popups .box .left .info5 .top:hover .name {
  color: #D13239;
}
.down-popups .box .left .info2 .top:hover .icon,
.down-popups .box .left .info3 .top:hover .icon,
.down-popups .box .left .info4 .top:hover .icon,
.down-popups .box .left .info5 .top:hover .icon {
  transform: rotateZ(0deg);
}
.down-popups .box .left .info2 .list,
.down-popups .box .left .info3 .list,
.down-popups .box .left .info4 .list,
.down-popups .box .left .info5 .list {
  width: 100%;
  margin-top: 28px;
  height: 126px;
  overflow-y: auto;
}
.down-popups .box .left .info2 .list::-webkit-scrollbar,
.down-popups .box .left .info3 .list::-webkit-scrollbar,
.down-popups .box .left .info4 .list::-webkit-scrollbar,
.down-popups .box .left .info5 .list::-webkit-scrollbar {
  width: 2px;
}
.down-popups .box .left .info2 .list::-webkit-scrollbar-thumb,
.down-popups .box .left .info3 .list::-webkit-scrollbar-thumb,
.down-popups .box .left .info4 .list::-webkit-scrollbar-thumb,
.down-popups .box .left .info5 .list::-webkit-scrollbar-thumb {
  border-radius: 10px;
  background: #D13239;
}
.down-popups .box .left .info2 .list::-webkit-scrollbar-track,
.down-popups .box .left .info3 .list::-webkit-scrollbar-track,
.down-popups .box .left .info4 .list::-webkit-scrollbar-track,
.down-popups .box .left .info5 .list::-webkit-scrollbar-track {
  background: #dbdada;
  border-radius: 10px;
}
.down-popups .box .left .info2 .list .item,
.down-popups .box .left .info3 .list .item,
.down-popups .box .left .info4 .list .item,
.down-popups .box .left .info5 .list .item {
  width: 100%;
}
.down-popups .box .left .info2 .list .item a,
.down-popups .box .left .info3 .list .item a,
.down-popups .box .left .info4 .list .item a,
.down-popups .box .left .info5 .list .item a {
  width: 100%;
  font-size: 14px;
  line-height: 30px;
  color: #55565b;
  overflow: hidden;
  display: -webkit-box;
  text-overflow: ellipsis;
  -webkit-box-orient: vertical;
  -webkit-line-clamp: 1;
  transition: 0.5s;
}
.down-popups .box .left .info2 .list .item.active a,
.down-popups .box .left .info3 .list .item.active a,
.down-popups .box .left .info4 .list .item.active a,
.down-popups .box .left .info5 .list .item.active a {
  color: #D13239;
}
.down-popups .box .right {
  width: 118px;
  height: 168px;
  position: relative;
}
.down-popups .box .right .info1 {
  width: 100%;
  height: 100%;
  display: flex;
  align-items: center;
  justify-content: center;
  position: absolute;
  top: 0;
  left: 0;
}
.down-popups .box .right .info1 .icon {
  width: 76px;
  height: 74px;
}
.down-popups .box .right .info1 .icon img {
  width: 100%;
}
.down-popups .box .right .info2,
.down-popups .box .right .info3,
.down-popups .box .right .info4,
.down-popups .box .right .info5 {
  width: 100%;
  height: 100%;
  position: absolute;
  top: 0;
  left: 0;
  display: none;
}
.down-popups .box .right .info2 .img,
.down-popups .box .right .info3 .img,
.down-popups .box .right .info4 .img,
.down-popups .box .right .info5 .img {
  width: 100%;
  height: 100%;
  overflow: hidden;
  position: absolute;
  top: 0;
  left: 0;
  opacity: 0;
}
.down-popups .box .right .info2 .img img,
.down-popups .box .right .info3 .img img,
.down-popups .box .right .info4 .img img,
.down-popups .box .right .info5 .img img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}
.down-popups .box .right .info2 .img.active,
.down-popups .box .right .info3 .img.active,
.down-popups .box .right .info4 .img.active,
.down-popups .box .right .info5 .img.active {
  opacity: 1;
}
.innerBanner1 {
  width: 100%;
  height: 730px;
  position: relative;
  overflow: hidden;
}
.innerBanner1 img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}
.innerBanner1 .text {
  font-weight: bold;
  font-size: 48px;
  color: #FFFFFF;
  line-height: 65px;
  letter-spacing: 4px;
  position: absolute;
  left: calc(50% - 720px);
  top: calc(50% + 50px);
  transform: translateY(-50%);
  z-index: 3;
}
.breadcrumbs {
  width: 1440px;
  margin: 0 auto;
  margin-top: 47px;
}
.breadcrumbs a {
  font-weight: 400;
  font-size: 12px;
  color: #55565B;
  line-height: 14px;
  transition: 0.5s;
}
.breadcrumbs a.active {
  color: #D13239;
}
.breadcrumbs a:hover {
  opacity: 0.6;
}
.video-popups {
  width: 100%;
  height: 100vh;
  background-color: rgba(0, 0, 0, 0.8);
  position: fixed;
  top: 0;
  left: 0;
  display: none;
  z-index: 100000;
}
.video-popups .box {
  width: 100%;
  height: 100vh;
  display: flex;
  flex-direction: column;
  justify-content: center;
  align-items: center;
}
.video-popups .box video {
  width: 60%;
  height: auto;
}
.video-popups .box .close {
  width: 60px;
  height: 60px;
  margin-top: 10px;
  cursor: pointer;
}
.video-popups .box .close img {
  width: 100%;
}
#cookie-consent {
  width: 100%;
  height: 80px;
  position: fixed;
  left: 0;
  bottom: 0;
  z-index: 10000;
  background-color: #303030;
  display: none;
}
#cookie-consent .box {
  width: 90%;
  height: 100%;
  display: flex;
  align-items: center;
  justify-content: center;
  padding: 0 5%;
}
#cookie-consent .box P {
  font-size: 14px;
  line-height: 20px;
  color: #fff;
}
#cookie-consent .box P a {
  color: #fff;
  transition: 0.6s;
}
#cookie-consent .box P a:hover {
  opacity: 0.6;
}
#cookie-consent .box #accept-cookies {
  width: 56px;
  height: 22px;
  border-radius: 22px;
  background-color: #D13239;
  border: 0;
  font-size: 12px;
  color: #fff;
  margin-left: 30px;
  flex-shrink: 0;
  transition: 0.5s;
}
#cookie-consent .box #accept-cookies:hover {
  opacity: 0.6;
}
footer {
  width: 100%;
  background-color: #303030;
}
footer .box {
  width: 1440px;
  margin: 0 auto;
  padding-top: 90px;
  padding-bottom: 20px;
}
footer .box .top {
  width: 100%;
  display: flex;
  justify-content: space-between;
}
footer .box .top .logo {
  width: 215px;
  height: 64px;
}
footer .box .top .logo a {
  width: 100%;
  height: 100%;
  display: block;
}
footer .box .top .logo a img {
  width: 100%;
}
footer .box .top .right {
  display: flex;
  width: calc(100% - 440px);
}
footer .box .top .right .item {
  width: 25%;
}
footer .box .top .right .item .title a {
  font-weight: bold;
  font-size: 16px;
  color: #FFFFFF;
  line-height: 19px;
  transition: 0.5s;
}
footer .box .top .right .item .title a:hover {
  opacity: 0.6;
}
footer .box .top .right .item ul {
  margin-top: 30px;
}
footer .box .top .right .item ul li {
  margin-bottom: 26px;
}
footer .box .top .right .item ul li a {
  font-size: 12px;
  color: #FFFFFF;
  line-height: 14px;
  transition: 0.5s;
}
footer .box .top .right .item ul li a:hover {
  opacity: 0.6;
}
footer .box .center {
  width: 100%;
  height: 100px;
  margin-top: 60px;
  border-top: solid 1px #4D4D4D;
  border-bottom: solid 1px #4D4D4D;
  display: flex;
  align-items: center;
  justify-content: space-between;
}
footer .box .center .left {
  font-size: 20px;
  color: #FFFFFF;
  line-height: 30px;
}
footer .box .center .right {
  display: flex;
  align-items: center;
  position: relative;
}
footer .box .center .right .item {
  width: 36px;
  height: 36px;
}
footer .box .center .right .item:first-child {
  margin-right: 30px;
}
footer .box .center .right .item a img {
  width: 100%;
  opacity: 0.6;
  transition: 0.5s;
}
footer .box .center .right .item .code-box {
  width: 238px;
  height: 112px;
  background-color: #fff;
  border-radius: 6px;
  position: absolute;
  right: 135px;
  top: 50%;
  transform: translateY(-50%);
  display: flex;
  align-items: center;
  justify-content: space-between;
  opacity: 0;
  transition: 0.5s;
}
footer .box .center .right .item .code-box .text {
  font-size: 12px;
  line-height: 18px;
  color: #000;
  margin-left: 14px;
}
footer .box .center .right .item .code-box .text span {
  font-size: 14px;
  display: block;
}
footer .box .center .right .item .code-box .img {
  width: 90px;
  height: 90px;
  margin-right: 9px;
}
footer .box .center .right .item .code-box .img img {
  width: 100%;
}
footer .box .center .right .item:hover a img {
  opacity: 1;
}
footer .box .center .right .item:hover .code-box {
  opacity: 1;
}
footer .box .bottom {
  width: 100%;
  height: 132px;
  display: flex;
  align-items: center;
  justify-content: space-between;
}
footer .box .bottom .left {
  font-size: 12px;
  color: #666666;
  line-height: 12px;
}
footer .box .bottom .left span:first-child {
  margin-right: 158px;
}
footer .box .bottom .left a {
  color: #666;
  transition: 0.5s;
}
footer .box .bottom .left a:hover {
  color: #a0a0a0;
}
footer .box .bottom .right {
  display: flex;
  align-items: center;
}
footer .box .bottom .right .list {
  display: flex;
}
footer .box .bottom .right .list .item {
  margin-left: 37px;
}
footer .box .bottom .right .list .item a {
  font-size: 12px;
  color: #666666;
  line-height: 12px;
  transition: 0.5s;
}
footer .box .bottom .right .list .item a:hover {
  color: #a0a0a0;
}
footer .box .bottom .right .return {
  margin-left: 330px;
}
footer .box .bottom .right .return a {
  display: flex;
  font-size: 12px;
  color: #ffffff;
  line-height: 12px;
  align-items: center;
}
footer .box .bottom .right .return a img {
  width: 9px;
  height: 6px;
  margin-left: 6px;
}
@media screen and (max-width: 1600px) {
  footer .box {
    width: 90%;
    margin: 0 auto;
    padding-top: 90px;
    padding-bottom: 20px;
  }
  .innerBanner1 .text {
    font-weight: bold;
    font-size: 48px;
    color: #FFFFFF;
    line-height: 65px;
    letter-spacing: 4px;
    position: absolute;
    left: 5%;
    top: calc(50% + 50px);
    transform: translateY(-50%);
  }
  .breadcrumbs {
    width: 90%;
    margin: 0 auto;
    margin-top: 47px;
  }
}
@media screen and (max-width: 1360px) {
  header .pc-header .center nav ul li {
    margin: 0 40px;
    height: 100%;
    position: relative;
  }
  footer .box .bottom .right .return {
    margin-left: 180px;
  }
  footer .box .top .right {
    display: flex;
    width: calc(100% - 300px);
  }
}
@media screen and (max-width: 1200px) {
  header .pc-header {
    display: none;
  }
  header {
    width: 100%;
    height: 80px;
    position: fixed;
    top: 0;
    left: 0;
    z-index: 10000;
    transition: 0.5s;
    overflow: hidden;
  }
  header .m-header {
    display: block;
    width: 100%;
    position: fixed;
    top: 0;
    left: 0;
    z-index: 1000000000;
    height: 80px;
    transition: 0.2s;
    background-color: #ffffff;
    box-shadow: 0px 0px 10px rgba(0, 0, 0, 0.05);
    display: flex;
    align-items: center;
    justify-content: space-between;
  }
  header .m-header::after {
    content: "";
    width: 100%;
    height: 100%;
    position: absolute;
    top: 0;
    left: 0;
    z-index: -1;
    display: block;
    float: none;
    clear: both;
    background-color: rgba(255, 255, 255, 0.85);
  }
  header .m-header .logo {
    position: relative;
    height: 40px;
    margin-left: 5%;
  }
  header .m-header .logo img {
    position: absolute;
    top: 0;
    left: 0;
    height: 100%;
  }
  header .m-header .home {
    margin-right: 5%;
    cursor: pointer;
    position: relative;
    width: 30px;
    height: 30px;
  }
  header .m-header .home .line {
    width: 30px;
    height: 3px;
    background-color: #666;
    margin-bottom: 10px;
    border-radius: 3px;
    transition: 0.5s;
  }
  header .m-header .home .line1 {
    position: absolute;
    top: 0;
    left: 0;
  }
  header .m-header .home .line2 {
    position: absolute;
    left: 0;
    top: 11px;
  }
  header .m-header .home .line3 {
    position: absolute;
    top: 22px;
    left: 0;
  }
  header .m-header .home.home-close .line1 {
    position: absolute;
    transform: rotate(45deg);
    top: 18px;
  }
  header .m-header .home.home-close .line2 {
    position: absolute;
    left: 120px;
  }
  header .m-header .home.home-close .line3 {
    position: absolute;
    transform: rotate(-45deg);
    top: 18px;
  }
  header .m-header .down-nav {
    width: 100%;
    height: calc(100vh - 80px);
    display: block;
    position: fixed;
    top: 80px;
    left: -100%;
    z-index: 100;
    transition: 0.5s;
    overflow: hidden;
  }
  header .m-header .down-nav .box {
    width: 40%;
    height: 100%;
    background-color: white;
    padding-top: 40px;
  }
  header .m-header .down-nav .box nav {
    width: 100%;
  }
  header .m-header .down-nav .box nav ul li {
    width: 100%;
    height: 50px;
    text-align: center;
    transition: 0.5s;
  }
  header .m-header .down-nav .box nav ul li a {
    width: 100%;
    height: 100%;
    display: block;
    font-size: 18px;
    line-height: 50px;
    color: #333;
    font-weight: bold;
  }
  header .m-header .down-nav .box nav ul li .list {
    position: absolute;
    top: -1px;
    left: -20vw;
    width: 60vw;
    height: 100vh;
    background-color: #f6f6f6;
    padding-top: 40px;
    text-align: left;
    display: block;
    z-index: -1;
    transition: 0.5s;
  }
  header .m-header .down-nav .box nav ul li .list .box1 > a {
    padding-left: 30px;
    color: #D13239;
  }
  header .m-header .down-nav .box nav ul li .list .item {
    padding-left: 30px;
  }
  header .m-header .down-nav .box nav ul li .list .item a {
    font-weight: normal;
  }
  header .m-header .down-nav .box nav ul li.li-open {
    background-color: #f6f6f6;
  }
  header .m-header .down-nav .box nav ul li.li-open .list {
    left: 40vw;
  }
  header .m-header .down-nav.mobile-open {
    left: 0;
  }
  header .m-header .mobile-mask {
    width: 100%;
    height: calc(100vh - 80px);
    display: none;
    position: fixed;
    top: 80px;
    left: 0;
    z-index: 2;
    background-color: rgba(0, 0, 0, 0.8);
  }
  .innerBanner1 {
    width: 100%;
    height: 500px;
    position: relative;
  }
  .innerBanner1 .text {
    font-weight: bold;
    font-size: 30px;
    color: #FFFFFF;
    line-height: 30px;
    letter-spacing: 4px;
    position: absolute;
    left: 5%;
    top: calc(50% + 25px);
    transform: translateY(0%);
  }
  footer .box .bottom .left span:first-child {
    margin-right: 58px;
  }
  footer .box .bottom .right .return {
    margin-left: 80px;
  }
}
@media screen and (max-width: 1200px) {
  footer .box .top .right {
    display: none;
  }
  footer .box .top {
    width: 100%;
    display: flex;
    justify-content: center;
  }
  footer .box {
    width: 90%;
    margin: 0 auto;
    padding-top: 60px;
    padding-bottom: 20px;
  }
  footer .box .center {
    width: 100%;
    height: auto;
    margin-top: 60px;
    border-top: solid 1px #4D4D4D;
    border-bottom: solid 1px #4D4D4D;
    display: flex;
    align-items: center;
    justify-content: space-between;
    flex-direction: column;
    padding: 30px 0;
  }
  footer .box .center .left {
    width: 100%;
    font-size: 20px;
    color: #FFFFFF;
    line-height: 30px;
    text-align: center;
  }
  footer .box .center .right .item .code-box {
    width: 238px;
    height: 112px;
    background-color: #fff;
    border-radius: 6px;
    position: relative;
    right: auto;
    top: auto;
    transform: translateY(0);
    display: flex;
    align-items: center;
    justify-content: space-between;
    opacity: 1;
    transition: 0.5s;
  }
  footer .box .center .right .item {
    width: 238px;
    height: 112px;
    margin: 0;
  }
  footer .box .center .right .item > a {
    display: none;
  }
  footer .box .center .right {
    display: flex;
    align-items: center;
    position: relative;
    justify-content: center;
    margin-top: 30px;
  }
  footer .box .bottom {
    width: 100%;
    height: 132px;
    display: flex;
    align-items: center;
    justify-content: center;
    flex-wrap: wrap;
  }
  footer .box .bottom {
    width: 100%;
    height: 60px;
    display: flex;
    align-items: center;
    justify-content: center;
    flex-wrap: wrap;
    padding-top: 20px;
  }
  .video-popups .box video {
    width: 90%;
    height: auto;
  }
}
@media screen and (max-width: 680px) {
  .innerBanner1 {
    width: 100%;
    height: 300px;
    position: relative;
  }
}
@media screen and (max-width: 540px) {
  footer .box .center .right {
    display: flex;
    align-items: center;
    position: relative;
    flex-wrap: wrap;
    justify-content: center;
    margin-top: 30px;
  }
  footer .box .center .right .item:first-child {
    margin-right: 0;
    margin-bottom: 20px;
  }
  footer .box .bottom .left {
    font-size: 12px;
    color: #666666;
    line-height: 12px;
    text-align: center;
  }
  footer .box .bottom .left span:first-child {
    margin-right: 0;
    display: block;
    margin-bottom: 10px;
  }
  footer .box .bottom .right {
    display: flex;
    align-items: center;
    flex-wrap: wrap;
    justify-content: center;
  }
  footer .box .bottom .right .return {
    margin-left: 0;
    width: 100%;
    margin-top: 10px;
  }
  footer .box .bottom .right .return a {
    display: flex;
    font-size: 12px;
    color: #ffffff;
    line-height: 12px;
    align-items: center;
    justify-content: center;
  }
  footer .box .bottom {
    width: 100%;
    height: 90px;
    display: flex;
    align-items: center;
    justify-content: center;
    flex-wrap: wrap;
    padding-top: 20px;
  }
}
