* {
  margin: 0;
  padding: 0;
  box-sizing: border-box;
}

i {
  font-style: normal;
}

a {
  text-decoration: none !important;
  /* 去除下划线 */
  color: inherit;
  /* 继承父元素的颜色 */
  cursor: pointer;
  /* 修改鼠标指针样式 */
}


h1,
h2,
h3,
h4,
h5,
h6 {
  font-size: 100%;
}

address,
cite,
dfn,
em,
var {
  font-style: normal;
}

code,
kbd,
pre,
samp {
  font-family: couriernew, courier, monospace;
}

small {
  font-size: 12px;
}

ul,
ol ,
li{
  list-style: none;
}

a {
  text-decoration: none;
}

a:hover {
  text-decoration: underline;
}

sup {
  vertical-align: text-top;
}

sub {
  vertical-align: text-bottom;
}

legend {
  color: #000;
}

fieldset,
img {
  border: 0;
}

button,
input,
select,
textarea {
  font-size: 100%;
}

table {
  border-collapse: collapse;
  border-spacing: 0;
}

input {
  font-style: normal;
  border: 0;
  outline: none;
}

textarea {
  border: none;
  background-color: transparent;
  font-family: inherit;
  font-size: inherit;
  resize: none;
  outline: none;
}

button {
  /* 去除边框 */
  border: none;
  /* 去除轮廓线 */
  outline: none;
  /* 清除背景颜色 */
  background-color: transparent;
  /* 可以设置自己的内填充（如果需要） */
  padding: 0;
  /* 文字颜色 */
  color: #333;
  /* 字体大小 */
  font-size: 16px;
  /* 如果需要，可以移除下划线等链接样式 */
  text-decoration: none;
  /* 其他自定义样式 */
}

input[type='submit'] {
  -webkit-appearance: none;
}

/* 去除所有浏览器的默认样式 */

input[type='submit'] {
  /* 清除边框 */
  border: none;
  /* 清除背景颜色 */
  background-color: transparent;
  /* 清除轮廓线 */
  outline: none;
  /* 设置自定义的字体颜色、大小等 */
  color: #fff;
  font-size: 16px;
  /* 其他需要重置或自定义的样式 */
  padding: 0;
  cursor: pointer;
}


html {
  overflow-x: hidden;
}


/* 公共样式 */
.flex {
  display: flex;
}

.flex-c {
  display: flex;
  align-items: center;
}

.flex-btn {
  display: flex;
  align-items: center;
  justify-content: space-between;
}
.flex-con {
  display: flex;
  align-items: center;
  justify-content: center;
}
.flex-cum {
  display: flex;
  align-items: center;
  flex-direction: column;
}
.flex-bt{
  display: flex;
  justify-content: space-between;
}
.flex-wp{
  display: flex;
  flex-wrap: wrap;
  align-items: center;
}
.Ohd_1 {
  display: -webkit-box;
  -webkit-box-orient: vertical;
  -webkit-line-clamp: 1;
  overflow: hidden;
  text-overflow: ellipsis;

}

.Ohd_2 {
  display: -webkit-box;
  -webkit-box-orient: vertical;
  -webkit-line-clamp: 2;
  overflow: hidden;
  text-overflow: ellipsis;

}

.Ohd_3 {
  display: -webkit-box;
  -webkit-box-orient: vertical;
  -webkit-line-clamp: 3;
  overflow: hidden;
  text-overflow: ellipsis;
}

.Ohd_4 {
  display: -webkit-box;
  -webkit-box-orient: vertical;
  -webkit-line-clamp: 4;
  overflow: hidden;
  text-overflow: ellipsis;
}
:root {
     --bgImg:  linear-gradient(91deg, #59efbc 0%, 	#65cfea 100%),	linear-gradient(#2c67ba, #2c67ba);
}

/* 手机端菜单 */


.mobileHeader {
  display: none;
  align-items: center;
  justify-content: space-between;
  width: 100%;
  height: 60px;
  padding: 0 4%;
  position: fixed;
  z-index: 888;
  left: 0;
  top: 0;
  box-shadow: 4px 4px 12px 0px rgba(175, 175, 175, 0.25);
  background-color: #fff;
}

.mobileHeader .logo {
  display: flex;
  width: auto;
  height: 100%;
  padding: 5px  0;
}

.mobileHeader .logo img {
  width: auto;
  height: 100%;
  object-fit: contain;
  vertical-align: bottom;
}




/* 下拉菜单 */


.menu-container {
  display: none;
  position: absolute;
  left: 0;
  top: 60px;
  z-index: 9999;
  width: 100%;
}

/* 基础菜单项样式 */
.menu-item {
  width: 100%;
  background: #fff;
  position: relative;
}

.menu>.menu-item {
  border-bottom: 1px solid #eee;
}

.menu-item>a {
  display: block;
  padding: 12px 15px;
  font-size: 14px;
  color: #333;
  text-decoration: none;
  position: relative;
}

/* 子菜单样式 */
.submenu {
  display: none;
  background: #f9f9f9;
}

/* 箭头图标 */
.arrow {
  position: absolute;
  right: 15px;
  top: 50%;
  transform: translateY(-50%);
  transition: transform 0.3s;
}

/* 展开时箭头旋转 */
.arrow.active {
  transform: translateY(-50%) rotate(90deg);
}

/* 层级缩进 */
.submenu.level-2>li {
  padding-left: 20px;
}

.submenu.level-3>li {
  padding-left: 25px;
}

.submenu.level-4>li {
  padding-left: 30px;
}

.hd_btn {
  /* display: none; */
  position: relative;
  float: right;
  width: 6vw;
  height: 5vw;
  cursor: pointer;
}

.hd_btn span {
  position: absolute;
  left: 0;
  top: 0px;
  width: 100%;
  height: 0.5vw;
background-color: var(--mainColor);
  transition: .3s;
  -ms-transition: .3s;
  -moz-transition: .3s;
  -webkit-transition: .3s;
  -o-transition: .3s;
}

.hd_btn .s1 {
  top: 0;
}

.hd_btn .s2 {
  top: 2vw;
}

.hd_btn .s3 {
  top: 4vw;
}

.hd_btn.on .s1 {
  top: 2vw;
  transform: rotate(45deg);
  -ms-transform: rotate(45deg);
  -webkit-transform: rotate(45deg);
  -o-transform: rotate(45deg);
  -moz-transform: rotate(45deg);
}

.hd_btn.on .s2 {
  opacity: 0;
}

.hd_btn.on .s3 {
  top: 2vw;
  transform: rotate(-45deg);
  -ms-transform: rotate(-45deg);
  -webkit-transform: rotate(-45deg);
  -o-transform: rotate(-45deg);
  -moz-transform: rotate(-45deg);
}



.menu-level1 {
  height: 100%;
}

.menu-level1>li {
  height: 100%;
  position: relative;
  display: flex;
  align-items: center;
}

.menu-level2,
.menu-level3 {
  display: none;
  width: auto;
  background-color: #fff;
  box-shadow: 0 0 .125rem  rgba(163, 161, 161, 0.7);
}

.menu-level2 {
    position: absolute;
  left: 50%;
  top: 1.375rem;
  transform: translate(-50%);
  z-index: 999;
  border-radius: 0  0 .0625rem .0625rem ;
  border-right: 1px solid #e5e5e5;
}

.menu-level2 li {
  position: relative;
  transition: all 0.3s;
}
.menu-level2 li a{
  font-size: .225rem;
}

.menu-level2  li:hover {
background-image: var(--bgImg);
}
.menu-level2  li a:hover {
  color: #fff;
}
.menu-level3 {
  position: absolute;
  left: 100%;
  top: 0;
}

.menu-level2 li {
  height: 0.5625rem;
  line-height: 0.5625rem;
  padding: 0 0.25rem;
  border-bottom: 1px solid #e5e5e5;
}
.menu-level2 li:last-child{
  border: none;
    border-radius: 0  0 .0625rem .0625rem ;
}
.menu-level2 li a {
  display: inline-block;
  height: 100%;
  width: 100%;
  color: #000;
  text-align: left;
  white-space: nowrap;
}

/* 搜索 */
.searchBox {
width: 100%;
  height: auto;
  position: relative;

}

.searchForm {
  width: 100%;
  position: fixed;
  display: none;
  height: auto;
  z-index: 99999;
  left: 0;
  padding: 0.75rem 0;
  top: .5625rem;
  background-color: #fff;
  box-shadow: 0px 0px 0.125rem 0px rgba(4, 0, 0, 0.15);
}

.searchClose {
  width:.625rem;
  height: .625rem;
  display: flex;
  background: url(../images/close.svg)  no-repeat;
  background-size: contain;
  align-items: center;
  justify-content: center;
  cursor: pointer;
  position: absolute;
  right: 0;
  top: 0;
  transition: all 0.3s;
}

.searchClose:hover {
  background: url(../images/close_active.svg)  no-repeat;
    background-size: contain;
}

.searchForm input[type="text"] {
  width: 5rem;
  height: 0.525rem;
  border-bottom: 1px solid #e5e5e5;
  font-size: 0.225rem;
  color: #000;
}

.searchForm input[type="text"]::placeholder {
  font-size: 0.225rem;
  color: #000;
}

.searchForm input[type="submit"] {
  width: 1.875rem;
  height: 0.525rem;
  font-size: 0.25rem;
  text-align: center;
  color: #fff;
  line-height: 0.525rem;
  margin-left: 0.3125rem;
  border-radius: 0.0625rem;
background-image: var(--bgImg);
}

/* 语言切换 */
.languageSwitching {
  width: auto;
  position: relative;
  height: 100%;
}
.languageSwitching .downLanguage{
  top:60px;
}


.languageSwitching:hover .language {
  transform: rotate(360deg);
}



/* 表单提交 */

.ejectEmail_form {
  position: fixed;
  background: #ffffff;
  width: 600px;
  height: auto;
  left: 50%;
  top: 50%;
  transform: translate(-50%, -50%);
  padding: 30px;
  z-index: 100000;
  display: none;
}

.ejectEmail_form .close_Emailform {
  position: absolute;
  right: 0;
  top: 0;
  width: 40px;
  height: 40px;
  line-height: 42px;
  text-align: center;
  font-size: 26px;
  display: block;
  cursor: pointer;
background-color: var(--mainColor);
  color: #ffffff;
}

.ejectEmail_form form h2 {
  display: none;
}

.ejectEmail_form form p {
  font-size: 30px;
  color: #000000;
}

.ejectEmail_form .info {
  width: 100%;
  margin-top: 20px;
  position: relative;
}

.ejectEmail_form .label_control {
  position: absolute;
  left: 10px;
  font-size: 16px;
  color: #a5a5a5;
  line-height: 40px;
}

.tips {
  position: absolute;
  right: 10px;
  top: 0;
  line-height: 40px;
  font-size: 14px;
  color: #ff0000;
}

.ejectEmail_form input[type="text"] {
  width: 100%;
  height: 40px;
  font-size: 16px;
  color: #a5a5a5;
  text-indent: 10px;
  font-family: inherit;
  font-weight: inherit;
  font-style: inherit;
  border: 1px solid #dddddd;
}

.ejectEmail_form textarea {
  width: 100%;
  height: 100px;
  resize: none;
  padding: 10px;
  font-family: inherit;
  font-weight: inherit;
  font-style: inherit;
  font-size: 16px;
  color: #a5a5a5;
  border: 1px solid #dddddd;
}

.ejectEmail_form input[type="button"],
.ejectEmail_form input[type="submit"] {
  width: 155px;
  height: 40px;
  background: #3f3a39;
  color: #ffffff;
  border: 0;
  font-size: 16px;
  text-align: center;
  line-height: 40px;
  cursor: pointer;
  transition: all 0.3s;
}

.ejectEmail_form input[type="button"]:hover,
.ejectEmail_form input[type="submit"]:hover {
background-color: var(--mainColor);
  transition: all 0.3s;
}

.ejectEmailform_bj {
  position: fixed;
  top: 0;
  bottom: 0;
  left: 0;
  right: 0;
  background: rgba(0, 0, 0, 0.7);
  z-index: 99999;
  display: none;
}

.footer_form .info.imgVerifyCode img {
  position: absolute;
  width: 1.225rem;
  height: .4375rem;
  border-radius: .0625rem;
  right: 0;
  top: .1rem;
  transform: translateY(-50%);
  display: block;
}

.imgVerifyCode  img{
  position: absolute;
  right: 0;
      width: 120px;
    height: 40px;
  top: 0;
}

/* 悬浮按钮 */



/* 手机端底部导航 */

.Fast_contact {
  position: fixed;
  right: 0;
  top: 50%;
  transform: translateY(-50%);
  z-index: 1001;
}

.Fast_contact ul li.onlineservice_li {
  width: 48px;
  height: 48px;
  position: relative;
  text-align: center;
  margin-bottom: 5px;
background-color: var(--mainColor);

  -webkit-border-radius: 5px;
  -moz-border-radius: 5px;
  border-radius: 5px;
}

.Fast_contact ul li.onlineservice_li.email_click {
  display: none
}

.Fast_contact ul>li.onlineservice_li>a {
  display: inline-block;
  width: 28px;
  height: 28px;
  margin-top: 10px;
}

.Fast_contact ul>li:hover .onlineservice_tips {
  -webkit-transform: rotateX(0);
  transform: rotateX(0);
}

.onlineService_qq {
  background-image: url("../images/Fast.png");
  background-repeat: no-repeat;
  background-position: 0 0;
}

.Fast_contact ul>li.onlineservice_li>a.onlineService_tel {
  width: 30px;
  height: 30px;
  background-image: url("../images/fastPhone.png");
  background-repeat: no-repeat;
  background-position: 0 0;
}
.Fast_contact ul>li.onlineservice_li>a.onlineService_wx {
  width: 30px;
  height: 30px;
  background: url("../images/wx.svg")  no-repeat;
  background-size: contain;
}

.onlineService_form {
  background-image: url("../images/fastForm.png");
  background-repeat: no-repeat;
  background-position: 0 0;
}

.onlineService_whatsApp {
  background-image: url("../images/Fast.png");
  background-repeat: no-repeat;
  background-position: 0 -139px;
}

.onlineService_email {
  background-image: url("../images/Fast.png");
  background-repeat: no-repeat;
  background-position: 0 -111px;
}

.onlineService_skype {
  background-image: url("../images/Fast.png");
  background-repeat: no-repeat;
  background-position: 0 -28px;
}

.onlineService_wechat {
  background-image: url("../images/Fast.png");
  background-repeat: no-repeat;
  background-position: 0 -203px;
}

.for_wechat span {
  display: block;
  text-align: center;
}



.onlineservice_tips {
  padding: 5px 8px;
  background-color: #fff;
  border: 1px solid #ccc;
  border-radius: 4px;
  position: absolute;
  right: 58px;
  top: 6px;
  -webkit-transform: rotateX(90deg);
  transform: rotateX(90deg);
  -webkit-transition: all .4s;
  transition: all .4s;
}

.onlineservice_tips li {
  width: auto;
  height: auto;
  white-space: nowrap;
}

.onlineservice_tips li a {
  display: block;
  min-height: 22px;
  text-align: center;
  line-height: 22px;
  color: #737578;
  font-size: 15px;
}

.onlineservice_tips li a.for_wechat {
  height: auto;
}

.onlineservice_tips li a.for_wechat img {
  max-width: 240px;
}

.onlineservice_tips li a:hover {
  text-decoration: underline;
}

.onlineservice_tips:after {
  content: "";
  display: inline-block;
  width: 10px;
  height: 10px;
  border: 1px solid #ccc;
  border-color: transparent #ccc #ccc transparent;
  -webkit-transform: rotate(-45deg);
  transform: rotate(-45deg);
  position: absolute;
  right: -6px;
  top: 10px;
  background-color: #fff;
  transition: all .3s;
  ;
}

.Fast_contact ul>li:hover .onlineservice_tips:after {
  border: 1px solid #ccc;
  border-color: transparent #ccc #ccc transparent;
  background-color: #fff;
  transition: all .3s;
}


#back_top {
  position: fixed;
  right: 30px;
  height: 40px;
  width: 40px;
  bottom: 135px;
  z-index: 97;
  display: none;
background-color: var(--mainColor);
}

#back_top a {
  display: inline-block;
    background: url("../images/back_top.png") no-repeat center center;
  width: 100%;
  height: 100%;
  -webkit-border-radius: 10%;
  -moz-border-radius: 10%;
  border-radius: 10%;
}

/* 隐私政策 */


.agreementBox {
  position: relative;
  width: 100%;
  height: auto;
  padding: 1.125rem 0;
}

.agreementBox .nav {
  padding: .25rem 0;
  position: sticky;
  top: 1.075rem;
  background-color: #fff;
}

.agreementBox .nav a,
.agreementBox .nav a::after {
  color: #000;
}

.agreementBoxCon h2 {
  font-size: .45rem;
  color: #000;
}

.agreementBoxCon p {
  font-size: 16px;
  line-height: 25px;
  margin-top: 10px
}
 
/* video弹框 */
.corporateVideo {
  cursor: pointer;
  width: 2.5rem;
  height: 0.5625rem;
  border-radius: 0.0625rem;
  border: solid 0.0125rem #ffffff;
  font-family: Montserrat-ExtraLight;
  font-size: 0.2rem;
  color: #ffffff;
}

.cboxOverlay {
  position: fixed;
  z-index: 100001;
  width: 100%;
  height: 100%;
  left: 0;
  right: 0;
  top: 0;
  bottom: 0;
  background: rgba(0, 0, 0, 0.8);
  display: none;
}

.colorbox {
  position: fixed;
  width: 90%;
  height: 80%;
  top: 10%;
  left: 5%;
  background: #ffffff;
  z-index: 100002;
  display: none;
}

.colse_click {
  position: absolute;
  top: -0.375rem;
  right: 0;
  width: 0.3125rem;
  height: 0.3125rem;
  background: url("../images/closeVideo.png") no-repeat center;
  cursor: pointer;
}

.colorbox iframe {
  width: 100%;
  height: 100%;
}



/* 咨询表单 */

.inquireFormBox {
  position: fixed;
  background: #ffffff;
  padding: 20px;
  top: 50%;
  left: 50%;
  width: 700px;
  height: auto;
  margin-top: -256px;
  margin-left: -350px;
  -webkit-box-shadow: 0 0 10px 0 rgba(0, 0, 0, 0.3);
  -moz-box-shadow: 0 0 10px 0 rgba(0, 0, 0, 0.3);
  box-shadow: 0 0 10px 0 rgba(0, 0, 0, 0.3);
  z-index: 10001;
  display: none;
}

.inquireFormBox .closeForm {
  position: absolute;
  width: 40px;
  height: 40px;
  top: 0;
  right: 0;
  text-align: center;
  line-height: 40px;
  font-size: 30px;
  cursor: pointer;
}

.inquireFormBox h2 {
  color: #333333;
  font-size: 24px;
  font-weight: bold;
  padding-bottom: 10px;
  margin-bottom: 20px;
  border-bottom: 2px solid #333333;
}

.inquireFormBox .info {
  width: 50%;
  padding: 0 5px;
  float: left;
  overflow: hidden;
  margin-bottom: 12px;
}

.inquireFormBox .info.textarea {
  width: 100%;
}

.inquireFormBox .label_control {
  width: 100%;
  margin-top: 0;
  height: 36px;
  text-transform: uppercase;
  font-weight: 700;
  font-size: 13px;
  line-height: 36px;
}

.inquireFormBox .controls {
  height: 36px;
  line-height: 36px;
  border: 1px solid #dddddd;
  -webkit-border-radius: 5px;
  -moz-border-radius: 5px;
  border-radius: 5px;
  position: relative;
}

.inquireFormBox .controls .tips {
  position: absolute;
  right: 10px;
  top: 0;
  line-height: 36px;
  color: #ff0000;
}

.inquireFormBox .controls input,
.inquireFormBox .controls textarea {
  width: 100%;
  height: 100%;
  text-indent: 10px;
  border: 0;
  background: none;
  resize: none;
}

.inquireFormBox .controls textarea {
  text-indent: 0;
  padding: 10px;
}

.inquireFormBox .info.textarea .controls {
  height: 150px;
}

.inquireFormBox .info input[type="button"],
.inquireFormBox .info input[type="submit"] {
  padding: 10px 25px;
  border: 0;
  background: #84c221;
  color: #ffffff;
  font-weight: 700;
  cursor: pointer;
  transition: all .3s;
}

.inquireFormBox .info input[type="submit"]:hover,
.inquireFormBox .info input[type="submit"]:hover {
  opacity: .8;
  transition: all .3s;
}

.inquireFormBj {
  position: fixed;
  top: 0;
  bottom: 0;
  left: 0;
  right: 0;
  z-index: 10000;
  background: rgba(0, 0, 0, 0.5);
  display: none;
}

.searchBox {
  width: 100%;
  height: auto;
  position: relative;
}



.hvr-float-shadow {
  vertical-align: middle;
  -webkit-transform: perspective(1px) translateZ(0);
  transform: perspective(1px) translateZ(0);
  box-shadow: 0 0 1px rgba(16, 119, 187, 0.2);
  position: relative;
  -webkit-transition-duration: 0.3s;
  transition-duration: 0.3s;
  -webkit-transition-property: transform;
  transition-property: transform;
}

.hvr-float-shadow::before {
  position: absolute;
  z-index: -1;
  content: '';
  top: 100%;
  left: 5%;
  height: 10px;
  width: 90%;
  opacity: 0;
  background: -webkit-radial-gradient(center, ellipse, rgba(18, 141, 223, 0.35) 0%, rgba(218, 18, 18, 0) 80%);
  background: radial-gradient(ellipse at center, rgba(25, 151, 224, 0.35) rgba(226, 6, 6, 0), 0) 80%;
  /* W3C */
  -webkit-transition-duration: 0.3s;
  transition-duration: 0.3s;
  -webkit-transition-property: transform, opacity;
  transition-property: transform, opacity;
}

.hvr-float-shadow:hover {
  -webkit-transform: translateY(-5px);
  transform: translateY(-5px);
}

.hvr-float-shadow:hover:before,
.hvr-float-shadow:focus:before,
.hvr-float-shadow:active:before {
  opacity: 1;
  -webkit-transform: translateY(5px);
  transform: translateY(5px);
}
