/* 全局样式重置 */
* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
    font-family: "Source Han Sans", /* 思源黑体 */
                         "Noto Sans CJK SC", /* Google Noto 版本 */
                         "Microsoft YaHei", /* Win 默认黑体 */
                         "PingFang SC", /* macOS 苹方 */
                         "Hiragino Sans GB", /* 旧版 macOS */
                         "黑体", /* 通用黑体 */
                         sans-serif;
 /* 最终后备 */
    ;
}

:root {
    --fivetittle-color: #002169;
/* 5大领域标题 */
    --fiveicon-color: #0033ca;
/* 5大领域图标 */
    --fivep-color: #121212;
/* 5大领域图标文字 */
    --tittleh2-color: #00115f;
  /* 蓝色-500 */
    --tittleh3-color: #4569bf;
  /* 蓝色-500 */
    --newslist-color: #3d3d3d;
 /* 灰色-500 */
    --text-color: #3d3d3d;
     /* 灰色-800 */
    --data-color: #6a6563;
      /* 日期-800 */
    --neirong-color: #bdb1ac;
     /* 标题摘要 */
    --cansai-color: #0051a1;
 /* 参赛截止日期 */
    --bg-color: #f9fafb;
       /* 灰色-50 */
    --list-width:300px;
}

a, 
        a:link, 
        a:visited, 
        a:hover, 
        a:active {
    cursor: pointer !important;
}
        /* 基础样式 */
body {
    color: #333;
    line-height: 1.6;
    overflow-x: hidden;
}

a:hover {
    color: #000066;
    text-decoration: none;
}

/* 顶部导航栏容器 */
    .mobile-header {
      display: none;
      position: fixed;
      top: 0;
      left: 0;
      width: 100%;
      height: 60px;
      background: #fff;
      box-shadow: 0 2px 10px rgba(0, 0, 0, 0.1);
      z-index: 1000;
      padding: 0 15px;
      box-sizing: border-box;
      box-shadow: 0 2px 15px rgba(0, 0, 0, 0.4);
    }
    
    /* 导航栏内部布局 */
    .mobile-header-inner {
      display: flex;
      justify-content: space-between;
      align-items: center;
      height: 100%;
      max-width: 1200px;
      margin: 0 auto;
    }
    
    /* Logo样式 */
    .mobile-logo {
      height: 35px;
    }
    
    .mobile-logo img {
      height: 100%;
      width: auto;
    }
    
    /* 汉堡菜单按钮 */
    .mobile-nav-toggle {
      width: 30px;
      height: 24px;
      cursor: pointer;
      position: relative;
    }
    
    .hamburger,
    .hamburger::before,
    .hamburger::after {
      content: '';
      position: absolute;
      width: 100%;
      height: 3px;
      background: #333;
      transition: all 0.3s ease;
      border-radius: 3px;
      left: 0;
    }
    
    .hamburger {
      top: 50%;
      transform: translateY(-50%);
    }
    
    .hamburger::before {
      top: -8px;
    }
    
    .hamburger::after {
      top: 8px;
    }
    
    /* 激活状态的汉堡菜单 */
    .mobile-nav-toggle.active .hamburger {
      background: transparent;
    }
    
    .mobile-nav-toggle.active .hamburger::before {
      transform: translateY(8px) rotate(45deg);
    }
    
    .mobile-nav-toggle.active .hamburger::after {
      transform: translateY(-8px) rotate(-45deg);
    }
    
    /* 遮罩层 */
    .overlay {
      display: none;
      position: fixed;
      top: 0;
      left: 0;
      width: 100%;
      height: 100%;
      background: rgba(0, 0, 0, 0.5);
      z-index: 999;
    }
    
    /* 移动端导航菜单 */
    .mobile-nav {
      display: none;
      position: fixed;
      top: 60px;
      left: 0;
      width: 100%;
      background: #fff;
      z-index: 1000;
      box-shadow: 0 5px 10px rgba(0, 0, 0, 0.1);
      transform: translateY(-100%);
      transition: transform 0.3s ease;
    }
    
    .mobile-nav.active {
      transform: translateY(0);
      display: block;
      height: 100%;
    }
    .mobile-nav .nav_list ul{display: block;}
    
    .mobile-nav ul {
      list-style: none;
      padding: 0;
      margin: 0;
    }

    .mobile-nav .nav_list{width: 100%;text-align: left;}
    
    .mobile-nav li {
      border-bottom: 1px solid #f0f0f0;
    }
    
    .mobile-nav a {
      display: block !important;
      padding: 15px 20px !important;
      color: #333 !important;
      text-decoration: none !important;
      font-size: 14px !important;
      height: auto !important;
      line-height: 2 !important;;
    }
    
    .mobile-nav a:hover {
      background: #f5f5f5;
    }


.logo_search {
    width: 1600px;
    display: flex;
    justify-content: space-between;
    margin: 0 auto;
    margin-top: 70px;
}

.logo {
    width: 72%;
    flex: none;
    max-width: 1100px;
}

.logo img {
    width: 100%;
}

.search {
    width: 260px;
    display: flex;
    flex: none;
    margin-top: 75px;
    display: none;
}

.input_sr {
    width: 155px;
    border-top-left-radius: 5px;
    border-bottom-left-radius: 5px;
    height: 46px;
    border: 1px #69a7ef solid;
    background: #f9fcff;
    font-size: 18px;
    color: #b7b7b7;
    flex: none;
    padding: 0 15px;
}

.btn_t {
    height: 46px;
    background: #66a4ee;
    border: 1px #66a4ee solid;
    text-align: center;
    width: 75px;
    font-weight: bold;
    color: #fff;
    line-height:46px;
    border-bottom-right-radius: 5px;
    border-top-right-radius: 5px;
}

.icon-search:before {
    font-size: 27px
}

.nav {
    width: 100%;
    text-align: center;
    height: clamp(66px, 5.3vw, 86px);
    background: #125cb1;
    margin-top: 25px;
}

.nav_list {
    width: 1600px;
    margin: 0 auto;
}

.nav_list ul {
    display: flex;
}

.nav_list li {
    flex: 1;
    display: block;
}

.nav_list li a {
    color: #ffffff;
    display: block;
    text-decoration: none;

    font-size: clamp(20px, 1.6vw, 28px);  /* 1.8 → 2.3 */
    height: clamp(66px, 5.3vw, 86px);    /* 4.8 → 5.3 */
    line-height: clamp(66px, 5.3vw, 86px); /* 4.8 → 5.3 */
    /* padding: 0 clamp(36px, 2.11vw, 45px);*/
    font-weight: bold;
}

.nav_list li a:hover {
    background: #5bc0de;
    text-decoration: none !important;
}

.banner1{
    width: 100%;

    aspect-ratio: 1920 / 500; /* 宽高比 3.84 */
    background:#014486 url(../images/baner.png) top center no-repeat;
    background-size: cover;
}
.banner2{
    width: 100%;

    aspect-ratio: 1920 / 500; /* 宽高比 3.84 */
    background:#014486 url(../images/baner.png) top center no-repeat;
    background-size: cover;
}
.banner3{
    width: 100%;

    aspect-ratio: 1920 / 500; /* 宽高比 3.84 */
    background:#014486 url(../images/baner.png) top center no-repeat;
    background-size: cover;
}
/* Swiper 容器全屏 */
.my-fullscreen-swiper {
  width: 100%;

    aspect-ratio: 1920 / 500; /* 宽高比 3.84 */
    background:#014486 url(../images/baner.png) top center no-repeat;
    background-size: cover;
}

/* 图片自适应填充 */
.my-fullscreen-swiper .swiper-slide img {
  width: 100%;
  height: 100%;
  object-fit: cover; /* 保持比例，覆盖整个区域 */
}

/* 分页器样式（避免冲突） */
.my-fullscreen-swiper .swiper-pagination {
  position: absolute;
  bottom: 20px;
  left: 50%;
}

/* 导航按钮样式（避免冲突） */
.my-fullscreen-swiper .swiper-button-next,
.my-fullscreen-swiper .swiper-button-prev {
  color: white; /* 自定义颜色 */
  z-index: 10; /* 确保在最上层 */
}

.layout_div1 {
    width: 1600px;
    margin: 0 auto;
    padding: 15px 10px;
    border: 2px #c0d3ff solid;
    margin-top: 40px;
    display: flex;
    gap: 2.5%
}

.tittle_h2 {
    width: 100%;
    height: 35px;
    margin: 0 auto;
    background-size: cover;
    background: url(../images/tittle_h2.png) center 5px no-repeat;
    color: #125cb1;
    font-size: clamp(20px, 2vw, 26px);
    letter-spacing: 0.1em;
    position: relative;
    top: 0;
    left: 0;
    font-weight: bold;
}

.tittle_h2 a {
    position: absolute;
    top: 20px;
    right: 10px;
    font-size: 12px;
    color: #333333;
    letter-spacing: 0em;
}

.tittle_h2 span {
    color: #cf1614;
}

.flash_div {
    width: 56.8%;
    position: relative;
    top: 0;
    left: 0;
}

.flash_bg {
    height: clamp(40px, 9.9vh, 68px);
    background: #000;
    opacity: 0.7;
    position: absolute;
    bottom: 0;
    left: 0;
    width: 100%;
    display: block;
    z-index: 100;
    flex: none;
}

.flash_p {
    font-size: clamp(18px, 2vh, 24px);
    line-height: clamp(40px, 9.9vh, 68px);
    padding-left: 20px;
    text-align: left;
    position: absolute;
    bottom: 0;
    left: 0;
    height: clamp(40px, 9.9vh, 68px);
    z-index: 101;
}

.flash_p a {
    font-size: clamp(18px, 1.5vw, 24px);
    line-height: clamp(40px, 9.9vh, 68px);
    color: #fff;
}

.swiper {
    width: 100%;
    height: 100%;
}

.swiper-slide {
    text-align: center;
    font-size: 18px;
                    /* Center slide text vertically */
    display: -webkit-block;
    display: block;
    -webkit-box-pack: center;
    -ms-flex-pack: center;
    -webkit-justify-content: center;
    justify-content: center;
    -webkit-box-align: center;
    -ms-flex-align: center;
    -webkit-align-items: center;
    align-items: center;
   
}
.hot_zt_div .swiper-slide{ aspect-ratio:277 / 478;overflow: hidden;}
.hot_zt_div .swiper-slide img{ aspect-ratio:469 / 660;height: auto;}
.swiper-container-five .swiper-slide a:hover p{ color: #125cb1;
    text-decoration: underline}

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

.swiper-pagination {
    text-align: right !important;
    padding-right: 20px;
    width: 150px  !important;
    left: auto !important;
    right: 20px !important;
    bottom: 20px !important;
}

.swiper-pagination-bullet {
    background: #5f8be1 !important;
    opacity: 1 !important;
}

.swiper-pagination-bullet-active {
    background: #fff !important;
}

.swiper-pagination-bullet {
    width: clamp(9px, .69vw, 13px) !important;
    height: clamp(9px, .69vw, 13px) !important;
}

.news_div {
    flex: none;
    width: 39.6%;
}

.news_list {
    width: 100%;
    margin-top: 20px;
}

.news_list ul li {
    display: flex;
    width: 100%;
    line-height: clamp(30px, 3.6vw, 60px);
}

.news_list ul li b {
    width: 5px;
    flex: none;
    font-size:clamp(14px, 1.1vw, 18px);
    font-weight: bold;
    color: #214b7f;margin-right: 5px;
}

.news_list ul li span {
    width: 120px;
    flex: none;
    font-size:clamp(14px, 1.1vw, 18px);
    color: #333333
}

.news_list ul li a {
    flex: 1;
    text-align: left;
    font-size:  clamp(16px, 1.1vw, 22px);
    color: #333333
}

.news_list ul li a:hover {
    color: #125cb1;
    text-decoration: underline
}

.layout_div2 {
    width: 1600px;
    margin: 0 auto;
    margin-top: 40px;
    display: flex;
    gap: 20px
}

.cx_div {
    flex: 1;
    border: 2px #c0d3ff solid;
    padding: 0 9px;
    padding-bottom: 9px;
    padding: 9px;
    padding-bottom: 10px;
    padding-top: 15px;
}

.cx_list {
    flex: 1.5;
    border: 2px #c0d3ff solid;
    padding: 15px 25px;
    padding-bottom: 0px;
}

.cx_div .tittle_h2 {
    padding-bottom: 65px;
    border-bottom: 2px #5f8be1 solid;
}

.zs_div {
    background: #dfe8f9;
}

.zs_btn_list {
    width: 100%;
    display: flex;
}
.toggle-btn{padding: clamp(18px, 2.2vw, 25px) 0 clamp(18px, 2.2vw, 30px) 0;}
.zs_btn_list a {
    font-size: clamp(20px, 1.5vw, 26px);
    color: #628de1;
    flex: 1;
    
    letter-spacing: 0.2em;
}

.zs_btn_list a:hover {
    text-decoration: none !important;
    font-weight: bold
}

.zs_btn_list a:hover span {
    border-bottom: 3px#628de1 solid;
    padding-bottom: 10px
}

.zs_btn_list1 {
    width: 100%;
    display: flex;
}

.zs_btn_list1 a {
    font-size: clamp(20px, 1.5vw, 26px);
    color: #628de1;
    flex: 1;
    padding: clamp(18px, 2.2vw, 40px) 0;
    letter-spacing: 0.2em;
}
.zs_div_a{font-size: clamp(20px, 1.5vw, 26px);
    color: #628de1;
    flex: 1;
    padding: clamp(18px, 2.2vw, 25px) 0 clamp(18px, 2.2vw, 30px) 0;
    letter-spacing: 0.2em;}

.zs_btn_list1 a:hover {
    text-decoration: none !important;
    font-weight: bold
}

.zs_btn_list1 a:hover span {
    border-bottom: 3px#628de1 solid;
    padding-bottom: 10px
}

.zs_btn_zw {
    flex: 1;
}

.active {
    text-decoration: none !important;
    font-weight: bold
}

.active span {
    border-bottom: 3px#628de1 solid;
    padding-bottom: 10px;
}

.input1 {
    width: 83%;
    margin: 0 auto;
    display: flex;
     padding-bottom: clamp(18px, 1.76vw, 27px);
}

.input1_div {
    width: 90px;
    display: block;
    background: #5f8be1;
    border-bottom-left-radius: 5px;
    border-top-left-radius: 5px;
    color: #fff;
    font-size: 18px;
    height: clamp(35px, 2.7vw, 47px);;
    line-height: clamp(35px, 2.7vw, 47px);;
}

.input1_div1 {
    width: calc(100% - 90px);
}

.input1_div1 .input_1 {
    width: 100%;
    height: clamp(35px, 2.7vw, 47px);;
    border-bottom-right-radius: 5px;
    border-top-right-radius: 5px;
    border: 1px #5f8be1 solid;
    color: #717171;
    padding: 0 5%;

}

.input2 {
    width: 83%;
    margin: 0 auto;
    display: flex;
    padding-bottom: clamp(18px, 1.5vw, 27px);
}

.input2_div {
    width: 100px;
    display: block;
    background: #5f8be1;
    border-bottom-left-radius: 5px;
    border-top-left-radius: 5px;
    color: #fff;
    font-size: clamp(14px, 1.1vw, 18px);
    height: clamp(35px, 2.7vw, 47px);;
    line-height: clamp(35px, 2.7vw, 47px);;
    flex: none
}

.input2_div1 {
    width: calc(100% - 180px);
    flex: none
}

.input2_div1 .input_1 {
    width: 100%;
    height: clamp(35px, 2.7vw, 47px);;
    border-bottom-right-radius: 5px;
    border-top-right-radius: 5px;
    border: 1px #5f8be1 solid;
    color: #717171;
    padding: 0 5%
}

.input2_yzm {
    width: 120px;
    margin-left: 10px;
    margin-top: 3px;
}

.input2_yzm img {
    width: 100%;
}

.input3 {
    width: 83%;
    margin: 0 auto;
    display: flex;
    padding-bottom: clamp(18px, 1.76vw, 27px);
    text-align: center
}

.input3_div1 {
    width: 100%;
}

.input3_div1 .input_1 {
    display: block;
    background: #5f8be1;
    border-radius: 5px;
    color: #fff;
    font-size: 18px;
    height:clamp(35px, 2.7vw, 47px);
    line-height: clamp(35px, 2.7vw, 47px);;
    width: 100%;
    border: 1px #5f8be1 solid;
    text-align: center;
    font-size: clamp(18px, 1.5vw, 26px);
    letter-spacing: 0.2em;
}

.input1_div {
    width: 100px;
    display: block;
    background: #5f8be1;
    border-bottom-left-radius: 5px;
    border-top-left-radius: 5px;
    color: #fff;
    font-size: clamp(14px, 1.1vw, 18px);
    height: clamp(35px, 2.7vw, 47px);;
    line-height: clamp(35px, 2.7vw, 47px);;
    flex: none;
    font-weight: normal;
}

.input4 {
    width: 83%;
    margin: 0 auto;
    display: flex;
    padding-bottom: 27px;
    gap: 0px;
}

.input4_div {
    width: 100px;
    display: block;
    color: #fff;
    font-size: 18px;
    height: clamp(35px, 2.7vw, 47px);;
    border-bottom-left-radius: 5px;
    border-top-left-radius: 5px;
    flex: none
}

.input4_div1 {
    width: calc(100% - 180px);
    flex: none;
}

.input4_div1 .input_1 {
    width: 100%;
    height: clamp(35px, 2.7vw, 47px);;
    border-bottom-right-radius: 5px;
    border-top-right-radius: 5px;
    border: 1px #5f8be1 solid;
    color: #717171;
    padding: 0 5%;
}

.input4_div .custom-select1 .custom-select-wrapper {
    border-bottom-left-radius: 5px;
    border-top-left-radius: 5px;
}

.input4_yzm {
    width: 80px;
    border-radius: 50px;
    margin-left: 10px;
    margin-top: 3px;
}

.input4_yzm img {
    width: 100%;
}




.cx_list .news_list ul {
    margin-top: 24px;
}

.hot_zt {
    width: 100%;
    background: #f0f7fc;
}

.hot_zt_div {
    width: 1580px;
    margin: 25px auto;
    padding: 30px 50px;
    overflow: hidden;
    position: relative;

}



.swiper-container-five {
    
}

.swiper-image-16-10 {
    width: 100%;
    height: 0;
    object-fit: cover;
    border-radius: 8px;
    box-shadow: 0 4px 8px rgba(0,0,0,0.1);
}

.swiper-container-five .swiper-slide p {
    font-size: 18px;
    color: #333333;
    padding: 10px 0;
    text-align: center;
    margin-top: 10px
}

.qylm_div {
    width: 1580px;
    margin: 0 auto;
    padding: 15px 50px;
    border: 2px #c0d3ff solid;
    margin-top: 40px;
    overflow: hidden;
    position: relative;
    overflow: hidden;
    margin-bottom: 40px;
}

.swiper-container-four .swiper-slide p {
    font-size: 18px;
    color: #333333;
    padding: 10px 0;
    text-align: center;
    margin-top: 10px
}
.swiper-container-five.swiper-slide p {
    font-size: 18px;
    color: #333333;
    padding: 10px 0;
    text-align: center
}

.link_layout {
    width: 100%;
    background: #125cb1;
    padding: 80px 0;
    margin-top: 0px;
}

.link_layout_div {
    width: 1580px;
    margin: 0 auto;
    display: flex;
    gap: 30px
}

.link {
    flex: 1;
    background: #014697;
    padding: 25px 20px;
}

.link_div1 {
    text-align: left;
    font-size: 16px;
    width: 700px;
    font-size: 16px;
    color: #fff;
    line-height: 40px;
    margin: 0 5px;
}

.link_div1 span {
    font-size: 16px;
    color: #fff;
    line-height: 40px;
    margin: 0 20px;
    display: inline-flex;
    gap: 5px
}

.link_div1 span:nth-child(2) {
    margin-left: 0;
}

.link_div1 span i {
    flex: none;
    width: 53px;
    position: relative;
    top: 5px;
}

.link_div1 span p {
    flex: 1;
    font-size: clamp(14px, 1.15vw,16px);
    color: #fff;
    line-height: 40px;
}

.link_div2 {
    text-align: left;
    font-size:clamp(14px, 1.15vw,16px);
}

.link_div2 span {
    font-size: clamp(14px, 1.15vw,16px);
    color: #fff;
    line-height: 40px;
    margin-right: 20px;
}

.ewm_div {
    flex: none;
    width: 318px;
    background: #0d57ac;
    padding: 17px 9px;
    display: flex;
    gap: 20px
}
.ewm_img{flex: 1;}
.ewm_img img{width: 100%;}

footer {
    background: #aad1ff;
    height: 100px;
    text-align: center;
    width: 100%;
    ;
}

footer p {
    font-size: clamp(14px, 1.15vw,16px);
    color: #0e3563;
    padding: 0 5%;
    display: inline;
    line-height: 100px;
}
.basic-select{width: 100%;
    height: clamp(35px, 2.7vw, 47px);
    border-bottom-right-radius: 5px;
    border-top-right-radius: 5px;
    border: 1px #5f8be1 solid;
    color: #717171;
    padding: 0 5%;}

.more_h5{display:none}

.list_layout{width: 100%;background: #f2f5fa !important}
.list_layout_div{width:1600px;display: flex;gap: 30px;margin:0 auto;padding-top: 35px;padding-bottom: 55px;}
    .list_btn_main{flex:none;width:var(--list-width);text-align: center}
    .list_btn_main li{color: #333333;font-size: 20px;margin-bottom: 15px;}
    .list_btn_main li a{ color: #333333;font-size: clamp(14px, 1.1vw, 18px);background: #ffffff; display: block;padding:10px 0;line-height: clamp(25px, 5vw - 30px, 50px);}
    .list_btn_main li a:hover{ color: #fff;font-size: clamp(14px, 1.1vw, 18px);background: #5f8be1;font-weight: bold;text-decoration: none !important}
    .list_btn_main_hover{ color: #fff !important;background: #5f8be1!important;font-weight: bold!important;text-decoration: none !important}
    .list_p_main{flex: none;width: calc(100% - 300px);}
    .mb_list{text-align: left;color: #333;font-size: clamp(14px, 1.1vw, 18px);}
    .mb_list a{color: #333;font-size: clamp(14px, 1.1vw, 18px);}
    .list_layout_main{width: 100%;background: #fff;margin:0 auto;margin-top: 20px;padding:30px 80px;}
    .list_layout_main .news_list{margin-top: 0;}
    .list_layout_main .news_list ul li{line-height: clamp(30px, 3.6vw, 60px);}

    .list_btn_main_hover{}
    @keyframes textMove {
      0% { transform: translateY(0); }
      30% { transform: translateY(-5px); }
      70% { transform: translateY(-5px); } /* 保持在上移位置 */
      100% { transform: translateY(0); }
    }
    .input3_div1 .input_1:active{animation: textMove 1s ease;}
    .list_btn_main li a:active{animation: textMove 1s ease;}
    /* 移动端触摸反馈 */
    .list_btn_main_hover {
        transform: scale(0.98);
        transition: transform 0.1s, background-color 0.1s;
    }
    
    /* 防止移动端长按菜单 */
    .schedule-item, .rc_list_16, .rc_list_17, .rc_list_18, .rc_list_19, .rc_list_20, .rc_list_21 {
        -webkit-touch-callout: none;
        -webkit-user-select: none;
        user-select: none;

    }

.neirong_layout{width: 100%;background: #f2f5fa !important}
.neirong_layout_div{width:1600px;margin:0 auto;padding-top: 35px;padding-bottom: 55px;}
.neirong_p_main{flex: none;width: 100%;}


.docSubject {
    font-size: 38px;
    color: #333;
    line-height: 56px;
    padding: 20px 0;
    margin: 0 auto;
}
.fl {
    float: left;
}
.fr {
    float: right;
}
.bigdocContentall {
    font-size: 14pt !important;
    font-family: drcnet, 微软雅黑 !important;
}
.middledocContentall {
    font-size: 12pt !important;
    font-family: drcnet, 微软雅黑 !important;
}
.smalldocContentall {
    font-size: 10pt !important;
    font-family: drcnet, 微软雅黑 !important;
}
.share-qrcode {
    width: 24px;
    height: 24px;
    cursor: pointer;
        background-image: url(../images/wechat.png);
}
.docContent p {
    line-height: 200% !important;
    margin: 14px 0 !important;
    font-size: 12pt;
    font-family: drcnet, 微软雅黑 !important;
}
#fontstyle a {
    color: #666666;
}

.docContent {
    width: 100%;
    font-family: drcnet, 微软雅黑;
    line-height: 30px;
    border-top: 1px solid #dcdcdc;
    padding-top: 20px;
    font-size: 18px;
    color: #333;
}


    .neirong_layout {
    width: 100%;
    background: #f2f5fa !important;
}

.list_layout_main{width: 100%;}
.list_search_left{font-size: 20px; color: #333;width:100px;text-align:center;font-weight:bold;flex:none }
.list_search_right{width: 100%;}
.list_zs_main ul{width: 100%;display: grid;grid-template-columns: repeat(auto-fill, minmax(30%, 1fr));
  gap: 30px;}
  .list_zs_main li{border:1px #125cb1 solid;border-radius: 5px;padding:15px; position: relative;top: 0;left: 0;text-align: left;}
  .list_zs_main li:hover{  background: linear-gradient(to bottom, #4d9aff, #1a6bc8);
  box-shadow: 0 4px 8px rgba(0,0,0,0.15);}
  .list_zs_main li:hover a{color: #fff;text-decoration: none !important;}
  .list_zs_main li:hover p{color: #fff;}
  .list_zs_main li a{font-size: 18px; color: #333;line-height: 26px;font-weight: bold;width:80%;text-align: left;display: block;}
  .list_zs_main li p{font-size: 12px; color: #333;line-height: 20px;margin-top: 15px;width:100%;}
.zs_img{width: 50px;margin:0 auto;padding-top: 10px;position: absolute;top: 15px;right: 10px;opacity: 0.3;z-index: 100;background: url(../images/zs.png) top left no-repeat;display: block;height: 50px;background-size: 100%;}
.zs_img img{width: 100%;margin-bottom: 5px;}
.list_zs_main li:hover .zs_img{background: url(../images/zs_h.png) top left no-repeat;background-size: 100%; opacity: .7}
.list_zs_main li:hover .moving-arrow {
  width: 50px;
  height: 40px;
  position:absolute;
  overflow: hidden;
  bottom: 0px;right: 10px;
}

.list_zs_main li:hover .moving-arrow::after {
  content: "→";
  position: absolute;
  font-size: 24px;
  color: #fff;
  left: 0; /* 初始位置在容器左侧 */
  animation: moveRight 1.4s linear infinite;
  opacity: 1; /* 初始完全可见 */
}

@keyframes moveRight {
  0% {
    transform: translateX(0); /* 从原始位置开始 */
    opacity: 1;
  }
  80% {
    opacity: 1; /* 移动过程中保持可见 */
  }
  100% {
    transform: translateX(50px); /* 移动到容器右侧 */
    opacity: 0; /* 最后淡出 */
  }
}

          .table-container{width: 100%;}
          .table-container table{width: 100%;}
          .table-container td{border:1px #ccc solid;font-size: 14px; line-height: 30px;padding:10px;}
          .table1{width: 15%; font-weight: bold;background-color: #f5f5f5;}
          .table1 a{ color:#125cb1;text-decoration:underline !important; }
          .table2{width: 30%;; font-weight: normal;}
          .table3{width: 10%;; font-weight: normal;}
          .table3 img{width: 100%;}
           .table4{width: 15%;; font-weight: normal;}

          .table-container th {
            background-color: #125cb1;
            color: white;
            font-weight: bold;border:1px #125cb1 solid;font-size: 14px; line-height: 30px;padding:10px;text-align: center;
        }

/* 可点击的文本样式 */
        .clickable-text {
            color: #125cb1;
            text-decoration: underline;
            cursor: pointer;
        }
        
        /* 遮罩层样式 */
        .overlay {
            position: fixed;
            top: 0;
            left: 0;
            width: 100%;
            height: 100%;
            background-color: rgba(0, 0, 0, 0.5);
            z-index: 100;
            display: none;
        }
        
       
        
        /* 关闭按钮样式 */
        .close-btn {
            position: absolute;
            top: 15px;
            right: 15px;
            width: 30px;
            height: 30px;
            background-color: #f5f5f5;
            border-radius: 50%;
            display: flex;
            justify-content: center;
            align-items: center;
            cursor: pointer;
            font-size: 18px;
            color: #666;
            border: none;
            z-index: 9999;
        }
        
        .close-btn:hover {
            background-color: #e52e71;
            color: white;
        }
        
         /* 弹出层样式 */
        .popup {
            position: fixed;
            top: 50%;
            left: 50%;
            transform: translate(-50%, -50%);
            width: 800px;
            padding: 0px;
            border-radius: 8px;
            box-shadow: 0 4px 20px rgba(0, 0, 0, 0.2);
            z-index: 101;
            display: none;
            background-size: 100%;
            aspect-ratio: 1510 / 1113;
        }

        .popup_div {
            position:relative;
            top: 0;
            left:0;
            width: 100%;
            padding: 0px;
            z-index: 101;
            background: url(../images/zs_bg.png) top center no-repeat;
            background-size: 100%;
            aspect-ratio: 1510 / 1113;
        }
        /* 弹出层内容样式 */
        .popup-content {
            margin-top: 20px;
        }
        .zs_img_1{width: 75px;position: absolute;left: 175px;top: 150px}
        .zs_img_1 img{width: 100%;}
        .zs_p_1{position: absolute;left: 175px;top: 340px;font-size: 14px; color: #333;}
        .zs_p_2{position: absolute;left: 175px;top: 378px;font-size: 14px; color: #333;}
        .zs_p_3{position: absolute;left: 175px;top: 414px;font-size: 14px; color: #333;}
        .zs_p_4{position: absolute;left: 175px;top: 450px;font-size: 14px; color: #333;}
        .zs_p_5{position: absolute;left: 495px;top: 205px;font-size: 14px; color: #333;}

        .zs_p_6{position: absolute;left: 546px;top: 441px;font-size: 14px; color: #333;}
        .zs_p_7{position: absolute;left: 606px;top: 441px;font-size: 14px; color: #333;}
        .zs_p_8{position: absolute;left: 650px;top: 441px;font-size: 14px; color: #333;}

        .table-container_h5{display:none ;}
        .table-container{display: block}


@media screen and (max-width: 1600px) {
.logo_search,.nav_list,.layout_div1,.layout_div2,.hot_zt_div,.qylm_div,.link_layout_div,.list_layout_div,.neirong_layout_div{width: 1500px;}
.input2_div1 {width: calc(100% - 160px);}
.search{width: 300px;}
.logo{width: 80%;}
}

@media screen and (max-width: 1500px) {
.logo_search,.nav_list,.layout_div1,.layout_div2,.hot_zt_div,.qylm_div,.link_layout_div,.list_layout_div,.neirong_layout_div{width: 1400px;}
.list_zs_main ul{width: 100%;display: grid;grid-template-columns: repeat(auto-fill, minmax(46%, 1fr));
  gap: 30px;}
}

@media screen and (max-width: 1400px) {
.logo_search,.nav_list,.layout_div1,.layout_div2,.hot_zt_div,.qylm_div,.link_layout_div,.list_layout_div,.neirong_layout_div{width: 1300px;}
    .layout_div1,.layout_div2,.qylm_div{margin-top: 30px;}
  .search{width: 250px;margin-top: 50px;}  
  .input_sr{width: 200px;height: 37px;}
  .btn_t{height: 37px;line-height: 37px;}
  .icon-search:before{font-size: 22px;}
}

@media screen and (max-width: 1300px) {
.logo_search,.nav_list,.layout_div1,.layout_div2,.hot_zt_div,.qylm_div,.link_layout_div,.list_layout_div,.neirong_layout_div{width: 1200px;}
:root {
    --list-width:200px;
}
 .layout_div1,.layout_div2,.qylm_div{margin-top: 30px;}
 .list_layout_main{padding:30px;}
   .search{width: 225px;margin-top: 50px;}  
  .input_sr{width: 175px;height: 32px;}
  .btn_t{height: 32px;line-height: 32px;}
  .icon-search:before{font-size: 20px;}
}

@media screen and (max-width: 1200px) {
.logo_search,.nav_list,.layout_div1,.layout_div2,.hot_zt_div,.qylm_div,.link_layout_div,.list_layout_div,.neirong_layout_div{width: 1100px;}
:root {
    --list-width:150px;
}
 .layout_div1,.layout_div2,.qylm_div{margin-top: 30px;}
.nav_list li a {
    color: #ffffff;
    display: block;
    text-decoration: none;
    font-size: clamp(18px, 1vw, 28px);  /* 1.8 → 2.3 */
    height: clamp(66px, 5.3vw, 86px);    /* 4.8 → 5.3 */
    line-height: clamp(66px, 5.3vw, 86px); /* 4.8 → 5.3 */
    padding: 0 clamp(36px, 3.6vw, 58px);  /* 3.4 → 3.9 */
}
.zs_div_a{font-size: 14px;
        padding: 28px 0;}
.input1_div1 .select-input{height: 25px !important;line-height: 25px !important; font-size: 12px !important; }
.input3_div1 .input_1{font-size: 14px !important; }
.news_list ul li a{font-size: 12px !important;}
.content-container{height: 170px !important;}
.list_layout_main{display: block;}
.list_search_left{margin-bottom: 15px;}
}
@media screen and (max-width: 1100px) {
    .logo_search,.nav_list,.layout_div1,.layout_div2,.hot_zt_div,.qylm_div,.link_layout_div{width: 1000px;}
    .nav_list li a {
        color: #ffffff;
        display: block;
        text-decoration: none;
        font-size: clamp(16px, 1vw, 28px);  /* 1.8 → 2.3 */
        height: clamp(66px, 5.3vw, 86px);    /* 4.8 → 5.3 */
        line-height: clamp(66px, 5.3vw, 86px); /* 4.8 → 5.3 */
        padding: 0 clamp(30px, 3.6vw, 58px);  /* 3.4 → 3.9 */
    }

    .news_list ul li {
        line-height: 34px;
    }
    .flash_bg {
        height: 40px;
    }
    .flash_p {
        font-size: 12px;
        line-height:40px;
        color: #fff;
        height:40px;
    }
    .flash_p a {
        font-size: 12px;
        line-height:40px;
        color: #fff;
    }
    .swiper-pagination {
        bottom: 8px !important;
    }
    .cx_div .tittle_h2{padding-bottom: 50px}
    .zs_btn_list1 a {
        flex: 1;
        padding:20px 0;
    }
    .input1_div {
        font-size: 12px;
        height: 25px;
        line-height: 25px;
    }
    .input1_div1 .input_1{
        height: 25px;
        line-height: 25px;
    }
    .input1 {
        padding-bottom:15px;
    }
    .input1_div{width: 80px;}
    .zs_btn_list1 a{font-size: 14px;}
    .input1_div1{line-height: 22px;height: 25px;}
    .input2_div{width: 80px; height: 25px;line-height: 25px;}
    .input2_div1{line-height: 22px;    width: calc(100% - 140px);}
    .input2_div1 .input_1{ height: 25px;line-height: 25px;}
    .input2_yzm{width: 40px;}
    .input2{padding-bottom: 10px;}
    .zs_btn_list a{font-size: 14px;padding:20px;}
    .custom-select{height: 25px;line-height: 25px;}
    .input4_yzm{width: 40px;}
    .input4_div{width: 80px;height: 25px}
    .input4{padding-bottom: 10px;}
    .input4_div1 .input_1{height: 25px;}
    .custom-select1{height: 25px;}
    .input4_div1{width: calc(100% - 140px);height: 25px;line-height: 22px;}
    .swiper-container-five .swiper-slide p{font-size: 14px;}
    .search{margin-top: 63px;}
    .link_div1 span{font-size: 14px;}
    .link_layout{padding:40px 0;    margin-top: 30px;}
    footer{height: 50px;}
    footer p{line-height: 50px;}
    .swiper-container-four .swiper-slide p{font-size: 14px;}
    .banner {
        height: 400px;
        background: #014486 url(../images/baner.png) center center no-repeat;
    }
    .swiper-container-five{padding-bottom: 10px;}

.table-container td{border:1px #ccc solid;font-size: 14px; line-height: 30px;padding:4px;}
.table1{width: 15%; font-weight: bold;background-color: #f5f5f5;}
.table2{width: 30%;; font-weight: normal;}
.table3{width: 15%;; font-weight: normal;}


}


/* 响应式设计 */
@media screen and (max-width: 900px) {

     .table-container_h5{display: block;}
        .table-container{display: none}
      .my-fullscreen-swiper{display: none;}
      .more_h5{display: block}
      .tittle_h2 a{display: none}
      .mobile-header {display: block;}
      .nav:not(.mobile-nav) {margin-top: 60px;}
      .nav{display: none}
      .logo_search{display: none}
      .banner{display: none}
      .mobile-header{display: block;}
      
      .layout_div1,.layout_div2,.link_layout_div{width:100%;display: block;margin-top:0px;border: 0;}
      .layout_div1{margin-top: 60px;padding:0;}
      .flash_div{width: 100%;}
      .news_div{width: 96%;margin:0 auto;margin-top: 20px;}
      .hot_zt_div{width: 100%;margin:0;}
      .qylm_div{width: 100%}
      .ewm_div{width: 70%;margin:10px auto;}
      .ewm_div img{flex: 1;width: 70%}
      footer{height: auto;padding:20px 0;}
      footer p{display: block;line-height:40px;}
      .link_div1  span:first-child{display: block;}
      .link_div1 span{margin:0;}
      .link_div2 span{display: block;}
      .news_list ul li span{width: 80px; line-height:30px;margin-bottom:10px;}
      .news_list ul li a{font-size: 14px !important;line-height:30px;margin-bottom:10px;}
      .news_list ul li b{font-size: 14px;line-height:30px;margin-bottom:10px;}
      .cx_list{border: 0;margin-bottom: 15px;}
      .cx_div{border: 0;}
      .tittle_h2 {background: url(../images/tittle_h2.png) center 0px no-repeat;}
      .flash_p {font-size: 14px;line-height: 60px;height: 60px;}
      .flash_p a {font-size: 14px;ine-height: 60px;}
      .flash_bg {height: 60px;}
      .swiper-pagination{right: -5px !important;bottom: 2px !important;}
      .qylm_div{border: 0;}
      .swiper-container-five{padding:20px 0;}
      .hot_zt_div{padding:20px 20px;padding-bottom:0;}
      .qylm_div{margin-top: 0px;padding:20px 20px;}
      .tittle_h2 a{top: 8px;}
      .link_div1{width: 100%}
      .zs_btn_list a {font-size: 16px;padding: 10px;}
      .zs_btn_list1 a {font-size: 16px;padding: 10px;}
      .zs_div_a{font-size: 16px;padding: 10px 0;}
      .custom-select{height: 47px;}
      .swiper-button-prev-five::after, .swiper-button-next-five::after,.swiper-button-prev-four::after, .swiper-button-next-four::after{ color: #fff !important;}

      .input1_div1 .select-input{height: 45px !important; line-height: 45px !important;}
    .more_h5 a{display: block;border:1px #5f8be1 solid;text-align: center;margin-top: 25px; color: #717171;font-size: 16px;padding:5px 0;}

    .more_h5 a:active{animation: textMove 1s ease;}

    .more_h5 a span{color: #ff0000 !important}
    .more_h5 a:active{background: #5f8be1; color: #fff;text-decoration: none !important}
.input1 {
    width: 83%;
    margin: 0 auto;
    display: flex;
     padding-bottom: clamp(18px, 1.76vw, 27px);}
     .content-container{margin-top: 10px;}
.link_layout{margin-top: 0;}
.input1_div {
    width: 90px;
    display: block;
    background: #5f8be1;
    border-bottom-left-radius: 5px;
    border-top-left-radius: 5px;
    color: #fff;
    font-size: 18px;
    height: clamp(35px, 2.7vw, 47px);;
    line-height: clamp(35px, 2.7vw, 47px);;
}

.input1_div1 {
    width: calc(100% - 90px);
}

.input1_div1 .input_1 {
    width: 100%;
    height: 45px;
    border-bottom-right-radius: 5px;
    border-top-right-radius: 5px;
    border: 1px #5f8be1 solid;
    color: #717171;
    padding: 0 5%;

}

.input2 {
    width: 83%;
    margin: 0 auto;
    display: flex;
    padding-bottom: clamp(18px, 1.5vw, 27px);
}

.input2_div {
    width: 100px;
    display: block;
    background: #5f8be1;
    border-bottom-left-radius: 5px;
    border-top-left-radius: 5px;
    color: #fff;
    font-size: clamp(14px, 1.1vw, 18px);
    height: 45px;
    line-height:45px;
    flex: none
}

.input2_div1 {
    width: calc(100% - 190px);
    flex: none
}

.input2_div1 .input_1 {
    width: 100%;
    height: 45px;
    border-bottom-right-radius: 5px;
    border-top-right-radius: 5px;
    border: 1px #5f8be1 solid;
    color: #717171;
    padding: 0 5%
}

.input2_yzm {
    width: 70px;
    margin-left: 10px;
    margin-top: 3px;
}

.input2_yzm img {
    width: 100%;
}

.input3 {
    width: 83%;
    margin: 0 auto;
    display: flex;
    padding-bottom: clamp(18px, 1.76vw, 27px);
    text-align: center
}

.input3_div1 {
    width: 100%;
}

.input3_div1 .input_1 {
    display: block;
    background: #5f8be1;
    border-radius: 5px;
    color: #fff;
    font-size: 18px;
    height:45px;
    line-height:45px;
    width: 100%;
    border: 1px #5f8be1 solid;
    text-align: center;
    font-size: clamp(18px, 1.5vw, 26px);
    letter-spacing: 0.2em;
}

.input1_div {
    width: 100px;
    display: block;
    background: #5f8be1;
    border-bottom-left-radius: 5px;
    border-top-left-radius: 5px;
    color: #fff;
    font-size: clamp(14px, 1.1vw, 18px);
    height: 45px;
    line-height: 45px;
    flex: none
}

.input4 {
    width: 83%;
    margin: 0 auto;
    display: flex;
    padding-bottom: 27px;
    gap: 0px;
}

.input4_div {
    width: 100px;
    display: block;
    color: #fff;
    font-size: 18px;
    height: 45px;
    border-bottom-left-radius: 5px;
    border-top-left-radius: 5px;
    flex: none
}

.input4_div1 {
    width: calc(100% - 180px);
    flex: none;
}

.input4_div1 .input_1 {
    width: 100%;
    height: 45px;
    border-bottom-right-radius: 5px;
    border-top-right-radius: 5px;
    border: 1px #5f8be1 solid;
}

.input4_div .custom-select1 .custom-select-wrapper {
    border-bottom-left-radius: 5px;
    border-top-left-radius: 5px;
}

.input4_yzm {
    width: 80px;
    border-radius: 50px;
    margin-left: 10px;
    margin-top: 3px;
}

.input4_yzm img {
    width: 100%;
}
.input3_div1 .input_1{font-size: 16px !important; }
.content-container{height: 270px !important;}
.list_layout_div{width:96%;display:block;padding-top: 0px;padding-bottom: 55px;margin-top: 70px;}
.list_btn_main,.list_p_main{width: 100%;}
.list_btn_main ul{display: grid;grid-template-columns: repeat(2, 1fr);gap: 10px}
.list_btn_main li a{height: 60px; line-height: 60px;padding:0;}
.page-link{padding:3px !important;}
.link_div1 span i{top: 12px}
.link_div1 span p{margin-right: 10px;}
.layout_div2{margin-top: 20px;}
.neirong_layout_div{width: 100%;}
.docContent img{width: 90%;margin:0 auto;}
.docSubject{font-size: 26px; line-height: 40px;}
.neirong_layout_div{margin-top: 40px;}
.list_layout_main {
    padding: 5% 8%;
}
.list_zs_main li a{font-size: 16px;}

        .popup{width: 325px;}
         /* 弹出层样式 */

 .popup_div {
           position: fixed;
            top: 50%;
            left: 50%;
            transform: translate(-50%, -50%);
            width: 325px;
            padding: 0px;
            border-radius: 8px;
            box-shadow: 0 4px 20px rgba(0, 0, 0, 0.2);
            z-index: 101;
            background-size: 100%;
            aspect-ratio: 1510 / 1113;
        }
       
        /* 弹出层内容样式 */
        .popup-content {
            margin-top: 20px;
        }
        .zs_img_1{width: 35px;position: absolute;left: 69px;top: 60px}
        .zs_img_1 img{width: 100%;}
        .zs_p_1{position: absolute;left: 72px; top: 137px;font-size: 6px; color: #333;}
        .zs_p_2{position: absolute;left: 72px; top: 153px;font-size: 6px; color: #333;}
        .zs_p_3{position: absolute;left: 72px; top: 168px;font-size: 6px; color: #333;}
        .zs_p_4{position: absolute;left: 72px; top: 184px;font-size: 6px; color: #333;}
        .zs_p_5{position: absolute;left: 201px;top: 82px;font-size: 6px; color: #333;}

        .zs_p_6{position: absolute;left: 220px;top: 180px;font-size: 6px; color: #333;}
        .zs_p_7{position: absolute;left: 247px;top: 180px;font-size: 6px; color: #333;}
        .zs_p_8{position: absolute;left: 265px;top: 180px;font-size: 6px; color: #333;}

        .table-container_h5{width:100%;background: #f5f5f5;padding:10px;margin-bottom: 15px; position: relative;top: 0;left: 0;}
        .table-container_h5 span{margin-right: 10px;font-weight: bold;}
        .table-container_h5 p{width: 100%;text-align: left;font-size: 14px; color: #333; line-height: 30px;}
         
        }
       





}
@media screen and (max-width:375px) {
    .news_list ul li a,.news_list ul li span,.news_list ul li b{line-height: 30px;}
}
/* 平板设备优化 */
@media screen and (min-width: 1024px) and (max-width: 1200px) {
}
   
/* 平板设备优化 */
@media screen and (min-width: 769px) and (max-width: 1024px) {
}