#certify {
  position: relative;
  margin-top: 80px;
  margin-bottom: 70px;
}

/* 核心：中间大图尺寸 817×499 */
#certify .swiper-slide {
  width: 817px !important;
  height: 499px !important;
  background: #fff;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  overflow: hidden;
}

#certify .swiper-slide img{
  display: block;
  width: 100%;
  height: 100%;
  object-fit: cover; /* 图片不变形 */
}

/* 默认隐藏所有文字 */
#certify .swiper-slide p {
  line-height: 64px;
  padding-top: 0;
  text-align: center;
  color: #fff;
  font-size: 24px;
  margin: 0;
  position: absolute;
  background: rgb(0 0 0 / 30%);
  left: 0;
  width: 100%;
  bottom: 0;
  display: none; /* 默认隐藏 */
  z-index: 888;
  cursor: pointer;
}

#certify .swiper-slide-active p {
  display: block !important;
}
#certify .swiper-slide-active:hover p{
     background: rgb(0 0 0 / 50%);
}
#certify .swiper-button-prev {
  left: -48px;
  width: 26px;
  height:51px;
  background: url(/skin/zgw/images/leftjt.png) no-repeat center;

}
#certify .swiper-button-prev:hover {
    background: url(/skin/zgw/images/leftjth.png) no-repeat;
}
#certify .swiper-button-next {
  right: -48px;
  width: 26px;
  height: 51px;
  background: url(/skin/zgw/images/rightjt.png) no-repeat center;

}
#certify .swiper-button-next:hover {
  background: url(/skin/zgw/images/rightjth.png) no-repeat center;
}
/* 通用板块标题 */
.section-title {
    font-size: 30px;
    line-height: 30px;
    padding-bottom: 23px;
    border-bottom: solid 1px #e7e7e7;
    font-weight: bold;
    display: flex;
    justify-content: space-between;
    align-items: center;
}
.section-title a.more {
    font-size: 16px;
    color: #666666;
    font-weight: normal;
}
.section-title a.more:hover{color:#dc0816;}
/* GEO成果 */
.sectiontwo {
    margin-top: 70px;
}
/*瑞丽深度开始*/
.flash4 {
    margin: 32px auto 0px;
    position: relative;
    overflow: hidden;
}
.flash4 ul {
    display: flex;
    padding: 0;
    margin: 0;
    list-style: none;
}
.flash4 ul li {
    width: 185px;
    height: 518px;
    position: relative;
    overflow: hidden;
    cursor: pointer;
    box-sizing: border-box;
}
.big,.small {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    transition: -webkit-transition: all 0.8s ease;
    transition: all 0.8s ease;
}
.small {
    /* display: block;
    */opacity: 1;
}
.big {
    /* display: none;
    */opacity: 0;
}
.hover .small {
    /* display: none;
    */opacity: 0;
}
.hover .big {
    /* display: block;
    */ opacity: 1;
}
.flash4 ul li.hover {
    z-index: 10;
    box-shadow: 0 5px 20px rgba(0,0,0,0.2);
}
.imgTop img {
    width: 100%;
    display: block;
}
.imgCen {
    text-align: center;
    padding: 28px 15px;
    font-size: 14px;
    font-size: 24px;
    font-weight: bold;
    display: flex;
    justify-content: center;
    align-items: center;
    color: #fff;
    writing-mode: vertical-rl;
    /* 文字竖排 */
}
.flash4 ul li.hover .imgCen,.flash4 ul li.hover .imgCen2 h3{font-weight: bold;}
.imgCen2,.imgCen {
    position: absolute;
    width: 100%;
    top: 0px;
    left: 0px;
    z-index: 888;
}
.imgCen2 {
    padding: 0px 47px;
    bottom: 48px;
    top: initial;
}
.imgCen2 h3 {
    font-size: 24px;
    font-weight: bold;
    color: #fff;
}
.imgCen2 p {
    font-size: 18px;
    color: #ffffff;
    line-height: 36px;
}
.imgTop {
  position: relative;
}
.othergeo{display: none;}
.othergeo span{ font-size: 14px!important;color: #adadad!important;line-height:22px!important;}
/* 黑色遮罩：绝对定位覆盖整个图片 */
.imgTop::after {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background: rgba(0, 0, 0, 0.5); /* 黑色半透明遮罩，0.5是透明度 */
  z-index: 1; /* 让遮罩在图片上方 */
  pointer-events: none; /* 不影响点击图片 */
}
/* 最新动态 + AI查询 */
.sectionthree {
    margin: 62px auto 0px;
    display: flex;
    justify-content: space-between;
}
.news-ai-wrap {
}
.ai-query .section-title {
    position: relative;
    border-bottom: 0px;
}
.ai-query .search-box {
    display: flex;
    position: absolute;
    right: 0px;
    top: -12px;
    height: 48px;
    width: 73%;
}
.ai-query .search-box input {
    flex: 1;
    height: 100%;
    border: 1px solid #dbdbdb;
    padding: 0 10px;
    border-radius: 5px 0px 0px 5px;
    font-size: 16px;
}
.ai-query .search-box input::-webkit-input-placeholder {
    color: #666666;
    font-size: 16px;
}
.ai-query .search-box input::-moz-placeholder {
    color: #666666;
    opacity: 1;
    /* 防止 Firefox 变淡 */
    font-size: 16px;
}
.ai-query .search-box input::-ms-input-placeholder {
    color: #666666;
    font-size: 16px;
}
.ai-query .search-box input::placeholder {
    color: #666666;
    font-size: 16px;
}
.ai-query .search-box button {
    width: 113px;
    height: 100%;
    background: #dcdcdc url(../images/search_ico.png) no-repeat 22px center;
    border: 1px solid #dbdbdb;
    cursor: pointer;
    font-size: 18px;
    padding-left: 57px;
    text-align: left;
    color: #333333;
    border-radius: 0px 5px  5px 0px;
}
.ai-query .search-box button:hover{background: #dc0816  url(../images/search_icobai.png) no-repeat 22px center;border: 1px solid #b1a7a7;color:#fff;}
.ai-query .info {
    padding: 23px 18px 48px;
    font-size: 15px;
    line-height: 30px;
    color: #5c5c5c;
    height: 740px;
    border: solid 1px #e7e7e7;
    border-radius: 5px;
   overflow-y: scroll;
}
.ai-query .info  strong {
    color: #5c5c5c;
}
.info_tit {
    display: inline-block;
    background: #eeeeee;
    font-size: 16px;
    color: #333333;
    height: 41px;
    line-height: 41px;
    padding: 0px 16px;
    border-radius: 12px;
    float: right;
    clear: both;
    margin-bottom: 16px;
}
.info_desc {
    font-size: 15px;
    color: #333333;
    background: url(../images/info_desc_ico.png) no-repeat left center;
    padding-left: 34px;
    margin-bottom: 17px;
}
/* 媒体报道 */
.sectionfour {
    margin-top: 70px;
}
.media-report {
    padding-top: 30px;
}
.media-report {
    list-style: none;
    display: flex;
    flex-wrap: wrap;
    justify-content: space-between;
}
.media-report .policy {
    box-shadow: 0 4px 12px rgba(0,0,0,0.2);
    width: 440px;
    margin-bottom: 38px;
    border-radius: 8px;
    overflow: hidden;
}
.media-report .policy:hover span{color:#dc0816;}
.media-report .policy .scale-img {
    width: 440px;
    height: 250px;
    position: relative;
}
.media-report .policy .hezuo_txt {
    background: #ffffff;
    height: 100px;
    padding: 23px 17px 0px;
}
.media-report .policy span {
    font-size: 18px;
    color: #000000;
    line-height: 30px;
}
/* 合作媒体 */
.sectionfive {
    margin-top: 40px;
    padding-bottom: 77px;
}
.partner-media {
    margin-top: 40px;
}

.parter_content li:nth-of-type(1),.parter_content li:nth-of-type(2),.parter_content li:nth-of-type(3),.parter_content li:nth-of-type(4),.parter_content li:nth-of-type(5),.parter_content li:nth-of-type(6),.parter_content li:nth-of-type(7){border-top:solid 1px #e6e6e6;}
.parter_content li{width: 197px;height:127px;float: left;margin-right:0px;margin-top:0px;
border-right:solid 1px #e6e6e6;border-bottom:solid 1px #e6e6e6;overflow: hidden;
}
.parter_content li:nth-of-type(7n){margin-right:0px;}
.parter_content li a{display: block;width:100%;height:100%;}
.parter_content li:nth-of-type(1),.parter_content li:nth-of-type(8),.parter_content li:nth-of-type(15),.parter_content li:nth-of-type(22),.parter_content li:nth-of-type(29){border-left:solid 1px #e6e6e6;}
.parter_content li .scale-img img{border-radius:0px!important;}
.partner-media ul {
    list-style: none;
    display: flex;
    flex-wrap: wrap;
    justify-content: flex-start;
}
/*list_news*/
.ai-query2 .guard-list li {
    width: 48%;
}
.ai-query2 .guard-list li .name {
    font-size: 17.46px;
    margin-top: 13px;
}
.ai-query2 .guard-list li .title {
    font-size: 14px;
    margin-bottom: 20px;
}
.section-title span.red {
    color: #db0a17;
}
#list_section {
    padding-bottom: 78px;
    margin-top: 54px;
}
/*list_about*/
.section_pageabout .wrapper{max-width:1000px;margin-left: auto;margin-right: auto;}
.section_pageabout dt{font-size: 40px;color:#000000;font-weight: bold;text-align: center;padding-bottom: 45px;border-bottom: solid 1px #f0f0f0;}
/* .section_pageabout dd img{text-align: center;display:block;margin-left: auto;margin-right: auto;} */
.section_pageabout dd{padding-top: 45px;font-size: 18px;color:#333333;line-height: 36px;padding-bottom: 50px;}

/* list_guard */
.filter {
    box-shadow: 3px 3px 11px 5px rgb(173 173  173 / 28%);
    padding-left: 36px;
    padding-right: 36px;
    padding-top: 2px;
    padding-bottom: 17px;
    border-radius: 8px;
    margin-top: 40px;
    margin-bottom: 20px;
}
.filter-name,.filter .fiter_item a {
    font-size: 16px;
    color: #333333;
}
.filter .fiter_item {
    margin-top: 28px;
    overflow: hidden;
    line-height: 34px;
    position: relative;
}
.filter .fiter_item a.hover,.filter .fiter_item a:hover {
    color: #fff;
    background: #df222e;
    border-radius: 10px;
}
.filter .fiter_item a.all {
    padding-left: 18px;
    padding-right: 18px;
    width: auto;
    border-radius: 30px;
}
.filter .fiter_item a {
    cursor: pointer;
    text-decoration: none;
    display: inline-block;
    float: left;
    height: 34px;
    line-height: 34px;
    text-align: center;
    margin-right: 10px;
    width: 34px;
    margin-bottom: 11px;
}
.filter .filter-name {
    float: left;
    font-size: 18px;
    color: #333;
    font-weight: normal;
    position: absolute;
    left: 0px;
    line-height: 34px;
    height: 34px;
}
.filter .fiter_item label {
    width: 36px;
    display: inline-block;
}
.filter .filter-con {
    padding-left: 95px;
    overflow: hidden;
}
select.selectdiy_filter {
    outline: 0px;
    -webkit-appearance: none;
    -moz-appearance: none;
    appearance: none;
    background-color: transparent;
    background-image: url(../images/chevron_down.png);
    background-position: right 24px center;
    background-repeat: no-repeat;
    border: solid 1px #e0e0e0;
    border-radius: 8px;
    color: #333333;
    font-size: 16px;
    height: 37px;
    padding: 0px 24px 0px 33px;
    width: 100%;
    border-radius: 30px;
    width: 156px;
    display: inline-block;
    float: left;
    margin-right: 34px;
}
#list_guard {
    padding-bottom: 78px;
}
.listpage {
    width: 100%;
    text-align: center;
    color: #666;
    margin-top: 40px;
}
.listpage-prev,.listpage-next {
}
.listpage {
    padding-top: 34px;
    padding-bottom: 0px;
}
.listpage a {
    border-radius: 5px;
    display: inline-block;
    font-size: 18px;
    height: 44px;
    line-height: 44px;
    width: 44px;
    border: 1px solid #fff;
    color: #333333;
    margin-right: 30px;
    border-radius: 50%;
}
.listpage a: hover,.listpage a.thisclass {
    color: #fff;
    background: #db0a17;
    border: 1px solid #db0a17;
}
.listpage a.listpage-prev,.listpage a.listpage-next {
    color: #000;
    font-family: cursive;
    font-weight: bold;
    width: auto;
    border: 0px;
}
.listpage a.listpage-prev {
    margin-right: 50px;
}
.listpage a.listpage-next {
    margin-left: 20px;
}
.listpage a.listpage-prev: hover,.listpage a.listpage-next: hover {
    color: #db0a17;
    background: none;
}
.listpage .indexpage a,.listpage .lastpage a {
    border: 0px;
    margin-right: 0px;
}
.listpage a.listpage-next {
    margin-right: 0px;
}
/* show_guard */
/* 专题详情 */
.news-show-body {
    margin-top: 50px;
    overflow: hidden;
}
.left_cr {
    width: 394px;
    float: left;
}
.left_cr .scale-img {
    border-radius: 5px;
    overflow: hidden;
}
.special_txt {
    height: 283px;
    padding: 0px 20px;
}
.special_txt h4 {
    font-size: 48px;
    color: #db0a17;
    font-weight: bold;
    text-align: center;
    margin-top: 32px;
    margin-bottom: 15px;
}
.special_txt p {
    font-size: 24px;
    color: #000000;
    text-align: left;
    margin-bottom: 20px;
    line-height: 36px;
}
.datainfo {
    font-size: 16px;
    color: #999999;
}
.datainfo .add,.datainfo .time {
    padding-left: 25px;
    margin-top: 5px;
    height: 24px;
    line-height: 24px;
}
.datainfo .add {
    background: url(../images/ico1.png) no-repeat left center;
}
.datainfo .time {
    background: url(../images/ico2.png) no-repeat left center;
    margin-top: 18px;
}
.top_info {
    box-shadow: 0 0 50px 1px #ddd8d8;
}
.datainfo .flex {
    padding-left: 18px;
    padding-right: 20px;
    display: flex;
    justify-content: space-between;
    align-items: flex-start;
    flex-direction: row;
}
.bot_start {
    height: 83px;
    background: #db0a17 url(../images/start.png) no-repeat 47px center;
    padding-left: 119px;
    font-size: 24px;
    color: #ffffff;
    font-weight: bold;
    line-height: 83px;
    margin-top: 20px;
    box-shadow: 0 0 50px 1px #f3bbc3;
    cursor: pointer;
}
.right_cr {
    width: 957px;
    float: right;
}
.right_top {
    padding: 39px 47px;
    font-size: 20px;
    color: #333;
    line-height: 38px;
}
.right_top,.right_bot {
    box-shadow: 0 0 50px 1px #ddd8d8;
}
.focus {
    text-align: center;
}
.poster {
    position: fixed;
    width: 360px;
    left: 50%;
    height: auto;
    z-index: 999;
    top: 50%;
    transform: translate(-50%, -50%);
    z-index: 1001;
    display: none;
}
.posterbg.active,.poster.active {
    display: block;
}
.posterbg {
    background: rgb(0 0 0 / 80%);
    position: fixed;
    top: 0px;
    left: 0px;
    width: 100%;
    height: 100%;
    overflow: hidden;
    z-index: 1000;
    display: none;
}
.poster img {
    display: block;
    width: 100%;
    height: auto;
    object-fit: contain;
}
.close {
    background: url(../images/close.png) no-repeat center;
    width: 35px;
    height: 35px;
    background-size: cover;
    margin: 34px auto;
    cursor: pointer;
}
.btn {
    height: 65px;
    line-height: 65px;
    background: #db0a17;
    color: #fff;
    font-weight: bold;
    border-radius: 50px;
    font-size: 28px;
    text-align: center;
    cursor: pointer;
    display: block;
}
.right_bot {
    margin-top: 50px;
    margin-bottom: 84px;
    padding-bottom: 33px;
}
.right_bot dt {
    line-height: 70px;
    border-bottom: solid 1px #f2f3f2;
    padding-left: 20px;
    font-size: 24px;
    color: #000000;
}
.right_bot .dd_item {
    padding-left: 50px;
    position: relative;
    padding-right: 20px;
}
.right_bot .dd_item::before {
    content: "";
    display: block;
    width: 5px;
    height: 5px;
    background: #333333;
    position: absolute;
    left: 23px;
    top: 50%;
    margin-top: -2.5px;
    border-radius: 50%;
}
.right_bot .dd_item,.right_bot .dd_item a {
    font-size: 18px;
    color: #333333;
}
.right_bot .dd_item a {
    display: flex;
    justify-content: space-between;
    align-items: center;
    font-size: 18px;
    color: #333333;
    height: 60px;
    line-height: 60px;
}
.right_bot .dd_item: hover span {
    color: #db0a17;
}
.right_bot .dd_item span {
    max-width: 80%;
    white-space: nowrap;
    text-overflow: ellipsis;
    overflow: hidden;
}

/* show_news */
#showarticle{width:100%;width:1000px;margin-left: auto;margin-right: auto;float: none;padding-bottom: 50px;}
.news-show-tit h5{font-size: 40px;color:#000;line-height: 58px;font-weight: bold;text-align: center;}
.news-show-tit span{font-size: 16px;color:#999;padding-right: 70px;}
.news-show-tit span:last-of-type{padding-right:0px;}
.news-show-tit-info{margin-top: 40px;padding-bottom: 22px;border-bottom: solid 1px #dedede;position: relative;text-align: center;}
.news-show-body{padding-top: 40px;padding-bottom: 40px;}
.news-show-body,.news-show-body p{font-size: 20px;color:#000000;line-height: 38px;}
.news-show-body p.bj{text-align: right;color:#666666;font-size: 18px;}
.news-show-body img{max-width:100%;height: auto!important;display: block;margin-left: auto;margin-right: auto;}
#showarticle .tag{padding:20px 0px;border-top: solid 1px #dedede;border-bottom: solid 1px #dedede;}
#showarticle .tag a,#showarticle .tag{font-size: 16px;color:#666666;}
#showarticle .tag a{padding-right: 17px;}
#showarticle .tag a:hover{color: #0352da;font-weight:bold;}
.adshow{margin:49px auto;}
#parterlist{margin:50px auto;overflow: hidden;clear: both;}

@media screen and (max-width: 1500px) {
/* index */
.imgCen,.imgCen2 h3{font-size:22px;}
.imgCen2 p{font-size: 16px;}
.flash4 ul li{height: 443px;}
.newslist li .con,.newslist li .con .other{width: 435px;}
.section-title{font-size: 24px;}
.ai-query .search-box{height: 40px;}
.media-report .policy{width:380px;}
.media-report .policy .scale-img{width:100%;height: 216px;}
.media-report .policy span{font-size: 17px;}
.left_cr{width: 350px;}
.right_cr{width: 805px;}
.special_txt h4{font-size:38px;}
.special_txt p,.bot_start,.right_bot dt{font-size: 22px;}
.section_pageabout dt{font-size: 32px;}
.section_pageabout dd{font-size: 17px;}
.ulcom,.bankleft{width:780px; }
.ulcom_side,.bankright{width: 380px;}
.liitem .itemcon p{font-size: 20px;}
.hotitem p,.listpage a, .listpage span,.zebian{font-size: 17px;}
.news-list-yw li, .news-list-yw li a{font-size: 17px;line-height: 64px;height: 64px;}
.news-show-tit h5{font-size:32px;line-height:45px;}
.news-show-tit-info{margin-top: 27px;padding-bottom: 18px;}
.news-show-tit span{padding-right: 32px;}
.news-show-body, .news-show-body p{font-size: 18px;line-height: 32px;}
.parter_content li{width: 171px;height: 111px;}
#parterlist{margin:30px auto;}
}
@media screen and (max-width: 1080px) {
 .section-title{font-size:20px;line-height:20px;padding-bottom: 15px;}  
 .guard-list li{width:48%;} 
 .flash4{display:block;}
 .flash4 ul{flex-direction: column;}
.flash4 ul li{height: auto;width:100%!important;opacity:1!important;display: block;margin-bottom:20px;}
.scale-img img.bannerimg{border-radius:0px;}
 .sectionthree{margin:15px auto 0px;}
   .latest-news{width:100%;}
.ai-query, .ai-query2{width:100%;}
.ai-query .search-box button{padding-left: 0px;text-align: center;background:#dcdcdc;}
.sectionfour{margin-top: 30px;}
.sectionfive{margin-top:0px;padding-bottom: 30px;}
.foot_menu, .foot_number{display: none;}
.foot_copyright{padding:0px 30px;line-height: 28px;}
.footer{padding:30px 0px;}
.filter .filter-name{position:static;margin-bottom: 10px;}
.filter .filter-con{padding-left:0px;clear:both;font-size:17px;}
.filter .fiter_item:nth-of-type(2){margin-top:10px;}
select.selectdiy_filter{font-size:15px;margin-right:10px;width:115px;background-position: right 8px center;padding:0px 10px 0px 12px;background-size: 15px;}
.filter .fiter_item a{padding:0px;}
.filter .fiter_item a.hover, .filter .fiter_item a:hover{}
.filter-name, .filter .fiter_item a{font-size:15px;}
.listpage a{display: none;}
.listpage a.listpage-prev,.listpage a.listpage-next{display:inline-block;}
.listpage{padding-top:0px;}
#list_guard{padding-bottom: 30px;}
.left_cr,.right_cr{width:100%;}
.right_cr{}
.right_top{padding-left: 15px;padding-right: 15px;}
.special_txt p, .bot_start, .right_bot dt{font-size: 20px;}
.right_bot .dd_item a{font-size: 17px;height: auto;line-height:initial;flex-direction: column;align-items: flex-start;}
.right_bot .dd_item{padding:15px 15px 15px 25px;border-bottom: dashed 1px #dedede;}
.right_bot .dd_item::before{left:4px;top: 26px;margin-top: initial;}
.right_bot .dd_item span{max-width:100%;}
.news-show-body{margin-top:0px;padding-top: 30px;}

#showarticle{width:96%;margin-left: 2%;margin-right:2%;}


.titcom span{font-size:20px;}
.liitem .itemcon p{font-size:18px;}
.ulcom{padding-bottom:20px;}
.ulcom_side{display:none;}
.listpage{padding-top:20px;}
.breadcrumbs2 .wrapper{padding-bottom:0px;}
.breadcrumbs2{padding-bottom:20px;margin-bottom:20px;}
.section_pageabout dt{font-size:20px;padding-bottom:20px;}
.news-show-tit h5{font-size:20px;line-height:30px;}
.news-show-tit-info{margin-top:15px;}
.adshow{margin:20px auto;}
.news-show-tit span{font-size:15px;}

#certify{margin-top:30px;margin-bottom:30px;}
#certify .swiper-slide {
    width: 70vw !important; 
    height: calc(70vw * 499 / 817) !important;
  }

  #certify .swiper-button-prev {
    left: 10px !important;
    transform: scale(0.8);
  }
  #certify .swiper-button-next {
    right: 10px !important;
    transform: scale(0.8);
  }


#certify .swiper-slide {
  background: #fff;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  overflow: hidden;
}

#certify .swiper-slide img {
  display: block;
  width: 100%;
  height: 100%;
  object-fit: cover;
}

#certify .swiper-slide p {
font-size: 16px;height:35px;line-height: 35px;
padding-left:15px;padding-right: 15px;text-overflow: ellipsis;
  padding-top: 0;
  text-align: center;
  color: #fff;
  margin: 0;
  position: absolute;
  background: rgb(0 0 0 / 30%);
  left: 0;
  width: 100%;
  bottom: 0;
  display: none;
  z-index: 888;
  cursor: pointer;
}

#certify .swiper-slide-active p {
  display: block !important;
}
#certify .swiper-slide-active:hover p{
  background: rgb(0 0 0 / 50%);
}

#certify .swiper-button-prev {
  left: -48px;
  width: 26px;
  height:51px;
  background: url(/skin/zgw/images/leftjt.png) no-repeat center;
}
#certify .swiper-button-prev:hover {
  background: url(/skin/zgw/images/leftjth.png) no-repeat;
}
#certify .swiper-button-next {
  right: -48px;
  width: 26px;
  height: 51px;
  background: url(/skin/zgw/images/rightjt.png) no-repeat center;
}
#certify .swiper-button-next:hover {
  background: url(/skin/zgw/images/rightjth.png) no-repeat center;
}



.sectiontwo{margin-top:30px;}
.ai-query{margin-top:30px;}
.ai-query .search-box{}
.ai-query .info{margin-top: 15px;height: 360px;}
#list_section,.ai-query2{margin-top:30px;}
.parter_content li{width:33.333%;height: auto;display: block;}
.parter_content li:nth-of-type(4), .parter_content li:nth-of-type(5), .parter_content li:nth-of-type(6), .parter_content li:nth-of-type(7){border-top:0px;}
.parter_content li:nth-of-type(1), .parter_content li:nth-of-type(2), .parter_content li:nth-of-type(3), .parter_content li:nth-of-type(4), .parter_content li:nth-of-type(5), .parter_content li:nth-of-type(6){display: block;}
.parter_content li:nth-of-type(4){border-left: solid 1px #e6e6e6;}
.partner-media{margin-top:20px;}
#parterlist{margin:20px auto;}
.filter{padding-left: 8px;padding-right: 8px;}
.fiter_item:nth-of-type(1) .filter-con{display:flex;}
.filter .fiter_item a{margin-right:0px;width: 30px;height: 30px;line-height: 30px;}
.filter .filter-name{margin-left: 10px;}
.imgTop{min-width: 125px;width:125px;height: auto;display: block;}
.big{}
.imgCen2{position: static;}
.hover .big,.big{position: static;opacity:1;display:flex!important;justify-content: flex-start;}
.hover .small,.small{display: none!important;}
.imgCen2 p,.imgCen2 h3{color:#333;}
.imgCen2 p{display:none;}
.imgCen2 h3,.newslist li .con h2, .newslist li .con h2 i{font-size: 16px;font-weight: normal!important;
   display: -webkit-box;
      -webkit-box-orient: vertical;
      -webkit-line-clamp: 2;
      overflow: hidden;
      text-overflow: ellipsis;

}
.imgCen2{padding-left:15px;padding-right:0px;}
.imgTop::after{display: none;}
.flash4 ul li.hover{box-shadow: initial;}
.flash4{margin-top:20px;}

.newslist li .img,.media-report .policy .scale-img{min-width: 125px;width:125px;height: auto;display: block;
position: absolute;left:0px;top: 50%;transform: translateY(-50%);border-radius:10px;
}
.newslist li{display:flex!important;justify-content: flex-start;width:100%;padding:20px 0px;}
.newslist li .con p{display: none;}
.newslist li .con h2, .newslist li .con h2 i{line-height: 24px;}
.newslist li .con, .newslist li .con .other{width:100%;padding-left: 135px;}
.sectionthree{display: block;}
.newslist li{min-height: 80px;}
.newslist li .con .other,.othergeo{position: static;padding-left:0px;margin-top: 5px;display: flex;justify-content: space-between;}
.newslist li .con .other .tag{float: none;display: block;}
.newslist li .con .other span{margin-right:0px;}
.newslist li .con .other .tag a:nth-of-type(1){margin-left:0px;}
.media-report{padding-top:20px;margin-top:0px;padding-bottom: 20px;}
.media-report .policy{width:100%;position: relative;box-shadow: initial;border-radius:initial;margin-bottom: 15px;}
.media-report .policy .hezuo_txt{height: auto;width:100%;padding:0px 0px 0px 135px;}
.imgTop img,.newslist li img,.scale-img img,.media-report .policy .scale-img{border-radius: 8px;}
.media-report .policy span{font-size: 16px;}


.parter_content{
  display: flex;
  flex-wrap: wrap;
  width: 100%;
  /* 关键：抵消边框重叠，让所有线都是 1px */
  box-sizing: border-box; 
   border-bottom: 1px solid #e6e6e6!important;
}

/* 每个项目：一行 3 个 */
.parter_content li {
  width: 33.3333%;
  /* 1px 边框 */
  border: 1px solid #e6e6e6!important;
  box-sizing: border-box;
  /* 抵消重叠边框 */

  margin-right: -1px;
  margin-bottom: -1px;
}
.parter_content li:nth-of-type(7n){margin-right: -1px;}

}