/* 头部公共样式 */
.header1 {
    background-color: #FFFFFF;
    height: 168px;
    box-shadow: 0px 4px 4px 0px rgba(6, 91, 81, 0.1);
    width: 100%;
    position: fixed;
    top: -0;
    transition: top 0.3s ease-in-out;
    z-index: 100;
}

.header1 .inner {
    padding: 0;
}

.header1 .inner .fix {
    position: relative;
}

.header1 .inner .fix .logoBox {
    width: 29%;
    height: 87px;
    top: 40px;
    left: 0;
    position: absolute;
}

.header1 .inner .fix .logoBox img {
    /*width: 100%;*/
    /*height: 100%;*/
}

.header1 .inner .fix .tabs {
    float: right;
    margin-top: 5%;
}

.header1 .inner .fix .tabs li {
    float: left;
    height: 34px;
    font-size: 24px;
    font-family: PingFang SC-Regular, PingFang SC;
    font-weight: 400;
    color: #063C6C;
    line-height: 28px;
    margin-right: 10px;
    position: relative;
    padding: 0 5px;
}

.header1 .inner .fix .tabs li a:hover {
    color: #2395FB;
}
.header1 .inner .fix .tabs li a {
    color: #063C6C;
}

.dropdown-icon {
    display: inline-block;
    font-size: 10px;
    transition: transform 0.3s ease;
}
.nav-select-list-item:hover .dropdown-icon {
    transform: rotate(180deg);
}
.nav-select-list-item:hover .dropdown-menu {
    opacity: 1;
    visibility: visible;
    transform: translateY(0);
}
.dropdown-menu {
    position: absolute;
    top: 100%;
    left: -10px;
    min-width: 100px;
    background: #fff;
    box-shadow: 0 4px 12px rgba(0,0,0,0.15);
    border-radius: 4px;
    opacity: 0;
    visibility: hidden;
    transform: translateY(10px);
    transition: all 0.3s ease;
    z-index: 1000;
}
.dropdown-item {
    display: block;
    padding: 5px 10px;
    color: #666;
    text-decoration: none;
    transition: all 0.3s ease;
    white-space: nowrap;
    font-size: 18px;
}

.dropdown-item:hover {
    background: #f5f5f5;
    color: #2395FB;
}
.header1 .inner .fix .tabs li .select {
    color: #2395FB;
}

.header1 .inner .fix .tabs li:last-child {
    margin-right: 0;
}
.content .banner {
    width: 100%;
    height: 220px;
    background: url("../images/zcfg.png");
    background-size: 100% 100%;
    background-repeat: no-repeat;
    margin-top: 168px;
    padding-top: 74px;
    position: relative;
}

.content .banner .backgText {
    text-align: center;
}

.content .banner .backgText .big {
    font-size: 40px;
    font-family: 'FontName-Regular', sans-serif;
    font-weight: 400;
    color: #FFFFFF;
    line-height: 47px;
    margin-bottom: 5px;
}

.content .banner .backgText .small {
    font-size: 20px;
    font-family: 'FontName-Regular', sans-serif;
    font-weight: 400;
    color: #FFFFFF;
    line-height: 23px;
}

.content .banner .backgText p {
    overflow: hidden;
    text-overflow: ellipsis;
    white-space: nowrap;

}

.content .banner .tabBox {
    background-color: #FFFFFF;
    width: 100%;
    padding: 30px 40px;
    margin-top: 30px;
    box-shadow: 0px 6px 6px 0px rgba(0, 0, 0, 0.1);
}

.content .banner .tabBox li {
    float: left;
    margin-right: 60px;
    height: 25px;
    font-size: 18px;
    font-family: PingFang SC-Medium, PingFang SC;
    font-weight: 700;
    color: #222222;
    line-height: 21px;
    cursor: pointer;
}

.content .banner .tabBox .select {
    color: #2395FB;
}

.content {
    /* height: 4367px; */
    background: #FFFFFF;
    margin: 0;
    margin-top: 84px;
}

.content .inner {
    padding: 0;
}

.content .inner .card1 {
    padding-top: 100px;
}

.content .inner .card1 li {
    background-color: #E2E4EB;
    padding: 30px 40px;
    cursor: pointer;
    margin-bottom: 20px;
    transition: transform 0.3s, box-shadow 0.3s;
}

.content .inner .card1 li:hover {
    transform: translateY(-1px); /* 抬起效果，你可以根据需要调整数值 */

    box-shadow: 0px 10px 20px rgba(0, 0, 0, 0.2); /* 阴影效果，可以根据需要调整参数 */
  }
.content .inner .card1 li:last-child{
    margin-bottom: 0px;
}
.content .inner .card1 li .one {
    height: 32px;
    font-size: 22px;
    font-family: PingFang SC-Medium, PingFang SC;
    font-weight: 700;
    color: #222222;
    line-height: 32px;
    overflow: hidden;
    text-overflow: ellipsis;
    white-space: nowrap;

}

.content .inner .card1 li .two {
    margin-top: 10px;
    font-size: 16px;
    font-family: PingFang SC-Regular, PingFang SC;
    font-weight: 400;
    color: #666666;
    line-height: 24px;
    /* 设置显示两行 */
    overflow: hidden;
    text-overflow: ellipsis;
    /* white-space: nowrap;  */
    display: -webkit-box;
    -webkit-box-orient: vertical;
    -webkit-line-clamp: 2;
}

.content .inner .card1 li .bottom {
    margin-top: 10px;
    display: flex;
}

.content .inner .card1 li .bottom p {
    height: 24px;
    font-size: 16px;
    font-family: PingFang SC-Regular, PingFang SC;
    font-weight: 400;
    color: #2395FB;
    padding-left: 30px;
    position: relative;
    margin: 0;
    margin-right: 10px;
}
.content .inner .card1 li .bottom p::before {
    content: "";
    /* 伪元素需要有内容，通常为空字符串 */
    position: absolute;
    top: 0px;
    left: 0px;
    display: block;
    /* 让伪元素变成一个块级元素，以便设置宽高 */
    width: 20px;
    /* 设置伪元素的宽度 */
    height: 20px;
    /* 设置伪元素的高度 */
    background-size: cover;
}

.content .inner .card1 li .bottom .onep::before {
    background-image: url('../images/zcfg11.png');

}

.content .inner .card1 li .bottom .twop::before {
    background-image: url('../images/zcfg22.png');

}

.content .inner .card1 li .bottom span:last-child {
    margin-left: 50px;
}

.fenye {
    padding-top: 60px;
    padding-bottom: 80px;
}

.fenye ul {

    margin: 0px auto;
    width: fit-content;

}

.fenye ul li {
    float: left;
    padding: 0 10px;
    height: 32px;
    background: #FFFFFF;
    border: 1px solid #E2E2E2;
    line-height: 32px;
    text-align: center;
    margin-right: 16px;
    color: #ADB1B1;
}

.fenye ul .activefenye {
    background-color: #2395FB;
    color: #FFFFFF;
}




@media (max-width: 1599px) {
    .header1{height: 80px;padding-top: 15px;}
    .header1 .inner .fix .logoBox img{width: 400px;}
    .header1 .inner .fix .tabs{margin-top: 10px}
    .header1 .inner .fix .tabs li{font-size: 20px;margin-right: 10px;}
    .header1 .inner .fix .logoBox{top: -5px;}
    .content{margin-top: 81px;}
    .inner{max-width: 1200px;}
    .content .banner{margin-top: 81px;padding-top: 40px;height: 150px;}
    .content .banner .backgText .big{font-size: 32px;}
    .content .banner .backgText .small{font-size: 18px;}

    .content .banner .tabBox{height: 60px;margin-top: 24px;}
    .content .banner .tabBox li{padding: 20px 0;font-size: 16px;}

    .content .inner .card1{padding-top: 20px;}
    .content .inner .card1 li{height: 130px;}
    .card1 li .intro>p{font-size: 18px;padding: 0;}
    .card1 li .intro>span{font-size: 13px;height: 44px;line-height: 22px;margin: 0;}
    .card1 li .intro .bottom{font-size: 12px;padding: 0 0 10px ;}

    .card1 li .intro .data{bottom: 13px;}
    .card1 li .intro .data .jiantou{height: 30px;background: url(../images/youjiantou.png) no-repeat right 40px bottom 10px;}
    .card1 li .intro .data p{font-size: 30px;padding-top: 10px;}
    .card1 li .intro .data span{font-size: 15px;}

    .content .inner .card1 li{padding: 20px;margin-bottom: 15px;}
    .card1 li .imgBox{width: 234px;height: 110px;}

    .footer p{font-size: 13px;}
}

