/* 公共导航 */
body {
  background-color: #f3f3f3;
}



.contact_ct {
  padding: 80px 0 100px;
}

.contact_ctbox {
  display: flex;
  background-color: #fff;
  box-shadow: 0 0 4px rgba(0, 0, 5px, .2);
}

.contact_ctbox>div {
  position: relative;
  width: 50%;
}

.contact_ctimg {
  overflow: hidden;
}

.contact_ctimg img {
  width: 100%;
  transition: all .4s;
}

.contact_ctimg:hover img {
  transform: scale(1.1);
}

.contact_cttxt {
  position: relative;
  padding-left: 5%;
  display: flex;
  flex-direction: column;
  justify-content: center;
  background-position: 135% -75%;
  background-repeat: no-repeat;
  background-size: 50% auto;
  overflow: hidden;
}

.contact_cttxt_dw {
  position: absolute;
  right: 0;
  top: 0;
  transform: translate(34%, -45%);
  animation: rotate4 20s linear infinite;
}

.contact_cttxt_toph {
  font-size: var(--font_38);
  font-weight: 700;
  margin-bottom: 35px;
}

.contact_cttxt_topa {
  display: flex;
  align-items: center;
  font-size: var(--font_22);
  color: #222;
  margin-bottom: 20px;
}

.contact_cttxt_topa i {
  font-size: 24px;
  margin-right: 5px;
}

.contact_cttxt_topa b {
  font-size: 28px;
  color: #1c539d;
  font-weight: 700;
}


.lxlyt {
  display: flex;
  justify-content: space-between;
  align-items: center;
}

.lxlyt_h {
  font-size: 36px;
  font-weight: 700;
  color: var(--txt_color1);
}

.cptl_txtboxx {
  display: flex;
  margin: 25px 0;
}

.lxtl_swiper {
  height: auto;
  max-height: 100%;
  overflow-y: auto;
  position: relative;
  /* 设置为相对定位 */
  padding-right: 20px;
  /* 额外的右侧空白，值可以根据需要调整 */
}

.lxtl_swiper::before {
  content: "";
  /* 创建一个透明的内容块 */
  position: absolute;
  /* 绝对定位 */
  right: 0;
  /* 定位到容器的最右侧 */
  top: 0;
  /* 从顶部开始 */
  bottom: 0;
  /* 一直到底部 */
  width: 20px;
  /* 与上面的padding-right相同 */
  background-color: transparent;
  /* 透明背景 */
}


/* 定制滚动条的样式 (针对 Webkit 浏览器，例如 Chrome, Safari) */
.lxtl_swiper::-webkit-scrollbar {
  width: 8px;
  /* 滚动条的宽度 */
  border-radius: 6px;


}

.lxtl_swiper::-webkit-scrollbar-track {
  background: #e5e5e5;
  /* 滚动条轨道的颜色 */
  border-radius: 6px;
}

.lxtl_swiper::-webkit-scrollbar-thumb {
  background: var(--btn_bg_color1);
  /* 滚动条本身的颜色 */
  border-radius: 6px;
  /* 滚动条的边角圆滑度 */
}

.lxtl_swiper::-webkit-scrollbar-thumb:hover {
  background: var(--btn_bg_color1);
  /* 滚动条在鼠标悬浮时的颜色 */
}

/* 为 Firefox 定制滚动条样式 */
.lxtl_swiper {
  scrollbar-width: thin;
  /* "auto" 或 "thin" */
  scrollbar-color: #888 #f1f1f1;
  /* 滚动条颜色 滚动条轨道颜色 */
}

.lxtl_swiper::-webkit-scrollbar {
  width: 5px;
  /* 可以调整滚动条的宽度 */
}

.lxtl_swiper::-webkit-scrollbar-thumb {
  background-color: var(--btn_bg_color1);
  /* 调整滚动条的颜色和透明度 */
}

.lxtl_swiper::-webkit-scrollbar-track {
  background-color: rgba(0, 0, 0, 0.1);
  /* 调整滚动条轨道的颜色 */
}







.cptl_txtboxx b {
  display: block;
  width: 35px;
  height: 3px;
  border-radius: 1.5px;
  background-color: var(--btn_bg_color1);
}

.cptl_txtboxx span {
  margin-left: 5px;
  display: block;
  width: 90px;
  height: 3px;
  border-radius: 1.5px;
  background-color: var(--btn_bg_color);
}

.lxlyt_p {
  font-size: 18px;
  line-height: 35px;
  color: var(--p_color);
}

.lxlytr {
  display: flex;
}

.lxlytr .lxlytra {
  position: relative;
  width: 245px;
  height: 60px;
  display: flex;
  align-items: center;
  justify-content: center;
  border: 1px solid #cccccc;
  color: var(--txt_color1);
  margin-left: 20px;
  transition: all .2s;
}

.lxlytr .lxlytra:hover {
  color: #fff;
  background-color: #1c539d;
  border-color: #1c539d;
}

.lxlytra i {
  font-size: 22px;
  margin-right: 12px;
}

.lxlytra span {
  font-size: 16px;
}

.lxlybd {
  margin-top: 50px;
}

.lxlybd_t {
  display: flex;
  justify-content: space-between;
}

.lxlybd_titem {
  width: 32.5%;
  display: flex;
  background-color: #fff;
  border: 1px solid #e4e4e4;
  height: 60px;
  overflow: hidden;
}

.lxlybd_titem>div {
  padding-top: 6px;
  width: 55px;
  height: 100%;
  display: flex;
  align-items: center;
  justify-content: center;
  color: #e34242;
}

.lxlybd_titem>div.fbt {
  width: 20px;
}

.lxlybd_titem>input {
  width: calc(100% - 55px);
  width: 100%;
  height: 100%;
  border: 0;
  font-size: 16px;
  background-color: #fff;
}

.lxlybd_z {
  margin: 25px 0;
  width: 100%;
  height: 300px;
  border: 1px solid #e4e4e4;
  overflow: hidden;
}

.lxlybd_z textarea {
  padding: 40px;
  display: block;
  width: 100%;
  height: 100%;
  border: 0;
  outline: none;
  resize: none;
  font-size: 16px;
}

.lxlybd_s {
  display: flex;
  align-items: center;
  font-size: 16px;
  color: var(--p_color);
}

.lxlybd_s i {
  font-size: 22px;
  margin-right: 10px;
  color: var(--btn_bg_color1);
}

.lxlybd_b {
  padding: 50px 0 100px;
  display: flex;
  justify-content: space-between;
}

.lxlybd_byz {
  width: 32.5%;
  display: flex;
  background-color: #fff;
  align-items: center
}

.lxlybd_byz img {
  margin: 0 10px;
  width: 100px;
}

.lxlybd_byz>input {
  width: calc(100% - 100px);
  height: 100%;
  border: 0;
}

.lxlybd_bl {
  width: 32.5%;
  display: flex;
  background-color: #fff;
  border: 1px solid #e4e4e4;
  height: 60px;
  border-radius: 10px;
  overflow: hidden;
}

.lxlybd_bl>.lxlybd_blt {
  position: relative;
  width: 175px;
  padding: 0 30px;
  display: flex;
  align-items: center;
}

.lxlybd_bl>.lxlybd_blt::before {
  content: '';
  position: absolute;
  top: 50%;
  left: 0px;
  width: 1px;
  height: 40%;
  background-color: #e4e4e4;
  transform: translateY(-50%);
}

.lxlybd_bl img {
  width: 100%;
}

.lxlybd_bl>input {
  flex: 1;
  border: 0;
  height: 100%;
  font-size: 16px;
}

.lxlybd_bld {
  padding-top: 6px;
  width: 55px;
  height: 100%;
  display: flex;
  align-items: center;
  justify-content: center;
  color: #e34242;
}

.lxlybd_b>input {
  width: 32%;
  display: flex;
  align-items: center;
  justify-content: center;
  background-color: #b2b2b2;
  height: 60px;
  overflow: hidden;
  color: #fff;
  font-size: 20px;
  font-weight: 700;
  border: 0;
  transition: all .2s;
}

.lxlybd_b>input:hover {
  transform: scale(.98);
}

.lxlybd_b .lxlybd_btj {
  background-color: #1c539d;
}

.footer_t {
  background-color: #fff;
}

.xqwx_dw {
  width: 120px;
  left: 50%;
  margin-left: -60px;
}

@media screen and (max-width: 2000px) {
  .lxtl {
    height: 540px;
  }



  .lxlybd_b {
    padding: 50px 0 110px;
  }
}

@media screen and (max-width: 1800px) {
  .lxtl {
    height: 500px;
  }

  .lxtl_ctboxl {
    padding: 50px;
  }

  .lxlybd_b {
    padding: 50px 0 100px;
  }

  .lxlyt_h {
    font-size: 34px;
  }
}

@media screen and (max-width: 1600px) {
  .lxtl_h {
    font-size: 38px;
  }

  .lxtl_ctboxl {
    padding: 40px;
  }

  .lxtl_ctboxl .lxtl_ctboxla {
    height: 100px;
  }

  .lxtl_slide_itemt,
  .lxtl_slide_itemb {
    font-size: 16px;
    line-height: 30px;
  }

  .lxtl_slide {
    padding: 15px 0;
    padding-right: 45px;
  }

  .lxtl_ctboxc {
    padding-top: 50px;
  }

  .lxlyt_h {
    font-size: 32px;
  }

  .lxlybd_b {
    padding: 50px 0 90px;
  }

  .lxtl_ctboxla_txtb {
    font-size: 22px;
  }

  .lxtl_ctboxla_txtb span {
    font-size: 14px;
  }

  .lxlyt_p {
    font-size: 16px;
    line-height: 30px;
  }

  .lxlytr .lxlytra {
    height: 55px;
  }

  .lxlybd_z {
    height: 260px;
  }

}

@media screen and (max-width: 1400px) {
  .lxtl_h {
    font-size: 32px;
  }

  .lxtl_y {
    font-size: 14px;
  }

  .lxtl {
    height: 460px;
  }

  .lxtl_ctboxl {
    padding: 35px;
  }

  .lxtl_ctboxla_txtb {
    font-size: 20px;
  }

  .lxtl_ctboxla i {
    font-size: 44px;
  }

  .lxtl_ctboxc_txtt {
    font-size: 22px;
  }

  .lxtl_ctboxc_txtt i {
    font-size: 52px;

  }

  .lxtl_ctboxc i {
    margin-right: 10px;
  }

  .lxtl_slide_item {
    margin: 0;
  }

  .lxlyt_h {
    font-size: 28px;
  }


  .lxlybd_b {
    padding: 50px 0 80px;
  }

  .lxlybd_z {
    height: 200px;
  }

  .lxlybd_z textarea {
    padding: 30px;
  }
}

@media screen and (max-width: 1200px) {
  .lxtl_h {
    font-size: 28px;
  }

  .lxtl {
    height: 420px;
  }

  .lxtl_ctboxl .lxtl_ctboxla {
    height: 80px;
  }

  .lxtl_ctboxc i {
    font-size: 45px;
  }

  .lxtl_ctboxrbox {
    padding: 35px 0;
  }

  .lxtl_ctboxrbox {
    padding-right: 30px;
  }

  .lxtl_slide_itemb {
    font-size: 14px;
    line-height: 22px;
  }

  .lxtl_ctboxla_txtb {
    font-size: 18px;
  }

  .lxtl_ctboxla_txtt {
    font-size: 14px;
  }

  .lxtl_ctbox {
    transform: translateY(-100px);
  }

  .lxtl .container {
    padding-bottom: 100px;
  }



  .lxlyt_h {
    font-size: 26px;
  }

  .lxlyt_p {
    font-size: 12px;
    line-height: 20px;
  }

  .lxlybd {
    margin-top: 35px;
  }

  .lxlybd_z {
    margin: 20px 0;
    height: 180px;
  }

  .lxlybd_z textarea {
    padding: 20px;
  }

  .lxlybd_s {
    font-size: 12px;
  }

  .lxlybd_b {
    padding: 25px 0 60px;
  }

  .lxtl_slide_itemb {
    font-size: 12px;
    line-height: 20px;
  }
}

@media screen and (max-width: 992px) {
  .lxtl {
    margin-top: 50px;
  }

  .lxtl {
    height: 220px;
  }

  .lxtl_ctbox {
    transform: translateY(0);
    box-shadow: 0 0 5px rgba(0, 0, 0, .15);
  }

  .lxtl_ct {
    padding: 50px 0;
  }

  .lxtl_ctboxla_txtt {
    font-size: 12px;
  }

  .lxtl_ctboxla_txtb {
    font-size: 16px;
  }

  .lxtl_ctboxla i {
    font-size: 34px;
  }

  .lxtl_ctboxl .lxtl_ctboxla {
    height: 75px;
  }

  .lxtl_ctboxc {
    padding-top: 20px;
  }



  .lxlytra.xqwx {
    display: none;
  }

  .lxlytr .lxlytra {
    height: 50px;
  }

  .lxlytra span {
    font-size: 14px;
  }

  .lxlytra i {
    font-size: 20px;
  }

  .lxlybd_titem {
    height: 50px;
  }

  .lxlybd_titem>input,
  .lxlybd_z textarea,
  .lxlybd_bl>input {
    font-size: 14px;
  }

  .lxlybd_z {
    height: 160px;
  }

  .lxlybd_z textarea {
    padding: 15px;
  }

  .lxlybd_bl,
  .lxlybd_b>input {
    height: 50px;
  }

  .lxlybd_bl>.lxlybd_blt {
    padding: 0 5px;
  }

  .lxlybd_b {
    padding: 20px 0 50px;
  }

  .lxtl .container {
    padding-bottom: 0;
  }
}

@media screen and (max-width: 768px) {

  .lxlybd_b>input {
    font-size: 16px;
  }

  .lxlybd_blt img {
    transform: scale(0.8);

  }

  .lxtl {
    height: 180px;
  }

  .lxtl_h {
    font-size: 24px;
  }

  .lxtl_ctbox {
    flex-wrap: wrap;
  }

  .lxtl_ctbox>div {
    width: 100%;
  }

  .lxtl_ctboxl .lxtl_ctboxla {
    height: 70px;
  }

  .lxtl_ctboxc i {
    display: none;
  }

  .lxtl_ctboxc {
    justify-content: center;
  }

  .lxtl_ctboxrbox {
    position: static;
  }

  .lxtl_ctboxrbox {
    padding: 30px 20px;
    height: 240px;
    background-color: #fff;
  }

  .lxtl_slide {
    padding: 10px 0;
    padding-right: 25px;
  }

  .lxlyt {
    flex-wrap: wrap;
  }

  .lxlyt>div {
    width: 100%;
  }

  .lxlyt_p br {
    display: none;
  }

  .lxlytr .lxlytra {
    margin: 0;
    margin-top: 20px;
  }

  .cptl_txtboxx {
    margin: 15px 0;
  }

  .cptl_txtboxx b {
    width: 20px;
  }

  .cptl_txtboxx span {
    width: 50px;
  }

  .lxlybd_t {
    flex-wrap: wrap;
  }

  .lxlybd_titem {
    width: 100%;
    margin-bottom: 10px;
  }

  .lxlybd_z {
    margin: 0 0 10px;
  }

  .lxlybd_z {
    height: 180px;
  }

  .lxlybd_b {
    flex-wrap: wrap;
  }

  .lxlybd_bl,
  .lxlybd_b>input {
    width: 100%;
  }

  .lxlybd_bl>.lxlybd_blt {
    padding: 0 15px;
  }

  .lxlybd_b>input {
    margin-top: 10px;
  }

  .lxlyt_h {
    font-size: 20px;
    text-align: center;
  }

  .cptl_txtboxx {
    justify-content: center;
  }

  .lxlyt_p {
    text-align: center;
  }

  .lxlytr {
    justify-content: center;
  }
}

.contact_bslb {
  margin-top: 50px;
  overflow: hidden;
}

.honor_slide {
  height: auto;
}

.contact_bslbbox {
  height: 100%;
  padding: 60px 40px;
  background-color: #fff;
  transition: all .4s;
}
.contact_bslbbox:hover{
  transform: translateY(-4px);
  box-shadow: 0 0 4px rgba(0, 0, 0, .15);
}
.contact_bslbbox_t {
  display: flex;
  align-items: center;
  border-bottom: 1px solid #dddddd;
  padding-bottom: 20px;
  margin-bottom: 30px;
}

.honor_slide {
  height: auto;
}

.contact_bslbbox_t img {
  margin: 0 15px;
}

.contact_bslbbox_t>div {
  font-size: var(--font_22);
}

.contact_bslbbox_b a {
  margin-top: 10px;
  display: flex;
  font-size: 16px;
  color: #666;
}

.contact_jr {
  margin-top: 100px;
  position: relative;
  overflow: hidden;
}

.contact_jr .container2 {
  position: relative;
  z-index: 5;
}

.contact_jr_bg {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background-position: center;
  background-repeat: no-repeat;
  background-size: cover;
}

.contact_jrbox {
  height: 700px;
  display: flex;
  justify-content: space-between;
}

.contact_jrbox_l {
  display: flex;
  flex-direction: column;
  justify-content: center;
  width: 40%;
}

.contact_jrbox_lh {
  font-size: 48px;
  color: #fff;
  font-weight: 700;
}

.contact_jrbox_lp {
  margin: 30px 0;
  font-size: 22px;
  color: #fff;
}

.contact_jrbox_lgw {
  border-top: 1px solid rgba(255, 255, 255, .2);
  display: flex;
  flex-wrap: wrap;
  padding-top: 30px;
}

.contact_jrbox_lgw .contact_jrbox_lgw_item {
  margin-top: 10px;
  width: 25%;
  display: flex;
  align-items: center;
  font-size: 16px;
  color: rgba(255, 255, 255, .6);
}

.contact_jrbox_lgw_item span {
  width: 5px;
  height: 5px;
  border-radius: 100%;
  margin-right: 6px;
  background-color: rgba(255, 255, 255, .6);
}

.container2 {
  padding: 0 100px;
}

.contact_jrbox_r {
  align-self: flex-end;
  display: flex;
}

.contact_jrbox_ritem {
  padding: 10px;
  background-color: #e2e2e4;
  border-radius: 5px;
  overflow: hidden;
  text-align: center;
  margin-bottom: 30px;
  margin-left: 20px;
}

.contact_jrbox_ritem_img img {
  width: 100%;
}

.contact_jrbox_ritem_txt {
  display: flex;
  align-items: center;
  justify-content: center;
  height: 55px;
  font-size: 16px;
}

.contact_jrbox_ritem_txt i {
  margin-left: 10px;
  transform: rotate(-45deg);
  color: #1c539d;
  transition: all .3s;
}

.contact_jrbox_ritem:hover i {
  transform: rotate(0);
}

.xqwx_dw {
  position: absolute;
  left: 0;
  top: calc(100% + 10px);
  width: 120px;
  padding: 5px;
  box-shadow: 0 0 5px rgba(0, 0, 0, .2);
  border-radius: 5px;
  overflow: hidden;
  transition: all .4s;
  opacity: 0;
  pointer-events: none;
}

.xqwx:hover .xqwx_dw {
  opacity: 1;
  top: 100%;
  /* 当 .xqwx 被悬停时，把 .xqwx_dw 移回原位置 */
  transform: translateY(6px);
}

.xqwx_dw {
  width: 120px;
  left: 50%;
  margin-left: -60px;
}

.contact_cttxt_fx {
  margin-top: 20px;
}

@media screen and (max-width: 1600px) {
  .contact_ct {
    padding: 60px 0 80px;
  }

  .contact_cttxt_toph {
    margin-bottom: 20px;
  }

  .contact_cttxt_topa {
    margin-bottom: 10px;
  }

  .contact_cttxt_topa i {
    font-size: 22px;
  }

  .contact_bslbbox {
    padding: 40px 30px;
  }

  .contact_jr {
    margin-top: 80px;
  }

  .contact_jrbox {
    height: 600px;
  }

  .contact_jrbox_lh {
    font-size: 40px;
  }

  .contact_jrbox_lp {
    font-size: 18px;
    margin: 20px 0;
  }

  .contact_jrbox_ritem_img img {
    width: 120px;
  }

  .contact_jrbox_ritem_txt {
    height: 45px;
  }
}

@media screen and (max-width: 1400px) {


  .contact_ct {
    padding: 50px 0 60px;
  }

  .contact_cttxt_toph {
    margin-bottom: 10px;
  }

  .contact_cttxt_topa b {
    font-size: 24px;
  }

  .contact_cttxt_topa i {
    font-size: 18px;
  }

  .contact_bslb {
    margin-top: 35px;
  }

  .contact_jr {
    margin-top: 70px;
  }

  .contact_jrbox {
    height: 500px;
  }

  .contact_jrbox_lh {
    font-size: 36px;
  }

  .contact_jrbox_lp {
    font-size: 16px;
    margin: 15px 0;
  }

  .contact_jrbox_lgw .contact_jrbox_lgw_item {
    font-size: 14px;
  }

  .contact_jrbox_lgw {
    padding-top: 20px;
  }

  .contact_jrbox_ritem_img img {
    width: 100px;
  }
}

@media screen and (max-width: 1200px) {
  .contact_ct {
    padding: 40px 0 50px;
  }

  .contact_jrbox {
    height: 400px;
  }

  .container2 {
    padding: 0 60px;
  }

  .contact_jrbox_lh {
    font-size: 32px;
  }
}

@media screen and (max-width: 992px) {
  .contact_ctbox {
    flex-wrap: wrap;
  }

  .contact_ctbox>div {
    width: 100%;
  }

  .contact_cttxt {
    padding: 40px 30px;
  }
}

@media screen and (max-width: 768px) {
  .contact_cttxt {
    padding: 30px 20px;
  }

  .contact_cttxt_topa {
    font-size: 12px;
  }

  .contact_cttxt_topa i {
    font-size: 14px;
  }

  .contact_cttxt_topa b {
    font-size: 18px;
  }

  .contact_cttxt_fx {
    margin-top: 20px;
  }

  .lxlybd_byz {
    height: 50px;
    width: 100%;
  }

  .container2 {
    padding: 0 20px;
  }

  .contact_jrbox {
    flex-wrap: wrap;
  }

  .contact_jrbox>div {
    width: 100%;
  }

  .contact_jrbox_lh {
    font-size: 22px;
  }

  .contact_jrbox_lp {
    margin: 10px 0;
    font-size: 14px;
  }

  .contact_jrbox_ritem_img img {
    width: 80px;
  }

  .contact_jrbox_ritem_txt {
    font-size: 12px;
    height: 35px;
  }

  .contact_jrbox_ritem {
    margin-left: 0;
    margin-right: 15px;
  }
}