@charset "UTF-8";
/*配置主题主色调变量*/
:root {
  --link-color: #1E1E21;
  --link-hover-color: #ea8a1c;
  --pro-main-color: #ea8a1c;
}

.show-menus {
  overflow: hidden;
}

/* Banner 公共样式 */
.banner__container {
  width: 100%;
}
.banner__container img {
  width: 100%;
}

/* 头部浮动样式
.sticky {position: sticky;transition: top .3s;}
.show-navbar .sticky { top: var(--navigation-height); }
.hide-navbar .sticky { top: var(--sticky-offset, 0); }*/
/* 分页样式 */
.pagingbar {
  margin-top: 6.979vw;
}
.pagingbar .pages {
  display: flex;
  align-items: center;
  font-size: 14px;
  justify-content: center;
  margin-top: 21px;
}
.pagingbar a, .pagingbar span.current {
  border-radius: 5px;
  line-height: 34px;
  margin: 0 5px;
  text-align: center;
  min-width: 38px;
  font-weight: 600;
  padding: 0 10px;
}
.pagingbar a.first-page, .pagingbar span.last-page, .pagingbar a.last-page, .pagingbar span.first-page {
  width: 38px;
  height: 38px;
  border-radius: 50%;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  border: 1px solid var(--pro-main-color);
  color: var(--pro-main-color);
  overflow: hidden;
  box-sizing: border-box;
  flex-shrink: 0;
}
.pagingbar a.first-page i, .pagingbar span.first-page i {
  transform: rotate(180deg);
}
.pagingbar span.first-page, .pagingbar span.last-page {
  filter: grayscale(100%);
}
.pagingbar span.current {
  color: var(--pro-main-color);
}
.pagingbar a:hover {
  background-color: var(--pro-main-color);
  color: #FFFFFF;
}
.pagingbar span.more {
  display: none;
}

@media screen and (min-width: 996px) {
  .pagingbar {
    margin-top: 8vw;
  }
  .pagingbar .pages {
    font-size: 16px;
  }
  .pagingbar span.more {
    margin: 0 5px;
    display: block;
  }
  .pagingbar a.first-page, .pagingbar span.last-page, .pagingbar a.last-page, .pagingbar span.first-page {
    width: 48px;
    height: 48px;
    border-radius: 50%;
  }
}
/* 顺时针旋转动画 */
@-webkit-keyframes rotateForward {
  0% {
    -webkit-transform: rotate(0deg);
  }
  50% {
    -webkit-transform: rotate(180deg);
  }
  100% {
    -webkit-transform: rotate(360deg);
  }
}
@keyframes rotateForward {
  0% {
    transform: rotate(0deg);
  }
  50% {
    transform: rotate(180deg);
  }
  100% {
    transform: rotate(360deg);
  }
}
@-webkit-keyframes rotateForward2 {
  0% {
    -webkit-transform: rotate(180deg);
  }
  50% {
    -webkit-transform: rotate(360deg);
  }
  100% {
    -webkit-transform: rotate(540deg);
  }
}
@keyframes rotateForward2 {
  0% {
    transform: rotate(180deg);
  }
  50% {
    transform: rotate(360deg);
  }
  100% {
    transform: rotate(540deg);
  }
}
/* 逆时针旋转动画 */
@-webkit-keyframes rotateReverse {
  0% {
    -webkit-transform: rotate(0deg);
  }
  50% {
    -webkit-transform: rotate(-180deg);
  }
  100% {
    -webkit-transform: rotate(-360deg);
  }
}
@keyframes rotateReverse {
  0% {
    transform: rotate(0deg);
  }
  50% {
    transform: rotate(-180deg);
  }
  100% {
    transform: rotate(-360deg);
  }
}
/*弹出窗皮肤样式*/
.layui-layer-shade {
  background-color: rgba(0, 0, 0, 0.3) !important;
  opacity: 1 !important;
}

.l__dialog-safe-area, .l__dialog-full-screen {
  width: 100% !important;
  height: 100% !important;
  background-color: rgba(0, 0, 0, 0.8) !important;
}
.l__dialog-safe-area .layui-layer-title, .l__dialog-full-screen .layui-layer-title {
  color: #ffffff;
}
.l__dialog-safe-area .layui-layer-setwin, .l__dialog-full-screen .layui-layer-setwin {
  top: 15px;
}
.l__dialog-safe-area .layui-layer-setwin a, .l__dialog-full-screen .layui-layer-setwin a {
  width: 20px;
  height: 20px;
}
.l__dialog-safe-area .layui-layer-close1, .l__dialog-full-screen .layui-layer-close1 {
  color: #fff;
  background: transparent;
  text-align: center;
  font-size: 20px;
}
.l__dialog-safe-area .layui-layer-content, .l__dialog-full-screen .layui-layer-content {
  color: #ffffff;
}
.l__dialog-safe-area .layui-layer-content video, .l__dialog-full-screen .layui-layer-content video {
  object-fit: contain;
  width: 100%;
  height: 100%;
}

@media screen and (max-width: 991px) {
  .layui-layer-shade, .l__dialog-safe-area, .l__dialog-full-screen {
    top: 0 !important;
  }
  .l__dialog-safe-area .layui-layer-content {
    height: calc(100% - 50px) !important;
    padding-bottom: constant(safe-area-inset-bottom);
    padding-bottom: env(safe-area-inset-bottom);
  }
}
@media screen and (min-width: 996px) {
  .l__dialog-safe-area, .l__dialog-full-screen {
    width: 80% !important;
    height: auto !important;
    top: 50% !important;
    transform: translateY(-50%);
  }
  .l__dialog-safe-area .layui-layer-content video, .l__dialog-full-screen .layui-layer-content video {
    height: auto;
    max-height: calc(80vh - 50px);
  }
}
/* 头部导航栏菜单 */
.header-nav-pc {
  display: none;
}

.nav-placeholder {
  width: 100%;
  height: 100px;
}

.show-menus .header-nav-mobile .navbar {
  background-color: rgba(0, 0, 0, 0.9);
}

.header-nav-mobile {
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  height: 100px;
  z-index: 99;
}
.header-nav-mobile .navbar {
  width: 100%;
  height: 100px;
  padding: 0 8vw;
  display: flex;
  align-items: center;
  justify-content: space-between;
  background-color: #F3F3F3;
  transition: all 0.6s;
}
.header-nav-mobile .navbar .logo a img {
  height: 11vw;
}
.header-nav-mobile .navbar .nav-items {
  display: flex;
}
.header-nav-mobile .navbar .nav-items__lang {
  margin-right: 8vw;
  transition: all 0.5s;
  opacity: 0;
}
.header-nav-mobile .navbar .nav-items__lang.actived {
  opacity: 1;
}
.header-nav-mobile .navbar .nav-items__lang a {
  display: block;
  width: 59px;
  height: 33px;
  color: #FFFFFF;
  border-radius: 5px;
  border: 1px solid #D0D0D0;
  font-size: 16px;
  text-align: center;
  line-height: 30px;
}
.header-nav-mobile .navbar .nav-items__lang a:hover {
  background-color: var(--pro-main-color);
  border-color: var(--pro-main-color);
}
.header-nav-mobile .navbar .nav-items__action {
  width: 40px;
  height: 40px;
  border-radius: 50%;
  background: #ea8a1c;
  position: relative;
  cursor: pointer;
  transition: opacity 0.3s;
}
.header-nav-mobile .navbar .nav-items__action span {
  width: 20px;
  height: 2px;
  position: absolute;
  left: 10px;
  background: #fff;
  transition: all 0.5s;
}
.header-nav-mobile .navbar .nav-items__action span:nth-child(1) {
  top: 13px;
}
.header-nav-mobile .navbar .nav-items__action span:nth-child(2) {
  top: 19px;
}
.header-nav-mobile .navbar .nav-items__action span:nth-child(3) {
  top: 25px;
}
.header-nav-mobile .navbar .nav-items__action:hover {
  opacity: 0.9;
}
.header-nav-mobile .navbar .nav-items__action.actived span:nth-child(1) {
  top: 19px;
  transform: rotate(45deg);
}
.header-nav-mobile .navbar .nav-items__action.actived span:nth-child(2) {
  opacity: 0;
}
.header-nav-mobile .navbar .nav-items__action.actived span:nth-child(3) {
  top: 19px;
  transform: rotate(-45deg);
}
.header-nav-mobile .navbar__menus {
  width: 100%;
  height: 0;
  background-color: rgba(0, 0, 0, 0.9);
  position: absolute;
  top: 0;
  left: 0;
  z-index: -1;
  transition: all 0.5s;
  overflow: hidden;
  opacity: 0;
  display: flex;
  align-items: center;
  justify-content: center;
  flex-direction: column;
}
.header-nav-mobile .navbar__menus a {
  font-size: 4.8vw;
  font-weight: bold;
  letter-spacing: 2px;
  --link-color: #FFFFFF;
}
.header-nav-mobile .navbar__menus.actived {
  opacity: 1;
  height: 100vh;
}
.header-nav-mobile .navbar__menus-box {
  width: 100%;
  max-height: 100%;
  padding: 0 8vw;
  overflow-y: auto;
}
.header-nav-mobile .navbar__menus-box a.index {
  display: block;
  padding: 4.8vw 0;
  border-bottom: 1px #5F5F5F solid;
}
.header-nav-mobile .navbar__menus-box ul {
  width: 100%;
  color: #fff;
}
.header-nav-mobile .navbar__menus-box ul li .drop {
  width: 100%;
}
.header-nav-mobile .navbar__menus-box ul li .drop a {
  --link-hover-color: #FFFFFF;
  display: flex;
  align-items: center;
  justify-content: space-between;
  border-bottom: 1px #5F5F5F solid;
  padding: 4.8vw 0;
}
.header-nav-mobile .navbar__menus-box ul li .drop a span {
  flex: 1;
}
.header-nav-mobile .navbar__menus-box ul li .drop a i {
  display: inline-block;
  font-weight: normal;
  transform: rotate(90deg);
}
.header-nav-mobile .navbar__menus-box ul li .drop-down {
  max-height: 0;
  overflow: hidden;
  margin-top: 0.8vw;
  transition: max-height 0.3s;
}
.header-nav-mobile .navbar__menus-box ul li .drop-down a {
  display: block;
  width: 100%;
  height: 100%;
  line-height: 2;
  font-weight: normal;
  font-size: 4vw;
  padding: 2.933333vw 0 2.933333vw 6.133333vw;
}
.header-nav-mobile .navbar__menus-box ul li .drop-down a:before {
  content: "-";
  padding-right: 6px;
}
.header-nav-mobile .navbar__menus-box ul li.actived .drop a i {
  transform: rotate(-90deg);
}
.header-nav-mobile .navbar__menus-box ul li.actived .drop-down {
  max-height: 50vh;
  padding-bottom: 4vw;
}

/* 底部版权样式 */
.footer {
  padding: 16vw 8vw 22vw;
  background: #f3f3f3;
}
.footer .row .left, .footer .row .right {
  width: 100%;
}
.footer .logo {
  text-align: center;
}
.footer .logo i {
  font-size: 26.666667vw;
  color: var(--pro-main-color);
}
.footer .logo p {
  text-align: center;
  margin-top: 8.533333vw;
  font-size: 3.3vw;
  color: #333333;
}
.footer .menus {
  display: none;
}
.footer .contact {
  text-align: center;
  margin-top: 8.133333vw;
}
.footer .contact h3 {
  font-size: 3.3vw;
  font-weight: bold;
  color: #202428;
  margin: 0;
}
.footer .contact .telphone {
  --link-color: #202428;
  display: block;
  font-size: 6vw;
  font-weight: bold;
  margin-top: 3.333333vw;
}
.footer .contact .email {
  color: #FFFFFF;
  display: inline-block;
  width: 40vw;
  height: 12vw;
  border-radius: 10px;
  line-height: 12vw;
  font-size: 4vw;
  text-align: center;
  background-color: var(--pro-main-color);
  margin-top: 5.733333vw;
  border: 1px solid var(--pro-main-color);
}
.footer .contact .email i {
  display: inline-block;
  margin-left: 4.4vw;
  transition: all 0.3s;
}
.footer .contact .email:hover {
  background-color: #FFFFFF;
  color: var(--pro-main-color);
}
.footer .others .copyright {
  margin-top: 13.6vw;
}
.footer .others .copyright p {
  text-align: center;
  margin-top: 1.733333vw;
  font-size: 2.6vw;
  font-weight: 400;
  color: #6C6D70;
}
.footer .others .copyright p a {
  --link-color: #6C6D70;
}
.footer .others .copyright p:first-child {
  margin-top: 0;
}
.footer .others .copyright p.address {
  display: none;
}
.footer .others .return-top {
  display: none;
}

@media screen and (min-width: 996px) {
  .header-nav-pc {
    display: flex;
    align-items: center;
    justify-content: space-betweem;
    padding: 0 5.208vw;
    background: #FFFFFF;
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100px;
    z-index: 999;
  }
  .header-nav-pc .logo {
    flex: 1;
  }
  .header-nav-pc .logo img {
    height: 60px;
  }
  .header-nav-pc .menus {
    display: flex;
    justify-content: space-betweem;
    flex-shrink: 0;
    height: 100px;
  }
  .header-nav-pc .menus li {
    margin-left: 4.323vw;
  }
  .header-nav-pc .menus li:first-child {
    margin-left: 0;
  }
  .header-nav-pc .menus li a {
    display: block;
    width: 100%;
    height: 100%;
    line-height: 100px;
  }
  .header-nav-pc .menus li.lang {
    align-self: center;
  }
  .header-nav-pc .menus li.lang a {
    width: 59px;
    height: 33px;
    border: 1px solid #D0D0D0;
    border-radius: 5px;
    line-height: 32px;
    text-align: center;
  }
  .header-nav-pc .menus li .drop-down {
    position: absolute;
    top: 100px;
    left: 0;
    width: 100%;
    max-height: 0;
    overflow: hidden;
    transition: max-height 0.6s, padding-top 0.3s linear;
    padding: 0 5.208vw;
    z-index: 9999;
  }
  .header-nav-pc .menus li .drop-down__items {
    width: 100%;
    display: flex;
    padding: 3.125vw 1.823vw;
    background-color: #FFFFFF;
    border-radius: 10px;
  }
  .header-nav-pc .menus li .drop-down__items .item {
    width: 26.042vw;
    height: 15.625vw;
    --link-color: #FFFFFF;
    font-size: 1.25vw;
    font-weight: bold;
    position: relative;
    margin: 0 25px;
    background-image: var(--item-bg);
    background-repeat: no-repeat;
    background-size: cover;
  }
  .header-nav-pc .menus li .drop-down__items .item span {
    display: block;
    width: 100%;
    height: 100%;
    background-color: rgba(0, 0, 0, 0.3);
    padding: 3.021vw 0 0 2.03125vw;
  }
  .header-nav-pc .menus li:hover .drop-down {
    padding-top: 1.5625vw;
    max-height: 100vh;
  }
  .header-nav-mobile {
    display: none;
  }
  .header-nav-mobile .navbar {
    height: 194px;
    padding: 0 5.208vw;
  }
  .header-nav-mobile .navbar .nav-items__lang {
    margin-right: 3.125vw;
  }
  .header-nav-mobile .navbar .logo a img {
    height: 60px;
  }
  .header-nav-mobile .navbar__menus {
    display: flex;
    align-items: center;
    padding: 0 10.417vw;
  }
  .header-nav-mobile .navbar__menus a {
    font-size: 28px;
  }
  .header-nav-mobile .navbar__menus.actived {
    padding-top: 0;
  }
  .header-nav-mobile .navbar__menus-box {
    padding: 0;
  }
  .header-nav-mobile .navbar__menus-box a.index {
    display: inline;
    padding: 0;
    border-bottom: 0;
  }
  .header-nav-mobile .navbar__menus-box ul {
    display: flex;
    justify-content: space-between;
  }
  .header-nav-mobile .navbar__menus-box ul li .drop {
    margin: 66px 0 59px 0;
  }
  .header-nav-mobile .navbar__menus-box ul li .drop a {
    --link-hover-color: #ea8a1c;
    display: block;
    border: 0;
    padding: 0;
  }
  .header-nav-mobile .navbar__menus-box ul li .drop a i {
    display: none;
  }
  .header-nav-mobile .navbar__menus-box ul li .drop-down {
    max-height: unset;
    margin-top: 0;
  }
  .header-nav-mobile .navbar__menus-box ul li .drop-down a {
    font-size: 18px;
    padding: 0;
    line-height: 48px;
  }
  .header-nav-mobile .navbar__menus-box ul li .drop-down a:before {
    content: "";
    padding-right: 0;
  }
  .footer {
    padding: 6.25vw 10.417vw 8.59375vw;
  }
  .footer .row {
    display: flex;
    align-items: flex-start;
  }
  .footer .row .left {
    width: 35.417vw;
    flex-shrink: 0;
  }
  .footer .row .right {
    flex: 1;
    width: 0;
  }
  .footer .logo {
    text-align: left;
  }
  .footer .logo i {
    font-size: 7.03125vw;
  }
  .footer .logo p {
    display: none;
  }
  .footer .menus {
    display: block;
    margin-top: 1.40625vw;
  }
  .footer .menus ul {
    display: flex;
    justify-content: space-between;
  }
  .footer .menus ul a {
    --link-color: #6C6D70;
    font-size: 14px;
    font-weight: 400;
    display: block;
    margin-top: 0.95vw;
  }
  .footer .menus ul a:first-child {
    margin-top: 0;
  }
  .footer .menus ul a.title {
    --link-color: #202428;
    font-size: 16px;
    font-weight: 400;
    margin-bottom: 1.6vw;
  }
  .footer .contact {
    text-align: left;
    margin-top: 0.833vw;
  }
  .footer .contact h3 {
    font-size: 0.833vw;
  }
  .footer .contact .telphone {
    font-size: 1.667vw;
    margin-top: 1.354vw;
  }
  .footer .contact .email {
    display: inline-block;
    width: 14.583vw;
    height: 3.646vw;
    border-radius: 10px;
    line-height: 3.646vw;
    font-size: 0.9375vw;
    margin-top: 2.24vw;
  }
  .footer .contact .email i {
    margin-left: 1.71875vw;
  }
  .footer .others {
    align-self: flex-end;
    display: flex;
    align-items: flex-end;
    justify-content: space-between;
  }
  .footer .others .copyright {
    flex: 1;
    width: 0;
    margin-top: 0;
  }
  .footer .others .copyright p {
    text-align: left;
    margin-top: 14px;
    font-size: 14px;
    font-weight: 400;
    color: #6C6D70;
  }
  .footer .others .copyright p a {
    --link-color: #6C6D70;
  }
  .footer .others .copyright p:first-child {
    margin-top: 0;
  }
  .footer .others .copyright p.address {
    display: block;
  }
  .footer .others .return-top {
    display: block;
    color: #FFFFFF;
    width: 5.3125vw;
    height: 5.3125vw;
    border-radius: 50%;
    background-color: var(--pro-main-color);
    flex-shrink: 0;
    font-size: 0.9375vw;
    text-align: center;
    line-height: 5.3125vw;
    border: 1px solid var(--pro-main-color);
  }
  .footer .others .return-top i {
    display: inline-block;
    font-size: 0.833vw;
    transform: rotate(-90deg);
  }
  .footer .others .return-top:hover {
    background-color: #FFFFFF;
    color: var(--pro-main-color);
  }
}
