*{
    margin: 0;
    padding: 0;
}

body{
    font-size: 14px;
}

a{
    text-decoration: none;
    color: rgba(51, 51, 51, 1);
}

.flex{
    display: flex;
}

header{
    height: 78px;
    line-height: 78px;
}

.header-logo{
    font-size: 30px;
    color: rgb(251, 140, 0);
    font-weight: bold;
    margin: 0 0 0 4%;
    width: 46%;
}

.header-nav{
    flex: 1;
}

.header-nav ul{
    list-style: none;
    width: 80%;
}

.header-nav ul li{
    position: relative;
    flex: 1;
    text-align: center;
    z-index: 10;
}

.header-nav ul li .child{
    display: none;
    line-height: 30px;
    box-shadow: 0 0 2px 0 #ccc;
    border-radius: 3px;
    position: absolute;
    top: 78px;
    left: 50%;
    transform: translate(-50%, 0);
    min-width: 160px;
    padding: 0;
    background: #fff;
}

.header-nav ul li .child a{
    display: block;
}

.header-nav ul li:hover .child{
    display: block;
}

.header-nav ul li a{
    display: inline-block;
    padding: 0 20px;
    border-radius: 20px;
    height: 35px;
    line-height: 35px;
    font-size: 14px;
}

.child-item{
    position: relative;
    white-space: nowrap;
    border-bottom: 1px solid #f2f2f2;
    transition: all 0.5s;
}

.child-item:hover{
    background: #f2f2f2;
}

.child-item:last-child{
    border-bottom: 0;
}

.child-item p{
    display: none;
    max-height: 400px;
    overflow: auto;
    position: absolute;
    left: 100%;
    top: 0;
    border: 1px solid #ddd;
    background: #fff;
}

.child-item p a:hover{
    background: #f2f2f2;
}

.header-nav ul li .child-item a{
    height: 45px;
    line-height: 45px;
    border-radius: 0;
}

.child-item p a{
    white-space: nowrap;
}

.child-item:hover p{
    display: block;
}

.header-nav ul li>a{
    text-align: center;
    color: #666;
}

.header-nav ul li.on>a,.header-nav ul li:hover>a{
    color: #fff;
    background: #52b548;
}

.swiper-container-banner img{
    width: 100%;
}

.index-about img{
    max-width: 100%;
    margin: auto;
    display: block;
}

.index-common-title{
    text-align: center;
    font-size: 30px;
    font-weight: bold;
    color: rgb(5, 160, 69);
}

.index-common-title-en{
    font-size: 16px;
}

.index-fuwu{
    margin: 20px 0;
}

.index-fuwu-list{
    padding: 50px 0;
}

.index-fuwu-list a{
    flex: 1;
    text-align: center;
}

.index-fuwu-list a img{
    width: 48px;
    display: block;
    margin: auto;
}

.index-fuwu-list a p{
    margin-top: 20px;
    font-size: 18px;
}

.index-kaoshi{
    margin-top: 60px;
}

.index-yuanxiao-list{
    flex-wrap: wrap;
    width: 90%;
    margin: auto;
}

.index-yuanxiao-list a{
    width: 11vw;
    height: 11vw;
    display: flex;
    align-items: center;
    justify-content: center;
    padding: 3vw 3.4vw;
}

.index-yuanxiao-list a img{
    max-width: 100%;
    max-height: 100%;
}

.index-yimin-list{
    width: 100%;
    max-width: 1200px;
    margin: 40px auto;
}

.index-yimin-list a{
    flex: 1;
    margin-right: 50px;
    font-size: 16px;
}

.index-yimin-list a:last-child{
    margin-right: 0;
}

.index-yimin-list a img{
    max-width: 100%;
    display: block;
    margin-bottom: 15px;
}

.index-news-list{
    flex-wrap: wrap;
    width: 100%;
    max-width: 1200px;
    margin: 50px auto;
}

.index-news-list a{
    width: 45%;
    margin-right: 5%;
    align-items: flex-start;
    margin-bottom: 30px;
    padding-bottom: 30px;
    border-bottom: 1px solid #ddd;
}

.index-news-img{
    width: 35%;
    align-items: center;
    justify-content: center;
    overflow: hidden;
}

.index-news-img img{
    width: 100%;
    transition: all 0.5s;
}

.index-news-info{
    width: 60%;
    margin-left: 5%;
}

.index-news-info p:nth-of-type(1){
    white-space: nowrap;
    overflow: hidden;
    text-overflow: ellipsis;
    font-size: 16px;
    margin-bottom: 20px;
}

.index-news-info p:nth-of-type(2){
    color: #666;
    font-size: 14px;
    display: -webkit-box;
    -webkit-line-clamp: 2; /* 限制显示的行数为3行 */
    -webkit-box-orient: vertical;
    overflow: hidden;
}

.index-news-list a:hover .index-news-img img{
    transform: scale(1.2);
}

.index-form{
    width: 100%;
    max-width: 1200px;
    margin: 20px auto;
}

.index-form-title{
    text-align: center;
    font-size: 18px;
    margin-bottom: 40px;
}

.index-form-input{
    margin-top: 10px;
}

.index-form-input input[type='text'],.index-form-input textarea{
    width: 100%;
    background: hsla(0, 0%, 80%, .15);
    border: none;
    outline: none;
    padding: 10px;
    box-sizing: border-box;
}

.index-form-input textarea{
    height: 150px;
}

.index-form-input input{
    height: 44px;
    line-height: 44px;
}

.index-form-label{
    color: #666;
}

.index-form-label span{
    margin-left: 10px;
    color: red;
}

.index-form-item{
    margin-bottom: 20px;
}

.checkbox-item{
    align-items: center;
}

.checkbox-item label{
    margin-left: 10px;
    margin-right: 20px;
    color: #333;
}

.index-form-item .index-form-item-btn{
    background-color: #52b548;
    color: #fff;
    border: 1px solid #52b548;
    transition: all .3s;
    width: 100%;
    height: 50px;
    line-height: 50px;
    border-radius: 25px;
    cursor: pointer;
    font-size: 16px;
}

.footer-logo{
    text-align: center;
}

.footer-logo img{
    max-width: 300px;
}

.footer-copyright{
    text-align: center;
    padding: 20px 0;
    background: rgb(34, 34, 34);
    color: #999;
}

.fenye ul{
    display: flex;
    justify-content: center;
    list-style: none;
    margin-bottom: 30px;
}

.fenye ul a{
    display: block;
    padding: 5px 10px;
}

.fenye ul li{
    border: 1px solid #ddd;
    margin-right: 5px;
}

.fenye ul li.active{
    background: #52b548;
    border-color: #52b548;
}

.fenye ul li.active a{
    color: #fff;
}

.fenye ul li:last-child{
    margin-right: 0;
}

.article-detail{
    width: 100%;
    max-width: 1200px;
    margin: auto;
}

.article-detail-title{
    padding-top: 24px;
    font-weight: 400;
    font-size: 22px;
    color: #333;
}

.article-detail-date{
    margin-bottom: 20px;
    padding-bottom: 20px;
    margin-top: 20px;
    color: #999;
    border-bottom: 1px solid #ebebeb;
}

.page-main img{
    max-width: 100% !important;
    height: auto !important;
}

.page-main {
    line-height: 35px;
    padding-bottom: 50px;
}

.page-main-typename{
    font-size: 36px;
    text-align: center;
    color: #52b548;
    padding: 30px 0 0;
}

.phone-show{
    display: none;
}

@media screen and (max-width: 1024px){

    .phone-show{
        display: block;
    }

    .header-nav{
        display: none;
        top: 78px;
        background: #fff;
        z-index: 100;
        position: absolute;
        width: 100%;
        padding: 10px 0;
    }

    header{
        align-items: center;
        position: relative;
        z-index: 100;
    }

    .header-logo{
        width: auto;
        font-size: 20px;
        overflow: hidden;
        text-overflow: ellipsis;
        white-space: nowrap;
        margin-left: 60px;
    }

    .header-logo p{
        overflow: hidden;
        text-overflow: ellipsis;
        white-space: nowrap;
    }

    .phone-menu{
        width: 36px;
        position: absolute;
        left: 12px;
    }

    .phone-menu span{
        display: block;
        height: 2px;
        background: #999;
        border-radius: 2px;
        margin-bottom: 10px;
    }

    .phone-menu span:last-child{
        margin-bottom: 0;
    }

    .header-nav ul{
        display: block;
        width: auto;
    }

    .header-nav ul li{
        text-align: left;
        padding-left: 15px;
        line-height: 45px;
        position: relative;
    }

    .header-nav ul li.on>a, .header-nav ul li:hover>a {
        color: #52b548;
        background: #fff;
        padding: 0;
    }

    .menu-arrow{
        position: absolute;
        right: 0;
        width: 50px;
        text-align: center;
        line-height: 40px;
        top: 0;
        z-index: 1000;
        transition: all 0.5s;
    }

    .header-nav ul li a{
        padding: 0;
    }

    .header-nav ul li .child{
        position: static;
        width: auto;
        transform: translate(-15px, 0);
        box-shadow: none;
    }

    .child-item{
        padding-left: 40px;
    }

    .header-nav ul li:hover .child{
        display: none;
    }

    .menu-arrow.open{
        transform: rotate(90deg);
    }

    .swiper-container-banner .swiper-slide a{
        height: 150px !important;
    }

    .swiper-container-banner .swiper-button-next:after, .swiper-container-banner .swiper-button-prev:after{
        font-size: 20px;
    }

    .index-fuwu-list{
        flex-wrap: wrap;
    }

    .index-fuwu-list a{
        width: 50%;
        flex: none;
        margin-bottom: 30px;
    }

    .index-kaoshi{
        margin-top: 0;
    }

    .index-yuanxiao-list{
        margin-top: 20px;
        justify-content: space-between;
    }

    .index-yuanxiao-list a{
        width: 46%;
        height: auto;
        padding: 0;
    }

    .index-yuanxiao{
        margin-bottom: 30px;
    }

    .index-news-list{
        padding: 0 15px;
        width: auto;
        display: block;
    }

    .index-yimin-list{
        padding: 0 15px;
        justify-content: space-between;
        width: auto;
        flex-wrap: wrap;
    }

    .index-yimin-list a{
        flex: none;
        margin-right: 0;
        width: 48%;
        margin-bottom: 20px;
    }

    .index-news-list a{
        width: auto;
        margin-right: 0;
        margin-bottom: 20px;
        padding-bottom: 20px;
    }

    .index-news-img{
        width: 30%;
    }

    .index-form{
        width: auto;
        padding: 0 15px;
    }

    .checkbox-item{
        white-space: nowrap;
    }

    .child-item p{
        position: static;
        box-shadow: none;
        border: none;
        padding-left: 30px;
    }

    .child-item{
        position: relative;
    }

    .child-item:hover p{
        display: none;
    }

    .child-item:hover{
        background: #fff;
    }

    .page-main{
        padding: 0 15px;
    }
}