@import url(/skin/css/bootstrap.min.css);
@import url(/skin/css/swiper-bundle.min.css);
@import url(../iconfont/iconfont.css);

body {
  background-color: #f4f4f4;

}

* {
  padding: 0;
  margin: 0;
}

ul {
  list-style-type: none;
}

p {
  font-size: 14px;
}

a {
  text-decoration: none;
}

h6 {
  font-size: 14px;
}

.head_tel_right_h6{
  font-size: 16px;
}
/* 轮播图 */
.banner {
  position: relative;
  margin-top: 60px;
  margin-bottom: 40px;
}

.banner_inner {
  display: flex;
  justify-content: center;
  align-items: center;
  background-size: cover;
  background-position: center center;
  background-repeat: no-repeat;
  height: 700px;
}

.banner_inner::before {
  content: "";
  position: absolute;
  background-color: rgba(0, 0, 0, 0.2);
  z-index: 0;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
}

.banner_txt_box {
  position: absolute;
  z-index: 2;
  color: #FFF;

}

.banner_txt {
  width: 50%;
  display: flex;
  justify-content: center;
  align-items: center;
  flex-direction: column;
}

.banner_txt a {
  text-decoration: none;
  display: inline-block;
  font-size: 12px;
  padding: 10px 20px;
  background-color: rgba(0, 0, 0, .2);
  border-radius: 10px;
  color: #FFF;
  transition: all 0.3s linear 0s;
}

.banner_txt a:hover {
  background-color: #FFF;
  color: #000;
}

.banner_btn_txt {}

/* 公司介绍 */
.gsjs {
  background-color: #FFF;
  margin-bottom: 40px;
  padding: 40px;
  border-radius: 5px;
}

.gsjs .gsjs_box_img {
  /* background-color: aquamarine; */
  display: flex;
  justify-content: center;
  text-align: center;

}

.gsjs .gsjs_box_img .img-fluid {
  max-width: 100%;
  border-radius: 5px;
}

.gsjs_box_txt {
  display: flex;
  justify-content: center;
  align-items: center;
  flex-direction: column;
}

.gsjs_box_m {
  /* margin-bottom: 20px; */
}

/* 通用部分 */
.gsjs_box_txt h3,
.product_box_txt h3,
.section_title h3,
.hxys_title h3,
.hxys_text h4,
.hxys_text h5 {
  font-weight: bold;
  margin-bottom: 20px;
  /* color: #000; */
}

.gsjs_box_txt h3 span,
.product_box_txt h3 span,
.section_title h3 span,
.hxys_title h3 span,
.hxys_text h4 span,
.hxys_text h5 span {
  padding: 5px;
  color: #FFF;
  background-color: #007BFF;
  border-radius: 5px;
}

.gsjs_box_txt p {
  text-indent: 2em;
  font-size: 14px;
  color: #787878;
}

.btn-primary {
  width: 100px;
  font-size: 14px;
}

/* 产品介绍（product_box） */
.product_box {
  position: relative;
  padding: 50px 0px 250px 0px;
  background: url(/skin/images/fengjing.jpg);
  background-repeat: no-repeat;
  background-size: cover;
  background-position: center;
}

.product_box::before {
  content: "";
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  z-index: 0;
  background: rgba(0, 0, 0, 0.8);
}

.product_box_txt {
  position: relative;
  z-index: 1;
}

.product_box_txt p {
  color: #d4d4d4;
  margin: 0;
}


/* 产品轮播（product_lb） */
.product_lb {
  /* margin-top: 40px; */
  margin-top: -200px;
  margin-bottom: 40px;
  opacity: 1;
}

/* 显示开关 */
.lb_pc {
  display: block;
}

.lb_phone {
  display: none;
}

/* 第二套图片展示 */
.a_img {
  display: block;
  border-radius: 5px;
  overflow: hidden;
  position: relative;
}

.a_img:hover .a_img_bgimg {
  transform: scale(1);
  opacity: 1;
}

.a_img .a_img_bgimg {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  text-align: center;
  color: #FFF;
  padding: 15px 25px;
  transition: all 0.6s ease 0s;
  transform: scale(0);
  opacity: 0;
}

.a_img .a_img_bgimg::before {
  content: '';
  top: 15px;
  left: 15px;
  right: 15px;
  bottom: 15px;
  position: absolute;
  background-color: #044b96;
  opacity: 0.5;
  z-index: 0;
  pointer-events: none;
}

.a_img .a_img_bgimg .a_img_bgimg_text {
  position: relative;
  z-index: 1;
}

.a_img_bgimg_text {
  overflow: hidden;
  display: -webkit-box;
  -webkit-line-clamp: 3;
  -webkit-box-orient: vertical;

}

.a_img_bgimg_text p {
  font-size: 14px;
}

/* 手机端图片显示 */
.img_phone {
  display: none;
  border-radius: 5px;
  overflow: hidden;
  position: relative;
}

.img_phone::before {
  content: '';
  position: absolute;
  left: 0;
  right: 0;
  bottom: 0;
  height: 20%;
  background-color: rgb(0, 0, 0, .5);
}

.img_phone_title {
  position: absolute;
  bottom: 0;
  /* 距离父容器底部的距离（可自定义） */
  left: 50%;
  /* 水平方向定位到父容器中心 */
  transform: translate(-50%, 0);
  /* 向左偏移自身宽度的50%，实现水平居中 */
}

/* 介绍 */
.section_js {
  background-color: #FFF;
  padding: 40px 20px;
  border-radius: 5px;
  margin-bottom: 40px;
}

.section_inner_box {
  background-color: #000;
  padding: 10px 10px;
  text-align: center;
  color: #FFF;
  border-radius: 5px;
}

.section_inner_box p {
  font-size: 12px;
}

.section_inner_box div:nth-child(1) {
  font-size: 20px;
}

/* :not(:last-child) 选择全部除了最后一个 */
.section_inner_box:not(:last-child) {
  margin-bottom: 25px;
}

.lc p {
  padding: 10px 0;
  margin-bottom: 9px;
  font-size: 14px;
  text-shadow: 4px 4px 2px gray;
}
/* 案例展示 */
.alzs {
  background: url(/skin/images/alzs.jpg);
  position: relative;
  background-size: cover;
}

.alzs::before {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  background-color: rgb(153, 153, 153, .8);
}

/* 第一套图片展示 */
.alzs_cp {
  display: flex;
  justify-content: center;
  align-items: center;
  flex-direction: column;
  /* margin: 1px; */
  border: 1px solid rgba(0, 0, 0, .1);
  border-radius: 5px;
  overflow: hidden;
  transition: all 0.3s linear 0s;
}


.alzs_cp_img {
  overflow: hidden;
}

.alzs_cp img {
  border-radius: 5px 5px 0 0;
  object-fit: cover;
  transition: transform 0.3s linear 0s
}

.alzs_txt {
  width: 100%;
}

.alzs_txt a {
  display: block;
  width: 100%;
  padding: 15px;
  margin: 0;
  text-align: center;
  color: #000;
  background-color: #FFF;
  transition: all 0.3s ease 0s;
  text-overflow: ellipsis;
  overflow: hidden;
  white-space: nowrap;
}

.alzs_cp:hover {
  border: 1px solid #007BFF;
}

.alzs_cp:hover img {
  transform: scale(1.05);
}

.alzs_cp:hover a {
  text-decoration: none;
  background-color: #007BFF;
  color: #FFF;
}

.alzs h3 span {
  padding: 5px;
  background-color: #007BFF;
  color: #FFF;
  border-radius: 5px;
}

/* 核心优势 */
.hxys {
  background: url(/skin/images/hx_bg.jpg);
  background-size: cover;
  padding: 50px 0;
  overflow: hidden;
}

.hxys_999 {
  color: #999;
  margin-bottom: 16px;
}

.hxys-inner {
  padding: 50px 15px;
  background-color: #fff;
  border-radius: 5px;
  overflow: hidden;
}

.text-secondary .hxys_text h4 {
  margin-bottom: 10px;
}

.hxys_text:not(:last-child) {
  margin-bottom: 30px;
}

.hxys_text img {
  border-radius: 5px;

}

.hxys_text span:not(:first-child) {
  font-size: 14px;
}

.hxys_left {
  position: relative;
  justify-content: center;
  align-items: center;
  overflow: hidden;
}

.hxys_left::before {
  content: '';
  position: absolute;
  background-color: rgba(0, 0, 0, 0.5);
  z-index: 0;
  /* top: 0; */
  left: 0;
  right: 0;
  bottom: 0;
  width: 100%;
  height: 50%;
}

.hxys_left_txt {
  position: absolute;
  color: white;
  z-index: 2;
  /* background-color: rgba(0, 0, 0, 0.5); */
  bottom: 0;
  padding: 20px;
}

/* 资讯 */
.zx_box {
  /* position: relative; */
  margin-top: 40px;
  padding: 35px 0;
}

.zx_inner {
  display: flex;
  justify-content: center;
  align-items: center;
  flex-direction: column;
  position: relative;
  margin-bottom: 20px;
}

.zx_inner .t1 {

  font-size: 36px;
  color: #007BFF;
  font-weight: bold;
}

.zx_inner .t2 {
  color: #aaa;
}

.zx_inner .t3 {
  position: absolute;
  font-size: 60px;
  font-weight: 900;
  letter-spacing: 10px;
  top: 0;
  color: #999;
  opacity: 0.05;
}

.zx_txt {
  padding: 20px;
}

.zx_txt a {
  text-decoration: none;
}


.news_img{
    position: relative;
}
.news_img .zx_left_date{
    position: absolute;
    left: 15px;
    bottom: 15px;
}
/* zx-新闻 */
.zx_left {
  /* display: block; */
  width: 100%;
  margin: 0 auto;
  border-radius: 5px;
  overflow: hidden;
  background-color: #FFF;

}

.zx_left_date {
  padding: 10px;
  background-color: #007BFF;
  border-radius: 5px;
  margin: 0 auto;
  text-align: center;
}

.zx_left_date p {
  font-size: 16px;
  color: #FFF;
  margin: 0;
}

.zx_left_text {
  margin: 0 auto;
  padding: 15px;
  text-align: center;
}

.zx_left_text a {
  text-decoration: none;
}
#section_title_span {
  padding: 2px 5px;
  color: #FFF;
  background-color: #007BFF;
  border-radius: 5px;
}
#section_title_span_ly{
  padding: 2px 10px;
  color: #FFF;
  background-color: #007BFF;
  border-radius: 5px;
}
.section_title_h3{
  height: 45px;
  line-height: 45px;
  display: -webkit-box;
  -webkit-box-orient: vertical;
  -webkit-line-clamp: 1;
  overflow: hidden;
}
.zx_left_text_a h3 {
  display: block;
  overflow: hidden;
  white-space: nowrap;
  text-overflow: ellipsis;
  font-size: 20px;
  text-align: left;
  font-weight: bold;
  color: #050505;
}

.zx_left_text p {
  margin-top: 15px;
  padding: 0;
  margin-bottom: 10px;
  font-size: 15px;
  text-align: left;
  overflow: hidden;
  display: -webkit-box;
  -webkit-line-clamp: 2;
  -webkit-box-orient: vertical;
}

.ckxq {
  display: block;
  text-align: left;

}

.ckxq a {
  color: #787878;
}

.ckxq a:hover {
  color: #787878;
}

/* 右侧资讯 */
.news_inner {
  height: 534px;
  overflow: hidden;
  overflow-y: auto
}

.news_inner::-webkit-scrollbar {
  display: none;
}

.news_inner a {
  text-decoration: none;
}

.zx_img {
  /* display: block; */
  display: flex;
  justify-content: center;
  align-items: center;
  width: 100%;
  overflow: hidden;
  /*padding: 30px 0;*/
  border-radius: 5px;
  background-color: #FFF;
}

.zx_text {
  width: 100%;
  height: 175px;
  /* background-color: #FFF; */
}

.zx_right_date {
  width: 50%;
  height: 50%;
  padding: 10px;
  border-radius: 5px;
  background-color: #007BFF;
  text-align: center;
  color: #fff;
}

.zx_right_date p {
  margin: 0;
  font-size: 20px;
}

.zx_right_text {
  width: 100%;
  overflow: hidden;
  display: -webkit-box;
  -webkit-line-clamp: 2;
  -webkit-box-orient: vertical;
}
.zx_right_text span{
    display: block;
    font-size: 14px;
}
.zx_right_text p {
  margin-top: 10px;
  overflow: hidden;
  margin-bottom: 0;
  display: -webkit-box;
  -webkit-line-clamp: 2;
  -webkit-box-orient: vertical;
}
.column_ted{
    display: flex;
}
.column_ted i{
    font-size: 50px;
    flex: 0 0 50px;
    margin-right: 15px;
}
.column_ted  h3{
    font-size: 22px;
    font-weight: bold;
    color: #111;
    margin-bottom: 10px;
}
.column_special{
    background: #F4F9FC;
}

.specia_item{
    background: #FFF;
    margin-bottom: 24px;
    padding: 50px 0;
    border-top: 2px solid transparent;
    box-shadow: 0px 0px 20px rgba(0, 0, 0, 0.1);
    transition: all 0.3s ease 0s;
}

.specia_item:hover{
    border-top: 2px solid #007BFF;
    transform: scale(1.02);
}
.specia_item:hover i{
    color: #FFF;
    background: #007BFF;
}

.specia_item i{
    background: #fff;
    display: flex;
    align-items: center;
    text-align: center;
    justify-content: center;
    height: 100px;
    width: 100px;
    border-radius: 100px;
    border: #ddd solid 1px;
    /*box-shadow: 0px 0px 20px rgba(0, 0, 0, 0.1);*/
    margin: 0 auto;
    font-size: 50px;
    color: #007BFF;
    transition: all 0.3s ease 0s;
}
.specia_item h4{
    font-weight: normal;
    text-align: center;
    font-weight: bold;
    color: #333;
    font-size: 16px;
    padding-top: 10px;
    margin: 0;
}
.first_item{
    border-top: 2px solid #007BFF;
}
.first_item i{
    color: #FFF;
    background: #007BFF;
}
.streamer{
    width: 100%;
    /*height: 200px;*/
    background: #007BFF;
}
.streamer_inner{
    padding: 60px 0;
}
.streamer_inner h3{
    font-weight: bold;
    color: #FFF;
}
.streamer_inner h6{
    color: #FFF;
}
.streamer_right{
    width: 100%;
    height: 100%;
    display: flex;
    align-items: center;
    justify-content: flex-end;
}
.streamer_a{
    display: inline-block;
    padding: 15px 30px;
    background: #FFF;
    color: #007BFF;
    transition: all 0.4s linear 0s;
}
.streamer_a:hover{
    background: #044b96;
    color: #FFF;
}

.hxys_title{
    margin-top: 5px;
}
.mcjg_case{
    
}
.mcjg_case_a{
    position: relative;
    display: block;
    text-decoration: none;
    color: #FFF;
}
.mcjg_case_a:hover{
    color: #FFF;
}
.mcjg_case_a_p{
    position: absolute;
    bottom: 0;
    left: 50%;
    transform: translate(-50%,0);
}
.mcjg_case_a::before{
    content: '';
    position: absolute;
    top: 80%;
    left: 0;
    right: 0;
    bottom: 0;
    z-index: 0;
    background: rgba(0,0,0,.5);
}
.mcjg_product{
    position: relative;
    border: 1px solid #787878;
    background: url(/skin/images/1709274597a1f389.jpg) no-repeat center;
    background-size:cover;
    padding: 40px;
}
.mcjg_product::before{
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    z-index: 0;
    background: rgba(0,0,0,.5);
}
.mcjg_product h3{
    color: #FFF;
}
.mcjg_product_title_6{
    font-size: 18px;
    color: #FFF;
    margin-bottom: 16px;
}
.mcjg_product_title{
    position: relative;
    z-index: 2;
    margin-bottom: 8px;
}
.mcjg_product_img{
    /*border: 1px solid #000;*/
}
.mcjg_product_img_text{
    background: #FFF;
    padding: 40px 15px;
    text-align: center;
}
.mcjg_product_img_text h4{
    font-size: 24px;
    font-weight: bold;
    color: #007BFF;
}
.mcjg_product_img_text h6{
    color: #787878;
}
.mcjg_news{
    display: block;
    padding: 30px;
    color: #333;
    box-shadow: 0 0 8px 0 #e4dede;
    transition: all 0.3s linear 0s;
}
.mcjg_news:hover{
    color: #333;
    /*transform: translateY(-5px);*/
    box-shadow: 0 0 13px 0 #bbb7b7;
}
.mcjg_news:hover .mcjg_news_describe h4{
    color: #044b96;
}
.mcjg_news:hover .mcjg_news_describe_span{
    border: 1px solid #007BFF;
    color: #007BFF;

}
.mcjg_news_describe h4{
    color: #007BFF;
    font-weight: bold;
    overflow: hidden;
    text-overflow: ellipsis;
    white-space: nowrap;
    transition: all 0.3s linear 0s;
}
.mcjg_news .mcjg_news_img{
    position: relative;
}
.mcjg_news_date{
    position: absolute;
    display: block;
    bottom: 35px;
    left: 10px;
    padding: 5px 10px;
    color: #FFF;
    background: #007BFF;
    border-radius: 5px;
    font-size: 12px;

}
  .mcjg_news_describe p{
    overflow: hidden;
    display: -webkit-box;
  -webkit-line-clamp: 4;
  -webkit-box-orient: vertical;
  }
.mcjg_news_describe_span{
    display: inline-block;
    padding: 5px 10px;
    font-size: 14px;
    border: 1px solid #bbb7b7;
    border-radius: 5px;
    transition: all 0.3s linear 0s;
}

.issue_bg{
    margin-top: 5px;
}
.issue_box{
    display: flex;
    justify-content: flex-start;
    align-items:flex-start;
    border: 1px solid #ebebeb;
    border-radius: 5px;
}
.issue{
    /*padding: 15px 0;*/
}
.issue ul{
    padding: 20px 0 20px 20px;
    margin: 0;
    border-radius: 5px;
    background: #F8F8F8;
}
.issue li{
    padding: 15px 10px;
    color: #666;
    border-radius: 5px 0px 0px 5px;
    background: #F8F8F8;
}
.issue li:hover{
    cursor: pointer;
    background: #FFF;
}
.answer{
    padding: 20px;
    background: #FFF;
    width: 100%;
    height: 100%;
}
.answer h5{
    font-weight: bold;
    margin-bottom: 20px;
}
.answer h5 span{
    display: inline-block;
    padding: 5px;
    margin-right: 10px;
    font-weight: 400;
    border-radius: 5px;
    background: #007BFF;
    color: #FFF;
}
.answer p{
    font-size: 16px;
}
.answer p span{
    display: inline-block;
    font-size: 20px;
    padding: 2px 5px;
    margin-right: 10px;
    border-radius: 5px;
    background: #063F94;
    color: #FFF;
}
.answer2,.answer3,.answer4{
    display: none;
}
/*移动端*/
 .qa-list {
    list-style: none;
}
.qa-list li div{
    font-size: 14px;
}
.qa-question {
    padding: 15px 20px;
    background: #f5f7fa;
    border-radius: 8px;
    margin-bottom: 10px;
    cursor: pointer;
    transition: background-color 0.3s ease;
    position: relative;
}

.qa-question:hover {
    background: #e9ecef;
}

.qa-answer {
    padding: 15px 20px;
    background: white;
    border-radius: 8px;
    margin-bottom: 10px;
    display: none;
    border: 1px solid #dee2e6;
    line-height: 1.6;
    color: #495057;
}

.qa-question.active {
    background: #007bff;
    color: white;
}

.qa-question.active + .qa-answer {
    display: block;
}

/* 箭头图标样式 */
/*.qa-question::after {*/
/*    content: "▶";*/
/*    position: absolute;*/
/*    right: 20px;*/
/*    font-size: 12px;*/
/*    transition: transform 0.3s ease;*/
/*}*/

/*.qa-question.active::after {*/
/*    transform: rotate(90deg);*/
/*}*/
.mobu_bg{
    background: url(/skin/images/mobu_color.jpg) no-repeat center;
    background-size: cover;
    position:relative;
    padding: 100px;
    margin-bottom: 3rem !important;
}
.mobu_bg::before{
    content: '';
    position: absolute;
    top: 0;
    left: 50%;
    right: 0;
    bottom: 0;
    background: rgba(0,0,0,.5);
    z-index: 0;
}
.mobu_text{
    position: absolute;
    top: 50%;
    right: 0;
    transform: translate(-100%,-50%);
    text-align: center;
    color: #FFF;
    z-index: 1;
}
.mobu_text h3{
    font-size: 36px;
    font-weight: bold;
}
.mobu_text h6{
    font-weight: bold;
}
.mobu_text_span{
    display: inline-block;
    color: #007bff;
}
.mobu_text_tel{
    display: block;
    text-decoration: none;
    padding: 5px 15px;
    background: #FFF;
    color: #007bff;
    font-size: 24px;
    border-radius: 15px;
}
.mobu_text_tel:hover{
    color: #007bff;
    cursor: pointer;
}
.mobu_text_tel i{
    margin-right: 5px;
    font-size: 24px;
}

.mcjg_banner{
    display: flex;
    justify-content: flex-start;
    align-items: center;
    height: 700px;
    
}
.mcjg_banner_text{
    position: relative;
    width: 60%;
    padding: 100px 40px;
    color: #FFF;
    z-index: 99;
}
.mcjg_banner_text::before{
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    /* 线性渐变：从顶部深色开始，中间变浅，底部透明 */
    background-image: linear-gradient(
        to right,
        rgba(0, 123, 255, 0.8) 0%,    /* 顶部深色 */
        rgba(0, 123, 255, 0.3) 50%,   /* 中间浅色 */
        transparent 100%         /* 底部透明 */
    );
    z-index: 0;
}
.mcjg_banner_text_h3,.mcjg_banner_text_h3_2{
    position: relative;
    font-size: 50px;
    font-weight: bold;
    z-index: 99;
}
.mcjg_banner_text_h3_2{
    padding-bottom: 40px;
    text-indent: 2em;
}
.mcjg_banner_text_h6{
    position: relative;
    font-size: 20px;
    z-index: 99;
    font-weight: bold;
}
.mcjg_banner_text_h6 a{
    margin-top: 20px;
    display:inline-block;
    color: #007bff;
    font-size: 20px;
    background: #FFF;
    padding:15px 20px;
    border-radius: 10px;
    font-weight: bold;
}
.mcjg_banner_text_h6 a:hover{
    color: #007bff;
}
.mcjg_banner_text_h6 a i{
    font-size: 20px;
    margin-right: 5px;
}
.mcjg_banner2_text_h3{
    position: relative;
    font-size: 36px;
    font-weight: bold;
    z-index: 99;
}
.mcjg_banner2_text_h3_2{
    position: relative;
    font-size: 50px;
    font-weight: bold;
    z-index: 99;
    white-space: nowrap;
    margin-bottom: 40px;
}
.mcjg_banner3_text_h3_2{
     position: relative;
    font-size: 50px;
    font-weight: bold;
    z-index: 99;
    white-space: nowrap;
    margin-bottom: 40px;
}
.new_mcjg_banner{
    background: url(/skin/images/mcjg_banner.jpg) no-repeat;
    background-size: cover;
    /*height: 500px;*/
    display: flex;
    justify-content: flex-start;
    align-items: center;
    margin-top: 70px;
    position: relative;
}
.new_mcjg_banner::before{
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: rgba(0,0,0,.3);
}
.new_mcjg_banner_text{
    position: relative;
    width: 40%;
    /*height: 300px;*/
    max-height: 500px;
    padding: 130px 0 200px 0;
}
#new_mcjg_banner_text_bubble_h4{
    position: relative;
    color: #fff;
    margin-bottom: 15px;
    /*font-weight: 400;*/
    display: inline-block;
    /*background: #2E2751;*/
    background: #2E2751;
    padding: 8px 20px;
    font-size: 16px;
}

#new_mcjg_banner_text_bubble_h4:before {
    content: "";
    position: absolute;
    left: 0;
    bottom: -8px;
    border-top: 8px solid #2E2751;
    border-left: 10px solid transparent;
    border-right: 10px solid transparent;
}
.new_mcjg_banner_text_keywords h1{
     position: relative;
    font-size: 45px;
    color: #FFF;
    margin-bottom: 50px;
    font-weight: bold;
}
.new_mcjg_banner_text_keywords h1::before {
    content: "";
    position: absolute;
    left: 0;
    width: 50px;
    height: 6px;
    background: #f3a712;
    bottom: -25px;
}
.new_mcjg_a1,.new_mcjg_a2{
    display: inline-block;
    font-size: 15px;
    padding: 15px 30px;
    color: #FFF;
    margin-right: 10px;
    background: #007bff;
    transition: all 0.3s linear 0s;
}
.new_mcjg_a2{
    background: #063F94;
}
.new_mcjg_a1:hover,.new_mcjg_a2:hover{
    color: #FFF;
    background: #2E2751;
}



.gcjg_banner{
    background: url(/skin/images/gcjg_banner.jpg) no-repeat;
    background-size: cover;
    height: 500px;
    margin-top: 70px;
    position: relative;
}
.gcjg_banner::before {
    content: "";
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    /* 构建梯形遮罩：上宽下窄（倒梯形），覆盖图片上半区域 */
    background: #000; /* 遮罩颜色（示例为黑色，可改透明） */
    clip-path: polygon(55% 0,100% 0,100% 100%,50% 100%); /* 梯形裁剪路径 */
    background: rgba(0,0,0,.5); /* 透明度（可选） */
    pointer-events: none; /* 不影响图片交互 */
    backdrop-filter: blur(5px);
    z-index: 0;
}
.gcjg_banner_text{
    position: relative;
    z-index: 2;
    color: #FFF;
    /*border: 1px solid #999;*/
    display: flex;
    justify-content: flex-end;
    align-items: center;
    height: 500px;
}
.gcjg_banner_text_right{
    width: 50%;
    /*border: 1px solid #999;*/
    text-align: center;
    padding-left: 100px;
}
.gcjg_banner_text_h1,.gcjg_banner_text_h3,.gcjg_banner_text_h3_2{
    font-weight: bold;
}
.gcjg_banner_text_h3{
    margin-bottom: 20px;
}
.gcjg_banner_text_h3_2{
    font-size: 28px;
}
.gcjg_banner_text_span{
    color: #007bff;
    padding: 10px 20px;
    clip-path: polygon(5% 0,100% 0,95% 100%,0 100%); /* 梯形裁剪路径 */
    background: #FFF /* 透明度（可选） */
}

.gcjg_banner_text_h6 a{
    margin-top: 20px;
    display:inline-block;
    color: #007bff;
    font-size: 20px;
    background: #FFF;
    padding:15px 20px;
    border-radius: 10px;
    font-weight: bold;
}
.gcjg_banner_text_h6 a:hover{
    color: #007bff;
}

.gcjg_introduce{
    /*border: 1px solid  #dddddd;*/
    padding: 50px;
    /*box-shadow: 0,0,8,0,#dddddd;*/
    box-shadow: 0px 0px 24px 0px rgba(0, 0, 0, 0.1);
}
.gcjg_introduce_title{
    display: flex;
    justify-content: flex-start;
    align-items: center;
    padding-bottom: 10px;
    border-bottom: 1px solid  #dddddd;
}
.gcjg_introduce_title_h4{
    color: #007bff;
    font-weight: bold;
    margin: 0;   
}
.gcjg_introduce_content{
    padding-top: 10px;
}
.gcjg_introduce_title_p{
    margin:0;
    color: #999999;
}
.gcjg_introduce_title i{
    color: #007bff;
    margin-right: 10px;
    font-size: 30px;
    
}
.gcjg_introduce_content_p{
    font-size: 16px;
    color: #808080;
}







.gcjg_adv{
    background: url(/skin/images/gcjg_xjb.jpg) no-repeat;
    background-size: cover;
    position: relative;
    color: #FFF;
}
.gcjg_adv::before{
    content: '';
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    position: absolute;
    background-image: linear-gradient(to right, rgba(4, 75, 150,0.8) 50%, rgba(0, 0, 0, 0.3) 50%);
    backdrop-filter: blur(5px);
    z-index: 0;
}
.gcjg_adv_h2{
    font-weight: bold;
}
.gcjg_img_youdian h6{
    font-weight: bold;
    font-size: 24px;
}
.gcjg_adv_box{
    padding: 50px 0;
}
.gcjg_i_box{
    text-align: center;
    margin-top:12px;
}
.gcjg_i_left_h3,.gcjg_i_right_h3,.gcjg_i{
    display: inline-block;
}
.gcjg_i_left_h3,.gcjg_i_right_h3{
    font-size: 16px;
    padding-top: 10px;
    padding-bottom: 10px;
    border-top: 1px solid #dddddd;
    border-bottom: 1px solid #dddddd;
}
.gcjg_i{

}

.gcjg_i i{
    font-size: 27px;
    padding: 0 50px;
}

.gcjg_img_youdian{
}
.gcjg_img_youdian i{
    font-weight: 400;
    font-size: 24px;
}
.gcjg_img_p{
    
}
.gcjg_img_photo{
    margin-top: 20px;
}
.gcjg_img_hr{
    border: 0;
    height: 2px;
    background: #007bff;
    width: 50px;
    margin: 16px 0;
    position: relative;
    left: 0;
    transition: width 0.3s cubic-bezier(0,0,1,1);
    cursor: pointer;
}
.gcjg_lxcj{
    display: inline-block;
    color: #FFF;
    padding: 5px 15px;
    border: 1px solid #FFF;
}
.gcjg_lxcj:hover{
    color: #FFF;
}


.gcjg_tg{
    background: url(/skin/images/gcjg_tg.jpg) no-repeat;
    background-size: cover;
    position: relative;
}
.gcjg_tg::before{
    content: '';
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;    
    clip-path: polygon(0 0,53% 0,47% 100%,0 100%);
    background: #000;
    position: absolute;
}
.gcjg_tg_left{
    padding: 50px 0;
}
.gcjg_tg_h3{
    color: #FFF;
    font-weight: bold;
    font-size: 24px;
}
.gcjg_tg_h6{
    display: inline-block;
    color: #FFF;
    padding: 10px 10px;
    border-radius: 5px;
    background: #007bff;
}
.gcjg_tg_right{
    padding: 50px 0;
    text-align: right;
}
.gcjg_tg_right_a{
    display: inline-block;
}
.gcjg_tg_right_a_d{
    display: flex;
    justify-content: flex-end;
    align-items: center;
    background: rgba(0,0,0,.7);
    border-radius: 50px;
    padding: 0 20px;
    color: #FFF;
}
.gcjg_tg_right_a_i i{
    margin: 10px;
    font-size: 50px;
}
.gcjg_tg_h6_2{
    margin: 0;
    text-align: left;
    font-size: 16px;

}
.gcjg_tg_h3_2{
    text-align: left;
    font-size: 36px;
    font-weight: bold;
    margin: 0;
    color: #007bff;
}

.gcjg_con{
    display: flex;
    justify-content: space-between;
    align-items: center;
    flex-wrap: wrap;
}
.gcjg_lc{
    display: inline-block;
    padding: 0 56px;
    /*border: 2px solid #268dfa;*/
    /*box-shadow: 0 0 13px 0 #e4dede;*/
    border-radius: 5px;
    text-align: center;
    transition: all 0.3s linear 0s;
    background: #FFF;
}
.gcjg_lc i{
    color: #007bff;
    font-size: 50px;
}
.gcjg_lc_bg{
    background: #F4F9FC;
    padding: 50px 0;
}

.gcjg_lc:hover{
    /*border: 2px solid #044b96;*/
    background: #044b96;
}
.gcjg_lc:hover i{
    color: #FFF;
}
.gcjg_lc:hover p{
    color: #FFF;
}






.gcjg_news_a{
    display: block;
    padding: 30px 0;
    border-bottom: 1px solid rgba(221, 221, 221, 1);
}
.gcjg_news{
    padding: 32px 0;
}
.gcjg_news_date{
    color: #007bff;
    font-size: 16px;
    margin-bottom: 8px;
    font-weight: bold;
}
.gcjg_news_title{
    color: #000;
    font-size: 28px;
    font-weight: bold;
    overflow: hidden;
    display: -webkit-box;
    -webkit-line-clamp: 1;
    -webkit-box-orient: vertical;
}
.gcjg_news_description{
    color: #412915;
    font-size: 18px;
    overflow: hidden;
    display: -webkit-box;
    -webkit-line-clamp: 4;
    -webkit-box-orient: vertical;
}
.gcjg_news_hr{
    border: 0;
    height: 2px; /* 线条高度 */
    background: #007bff; /* 深灰主色 */
    width: 50px; /* 初始宽度 */
    margin: 20px 0; /* 垂直间距，水平靠左 */
    position: relative; /* 定位基准 */
    left: 0; /* 左边缘固定 */
    transition: width 0.3s cubic-bezier(0,0,1,1); /* 弹性过渡 */
    cursor: pointer; /* 手势图标 */
}
.gcjg_news_a:hover .gcjg_news_hr{
    width: 100%; /* 目标宽度 */
}

.gcjg_news_img{
    border-radius: 50px 0 0 0 ;
    transition: all 0.3s linear 0s;
}
.gcjg_news_a:hover .gcjg_news_img{
    transform: scale(1.07);
}
.gcjg_news_img_box{
    border-radius: 50px 0 0 0 ;
    overflow: hidden;
}
.gcjg_news_h6{
    color: #999;
    margin: 0;
}
@media (max-width:1200px) {
  .product_box {
    padding: 50px 0px 200px 0px;
  }

  .product_lb {
    margin-top: -150px;
    margin-bottom: 40px;
    opacity: 1;
  }

  .section_inner_box {
    background-color: #000;
    padding: 5px 10px;
    text-align: center;
    color: #FFF;
    border-radius: 5px;
  }

  .section_inner_box div:nth-child(1) {
    font-size: 20px;
  }

  /* :not(:last-child) 选择全部除了最后一个 */
  .section_inner_box:not(:last-child) {
    margin-bottom: 15px;
  }

  .lc p {
    padding: 9px 0;
    margin-bottom: 5px;
    font-size: 14px;
    text-shadow: 4px 4px 2px gray;
  }

  .zx_left_date p {
    font-size: 16px;
  }

  .zx_right_text {
    padding-top: 10px;
  }

  .zx_right_date p {
    margin: 0;
    font-size: 16px;
  }

  .zx_right_text p {
    margin: 0;
    font-size: 14px;
  }
   .gcjg_banner_text_right{
     padding-left: 80px;
  }
   .gcjg_banner_text_h3_2{
     font-size: 20px;
  }
  .gcjg_lc{
    padding: 0px 40px;
  }
  .new_mcjg_banner_text {
      width: 47%;
  }
}

@media (max-width:991px) {
  .gsjs{
        padding-left: 15px;
        padding-right: 15px;
    }
  h3 {
    font-size: 24px;
  }

  .banner_txt {
    width: 66%;
  }

  .section_title {
    padding-top: 6px;
  }

  .section_title_h3 {
    font-size: 21px;
  }

  .product_lb {
    margin-top: -170px;
    margin-bottom: 40px;
    opacity: 1;
  }

  .cpzs_txt a {
    font-size: 14px;
  }

  /* :not(:last-child) 选择全部除了最后一个 */
  .section_inner_box:not(:last-child) {
    margin-bottom: 30px;
  }

  .lc p {
    padding: 9px 0;
    margin-bottom: 2px;
    font-size: 14px;
    text-shadow: 4px 4px 2px gray;
  }

  .footer_box {
    padding: 50px;
  }

  .zx_left_date p {
    font-size: 16px;
  }

  .zx_right_text {
    padding-top: 10px;
  }


  .zx_img {
    width: 100%;
    margin: 0 auto;
  }

  .zx_right_date {
    width: 35%;
  }

  .zx_right_date p {
    margin: 0;
    font-size: 16px;
  }

  .zx_right_text p {
    margin: 0;
    font-size: 14px;
  }

  .mobu_text{
      left: 50%;
      transform: translate(-50%,-50%);
  }
 .gcjg_banner_text_right{
     padding-left: 80px;
 }
 .gcjg_banner_text_h3_2{
     font-size: 16px;
 }
 .gcjg_banner_text_right{
     padding-left: 50px;
 }
 .gcjg_banner_text_span {
     padding: 5px 15px;
 }
.gcjg_banner_text_h6 a{
    font-size: 16px;
    padding: 10px 15px;
 }
 .gcjg_lc {
        padding: 0px 16px;
 }
 .new_mcjg_banner_text{
     width: 63%;
 }
}

@media (max-width:768px) {
  .banner_txt_up h1 {
    font-size: 24px;
  }

  .banner_txt_up p {
    font-size: 12px;
  }

  .product_lb {
    margin-top: -160px;
    margin-bottom: 40px;
    opacity: 1;
  }

  .cpzs_cp {
    width: 80%;
    margin: 0 auto;
  }



  .zx_left_date p {
    font-size: 16px;
  }

  .zx_right_text {
    padding-top: 10px;
  }

  .zx_img {
    width: 100%;
  }

  .zx_right_date {
    width: 45%;
  }

  .zx_right_date p {
    margin: 0;
    font-size: 16px;
  }

  .zx_right_text p {
    margin: 0;
    font-size: 14px;
  }
  .mobu_text h3{
     font-size: 24px;
  }
  .mobu_text h6 {
      font-size: 14px;
  }
   .mobu_text .mobu_text_tel{
      display: inline-block;
     font-size: 18px; 
     padding: 10px ;
  }
  .gcjg_banner_text_right{
      width: 100%;
  }
  .gcjg_lc {
        padding: 0px 22px;
 }
 .gcjg_lc i {
    font-size: 35px;
 }
 .gcjg_lc_p{
     font-size: 14px;
 }
 .gcjg_tg_left{
     padding-bottom: 0;
 }
 .gcjg_tg_right{
     text-align: center;
 }
 .gcjg_tg_left{
     text-align: center;
 }

}
@media (min-width: 430px) and (max-width: 768px) {
 .gcjg_kaiguan{
    display: none;
 }
}
@media (min-width:430px){
.qa-list{
      display: none;
  }
.issue_box{
    display: flex;
 }
}
@media (max-width:430px) {
  h3 {
    font-size: 24px;
  }
  .hxys_title h3{
      font-size: 24px;
  }
  .hxys_999{
      font-size: 14px;
  }
  .mcjg_case_a_p{
      margin-bottom: 5px;
  }
  .banner_inner .img-fluid {
    width: 100%;
    height: 100%;
  }

  .banner_txt {
    width: 100%;
  }

  .product_lb {
    margin-top: -170px;
    margin-bottom: 40px;
    opacity: 1;
  }

  .a_img {
    display: none;
  }

  .img_phone {
    display: block;
  }

  .hxys_text h5 {
    margin-bottom: 10px;
  }

  .hxys_left h4 {
    margin-bottom: 10px;
    font-size: 18px;
  }


  .hxys_left_txt {
    padding: 5px 15px 5px 5px;
  }

  .zx_inner .t1 {
    font-size: 28px;
  }

  .zx_left_date p {
    font-size: 16px;
  }

  .zx_right_text {
    padding: 0;
  }

  .zx_img {
    width: 100%;
  }

  .zx_right_date {
    width: 85%;
  }

  .zx_right_date p {
    margin: 0;
    font-size: 16px;
  }

  .zx_left_text_a h3 {
    padding-top: 5px;
  }

  .zx_right_text p {
    margin: 0;
    padding-top: 7px;
    padding-right: 10px;
    font-size: 14px;
  }
  .zx_box {
    margin: 0;
  }
  .mobu_text{
    transform: translate(-50%, -50%)
  }
  .mobu_text h3{
    font-size: 24px;   
  }
  .mobu_text h6 {
      font-size: 14px;
      padding: 0 10px;
  }
  .mobu_text_tel i{
    font-size: 16px;   
  }
   .mobu_text .mobu_text_tel{
      padding: 5px 10px;
      font-size: 14px;
  }
  .column_ted i{
      font-size: 35px;
  }
  .column_ted h3 {
    font-size: 18px;
  }
  .specia_item{
      padding: 15px 0;
  }
  .specia_item i{
    height: 50px;
    width: 50px;
    font-size: 24px
  }
  .specia_item h4{
      font-size: 14px;
  }
  .qa-list{
      display: block;
  }
  .issue_box{
    display: none;
 }
.mcjg_product h3 {
    font-size: 24px;
}
.mcjg_product_title_6 {
    font-size: 14px;
}
.mcjg_product_img_text h4 {
    font-size: 18px;
}
.mcjg_product_img_text h6 {
    font-size: 12px;
}
.mcjg_news_describe h4{
    font-size: 20px;
}
.mcjg_news_describe_span{
    font-size: 12px;
}
.mcjg_news_describe p{
    font-size: 12px;
    overflow: hidden;
    display: -webkit-box;
  -webkit-line-clamp: 4;
  -webkit-box-orient: vertical;
  }
.mcjg_banner{
    height: 500px;
}
.mcjg_banner_text_h3, .mcjg_banner_text_h3_2{
    font-size: 31px;
}
.mcjg_banner_text_h3_2{
    text-indent: 0;
}
.mcjg_banner_text_h3_2{
    padding-bottom: 20px;
}
.mcjg_banner_text_h6 {
    font-size: 12px;
}
.mcjg_banner_text {
    width: 100%;
    padding: 45px 20px;
}

.mcjg_banner_text_h6 a{
    margin-top: 0;
    font-size: 14px;
    color: #FFF;
    padding: 0;
    background: transparent;
}
.mcjg_banner_text_h6 a i {
    font-size: 14px;
}
.mcjg_banner2_text_h3 {
    font-size: 20px;   
}
.mcjg_banner2_text_h3_2 {
    margin-bottom: 20px;
    font-size: 28px;
    white-space:normal;
}
.mcjg_banner3_text_h3_2{
    font-size: 30px;
    white-space:normal;
    margin-bottom: 20px;
}
.new_mcjg_banner_text{
    width: 100%;
}
#new_mcjg_banner_text_bubble_h4{
    font-size: 12px;
}
.new_mcjg_banner_text_keywords h1{
    font-size: 27px;
}
.new_mcjg_banner_text_keywords_a{
    text-align: center;
}
.new_mcjg_a1, .new_mcjg_a2{
    font-size: 12px;
    padding: 10px 20px;
}
.gcjg_banner_text_right{
    width: 100%;
    padding: 0;
}
.gcjg_banner_text_h1{
    margin-bottom: 16px;
    font-size: 24px;
}
.gcjg_banner_text_h3{
    font-size: 18px;
}
.gcjg_banner_text_h3_2{
    font-size: 12px;
}
.gcjg_banner_text_span {
    padding: 5px 15px;
}
.gcjg_banner_text_h6 a{
    font-size: 12px;
    padding: 5px 15px;
}
.gcjg_news_title{
    font-size: 20px;
}
.gcjg_news_description{
    font-size: 12px;
}
.mb-430{
    margin-bottom: 1.5rem !important;
}
.gcjg_tg_h3{
    font-size: 24px;
}
.gcjg_tg_h6{
    font-size: 14px;
}
.gcjg_tg_h3_2{
    font-size: 20px;
}
.gcjg_tg_h6_2{
    font-size: 12px;
}
.gcjg_tg_right_a_d{
    padding: 5px 10px;
}
.gcjg_tg_right_a_i i{
    font-size: 35px;
}
.gcjg_tg_right{
    padding-top: 0;
    padding-bottom: 50px;
}
.gcjg_tg_left {
    padding: 50px 0 30px 0;
}
.gcjg_lc i{
    color: #007bff;
}
.gcjg_adv_h2{
    font-size: 24px;
}
.gcjg_img_youdian h6{
    font-size: 20px;
}
.gcjg_introduce_title i{
    font-size: 20px;
}
.gcjg_introduce_title_h4{
    font-size: 16px;
}
.gcjg_introduce_content_p{
    font-size: 14px;
}
.gcjg_lc {
        padding: 0px 35px;
}
}