@font-face {
  font-family: Arial;
  src: url("/font/Arial.ttf");
}
@font-face {
  font-family: "Arial-BoldMT";
  src: url("/font/Arial-BoldMT.otf");
}
@import url("../font/iconfont.css");
:root {
  --primary-width: 1600px;
  --header-height: 84px;
}
.layui-form-select dl dd.layui-this {
  color: #025872;
}
.layui-form-select .layui-input {
  height: 46px;
  border: 1px solid #999999;
  font-size: 17px;
}

.layui-layer-hui .layui-layer-content {
  color: #fff;
}
.layui-layer-btn a {
  font-size: 14px;
}

.grey-bg {
  background-color: #f7f8fa;
}

.w1600 {
  width: 100%;
  max-width: var(--primary-width);
  margin: 0 auto;
}
.mobile-nav-box {
  display: none;
  position: fixed;
  z-index: 9999;
  width: 100%;
}
.mobile-nav-box.active {
  display: block;
}
.header {
  height: var(--header-height);
  position: sticky;
  top: 0;
  background-color: #fff;
  z-index: 99;
  box-shadow: 0 0px 20px 0 rgba(0, 0, 0, 0.05);
}
/* .header.has-shadow {
  box-shadow: 0 3px 4px 0 rgba(0, 0, 0, 0.05);
} */
.header .w1600 {
  display: flex;
  align-items: center;
  justify-content: space-between;
  height: 100%;
  background-color: #fff;
}
.header .left-logo {
  display: block;
  min-width: 150px;
  width: 150px;
}
.header .left-logo .mobile-logo {
  display: none;
}
.header .right-wrapper {
  display: flex;
  align-items: center;
  flex: 1;
  justify-content: flex-end;
}
.pc-nav {
  display: flex;
  align-content: center;
  justify-content: space-between;
  margin-left: 80px;
  max-width: 850px;
  height: 100%;
  width: 100%;
  margin-right: 20px;
}

.pc-nav .nav-menu a {
  font-size: 17px;
  color: #111;
  line-height: var(--header-height);
  display: inline-block;
  width: 100%;
  height: 100%;
}
.header .right-tools {
  display: flex;
  justify-content: flex-end;
  align-items: center;
  height: var(--header-height);
}
.header .right-tools .lang-icon {
  display: flex;
  align-items: center;
  font-size: 15px;
  color: #111;
  position: relative;
  height: 100%;
  cursor: pointer;
}
.header .right-tools .lang-icon img {
  margin-right: 6px;
}

.header .right-tools .lang-list {
  display: block;
  position: absolute;
  top: var(--header-height);
  box-shadow: 0 5px 10px 0 rgba(0, 0, 0, 0.05);
  z-index: -1;
  background-color: #fff;
  width: 120px;
  height: 120px;
  padding: 20px;
  left: 50%;
  transform: translateX(-50%) translateY(calc(-100% - var(--header-height)));
  transition: all 0.2s;
}
.header .right-tools .lang-icon:hover .lang-list {
  transform: translateX(-50%) translateY(0);
}
.header .right-tools .lang-list li {
  cursor: pointer;
}
.header .right-tools .lang-list li a {
  font-size: 16px;
  line-height: 40px;
}
.header .right-tools .lang-list li:hover a {
  color: #025872;
}
.header .right-tools .search-icon {
  height: 100%;
  margin-right: 20px;
  padding-right: 30px;
  padding-left: 20px;
  cursor: pointer;
  display: flex;
  align-items: center;
}
.header .right-tools .search-icon .search-img {
  width: 18px;
}
.header .right-tools .search-icon:hover .search-collapse {
  height: 300px;
  border-top: solid 1px #f7f6f5;
}
.header .right-tools .search-collapse {
  position: absolute;
  left: 0;
  top: var(--header-height);
  width: 100%;
  background-color: #fff;
  height: 0px;
  transition: all 0.3s;
  overflow: hidden;
  box-shadow: 0 15px 20px 0px rgba(0, 0, 0, 0.05);
}
.header .right-tools .search-collapse .search-box {
  width: 860px;
  border-bottom: solid 1px #dedede;
  display: flex;
  align-items: center;
  justify-content: space-between;
}
.header .right-tools .search-collapse .search-box .layui-input {
  font-size: 16px;
  border: none;
  line-height: 48px;
  height: 48px;
}
.header .right-tools .contact-btn {
  display: block;
  cursor: pointer;
  width: 136px;
  height: 42px;
  line-height: 42px;
  text-align: center;
  font-weight: 400;
  font-size: 17px;
  color: #ffffff;
  background: #e48020;
  border-radius: 21px;
}

.footer {
  padding-top: 80px;
  font-size: 0;
}
.footer-wrap {
  display: flex;
  justify-content: space-between;
  width: 100%;
  padding-bottom: 40px;
}
.footer-wrap .wrap-left {
  width: 385px;
}
.footer-wrap .wrap-left .logo {
  margin-bottom: 35px;
  width: 150px;
}
.footer-wrap .wrap-left .text {
  font-size: 16px;
  line-height: 26px;
  color: #111;
  margin-bottom: 26px;
}

.footer-wrap .wrap-left .email-box {
  margin-bottom: 40px;
}
.footer-wrap .wrap-left .email-box .layui-form-item {
  margin-bottom: 0;
}
.footer-wrap .wrap-left .input-box {
  display: flex;
}
.footer-wrap .wrap-left .input-box .layui-input {
  height: 54px;
  flex: 1;
  padding-left: 20px;
  font-size: 16px;
}
.footer-wrap .wrap-left .input-box .layui-input::placeholder {
  color: #777;
}
.footer-wrap .wrap-left .input-box .submit-btn {
  background-color: #e48020;
  width: 54px;
  height: 54px;
  display: flex;
  align-items: center;
  justify-content: center;
}

.footer-wrap .wrap-left .follow-us .title {
  font-weight: 400;
  font-size: 16px;
  color: #111111;
  margin-bottom: 20px;
}
.footer-wrap .wrap-left .follow-us .list {
  display: flex;
  align-items: center;
}
.footer-wrap .wrap-left .follow-us a {
  display: block;
  width: 30px;
  margin-right: 19px;
}
.footer-wrap .wrap-right {
  display: flex;
  justify-content: flex-end;
}
.footer-wrap .wrap-right .column {
  margin-left: 78px;
}
/* .footer-wrap .wrap-right .column1 {
  width: 141px;
}
.footer-wrap .wrap-right .column2 {
}
.footer-wrap .wrap-right .column3 {
}
.footer-wrap .wrap-right .column4 {
} */
.footer-wrap .wrap-right .column .column-title.t11 {
  padding-top: 11px;
}
.footer-wrap .wrap-right .column .column-title {
  font-weight: bold;
  font-size: 20px;
  color: #111111;
  line-height: 36px;
  margin-bottom: 19px;
}
.footer-wrap .wrap-right .column a {
  display: block;
  font-weight: 400;
  font-size: 16px;
  color: #111111;
  margin-bottom: 16px;
}
.footer-wrap .wrap-right .column p {
  max-width: 278px;
  display: flex;
  align-items: baseline;
  margin-bottom: 16px;
}
.footer-wrap .wrap-right .column p:last-child {
  margin-bottom: 0;
}
.footer-wrap .wrap-right .column p img {
  margin-right: 13px;
}
.footer-wrap .wrap-right .column p span {
  line-height: 23px;
  font-size: 16px;
}
.footer-copyright {
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 33px 0;
  border-top: solid 1px #e6e6e6;
  color: #111;
  font-size: 16px;
  font-weight: 400;
}
.footer-copyright .copyright-link {
  color: #111;
  font-weight: 400;
}
.hover-btn {
  position: relative;
  overflow: hidden;
}
.hover-btn::after {
  position: absolute;
  content: "";
  display: block;
  top: 100%;
  left: 0;
  width: 100%;
  height: 100%;
  background-color: #e48020;
  z-index: -1;
  transition: top 0.3s;
}
.hover-btn:hover {
  border-color: #e48020;
}
.hover-btn:hover::after {
  top: 0;
}
.sidebar {
  position: fixed;
  top: 50%;
  transform: translateY(-50%);
  right: 0;
  z-index: 99;
  display: flex;
  justify-content: center;
  align-items: center;
  flex-direction: column;
}
.sidebar .customer {
  display: block;
  width: 60px;
  height: 60px;
  background: #ffffff;
  border-radius: 30px;
  border: 1px solid #025872;
  margin-bottom: 20px;
  display: flex;
  align-items: end;
  justify-content: center;
}
.sidebar .sidebar-list {
  width: 70px;
  height: 346px;
  background: #ffffff;
  box-shadow: 0px 0px 20px 0px rgba(0, 0, 0, 0.07);
  border-radius: 30px;
  padding-top: 17px;
}
.sidebar .sidebar-list a {
  display: flex;
  flex-direction: column;
  justify-content: center;
  align-items: center;
  cursor: pointer;
  border-bottom: solid 1px #e9e9e9;
  margin: 0 13px;
  margin-bottom: 13px;
}
.sidebar .sidebar-list a:last-child {
  border: none;
}
.sidebar .sidebar-list a p {
  font-size: 12px;
  color: #111111;
  margin-top: 9px;
  margin-bottom: 13px;
}
.sidebar .sidebar-item {
  position: relative;
}
.sidebar .sidebar-item:hover .sidebar-hover-box {
  display: block;
}
.sidebar .sidebar-hover-box {
  position: absolute;
  left: 0;
  transform: translateX(-100%);
  display: none;
  width: 400px;
}
.sidebar .sidebar-hover-box .hover-content {
  margin-right: 33px;
  position: relative;
  z-index: 2;
  background-color: #fff;
  padding: 34px 26px 43px;
  box-shadow: 0px 0px 20px 0px rgba(0, 0, 0, 0.1);
}
.sidebar .sidebar-hover-box::after {
  position: absolute;
  content: "";
  display: block;
  width: 11px;
  height: 11px;
  background-color: #fff;
  box-shadow: 0px 0px 20px 0px rgba(0, 0, 0, 0.1);
  transform: translateY(-50%) rotate(45deg);
  right: 29px;
  top: 50%;
  z-index: -1;
}
.sidebar .hover-content h6 {
  font-size: 16px;
  line-height: 24px;
  margin-bottom: 20px;
}
.sidebar .hover-content .layui-form-item {
  margin-bottom: 16px;
}
.sidebar .hover-content .layui-input {
  height: 42px;
  border-radius: 6px;
  border: solid 1px #e9e9e9;
  font-size: 16px;
}
.sidebar .hover-content .layui-input::placeholder {
  color: #999;
}
.sidebar .hover-content .layui-btn {
  margin-top: 4px;
  width: 238px;
  height: 42px;
  border-radius: 6px;
  font-size: 16px;
  background-color: #e48020;
  color: #fff;
}
.sidebar .phone-box .hover-content h6 {
  margin-bottom: 16px;
}
.sidebar .phone-box .hover-content .layui-btn {
  margin-top: 19px;
  margin-bottom: 17px;
}
/* 顶部通用banner */
.top-banner {
  width: 100%;
  /* height: 500px; */
  position: relative;
  display: flex;
  align-items: center;
  justify-content: center;
  flex-direction: column;
}
.top-banner .bg-banner {
  object-fit: cover;
  width: 100%;
  height: 100%;
  /* position: absolute; */
  top: 0;
  left: 0;
  z-index: -1;
}
.top-banner .text {
  font-family: "Arial-BoldMT";
  font-weight: bold;
  font-size: 52px;
  color: #ffffff;
  width: var(--primary-width);
  margin: 0 auto;
  display: block;
  text-align: center;
}
/* 面包屑 */
.breadcrumbs {
  padding: 30px 0;
  font-size: 16px;
  color: #777777;
}
.breadcrumbs a {
  font-size: 16px;
  color: #777777;
}

/* 弹性布局 水平垂直居中*/
.f-center {
  display: flex;
  align-items: center;
  justify-content: center;
}
.flex-column-center {
  display: flex;
  flex-direction: column;
  justify-content: center;
}

.f-12 {
  font-size: 12px;
}
.f-14 {
  font-size: 14px;
}
.f-16 {
  font-size: 16px;
}
.f-17 {
  font-size: 17px;
}
.f-18 {
  font-size: 18px;
}
.f-20 {
  font-size: 20px;
}
.f-22 {
  font-size: 22px;
}
.f-24 {
  font-size: 24px;
}
.f-46 {
  font-size: 46px;
}
.base-title {
  font-family: "Arial-BoldMT";
  font-weight: bold;
  font-size: 44px;
  color: #111111;
  line-height: 38px;
}
.mb-80 {
  margin-bottom: 80px;
}
.mt-80 {
  margin-top: 80px;
}
.grid3 {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  grid-gap: 40px;
}

.learn-more {
  width: 217px;
  height: 50px;
  border-radius: 25px;
  border: 1px solid #ffffff;
  text-align: center;
  padding: 0 35px;
  box-sizing: border-box;
  display: flex;
  justify-content: space-between;
  align-items: center;
  cursor: pointer;
}
.learn-more span {
  text-decoration: underline;
  font-size: 17px;
  color: #ffffff;
}
.learn-more .circle {
  width: 30px;
  height: 30px;
  border-radius: 100%;
  background-color: #e48020;
  display: flex;
  align-items: center;
  justify-content: center;
}
.learn-more .circle img {
  width: 14px;
}
.text-overflow1 {
  overflow: hidden;
  text-overflow: ellipsis;
  display: -webkit-box;
  -webkit-line-clamp: 2;
  -webkit-box-orient: vertical;
  display: -moz-box;
  -moz-line-clamp: 2;
  -moz-box-orient: vertical;
  word-wrap: break-word;
  white-space: normal;
}
#pager {
  text-align: center;
}
#pager .layui-laypage a,
#pager .layui-laypage span {
  border: none;
  width: 38px;
  height: 38px;
  line-height: 38px;
  padding: 0;
  color: #111 !important;
  font-size: 18px;
  margin: 0 10px;
}
#pager .layui-laypage .layui-laypage-curr .layui-laypage-em {
  border-radius: 50%;
  background-color: #025872;
}
#pager .layui-laypage .layui-laypage-curr em {
  font-size: 18px;
  line-height: 38px;
}
#pager .layui-laypage-next em,
#pager .layui-laypage-prev em {
  font-size: 18px;
  font-family: Arial;
}
/* php自带的分页器 */
.pagination {
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  justify-content: center;
  margin-bottom: 50px;
}
.pagination li {
  border-radius: 50%;
  margin: 0 10px;
}
.pagination li.active {
  border-color: #025872;
  background-color: #025872;
}
.pagination li.active a,
.pagination li.active span {
  color: #fff;
}
.pagination li a,
.pagination li span {
  display: flex;
  align-items: center;
  justify-content: center;
  width: 38px;
  height: 38px;
  font-size: 18px;
  color: #111;
  cursor: pointer;
}
/* 产品二级菜单 */
.pc-nav .nav-menu.product:hover .sub-menu-product {
  transform: none;
}
.pc-nav .sub-menu-product {
  position: absolute;
  left: 0;
  width: 100%;
  transform: translateY(calc(-110% - var(--header-height)));
  z-index: -10;
  transition: all 0.3s;
  background-color: #fff;
  box-shadow: inset 0px 0px 20px rgba(0, 0, 0, 0.1);
}
.pc-nav .sub-menu-product.active {
  transform: none;
}
.pc-nav .sub-menu-product .column-tab {
  display: flex;
  height: 100%;
}
.pc-nav .sub-menu-product .column-tab .tab-title {
  width: calc((100% - var(--primary-width)) / 2 + 320px);
  position: relative;
  min-height: 460px;
  z-index: 0;
  /* max-height: calc(100vh - var(--header-height)); */
  height: 80vh;
  overflow-y: auto;
}
.pc-nav .sub-menu-product .column-tab .tab-title li {
  font-size: 18px;
  height: 50px;
  line-height: 50px;
  padding-left: calc((100vw - var(--primary-width)) / 2);
  position: relative;
  z-index: 1;
  cursor: pointer;
}
.pc-nav .sub-menu-product .column-tab .tab-title li a {
  line-height: 50px;
  font-size: 18px;
}
.pc-nav .sub-menu-product .column-tab .tab-title li:first-child.active {
  box-shadow: inset 0px 33px 20px -32px rgba(0, 0, 0, 0.1);
}
.pc-nav .sub-menu-product .column-tab .tab-title li.active {
  background-color: #fff;
  color: #025872;
}
.pc-nav .sub-menu-product .column-tab .tab-title .column-tab-bg {
  position: absolute;
  bottom: 0;
  right: 0;
  z-index: 0;
}
.pc-nav .sub-menu-product .column-tab .tab-content {
  flex: 1;
  max-width: calc(var(--primary-width) - 320px);
  /* max-height: calc(100vh - var(--header-height)); */
  height: 80vh;
  overflow-y: auto;
}
.pc-nav .sub-menu-product .column-tab .tab-content .tab-item {
  width: 100%;
  grid-template-columns: repeat(auto-fit, 187px);
  gap: 20px 20px;
  padding: 40px 0 40px 40px;
  display: none;
}
.pc-nav .sub-menu-product .column-tab .tab-content .tab-item.active {
  display: grid;
}
.pc-nav .sub-menu-product .column-tab .tab-content .product-item {
  cursor: pointer;
}
.pc-nav .sub-menu-product .column-tab .tab-content .product-img {
  border: solid 1px #ebebeb;
  width: 187px;
  height: 187px;
  margin-bottom: 24px;
  overflow: hidden;
}
.pc-nav .sub-menu-product .column-tab .tab-content .product-img img {
  max-height: 80%;
  max-width: 80%;
  object-fit: cover;
}
.pc-nav .sub-menu-product .column-tab .tab-content .product-title {
  text-align: center;
  font-size: 17px;
  color: #777777;
  display: block;
  max-width: 187px;
  /* 根据需要调整宽度 */
  overflow: hidden;
  text-overflow: ellipsis;
  cursor: pointer;
  position: relative;
  z-index: 1;
  line-height: 1.3;
}
.pc-nav .sub-menu-product .column-tab .tab-content .tooltip {
  display: none;
  position: absolute;
  background-color: #333;
  color: #fff;
  padding: 5px;
  border-radius: 5px;
  z-index: 10;
  white-space: nowrap;
  font-size: 14px;
  margin-bottom: 5px;
  /* 可选，为了气泡和文本之间有一点间隔 */
}
.pc-nav .sub-menu-product .column-tab .tab-content .tooltip span {
  color: #fff;
  font-size: 14px;
}
.pc-nav .sub-menu-product .column-tab .tab-content .tooltip .arrow {
  content: "";
  position: absolute;
  bottom: -5px;
  /* 根据需要调整 */
  left: 50%;
  margin-left: -5px;
  border-left: 5px solid transparent;
  border-right: 5px solid transparent;
  border-top: 5px solid #333;
}
/* 二级菜单2 */
.pc-nav .nav-menu {
  position: relative;
  border-bottom: transparent solid 2px;
}
.pc-nav .nav-menu.product {
  position: unset;
}
.pc-nav .nav-menu:hover > a {
  color: #025872;
}
.pc-nav .nav-menu:hover {
  border-bottom: #025872 solid 2px;
}
.pc-nav .sub-menu {
  min-width: 220px;
  width: max-content;
  position: absolute;
  padding: 15px 0 7px 0;
  left: 50%;
  transform: translateX(-50%) translateY(calc(-100% - var(--header-height)));
  opacity: 1;
  visibility: hidden;
  background-color: #fff;
  list-style: none;
  /* box-shadow: inset 0 10px 10px -10px rgba(0, 0, 0, 0.15); */
  box-shadow: 0 10px 10px rgba(0, 0, 0, 0.05);
  z-index: -1;
  transition: all 0.2s;
}
.pc-nav .sub-menu a.sub-menu-item {
  width: 100%;
  display: block;
  font-size: 16px;
  line-height: 40px;
  padding: 0px 30px;
}
.pc-nav .sub-menu a.sub-menu-item:hover {
  color: #025872;
  text-decoration: underline;
}
.pc-nav .nav-menu:hover .sub-menu {
  opacity: 1;
  visibility: visible;
  top: 100%;
  transform: translateX(-50%) translateY(0);
}
.hamburg {
  display: none;
}
/* 侧边栏 表单 确认弹窗 */
.confirm-dialog {
  position: fixed;
  z-index: 1000;
  background-color: rgba(0, 0, 0, 0.5);
  width: 100vw;
  height: 100vh;
  display: none;
  top: 0;
}
.confirm-dialog .confirm-container {
  background-color: #fff;
  border-radius: 4px;
  padding: 15px 15px 10px;
  box-shadow: 0 2px 12px 0 rgba(0, 0, 0, 0.1);
  width: 420px;
  position: absolute;
  left: 50%;
  top: 50%;
  transform: translate(-50%, -50%);
}
.confirm-dialog .confirm-header {
  display: flex;
  align-items: center;
  justify-content: space-between;
}
.confirm-dialog .confirm-header h4 {
  font-size: 18px;
}
.confirm-dialog .confirm-header .layui-icon {
  font-size: 18px;
  color: #909399;
}
.confirm-dialog .confirm-content {
  padding: 20px 0;
  text-align: left;
  font-size: 14px;
}
.confirm-dialog .confirm-footer {
  display: flex;
  align-items: center;
  justify-content: flex-end;
}
.confirm-dialog .confirm-footer .btn {
  padding: 9px 15px;
  font-size: 12px;
  border-radius: 3px;
  color: #fff;
  background-color: #025872;
  cursor: pointer;
}
.confirm-dialog .confirm-footer .btn.plain {
  color: #4e5969;
  background-color: transparent;
  border: solid 1px #dcdfe6;
}
.confirm-dialog .confirm-footer .btn + .btn {
  margin-left: 10px;
}
#captcha {
  cursor: pointer;
}

.captcha-dialog {
  position: fixed;
  z-index: 1000;
  background-color: rgba(0, 0, 0, 0.5);
  width: 100vw;
  height: 100vh;
  display: none;
  top: 0;
}
.captcha-dialog .confirm-container {
  background-color: #fff;
  border-radius: 4px;
  padding: 15px 15px 10px;
  box-shadow: 0 2px 12px 0 rgba(0, 0, 0, 0.1);
  width: 420px;
  position: absolute;
  left: 50%;
  top: 50%;
  transform: translate(-50%, -50%);
}
.captcha-dialog .confirm-header {
  display: flex;
  align-items: center;
  justify-content: space-between;
}
.captcha-dialog .confirm-header h4 {
  font-size: 18px;
}
.captcha-dialog .confirm-header .layui-icon {
  font-size: 18px;
  color: #909399;
}
.captcha-dialog .confirm-content {
  padding: 20px 0;
  text-align: left;
  font-size: 14px;
}
.captcha-dialog .confirm-footer {
  display: flex;
  align-items: center;
  justify-content: flex-end;
}
.captcha-dialog .confirm-footer .btn {
  padding: 9px 15px;
  font-size: 12px;
  border-radius: 3px;
  color: #fff;
  background-color: #025872;
  cursor: pointer;
}
.captcha-dialog .confirm-footer .btn.plain {
  color: #4e5969;
  background-color: transparent;
  border: solid 1px #dcdfe6;
}
.captcha-dialog .confirm-footer .btn + .btn {
  margin-left: 10px;
}
.captcha-dialog #captcha {
  display: block;
  position: absolute;
  top: 1px;
  right: 1px;
  width: 146px;
}

/* 弹窗 */
.mask {
  position: fixed;
  z-index: 999;
  background-color: rgba(0, 0, 0, 0.5);
  width: 100vw;
  height: 100vh;
  display: none;
  top: 0;
}
.dialog {
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
  width: 860px;
  background-color: #fff;
}
.dialog-header {
  border-top: solid 10px #e48020;
  position: relative;
  height: 70px;
}
.dialog-header .icon-close {
  font-size: 20px;
  cursor: pointer;
  position: absolute;
  right: 46px;
  top: 39px;
  font-weight: bold;
}
.dialog-content {
  padding: 0 60px 30px;
}

.dialog-footer {
  border-top: solid 1px #e9e9e9;
  height: 126px;
  display: flex;
  justify-content: space-between;
  align-items: center;
  padding: 30px 60px 46px;
}
.dialog-footer .learn-more {
  border-color: #ddd;
}
.dialog-footer .learn-more span {
  color: #111;
}
.dialog-footer .clear-btn {
  cursor: pointer;
  font-size: 17px;
  color: #e48020;
}

.form-dialog .dialog {
  width: auto;
}
.form-dialog .dialog .icon-close {
  position: absolute;
  right: 15px;
  top: 17px;
  font-size: 14px;
  color: #555;
  font-weight: bold;
  z-index: 2;
  cursor: pointer;
}
.form-dialog .dialog .icon-close::after {
  content: "";
  display: block;
  width: 56px;
  height: 56px;
  background: #f7f8fa;
  border-radius: 0px 0px 0px 50px;
  position: absolute;
  top: -17px;
  right: -15px;
  z-index: -1;
  transform: scale(0);
  transition: all 0.3s;
}
.form-dialog .dialog .icon-close:hover::after {
  transform: scale(1);
}
.form-dialog .dialog-header {
  border-top: none;
}
.form-dialog .dialog-content {
  display: flex;
  padding: 0;
}
.form-dialog .left {
  width: 340px;
  padding: 59px 40px 0;
  background-color: #025872;
}
.form-dialog .left .top {
  padding-bottom: 52px;
  border-bottom: solid 1px rgba(255, 255, 255, 0.2);
  margin-bottom: 36px;
}
.form-dialog .left .top h4 {
  font-weight: bold;
  font-size: 32px;
  color: #e9e9e9;
  margin-bottom: 23px;
}
.form-dialog .left .top p {
  font-size: 16px;
  color: #e9e9e9;
  line-height: 26px;
}
.form-dialog .left .bottom li {
  display: flex;
  align-items: baseline;
  font-size: 16px;
  color: #fefefe;
  line-height: 23px;
  margin-bottom: 13px;
}

.form-dialog .left .bottom li i.iconfont {
  color: #fff;
  font-size: 14px;
  margin-right: 14px;
}
.form-dialog .right {
  padding: 54px 40px 71px;
  width: 600px;
}
.form-dialog .right h4 {
  font-size: 20px;
  line-height: 36px;
  margin-bottom: 20px;
}
.form-dialog .right h5 {
  font-size: 16px;
  line-height: 36px;
  margin-bottom: 20px;
}
.form-dialog .right h5 a {
  font-size: 16px;
  line-height: 36px;
}
.form-dialog .right .submit-btn {
  width: 100%;
  height: 50px;
  line-height: 50px;
  background: #e48020;
  border-radius: 6px;
  font-size: 16px;
}
.form-dialog .right .container {
  display: flex;
  justify-content: space-between;
}
.form-dialog .right .layui-input,
.form-dialog .right .layui-select,
.form-dialog .right .layui-textarea {
  height: 50px;
  border-radius: 6px;
  border: solid 1px #e9e9e9;
  font-size: 16px;
}
.form-dialog .right .layui-input::placeholder,
.form-dialog .right .layui-select::placeholder,
.form-dialog .right .layui-textarea::placeholder {
  color: #999;
}
.form-dialog .right .form-left,
.form-dialog .right .form-right {
  width: 100%;
}
.form-dialog .right .layui-form-item {
  margin-bottom: 20px;
}
.form-dialog .right .layui-textarea {
  /*height: 235px;*/
}
.form-dialog .right .layui-form-label {
  font-size: 16px;
  line-height: 36px;
  margin-bottom: 10px;
  display: block;
  width: 100%;
  padding: 0;
  text-align: left;
}
.form-dialog .right .layui-form-select .layui-edge {
  top: calc(50% + 22px);
}
.form-dialog .right .layui-form-select dl {
  top: 100px;
  font-size: 16px;
}
.form-dialog .right .layui-form-select dl dd {
  font-size: 16px;
}
.hover-img {
  overflow: hidden;
  display: block;
}
.hover-img img {
  transition: all 0.3s;
}
.hover-img:hover img {
  transform: scale(1.2);
}
.mobile-link-select {
  display: none;
}
.mobile-search {
  display: none;
}
.mobile-search-close {
  font-size: 0;
}
.footer .follow-us .qrcode-box {
  position: relative;
}

.footer .follow-us .qrcode-box .qrcode {
  position: absolute;
  top: -210px;
  /* left: 50%; */
  /* transform: translateX(-50%); */
  width: 200px;
  height: 200px;
  background-color: #fff;
  border: solid 1px #efefef;
  padding: 3px;
  display: none;
}
.footer .follow-us .qrcode-box .qrcode::before {
  position: absolute;
  content: "";
  display: block;
  background-color: #fff;
  width: 10px;
  height: 10px;
  bottom: -4px;
  left: 50%;
  transform: translateX(-50%) rotate(45deg);
  z-index: -1;
}
.footer .follow-us .qrcode-box:hover .qrcode {
  display: block;
}
.footer .follow-us .qrcode-box .qrcode img {
  width: 100%;
  height: 100%;
}
@media screen and (max-width: 1650px) {
  :root {
    --primary-width: 90%;
  }
  .header .w1600 {
    justify-content: space-between;
  }
  .header .right-tools {
    flex: none;
  }
  .pc-nav {
    margin: 0 50px;
  }
  .pc-nav .sub-menu-product .column-tab .tab-content {
    max-width: 100%;
  }
  .pc-nav .sub-menu-product .column-tab .tab-title {
    width: 320px;
  }
  .pc-nav .sub-menu-product .column-tab .tab-title li {
    padding-left: 5vw;
  }
}
@media screen and (max-width: 1440px) {
}
@media screen and (max-width: 1200px) {
  .form-dialog .left {
    padding: 50px 20px;
    width: 300px;
  }
  .form-dialog .right {
    padding: 54px 20px 70px;
    width: 630px;
  }
  .base-title {
    font-size: 36px;
    line-height: 1;
  }
  .pc-nav {
    margin: 0 20px;
  }
  .header .right-tools .search-icon,
  .header .right-tools .lang-icon {
    margin-right: 0%;
  }
  .header .right-tools .search-icon {
    padding-right: 10px;
    padding-left: 10px;
  }
  .pc-nav .nav-menu a {
    font-size: 14px;
  }
  .footer-wrap {
    flex-wrap: wrap;
  }
  .footer-wrap .wrap-left {
    width: 80%;
  }
  .footer-wrap .wrap-right {
    width: 100%;
  }
  .footer-wrap .wrap-right .column {
    margin-left: 0;
    width: 25%;
  }
  .footer-wrap .wrap-right {
    justify-content: flex-start;
    margin-top: 30px;
  }
  .footer-copyright .f-16 {
    font-size: 14px;
  }
  .footer-copyright {
    flex-wrap: wrap;
    justify-content: center;
    padding: 15px 0;
  }
  .footer-copyright .copyright-left {
    margin-bottom: 10px;
  }
}
@media screen and (max-width: 960px) {
  .pc-nav {
    display: none;
  }
  .sidebar {
    display: none;
  }
  .header .right-tools .contact-btn {
    width: 90px;
    font-size: 14px;
    height: 32px;
    line-height: 32px;
  }
  .dialog {
    width: 90%;
  }
  .dialog-header {
    height: 40px;
  }
  .dialog-header .icon-close {
    font-size: 16px;
    top: 15px;
    right: 25px;
  }
  .dialog-content {
    padding: 0 40px 15px;
  }
}
@media screen and (max-width: 768px) {
  .captcha-dialog .confirm-container {
    max-width: 420px;
    width: 100%;
  }
  .confirm-dialog .confirm-container {
    max-width: 420px;
    width: 100%;
  }

  .header .right-tools .lang-icon,
  .header .right-tools .contact-btn {
    display: none;
  }

  .hamburg {
    display: flex;
    width: 40px;
    height: 40px;
    align-items: center;
    justify-content: center;
    cursor: pointer;
  }
  .hamburg-icon .line {
    height: 0.04rem;
    background-color: #111;
    margin: 0.08rem 0;
    width: 0.36rem;
    border-radius: 3px;
    transition: all 0.5s;
  }

  .bg-white .hamburg-icon .line {
    background-color: #111;
  }
  .hamburg.active .line:nth-child(1) {
    transform: translateY(0.12rem) rotate(45deg);
  }
  .hamburg.active .line:nth-child(2) {
    opacity: 0;
  }
  .hamburg.active .line:nth-child(3) {
    transform: translateY(-0.12rem) rotate(-45deg);
  }
  .header .right-tools .search-icon,
  .header .right-tools .lang-icon {
    margin-right: 0;
  }
  .header .right-tools .search-collapse .search-box {
    width: var(--primary-width);
  }
  .header .right-tools .search-icon .search-img {
    width: 0.36rem;
    height: 0.36rem;
  }
  .header .right-tools.search-icon {
    padding: 0;
    margin-right: 0.54rem;
  }
  .header .right-tools .search-collapse {
    display: none;
  }
  .header .right-tools .contact-btn {
    font-size: 12px;
    padding: 0px 15px;
    width: auto;
    height: 30px;
    line-height: 30px;
  }
  :root {
    --header-height: 1.08rem;
  }

  .header .left-logo {
    width: 1.9rem;
    min-width: auto;
  }

  .base-title {
    font-size: 24px;
  }

  .dialog-footer {
    padding: 20px;
    height: auto;
  }
  .base-title {
    font-size: 20px;
  }
  .mt-80 {
    margin-top: 40px;
  }
  .top-banner {
    height: 4.6rem;
  }
  .top-banner .text {
    font-size: 0.52rem;
  }
  .breadcrumbs a {
    font-size: 14px;
  }
  .learn-more {
    width: 3rem;
    height: 0.7rem;
    padding: 0 0.45rem;
    border-radius: 0.35rem;
  }
  .learn-more span {
    font-size: 0.24rem;
  }

  .learn-more .circle {
    width: 0.42rem;
    height: 0.42rem;
  }
  .learn-more .circle img {
    width: 0.21rem;
  }

  .swiper-banner .swiper-slide .container {
    align-items: center;
    text-align: center;
  }
  .layui-form-select .layui-input {
    height: 36px;
    line-height: 36px;
    font-size: 15px;
  }
  .footer {
    padding-top: 0.73rem;
  }
  .footer-wrap .wrap-left .logo {
    display: none;
  }
  .footer-wrap .wrap-right {
    display: none;
  }
  .footer-copyright .f-16 {
    font-size: 0.26rem;
    line-height: 1.4;
  }
  .footer-wrap .wrap-left {
    width: 100%;
  }
  .footer-wrap .wrap-left .text {
    font-size: 0.26rem;
    line-height: 0.36rem;
  }
  .footer-wrap .wrap-left .input-box .layui-input {
    height: 0.86rem;
  }
  .footer-wrap .wrap-left .input-box .submit-btn {
    width: 0.86rem;
    height: 0.86rem;
  }
  .footer-wrap .wrap-left .follow-us .title {
    display: none;
  }
  .footer-copyright .copyright-right {
    display: none;
  }
  .f-16,
  .f-14,
  .f-17 {
    font-size: 0.26rem;
  }
  .header {
    border-bottom: solid 1px #ebebeb;
  }
  .mobile-nav-box.mobile-top {
    padding: 0.36rem 0.4rem 2rem;
    box-shadow: 0 20px 20px rgba(0, 0, 0, 0.09);
    background-color: #fff;
    height: 100%;
    overflow-y: auto;
  }
  .mobile-nav-box.mobile-top .language h6 {
    font-size: 0.3rem;
    margin-top: 0.8rem;
    margin-bottom: 0.4rem;
  }
  .mobile-nav-box.mobile-top .language a {
    font-size: 0.28rem;
    margin-right: 0.56rem;
  }
  .mobile-nav-box.mobile-top .language a.active {
    color: #025872;
  }
  .mobile-nav-box.mobile-footer {
    display: block;
    position: static;
  }
  .mobile-nav-box .layui-collapse {
    border: none;
  }
  .mobile-nav-box .layui-collapse .layui-colla-item {
    border: none;
  }
  .mobile-nav-box .layui-colla-title a {
    display: flex;
    justify-content: space-between;
    align-items: center;
    background-color: transparent;
    color: #111;
    height: 1.08rem;
    line-height: 1.08rem;
    padding: 0 11px 0 0;
    font-size: 0.3rem;
  }
  .mobile-nav-box .layui-colla-title {
    display: flex;
    justify-content: space-between;
    align-items: center;
    background-color: transparent;
    border-bottom: solid 1px #ddd;
    color: #111;
    height: 1.08rem;
    line-height: 1.08rem;
    padding: 0 11px 0 0;
    font-size: 0.3rem;
  }
  .mobile-nav-box .layui-colla-title.active {
    color: #025872;
  }
  .mobile-nav-box .layui-colla-icon {
    position: static;
    color: #111;
    font-size: 0.21rem;
  }
  .mobile-nav-box .layui-colla-item.no-icon .layui-colla-icon {
    display: none;
  }
  .mobile-nav-box .layui-colla-content {
    border: none;
    border-bottom: solid 1px #ddd;
    padding: 0.16rem 0;
  }
  .mobile-nav-box .layui-colla-content a {
    font-size: 0.28rem;
    line-height: 0.84rem;
    color: #555;
    padding-left: 30px;
    display: block;
  }
  .mobile-nav-box .layui-collapse {
    border: none;
  }
  .mobile-search {
    border-top: solid 1px #e9e9e9;
    position: fixed;
    top: var(--header-height);
    width: 100%;
    height: 2.4rem;
    z-index: 999;
    background-color: #fff;
    padding: 0 0.8rem;
  }
  .mobile-search .search-box {
    width: 100%;
    height: 0.74rem;
    border-bottom: solid 1px #e9e9e9;
    margin-top: 0.8rem;
  }
  .mobile-search .search-box .layui-input {
    border: none;
    height: 0.73rem;
    font-size: 12px;
    background-color: transparent;
  }
  .mobile-search .search-box .search-img {
    width: 0.32rem;
  }
  .mobile-footer .contact {
    margin-bottom: 0.7rem;
  }
  .mobile-footer .contact h6 {
    font-size: 0.3rem;
    margin: 0.43rem 0 0.35rem;
  }
  .mobile-footer .contact p {
    font-size: 0.26rem;
    line-height: 0.32rem;
    margin-bottom: 0.13rem;
  }
  .mobile-link-select {
    display: block;
    width: 100%;
    margin-top: 0.71rem;
  }
  .mobile-link-select .layui-select {
    width: 100%;
    height: 43px;
  }
  .mobile-link-select .layui-input {
    font-size: 0.26rem;
    border: none;
    background-color: #fff;
  }
  .mobile-link-select .layui-form-select dl dd {
    font-size: 0.26rem;
  }
  .mobile-search-close.show {
    font-size: 0.28rem;
    font-weight: bold;
  }
  .footer .follow-us .qrcode-box .qrcode {
    /* width: 100px;
    height: 100px; */
  }
}
