h1,
h2,
h3,
h4,
h5,
h6,
p,
dd,
ol {
    margin: 0;
}

.clearfix {
    zoom: 1;
}

.clear {
    clear: both;
}

.container {
    padding: 0;
    width: 1600px;
    margin: 0 auto;
    overflow: hidden
}

.inContent {
    width: 1600px;
    margin: 0 auto;
    position: relative;
    -webkit-box-sizing: border-box;
    -ms-box-sizing: border-box;
    -moz-box-sizing: border-box;
    box-sizing: border-box;
}

body {
    font-size: 14px;
}

div:focus {
    outline: none;
}

ul,
ol,
body,
html,
p,
dl,
dt,
dd {
    margin: 0;
}

html {
    background: #fff;
    margin: 0 auto;
    font-size: 14px;
    font-family: "微软雅黑";
}

a {
    text-decoration: none;
    color: #333;
    -webkit-transition: color .3s;
    -moz-transition: color .3s;
    transition: color .3s;
}

a:hover {
    color: #02609e;
}

ul,
li {
    padding: 0px;
    margin: 0px;
    list-style-type: none;
}

img {
    border: 0;
    padding: 0px;
    margin: 0px;
}

input,
textarea,
button {
    border: none;
    outline: none;
    /*去除蓝色边框*/
    margin: 0;
    padding: 0;
}

ol {
    padding: 0
}

.left {
    float: left;
}

.right {
    float: right;
}

.fix::before,
.fix::after {
    display: table;
    clear: both;
    content: '';
}


/* 常量设置 */

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

a {
    color: inherit;
}

 ::-moz-selection {
    color: #fff;
    background: #02609e;
}

 ::selection {
    color: #fff;
    background: #02609e;
}

 ::-webkit-input-placeholder {
    color: #aaa;
}

::selection {
    background-color: #02609e;
    color: #fff;
}

.placeholder {
    color: #aaa;
}


/*css组件设置*/

.form-control,
.input-group-addon,
.btn {
    border-radius: 2px;
}

.form-control:focus {
    border-color: #02609e;
    outline: 0;
    box-shadow: inset 0 1px 1px rgba(0, 0, 0, 0.075), 0 0 6px rgba(102, 175, 233, 0.6);
}

.imgZoom img,
.imgY180 img {
    -moz-transition: all .8s ease 0s;
    -ms-transition: all .8s ease 0s;
    -o-transition: all .8s ease 0s;
    -webkit-transition: all .8s ease 0s;
    transition: all .8s ease 0s;
}

.imgZoom {
    overflow: hidden;
    -webkit-transform: rotate(0);
    transform: rotate(0);
}

.imgZoom:hover img {
    -moz-transform: scale(1.1, 1.1);
    -ms-transform: scale(1.1, 1.1);
    -o-transform: scale(1.1, 1.1);
    -webkit-transform: scale(1.1, 1.1);
    transform: scale(1.1, 1.1);
}

.imgY180:hover img {
    cursor: pointer;
    -moz-transform: rotateY(180deg);
    -ms-transform: rotateY(180deg);
    -o-transform: rotateY(180deg);
    -webkit-transform: rotateY(180deg);
    transform: rotateY(180deg)
}


/*
    设置在弹性容器上的属性
*/

.flex {
    display: -webkit-box;
    display: -moz-box;
    display: -ms-flexbox;
    display: -webkit-flex;
    display: flex;
}

.align_items_center {
    -webkit-box-align: center;
    -ms-flex-align: center;
    align-items: center;
}

.align_items_start {
    -webkit-box-align: flex-start;
    -ms-flex-align: flex-start;
    align-items: flex-start;
}

.align_items_end {
    -webkit-box-align: flex-end;
    -ms-flex-align: flex-end;
    align-items: flex-end;
}

.justify_content_around {
    -webkit-box-pack: center;
    -webkit-justify-content: space-around;
    -ms-flex-pack: center;
    justify-content: space-around;
}

.justify_content_center {
    -webkit-box-pack: center;
    -ms-flex-pack: center;
    justify-content: center;
}

.justify_content_start {
    -webkit-box-pack: start;
    -ms-flex-pack: start;
    justify-content: start;
}

.justify_content_space_between {
    -webkit-box-pack: justify;
    -ms-flex-pack: justify;
    justify-content: space-between;
}

.justify_content_end {
    -webkit-box-pack: justify;
    -ms-flex-pack: justify;
    justify-content: end;
}

.boxSizing {
    -moz-box-sizing: border-box;
    -webkit-box-sizing: border-box;
    -o-box-sizing: border-box;
    -ms-box-sizing: border-box;
    box-sizing: border-box;
}

.rotate img {
    -webkit-transition: all 1s;
    -moz-transition: all 1s;
    transition: all 1s;
}

.rotate:hover img {
    -moz-transform: scaleX(-1);
    -webkit-transform: scaleX(-1);
    -o-transform: scaleX(-1);
    transform: scaleX(-1);
}

.head {
    /*使导航栏固定在顶部*/
    position: fixed;
    top: 0;
    left: 0px;
    z-index: 99999;
    width: 100%;
    padding: 0 140px;
    height: 90px;
    border-bottom: 1px #546889 solid;
}

.navigation li {
    float: left;
    color: #ffffff;
    font-size: 18px;
    margin: 0 20px;
    position: relative;
}

.navigation .on {
    font-weight: bold;
    color: #ffffff;
}

.navigation li a {
    display: block;
    line-height: 90px;
    -webkit-transition: all 0.5s ease-out;
    transition: all 0.5s ease-out;
}

.navigation>ul>li a:hover {
    -webkit-transform: translateX(5px);
    transform: translateX(5px);
}

.navigation .on {
    font-weight: bold;
}

.language {
    margin-right: 30px;
}

.language .on {
    padding: 5px 10px;
    border-radius: 20px;
}

.language li span {
    font-size: 18px;
    color: #fff;
    margin: 0 10px;
}

.language .list {
    position: absolute;
    width: 150px;
    background: #fff;
    color: #333;
    top: 66px;
    display: none;
}

.language .list li {
    font-size: 16px;
    line-height: 30px;
    text-align: center;
}

.navigation a:hover {
    color: #ffffff;
}

.navigation .dropdown-menu {
    display: none;
    position: fixed;
    z-index: 99;
    background: #f8f8fb;
    width: 100%;
    left: 0;
    padding-bottom: 40px;
}
.navigation .dropdown-menu .title{
    font-size: 16px;
}
.navigation .dropdown-menu li {
    color: #333333;
}

.navigation li:hover .dropdown-menu {
    display: block;
}

.navigation li .third {
    font-size: 14px;
    color: #1265cc;
    line-height: 30px;
    font-weight: normal;
}

.navigation li .third:hover,
.navigation .dropdown-menu li a:hover {
    color: #1265cc !important;
}
/* 搜索框 */

.search-box {
    display: flex;
    align-items: center;
    border: 1px solid #ddd;
    border-radius: 30px;
    padding: 5px 20px;
}

.search-box input {
    border: none;
    outline: none;
    padding: 5px;
    font-size: 14px;
    width: 210px;
    background: none;
  color: #fff;
  text-align: center;
}
.search-box input:-webkit-autofill,
.search-box input:-webkit-autofill:hover, 
.search-box input:-webkit-autofill:focus, 
.search-box input:-webkit-autofill:active {
    -webkit-box-shadow: 0 0 0px 1000px transparent inset !important; /* 用巨大的内阴影覆盖默认背景 */
    background-color: transparent !important; /* 强制背景透明 */
    transition: background-color 5000s ease-in-out 0s; /* 延长背景色过渡时间，防止闪烁 */
    -webkit-text-fill-color: #ffffff !important; 
    color: #ffffff !important; /* 兜底属性 */
}
.search-box button {
    background: none;
    border: none;
    cursor: pointer;
    color: #666;
}

.search-box button img {
    width: 26px;
}


/* 遮罩层（蒙层） */

#overlay {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background-color: rgba(0, 0, 0, 0.5);
    display: none;
    /* 默认隐藏 */
    justify-content: center;
    align-items: center;
    z-index: 1000;
}


/* 弹窗容器 */

#searchModal {
    background: white;
    padding: 20px;
    border-radius: 8px;
    box-shadow: 0 4px 12px rgba(0, 0, 0, 0.3);
    width: 300px;
    position: relative;
}


/* 关闭按钮 */

#closeBtn {
    position: absolute;
    top: 5px;
    right: 5px;
    background: none;
    border: none;
    font-size: 18px;
    cursor: pointer;
    color: #999;
}


/* 搜索输入框 */

#searchInput {
    width: 100%;
    padding: 8px;
    margin-bottom: 10px;
    box-sizing: border-box;
    border: 1px solid #ccc;
    border-radius: 4px;
}


/* 搜索按钮 */

#searchSubmit {
    width: 100%;
    padding: 8px;
    background-color: #1265cc;
    color: white;
    border: none;
    border-radius: 4px;
    cursor: pointer;
}

#searchSubmit:hover {
    background-color: #1265cc;
}

.hidden {
    display: none;
}

.banner {
    position: relative;
}

.banner img {
    display: block;
    width: 100%;
}

.banner .center {
    position: absolute;
    text-align: center;
    width: 100%;
    z-index: 999;
    color: #fff;
    top: 30%;
}

.banner .center h1 {
    font-size: 60px;
    
    color: #ffffff;
    letter-spacing: 10px;
  background: linear-gradient(to bottom, #ffffff, #ffffff, #007bff);
  
  -webkit-background-clip: text;
  background-clip: text;
  color: transparent;
  font-weight: bold; 

}
.banner .center h2 {
    
  background: linear-gradient(to bottom, #ffffff, #ffffff, #007bff);
  
  -webkit-background-clip: text;
  background-clip: text;
  color: transparent;
  font-weight: bold; 

}
.banner .center .input {
    height: 54px;
    background: #ffffff;
    width: 590px;
    margin: 50px auto;
    padding: 5px;
    border-radius: 30px;
    overflow: hidden;
    display: none;
}

.banner .center .input img {
    margin: 0 auto;
    width: auto;
}

.banner .center .input input {
    width: 80%;
    height: 100%;
    text-indent: 2em;
    font-size: 16px;
}

.banner .center .input button {
    width: 90px;
    height: 100%;
    background: #1265cc;
    border-radius: 30px;
}

.index01 {
    position: absolute;
    bottom: 0;
    z-index: 99;
    width: 100%;
}

.index01 .main {
    background: #ffffff;
    border-top-left-radius: 10px;
    border-top-right-radius: 10px;
}

.index01 .tab {
    text-align: center;
    font-size: 16px;
    padding: 20px 10px 30px 10px;
    width: 12.5%;
    box-sizing: border-box;
    cursor: pointer;
}

.index01 .tab-list .cur {
    background: #1265cc;
    color: #ffffff;
}

.index01 .tab img {
    height: 99px;
    margin-bottom: 15px;
    margin: 0 auto;
    width: auto;
}

.index02 .pro-fl-box {
    background: #f8fbff;
    padding: 50px 140px;
}

.index02 .pro-fl-box .prolist .flex {
    flex-wrap: wrap;
}

.index02 .pro-fl-box a {
    display: block;
    width: 25%;
    font-size: 16px;
    line-height: 50px;
}

.hidden {
    display: none;
}

.index03 {
    margin-top: 40px;
    position: relative;
}

.index03 .main {
    position: relative;
}

.index03 .main .content .bg {
    display: block;
    width: 100%;
    min-height: 700px;
}

.index03 .main .box {
    position: absolute;
    width: 100%;
    top: 100px;
}

.index03 .main .box .bt {
    margin-bottom: 50px;
}

.index03 .main .box .detail {
    color: #ffffff;
    font-size: 20px;
    line-height: 36px;
    width: 50%;
}

.index03 .main .box .more {
    width: 180px;
    height: 60px;
    background: #ffffff;
    text-align: center;
    line-height: 60px;
    display: block;
    color: #374f6b;
    font-weight: bold;
    font-size: 24px;
    border-radius: 30px;
    margin-top: 50px;
}

.index03 .fl-box {
    position: absolute;
    bottom: 70px;
    z-index: 99;
    width: 100%;
}

.index03 .fl-box .tab {
    background: rgba(4, 32, 56, 0.8);
    width: 12%;
    padding: 27px 0;
    text-align: center;
    color: #ffffff;
    font-size: 22px;
}

.index03 .fl-box .tab .icon {
    width: 50px;
    height: 50px;
    margin: 0 auto 20px auto;
}

.index03 .fl-box .cur {
    background: rgba(255, 255, 255, 0.8);
    color: #374f6b;
}

.index03 .fl-box .tab .icon1 {
    background: url(../images/icon2.png) no-repeat 100%;
    
}

.index03 .fl-box .tab .icon2 {
    background: url(../images/icon1.png) no-repeat 100%;
}

.index03 .fl-box .tab .icon3 {
    background: url(../images/icon3.png) no-repeat 100%;
}

.index03 .fl-box .tab .icon4 {
     background: url(../images/icon7.png) no-repeat 100%;
}

.index03 .fl-box .tab .icon5 {
     background: url(../images/icon6.png) no-repeat 100%;
}

.index03 .fl-box .tab .icon6 {
     background: url(../images/icon4.png) no-repeat 100%;
   
}

.index03 .fl-box .tab .icon7 {
    background: url(../images/icon5.png) no-repeat 100%;
   
   
}

.index03 .fl-box .tab .icon8 {
    background: url(../images/icon8.png) no-repeat 100%;
}

.index03 .fl-box .cur .icon1 {
    background: url(../images/icon2on.png) no-repeat 100%;
}

.index03 .fl-box .cur .icon2 {
    
    background: url(../images/icon1on.png) no-repeat 100%;
}

.index03 .fl-box .cur .icon3 {
    background: url(../images/icon3on.png) no-repeat 100%;
}

.index03 .fl-box .cur .icon4 {
    
    background: url(../images/icon7on.png) no-repeat 100%;
}

.index03 .fl-box .cur .icon5 {
     background: url(../images/icon6on.png) no-repeat 100%;
}

.index03 .fl-box .cur .icon6 {
    background: url(../images/icon4on.png) no-repeat 100%;
   
}

.index03 .fl-box .cur .icon7 {
    background: url(../images/icon5on.png) no-repeat 100%;
    
}

.index03 .fl-box .cur .icon8 {
    background: url(../images/icon8on.png) no-repeat 100%;
}

.index04 {
    background: url(../images/index_04.jpg) no-repeat center;
    padding: 100px 0;
    background-size: 100% 100%;
}

.index04 .title {
    text-align: center;
    font-size: 40px;
    font-weight: bold;
    margin-bottom: 40px;
}

.index04 .detail {
    font-size: 16px;
    line-height: 30px;
    color: #666666;
}

.index04 .num-box {
    margin: 60px 0;
}

.index04 .num-box .item {
    position: relative;
    padding: 0 4%;
}

.index04 .num-box .item:hover .num {
    color: #285bf9;
}

.index04 .num-box .num {
    font-size: 60px;
    font-weight: bold;
    color: #666666
}

.index04 .num-box .txt {
    color: #666666
}

.index04 .num-box .jia {
    position: absolute;
    top: 0;
    right: 12%;
    font-size: 30px;
}

.index04 .hzhb {
    flex-wrap: wrap;
}

.index04 .hzhb .item {
    width: 14%;
    margin: 0 1% 30px 1%;
}

.index04 .hzhb .item img {
    display: block;
    width: 100%;
}

.index05 {
    background: url(../images/bg_02.jpg) no-repeat center;
    padding: 100px 0;
    height: 629px;
    position: relative;
    background-size: 100%;
}

.index05 h1 {
    font-size: 40px;
    color: #ffffff;
    margin-bottom: 36px;
}

.index05 .t2 {
    font-size: 16px;
    color: #ffffff;
    width: 50%;
    line-height: 30px;
}

.index05 .rt {
    width: 15%;
    color: #ffffff;
    font-size: 16px;
}

.index05 .box2 {
    width: 100%;
    position: absolute;
    bottom: 100px;
}

.index05 .brand-container .item {
    width: 23%;
    height: 120px;
    /* 初始只显示主标题 */
    overflow: hidden;
    background: linear-gradient(to right, #c7d8f0, #ffffff);
    border: 1px solid #ddd;
    box-sizing: border-box;
    transition: height 0.4s ease;
    /* 缓慢展开 */
    cursor: default;
    padding: 0 40px;
    position: relative;
}

.index05 .brand-container .item:hover {
    height: 360px;
    /* 展开后完整高度 */
}

.index05 .brand-container .item .num {
    opacity: 0;
    transition: opacity 0.3s ease;
    font-size: 130px;
    font-weight: bold;
    color: rgba(40, 91, 249, 0.07);
    left: 0;
    top: 0;
    line-height: 130px;
    position: absolute;
}

.index05 .brand-container .item:hover .num {
    opacity: 1;
}

.index05 .brand-container .top {
    float: right;
}

.index05 .brand-container .top img {
    width: 55px;
    position: absolute;
    transition: all 0.3s ease;
    right: 30px;
    top: 30px;
}

.index05 .brand-container .item:hover .top img {
    width: 85px;
    height: 85px;
    top: 20px;
    right: 20px;
}

.index05 .brand-container .title {
    position: absolute;
    transition: all 0.3s ease;
    left: 30px;
    top: 40px;
    font-size: 24px;
}

.index05 .brand-container .item:hover .title {
    top: 120px;
}

.index05 .brand-container .detail {
    opacity: 0;
    transition: opacity 1s ease;
    position: absolute;
    bottom: 40px;
    left: 0;
    padding: 0 30px;
    font-size: 16px;
    color: #666666;
    line-height: 30px;
    display: -webkit-box;
    -webkit-box-orient: vertical;
    -webkit-line-clamp: 5;
    overflow: hidden;
}

.index05 .brand-container .item:hover .detail {
    opacity: 1;
}

.index06 {
    background: #f7f7f7;
    padding: 100px 0;
}

.index06 .top-box {
    margin-bottom: 50px;
}

.index06 .top-box h1 {
    font-size: 40px;
    font-weight: normal;
}

.index06 .top-box .tab {
    display: block;
    width: 200px;
    height: 40px;
    line-height: 40px;
    text-align: center;
    background: #ffffff;
    border: 1px #2371f3 solid;
    border-radius: 30px;
    margin-left: 30px;
    font-size: 18px;
}

.index06 .top-box .cur {
    background: #2371f3;
    color: #ffffff;
}

.index06 .list-box {
    padding: 0 30px;
    background: #ffffff;
}

.index06 .list-box .item {
    line-height: 72px;
    border-bottom: 1px #eeeded solid;
}

.index06 .list-box .item .title {
    font-size: 16px;
    color: #666666;
    overflow: hidden;
    text-overflow: ellipsis;
    white-space: nowrap;
    width: 95%;
    display: block;
}

.index06 .list-box .item .txt {
    width: 85%;
}

.index06 .list-box .item .txt img {
    height: 14px;
    margin-right: 10px;
}

.index06 .list-box .date {
    color: #666666;
}

.foot {
    background: url(../images/footbg_20.jpg) no-repeat center;
    padding: 45px 0;
    background-size: 100% 100%;
}
.foot .social-icons {
   position: absolute;
  right: 0;
  bottom: 20px;
    display: flex;
    gap: 12px;
}

.foot .social-icons a {
    width: 32px;
    height: 32px;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    color: #fff;
    text-decoration: none;
    transition: transform 0.2s;
}

.foot .social-icons a:hover {
    transform: translateY(-3px);
}

.foot .social-icons img {
    height: 15px;
}


/* 社交图标品牌色 */

.bg-twitter {
    background-color: #1da1f2;
}

.bg-facebook {
    background-color: #1877f2;
}

.bg-instagram {
    background-color: #e4405f;
}

.bg-pinterest {
    background-color: #bd081c;
}
.bg-alibaba {
    background-color: #f3a91b;
}
.foot .lf h1 {
    color: #ffffff;
    font-size: 26px;
    margin: 20px 0;
}

.foot .lf h2 {
    color: #ffffff;
  font-size: 18px;
  line-height: 30px;
  font-weight: normal;
  margin-bottom: 10px;
}

.foot .lf p {
    color: #ffffff;
    font-size: 16px;
    line-height: 30px;
}

.foot .lf .fx {
   
  position: absolute;
  right: 0;
  bottom: 20px;
}

.foot .rt {
    width: 65%;
}

.foot .rt .item .title {
    color: #ffffff;
    font-size: 18px;
    margin-bottom: 20px;
    display: block;
    height: 20px;
}
.footUl{
    margin-right: 30px;
}
.foot .rt .item li {
    font-size: 16px;
    line-height: 30px;
    color: #b2b2b2;
}

.foot .wrap {
    position: relative;
}

.foot .ewm {
    position: relative;
    right: 0;
    bottom: 0;
}

.foot .ewm img {
    margin-left: 30px;
    width: 100px;
}

.copyright {
    padding: 15px 0;
    font-size: 16px;
    text-align: right;
    color: #999999;
    background: #03152f;
}
.ny-banner{
    height: 360px;
    overflow: hidden;
    position: relative;
}
.ny-banner img {
    display: block;
    height: 170%;
    top: -120px;
    position: absolute;
  left: 50%;
  transform: translateX(-50%);
}

.location {
    padding: 15px 0;
    color: #939393;
    font-size: 16px;
}

.location a {
    margin: 0 10px;
}

.about01 {
    background: url(../images/aboutbg_07.jpg) no-repeat left top;
    background-size: 100% auto;
    padding-bottom: 140px;
}

.about01 .rt h1 {
    font-size: 44px;
    font-weight: normal;
    margin-top: 60px;
}

.about01 .rt h2 {
    font-size: 44px;
    font-weight: normal;
    color: #1265cc;
    margin-bottom: 10px;
}

.about01 .rt {
    width: 45%;
}

.about01 .rt img {
    width: 100%;
}

.about01 .rt .line {
    width: 30px;
    height: 6px;
    background: #1265cc;
    border-radius: 10px;
    margin-bottom: 160px;
}

.about01 .jianjie {
    margin-top: 60px;
    width: 48%;
}

.about01 .jianjie p {
    font-size: 16px;
    line-height: 34px;
    color: #666666;
}

.about01 .wrap {
    position: relative;
}

.about01 .num-box {
    position: absolute;
    bottom: 0;
    width: 48%;
}
.about06 {
    margin: 40px auto;
}
.about06 .num-box .item {
    position: relative;
    padding-right: 50px;
    margin-right: 20px;
    margin-bottom: 40px;
}

.about06 .num-box .num {
    font-size: 40px;
    font-weight: bold;
    color: #666666;
}

.about06 .num-box .jia {
    position: absolute;
    top: 0;
    right: 12%;
    font-size: 30px;
}

.about06 .num-box .txt {
    color: #666666;
    font-size: 16px;
    font-weight: bold;
}

.about06 .num-box .item:hover .num {
    color: #285bf9;
}

.about02 {
    position: relative;
}

.about02 .bg {
    width: 100%;
    display: block;
}

.about02 .box {
    position: absolute;
    width: 100%;
    bottom: 80px;
}

.about02 .box .item {
    color: #ffffff;
    text-align: center;
    width: 12%;
    padding: 0 80px;
}

.about02 .box .item img {
    height: 42px;
    width: 42px;
}

.about02 .box .item h3 {
    font-size: 22px;
    margin: 15px 0;
}

.about02 .box .item .line {
    width: 30px;
    height: 6px;
    background: #ffffff;
    border-radius: 6px;
    margin: 0 auto 20px auto;
}

.about02 .box .item p {
    font-size: 20px;
    line-height: 30px;
}

.about03 {
    background: url(../images/aboutbg_09.jpg) center no-repeat;
}

.about03 .bt {
    padding: 90px 0;
    position: relative;
}

.about03 .bt h1 {
    font-size: 40px;
    font-weight: normal;
}

.about03 .swiper-slide {
    border: 15px #f7f7f7 solid;
}

.about03 .swiper-slide img {
    width: 100%;
}
.about03 .swiper-slide p{
    height: 50px;
    padding: 10px 20px;
    display: flex;
    align-items: center;
    background: #f7f7f7;
    font-size: 16px;
}
.about03 .swiper-button-prev,
.about03 .swiper-button-next {
    width: 50px;
    height: 50px;
}

.about03 .swiper-button-prev {
    background: url(../images/pagination_12.jpg) no-repeat 100%;
    right: 50px;
    left: auto;
}

.about03 .swiper-button-next {
    background: url(../images/pagination_13.jpg) no-repeat 100%;
    right: 0;
}

.about03 .pagination {
    position: absolute;
    right: 0;
    width: 10%;
}

.about04 {
    background: url(../images/fzlc_03.jpg) no-repeat center 100%;
}

.about04 .wrap {
    height: 860px;
    position: relative;
}

.about04 h1 {
    position: absolute;
    top: 110px;
    left: 0;
    font-size: 40px;
    font-weight: normal;
}

.about04 .licheng-content ul li {
    width: 33.3%;
    float: left;
    height: 700px;
    margin-top: 100px;
}

.about04 .licheng-content ul li a {
    display: block;
    width: 100%;
    position: relative;
}

.about04 .licheng-content ul li.item1 a {
    top: 200px;
}

.about04 .licheng-content ul li.item3 a {
    top: 120px;
}

.about04 .licheng-content ul li .lc-right {
    position: absolute;
    width: 100%;
    height: 100%;
    display: table;
    left: 0;
}

.about04 .licheng-content .right-text h3 {
    font-size: 30px;
    margin-bottom: 10px;
    font-weight: normal;
}

.about04 .licheng-content .right-text p {
    font-size: 16px;
    line-height: 30px;
    color: #666666;
}

.about04 .licheng-content .right-text .img {
    width: 270px;
    height: 270px;
    border: 1px #eeefef solid;
    border-radius: 50%;
    overflow: hidden;
    background: #ffffff;
    margin-top: 20px;
}

.about04 .licheng-content .right-text .img img {
    display: block;
    object-fit: contain;
}

.about04 .licheng-content .item1 {
    padding-left: 100px;
}

.about04 .licheng-content .item2 {
    padding: 0 40px;
}

.about04 .licheng-content .item3 {
    padding: 0 40px;
}

.waves {
    position: absolute;
    left: 0;
    top: 0;
    right: 0;
    bottom: 0;
    z-index: -1;
}

.large-header {
    position: absolute;
    left: 0;
    top: 0;
    width: 100%;
    height: 100%;
    pointer-events: none;
    z-index: 10;
}

.zlfw01 {
    padding-top: 100px;
    position: relative;
    width: 100%;
    padding-bottom: 180px;
}

.zlfw01 .lf {
    width: 40%;
}

.zlfw01 .lf h1{
   
    margin-bottom: 100px;
}
.zlfw01 .lf h1 p{
     font-size: 44px;
    font-weight: normal;
}
.zlfw01 .rt {
    width: 50%;
}

.zlfw01 .rt p {
    font-size: 16px;
    line-height: 30px;
    color: #666666;
}

.zlfw01 .rt .xz-bt {
    margin-top: 60px;
    margin-bottom: 10px;
    font-size: 20px;
    color: #666666;
}

.zlfw01 .rt .link {
   padding: 0 20px;
    line-height: 50px;
    background: #f8fbff;
    font-size: 16px;
    color: #666666;
     
    margin-bottom: 20px;
}

.zlfw01 .lf h2 {
    
    margin-bottom: 10px;
}
.zlfw01 .lf h2 p{
    font-size: 44px;
    font-weight: normal;
}
.zlfw01 .lf .num {
    font-size: 70px;
    font-weight: bold;
    color: #013996;
}

.zlfw01 .lf p {
    font-size: 20px;
}

.zlfw02 {
    margin-top: 50px;
    margin-bottom: 100px;
}

.zlfw02 .lf {
    position: relative;
    width: 50%;
}

.zlfw02 .lf img {
    width: 100%;
}

.zlfw02 .lf .txt {
    position: absolute;
    z-index: 99;
    color: #ffffff;
    top: 40px;
    left: 40px;
}

.zlfw02 .lf .txt .t1 {
    font-size: 40px;
    margin-bottom: 20px;
}

.zlfw02 .lf .txt .t2 {
    font-size: 16px;
    line-height: 30px;
    width: 95%;
}

.zlfw02 .rt {
    position: relative;
    width: 48%;
}

.zlfw02 .rt img {
    width: 100%;
}

.zlfw02 .rt .box1 {
    position: relative;
}

.zlfw02 .rt .box1 .txt {
    position: absolute;
    color: #ffffff;
    z-index: 99;
    top: 0;
    left: 0;
    height: 100%;
    width: 100%;
}

.zlfw02 .rt .box1 .txt .t1 {
    font-size: 40px;
    position: absolute;
    top: 40px;
    left: 40px;
}

.zlfw02 .rt .box1 .txt .t2 {
    font-size: 16px;
    line-height: 30px;
    width: 60%;
    position: absolute;
    bottom: 40px;
    left: 40px;
}

.zlfw02 .rt .box2 {
    margin-top: 30px;
}

.zlfw02 .rt .box2 .group {
    width: 48%;
    background: #f8fbff;
    padding: 60px 40px;
    border-radius: 16px;
}

.zlfw02 .rt .box2 .group .t1 {
    font-size: 30px;
    margin-bottom: 20px;
}

.zlfw02 .rt .box2 .group .t2 {
    font-size: 16px;
    line-height: 30px;
    color: #666666;
    margin-bottom: 20px;
}

.zlfw02 .rt .box2 .group .lxwm {
    color: #013996;
    font-size: 16px;
}

.newslist .fl a {
    padding: 15px 10px;
    font-size: 20px;
    margin: 0 20px;
}

.newslist .fl {
    border-bottom: 1px #eeeeed solid;
    margin-bottom: 60px;
}

.newslist .fl .on {
    border-bottom: 3px #2371f3 solid;
    color: #013996;
}

.newslist .news-box {
    background: #f8fbff;
    padding: 20px;
}

.newslist .news-box .img {
    padding-bottom: 25%;
    height: 0;
    position: relative;
    width: 44%;
    display: block;
}

.newslist .news-box .img img {
    width: 100%;
    height: 100%;
    position: absolute;
    top: 0;
    left: 0;
    display: block;
}

.newslist .news-box .txt {
    width: 55%;
    background: url(../images/new_05.jpg) right no-repeat;
    padding: 30px 50px;
}

.newslist .news-box .txt .title {
    font-size: 22px;
    line-height: 40px;
    margin-bottom: 20px;
    display: block;
    display: -webkit-box;
    -webkit-box-orient: vertical;
    -webkit-line-clamp: 2;
    overflow: hidden;
}

.newslist .news-box .txt .detail {
    font-size: 16px;
    line-height: 30px;
    color: #666666;
    display: -webkit-box;
    -webkit-box-orient: vertical;
    -webkit-line-clamp: 5;
    overflow: hidden;
    margin-bottom: 60px;
}

.newslist .news-box .txt .date {
    font-size: 16px;
    color: #666666;
}

.newslist .news-box .txt .more {
    color: #013996;
    font-size: 16px;
}

.newslist .listbox li {
    padding: 30px 0;
    border-bottom: 1px #d2d2d2 solid;
}

.newslist .listbox li .date {
    padding: 10px;
    text-align: center;
    color: #013996;
    font-weight: bold;
    border: 1px #d2d2d2 solid;
    margin-right: 30px;
}

.newslist .listbox li .date p {
    font-size: 26px;
}

.newslist .listbox li .title {
    /*width: 80%; */
    overflow: hidden;
    text-overflow: ellipsis;
    white-space: nowrap;
    font-size: 24px;
}

.newslist .listbox li .lf {
    width: 85%;
}

.newslist .listbox li .more {
    color: #013996;
    font-size: 16px;
}

.pages {
    clear: both;
    font-size: 14px;
    text-align: center;
    overflow: hidden;
    margin: 60px 0;
}

.pages ul {
    display: inline-block;
    margin: 0 auto;
    padding: 0
}

.pages ul a {
    color: #555;
    display: block;
    padding: 5px 11px;
    border: 1px solid #ddd;
    float: left;
    margin: 5px;
    font-size: 12px
}

.pages ul a.page-num-current {
    background: #013996;
    color: #ffffff;
}

.pages ul a:hover {
    background: #013996;
    color: #ffffff;
}

.news-xq {
    margin-top: 20px;
}

.news-xq .bt {
    padding: 35px 0;
    margin-bottom: 20px;
}

.news-xq .bt .sda {
    text-align: center;
    color: #bfbfc1;
    font-size: 16px;
}

.news-xq .bt img {
    margin-right: 10px;
}

.news-xq .bt span {
    margin-right: 40px;
}

.news-xq h1 {
    text-align: center;
    font-size: 36px;
    color: #464646;
    margin-bottom: 30px;
}

.news-xq .xq {
    padding-bottom: 30px;
}

.news-xq .xq p {
    font-size: 16px;
    line-height: 34px;
    text-indent: 2em;
    color: #585858;
}

.newspage {
    overflow: hidden;
    margin: 40px 0
}

.newspage .y {
    height: 60px;
    line-height: 60px;
    border-bottom: 1px #e4e4e4 solid;
    overflow: hidden;
}

.newspage .y .left {
    float: left;
    width: 108px;
    height: 60px;
    text-align: center;
    color: #b4b4b4;
    font-size: 16px;
    display: block
}

.newspage .y a {
    font-size: 16px;
    color: #333;
    font-weight: bold;
    margin: 0 30px;
    display: block;
    float: left;
    overflow: hidden;
    text-overflow: ellipsis;
    white-space: nowrap;
    width: 65%;
}

.newspage .y span {
    float: right;
    font-size: 14px;
    color: #b4b4b4;
}

.newspage .y:hover .left {
    background: #013996;
    color: #fff;
}

.lxwm .box1 {
    padding: 70px 0;
}

.lxwm .box1 h1 {
    font-size: 44px;
    font-weight: normal;
    margin-bottom: 80px;
}

.lxwm .box1 h2 {
    font-size: 24px;
    font-weight: normal;
    padding-bottom: 26px;
    border-bottom: 1px #bfbfbf solid;
}

.lxwm .box1 .item {
    padding: 40px 0;
    border-bottom: 1px #bfbfbf solid;
    line-height: 30px;
    font-size: 18px;
}

.lxwm .box1 .item .group {
    margin-right: 100px;
}

.lxwm .box1 .item .group h5 {
    font-size: 16px;
    font-weight: normal;
}

.lxwm .map {
    height: auto;
    padding:0px;
    margin:0px;
}
.lxwm .map img{
    max-width: 100%;
    display: block;
}

.lxwm .liuyan {
    background: url(../images/liuyan_17.jpg) no-repeat center;
    padding: 80px 0;
}

.lxwm .liuyan .bt {
    text-align: center;
    color: #ffffff;
    font-size: 44px;
    margin-bottom: 40px;
}

.lxwm .liuyan .main {
    background: #013996;
    padding: 40px;
}

.lxwm .liuyan .input {
    flex-wrap: wrap;
}

.lxwm .liuyan .input input {
    width: 45%;
    background: #013996;
    line-height: 60px;
    border-bottom: 1px #ffffff solid;
    color: #ffffff;
    font-size: 16px;
    margin-bottom: 16px;
}

.lxwm .liuyan button {
    width: 160px;
    height: 46px;
    line-height: 46px;
    text-align: center;
    background: #2371f3;
    font-size: 16px;
    color: #ffffff;
    border-radius: 30px;
    margin: 30px auto;
    display: block;
}

.yyly .bt {
    text-align: center;
    padding: 40px 0;
}

.yyly .bt h1 {
    font-size: 40px;
    font-weight: normal;
}

.yyly .bt h2 {
    font-size: 20px;
    font-weight: normal;
}

.yyly .item {
    margin-bottom: 30px;
}

.yyly .item .lf,
.yyly .item .rt {
    width: 49%;
}

.yyly .item .title {
    font-size: 26px;
    color: #1265cc;
    font-weight: bold;
    line-height: 60px;
    text-indent: 1em;
}

.yyly .item .txt {
    background: #f8fbff;
    padding: 20px;
    flex-wrap: wrap;
    margin-right: -2%;
}

.yyly .item .txt a {
    display: block;
  font-size: 16px;
  line-height: 36px;
  width: 48%;
  overflow: hidden;
  text-overflow: ellipsis;
  white-space: nowrap;
  margin-right: 2%;
}

.yyly .item .txt span {
    color: #2371f3;
}

.yyly .item .lf .box {
    width: 60%;
}

.prolist .probox {
    flex-wrap: wrap;
    margin-right: -2%;
}

.prolist .item {
    background: #f0f6ff;
  text-align: center;
  padding: 28px;
  width: 18%;
  margin-right: 2%;
  margin-bottom: 30px;
}
.prolist .item:nth-child(even){
    background: #ffffff
}
.prolist .item .title {
    font-size: 18px;
    text-align: center;
    display: block;
    color: #2371f3;
    margin-bottom: 36px;
}

.prolist .item .proimg {
    margin: 0 auto;
    display: block;
    height: 80px;
}

.prolist .item .link {
    width: 100%;
    margin-top: 20px;
}

.prolist .item .link .box {
    width: 100%;
}
.prolist .item .justify_content_space_between .box{
    width: 46%;
}
.prolist .item .link .box a {
    display: block;
    font-size: 14px;
    line-height: 30px;
    text-indent: 1em;
    background: url(../images/65.png) center left no-repeat;
    text-align: left;
    overflow: hidden;
    text-overflow: ellipsis;
    white-space: nowrap;
}
.prolist .item .link .searchtitle{
    background: none !important;
    color: #999999;
    margin-bottom: 10px;
    float: left;
}
.searchlist .probox{
   /* 
    -webkit-column-count: 3;
    -moz-column-count: 3;
    column-count: 3;

   
    -webkit-column-gap: 20px;
    -moz-column-gap: 20px;
    column-gap: 20px; 
    margin-bottom:50px;
    margin-right: 0;*/

    margin-bottom: 50px;
    margin-right: 0;
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(500px,1fr));
    gap: 30px;
} 
.searchlist .item .link .box a{
    line-height: 16px;
    /*border-right: 1px #ccc solid;*/
    padding-right: 10px;
    margin-bottom: 25px;
    box-sizing: border-box;
  width: 100%;
}
.searchbt{
    width: 100% !important;
    border-right: 0 !important;
    display: block;
}
.searchlist .item{
    width: 100%;
    break-inside: avoid;
    margin-bottom: 20px;
}
.searchlist .item:nth-child(2n) {
  background: #f0f6ff !important;
}
.search-form {
    padding: 30px 60px;
    background: #f8fbff;
}

.lf-box {
    width: 12%;
}

.lf-box h1 {
    font-size: 28px;
    color: #013996;
    text-transform: uppercase;
    margin-bottom: 30px;
}

.lf-box .search-container {
    flex-direction: column;
    gap: 12px;
    width: 100%;
    margin: 0 auto;
}

.search-bar {
    align-items: center;
    border: 1px solid #d9d9d9;
    border-radius: 8px;
    padding: 4px 12px;
    background-color: white;
    box-shadow: 0 1px 3px rgba(0, 0, 0, 0.1);
    position: relative;
}

.search-bar input {
    width: 80%;
    border: none;
    outline: none;
    font-size: 14px;
    padding: 0;
    margin: 0;
    background: transparent;
    color: #333;
}

.search-bar .search-icon {
    margin-right: 8px;
}

.search-bar .search-icon img {
    width: 16px;
}

.search-bar .clear-btn {
    cursor: pointer;
    color: #666;
    font-size: 16px;
    padding: 4px;
    border: none;
    background: none;
    outline: none;
    transition: color 0.2s ease;
}

.search-bar .clear-btn:hover {
    color: #333;
}

.reset-button {
    display: flex;
    justify-content: center;
    align-items: center;
    gap: 8px;
    background-color: #5758fd;
    color: white;
    border: none;
    border-radius: 8px;
    padding: 8px 16px;
    font-size: 14px;
    cursor: pointer;
    transition: background-color 0.2s ease;
}

.reset-button:hover {
    background-color: #3d3ed9;
}

.reset-button .refresh-icon {
    margin-left: 4px;
}

.reset-button .refresh-icon img {
    width: 20px;
}

.range-slider {
    position: relative;
    height: 80px;
    box-sizing: border-box;
    left: 10%;
    width: 3px;
    background: #e5e7eb;
    border-radius: 4px;
}

.rt-box .item .label {
    width: 100%;
    font-weight: bold;
    color: #333;
    margin-bottom: 20px;
}

.rt-box .item {
    background: #ffffff;
    border: 1px #d2d2d2 solid;
    width: 16.6%;
    padding: 20px;
}

.range-slider .track {
    position: absolute;
    left: 10%;
    top: 0;
    width: 3px;
    height: 100%;
    background-color: #007bff;
    /*border-radius: 3px;
    transform: translateX(-50%);*/
    z-index: 1;
}

.range-slider .handle {
    position: absolute;
    width: 16px;
    height: 16px;
    border-radius: 50%;
    background-color: #ffffff;
    border: 2px solid #007bff;
    cursor: grab;
    transform: translate(-50%, -50%);
    z-index: 2;
    box-shadow: 0 2px 5px rgba(0, 0, 0, 0.2);
    left: 50%;
}

.range-slider .handle:active {
    cursor: grabbing;
}


/* 可编辑数值输入框 */

.range-slider .value-input {
    position: absolute;
    left: 600%;
    width: 100px;
    padding: 4px;
    text-align: center;
    font-size: 14px;
    border: 1px solid #ccc;
    border-radius: 4px;
    background-color: #f8f9fa;
    z-index: 3;
    box-sizing: border-box;
}

.range-slider .value-input:focus {
    outline: none;
    border-color: #007bff;
    background-color: #fff;
}

.search-form .rt-box {
    width: 85%;
    margin-left: 3%;
}

.table-container {
    padding: 0 60px;
    overflow-x: auto;
    border-radius: 8px;
    /* 控制表格最大高度，触发纵向滚动 */
    overflow-y: auto;
    margin-top: 60px;
}

.table-container table {
    width: 100%;
    border-collapse: collapse;
    min-width: 1300px;
    border: 1px #ddd solid;
    /* 确保足够宽以容纳新增列 */
}


/* 添加竖线 */

.table-container th,
.table-container td {
    padding: 4px 12px;
    text-align: center;
    border-bottom: 1px solid #ddd;
    white-space: nowrap;
    border-right: 1px solid #ddd;
    /* 添加右侧竖线 */
}


/* 移除最后一个单元格的右边框 */

.table-container tr th:last-child,
.table-container tr td:last-child {
    border-right: none;
}

.table-container thead th {
    background-color: #d7ebff;
    color: #333;
    font-weight: bold;
    position: sticky;
    top: 0;
    z-index: 3;
    border-right: 1px solid #ddd;
    /* 添加右侧竖线 */
}


/* 第一行表头 */

.table-container thead tr:first-child th {
    border-right: 1px solid #ddd;
    /* 添加右侧竖线 */
}


/* 第二行表头 */

.table-container thead tr:nth-child(2) th {
    background-color: #d7ebff;
    color: #333;
    font-weight: bold;
    position: sticky;
    top: 0;
    /* 第一行高度约48px（可根据实际调整） */
    z-index: 2;
    border-right: 1px solid #ddd;
    /* 添加右侧竖线 */
}


/* 第三行表头 */

.table-container thead tr:nth-child(3) th {
    background-color: #d7ebff;
    color: #333;
    font-weight: bold;
    position: sticky;
    top: 0;
    /* 第一行高度约48px（可根据实际调整） */
    z-index: 2;
    border-right: 1px solid #ddd;
    /* 添加右侧竖线 */
}


/* 确保表头边框在滚动时不消失 */

.table-container thead tr:first-child th {
    box-shadow: 0 1px 0 #ddd, 0 -1px 0 #ddd;
}

.table-container thead tr:nth-child(2) th {
    box-shadow: 0 1px 0 #ddd, 0 -1px 0 #ddd;
}

.table-container thead tr:nth-child(3) th {
    box-shadow: 0 1px 0 #ddd, 0 -1px 0 #ddd;
}

.case-style {
    text-align: center;
    font-size: 14px;
}

.pro-main {
    background: #f8fbff;
    padding-bottom: 100px;
}
/* --- 下拉菜单核心样式 --- */

.dropdown {
    position: relative;
    display: inline-block;
    width: 90%;
    margin: 0 auto;
}

.dropbtn {
    background-color: #ffffff;
    color: #333;
    padding: 10px 12px;
    font-size: 14px;
    border: 1px solid #dcdfe6;
    border-radius: 4px;
    cursor: pointer;
    width: 100%;
    text-align: left;
    display: flex;
    justify-content: space-between;
    align-items: center;
    box-sizing: border-box;
    outline: none;
    transition: all 0.3s;
}

/* 按钮被激活（点击后）的样式 */
.dropbtn.active {
    border-color: #409eff; /* 高亮边框 */
    color: #409eff;
}

.arrow {
    font-size: 10px;
    color: #909399;
    margin-left: 8px;
    transition: transform 0.3s;
}

/* 箭头旋转效果 */
.dropbtn.active .arrow {
    transform: rotate(180deg);
    color: #409eff;
}

.dropdown-content {
    display: none; /* 默认隐藏 */
    position: absolute;
    background-color: #ffffff;
    min-width: 100%;
    box-shadow: 0 4px 12px rgba(0, 0, 0, 0.15);
    border: 1px solid #ebeef5;
    border-radius: 4px;
    z-index: 1000;
    margin-top: 4px;
    padding: 4px 0;
    box-sizing: border-box;
    
    /* 可选：添加简单的淡入动画 */
    animation: fadeIn 0.2s ease-out;
}

@keyframes fadeIn {
    from { opacity: 0; transform: translateY(-5px); }
    to { opacity: 1; transform: translateY(0); }
}

.dropdown-content a {
    color: #606266;
    padding: 8px 12px;
    text-decoration: none;
    display: block;
    font-size: 13px;
    transition: background-color 0.2s;
}

.dropdown-content a:hover {
    background-color: #ecf5ff;
    color: #409eff;
}

/* 关键：通过 JS 添加 .show 类来显示菜单，而不是靠 :hover */
.dropdown-content.show {
    display: block;
}
.prosearch {
    position: absolute;
    bottom: 60px;
    left: 50%;
    transform: translateX(-50%);
}
.prosearch input{
    width: 40%;
    height: 50px;
    line-height: 50px;
    border-radius: 30px;
    background: #f2f2f2;
    padding: 0 30px;
    font-size: 16px;
}
.prosearch button{
    background: #2371f3;
    font-size: 16px;
    color: #fff;
     height: 50px;
    line-height: 50px;
      border-radius: 30px;
    display: block;
    padding: 0 40px;
    cursor: pointer;
    margin-left: -60px;
}

.zlfw01 .rz-box{
    margin-top: 30px;
}
.zlfw01 .rz-box .rz-list{
    margin-right: 40px;
}
.zlfw01 .rz-box .rz-list .bt{
    height: 50px;
    line-height: 50px;
    background: #0b2a5a;
    color: #ffffff;
    text-align: center;
    font-size: 16px;
}
.zlfw01 .rz-box .rz-list span{
    margin-right: 40px;
}

 /* 1. 容器必须相对定位，作为子元素的参照系 */
.map-container {
    position: relative;
    width: 100%;
    height: 755px; /* 根据你的实际高度调整 */
    background-color: #050b14; /* 深色背景兜底 */
    overflow: hidden;
    border-radius: 8px;
}

/* 背景图占位 */
.earth-bg {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    /* 这里替换为你项目中的真实地球图片路径 */
    background: url(../images/map_16.jpg) center no-repeat;
    background-size: cover;
    background-position: center;
    opacity: 0.8;
    z-index: 1;
}

/* 2. 标注点容器 */
.marker {
    position: absolute;
    z-index: 10; /* 确保层级高于背景 */
    transform: translate(-50%, -50%); /* 让坐标点对准圆点中心 */
    display: flex;
    align-items: center;
}

/* 3. 核心：闪烁的圆点 */
.pulse-point {
    width: 12px;
    height: 12px;
    background-color: #00eaff; /* 亮青色 */
    border-radius: 50%;
    box-shadow: 0 0 0 rgba(0, 234, 255, 0.4);
    animation: pulse-animation 1s infinite; /* 绑定动画 */
    cursor: pointer;
}

/* 4. 定义动画关键帧 */
@keyframes pulse-animation {
    0% {
        transform: scale(0.95);
        box-shadow: 0 0 0 0 rgba(0, 234, 255, 0.7);
    }
    70% {
        transform: scale(1);
        box-shadow: 0 0 0 15px rgba(0, 234, 255, 0); /* 扩散并变透明 */
    }
    100% {
        transform: scale(0.95);
        box-shadow: 0 0 0 0 rgba(0, 234, 255, 0);
    }
}

/* 5. 信息框样式 */
.info-box {
    margin-left: 10px;
    background: rgba(255, 255, 255, 0.95);
    padding: 10px 15px;
    border-radius: 4px;
    color: #333;
    box-shadow: 0 4px 15px rgba(0,0,0,0.3);
    min-width: 180px;
    backdrop-filter: blur(4px);
}

.info-box h4 {
    font-size: 18px;
    color: #0056b3;
    margin-bottom: 4px;
    font-weight: bold;
}

.info-box p {
    font-size: 14px;
    line-height: 1.4;
    color: #666;
}

 .wave-container {
                position: absolute;
                bottom: 0;
                left: 0;
                width: 100%;
                height: 200px;
                /* ← 容纳从 Y=0 到 Y=200 的全范围 */
                overflow: hidden;
                pointer-events: none;
                
            }
            
            .wave-layer {
                position: absolute;
                bottom: 0;
                left: 0;
                width: 200%;
                height: 100%;
                background-repeat: repeat-x;
                background-position: 0 bottom;
            }
            /* ========== 极致起伏 SVG ========== */
            
            .wave-1 {
                background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 3600 200' preserveAspectRatio='none'%3E%3Cpath d='M0,90 C400,0 800,180 1200,90 C1600,0 2000,180 2400,90 C2800,0 3200,180 3600,90 L3600,200 L0,200 Z' fill='%23004392'/%3E%3C/svg%3E");
                animation: waveMove 36s linear infinite;
                opacity: 1;
            }
            
            .wave-2 {
                background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 3600 200' preserveAspectRatio='none'%3E%3Cpath d='M0,90 C400,0 800,180 1200,90 C1600,0 2000,180 2400,90 C2800,0 3200,180 3600,90 L3600,200 L0,200 Z' fill='%23004392'/%3E%3C/svg%3E");
                animation: waveMove 26s linear infinite;
                opacity: 0.75;
                transform: translateY(12px);
            }
            
            .wave-3 {
                background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 3600 200' preserveAspectRatio='none'%3E%3Cpath d='M0,90 C400,0 800,180 1200,90 C1600,0 2000,180 2400,90 C2800,0 3200,180 3600,90 L3600,200 L0,200 Z' fill='%23004392'/%3E%3C/svg%3E");
                animation: waveMove 18s linear infinite;
                opacity: 0.5;
                transform: translateY(24px);
            }
            
            @keyframes waveMove {
                0% {
                    transform: translateX(0);
                }
                100% {
                    transform: translateX(-1200px);
                }
                /* 注意：现在每 1200px 是一个完整起伏周期 */
            }
            /* 👇 外层裁剪：隐藏多余部分 */
            
            .timeline-wrapper {
                overflow: hidden;
                position: relative;
                padding-bottom: 100px;
            }
            
            .timeline-wrapper .swiper-container {
                padding: 30px 0;
            }
            
             .rt-box .item .checkbox {
                        overflow-y: scroll;
                        height: 90px;
                    }
                    
                    .checkbox-wrapper {
                        margin-top: 15px;
                        /* 与上方标题的间距 */
                        display: flex;
                        flex-wrap: wrap;
                        /* 允许换行 */
                        gap: 15px;
                        /* 选项之间的间距 */
                    }
                    
                    .checkbox-option {
                        display: flex;
                        align-items: center;
                        cursor: pointer;
                        font-size: 14px;
                        color: #555;
                        user-select: none;
                        /* 防止双击选中文本 */
                    }
                    /* 核心：设置复选框为蓝色 */
                    
                    .checkbox-option input[type="checkbox"] {
                        margin-right: 8px;
                        /* 勾选框与文字的间距 */
                        width: 16px;
                        /* 自定义大小 */
                        height: 16px;
                        accent-color: #007bff;
                        /* 现代浏览器支持的原生蓝色属性 */
                        cursor: pointer;
                    }
                    /* 鼠标悬停时的文字颜色变化 */
                    
                    .checkbox-option:hover {
                        color: #007bff;
                    }