@line_clamp: 2;// 文字默认截取行数
@onehundred: 100%; //整体百分百
@small-size:12px;
@font-size-base:14px;// 新闻简介字号
@titlesize:16px;// 新闻标题字号
@large-size:18px;
@large-two-size:24px;
@title-color: #333; //标题颜色
@hover-color: #2177E5; //文字滑过颜色跟随当前主体色，也有可能滑过的和高亮的不是一种颜色这个主要作为文字颜色
@active-color: #2080F7; //高亮颜色跟随当前主体色，也有可能滑过的和高亮的不是一种颜色这个主要作为背景颜色
@text-color:#666; //简介颜色
@textinfo-color:#999;// 不重要的文字颜色比如时间
@forminputjianju: 10px;// 输入框左内间距
@white:#fff; //白色
@black:#000;
@e5:#e5e5e5;
@dc:#dcdcdc;
@family:"MicrosoftYaHei, MicrosoftYaHei";
@left:left;
@right:right;
@center:center;
@display-block:block;
@display-flex:flex;
@display-table:table;
@display-inline-block:inline-block;
@display-none:none;
/************************************** 以上是默认设置除了高亮和滑过别的不要动，想到可以随时添加  *******************************************/
/**************************************** css文件不要改，要改同名的less文件并重新生成css文件！！！！！！****************************************/
.wrap {
    background: url(../images/top-bg.png)top center no-repeat;
    background-size: 100% auto;
}
.header{
    padding: 37px 0;
    .w1200{
        display: @display-flex;
        align-items: @center;
        justify-content: space-between;
        .header-right{
            .report-entry{
                display: flex;
                align-items: center;
                justify-content: flex-end;
                color: #333;
                font-size: 16px;
                margin-bottom: 20px;
                cursor: pointer;
                img{
                    margin-right: 8px;
                }
            }
            .search-box{
                width: 286px;
                height: 36px;
                background: @white;
                overflow: hidden;
                input{
                    float: @left;
                    padding-left: 20px;
                    width: calc(100% - 36px);
                    border-top: 1px solid #C8C8C8;
                    border-bottom: 1px solid #C8C8C8;
                    border-left: 1px solid #C8C8C8;
                    border-right: none;
                    height: 36px;
                    font-size: @font-size-base;
                    color: @title-color;
                }
                button{
                    float: @right;
                    width: 36px;
                    height: 36px;
                    border: 0;
                    background: @active-color;
                    cursor: pointer;
                }
            }
        }
    }
}
.nav{
    height: 55px;
    background: @active-color;
    ul{
        padding: 0;
        list-style: none;
    }
    &>ul{
        &>li{
            position: relative;
            float: @left;
            width: calc(100% / 13);
            a{
                display: @display-block;
                font-family: @family;
            }
            &>a{
                font-size: @titlesize;
                font-weight: bold;
                color: @white;
                text-align: @center;
                line-height: 55px;
            }
            &:hover,&.active{
                &>a{
                    background: @hover-color;
                }
            }
            .menu-nav{
                display: @display-none;
                position: absolute;
                top: @onehundred;
                left: 0;
                min-width: 100%;
                width: auto;
                background: @hover-color;
                z-index: 999;
                li{
                    a{
                        padding: 10px 8px;
                        font-size: @titlesize;
                        color: @white;
                        text-align: @center;
                        white-space: nowrap;
                    }
                    &:hover{
                        a{
                            background:@active-color;
                        }
                    }
                }
            }
        }
    }
}
.content, .list-content{
    min-height: 490px;
}
.highlight-key{
    display: inline-block;
    margin: 0 !important;
    color: @active-color;
}
.bg-content{
    background: url(../images/main-bg.png) no-repeat center center;
    background-size: 100% auto;
    background-position: bottom;
}
.first-slide{
    margin-top: 20px;
    width: @onehundred;
    height: 300px;
    .swiper{
        width: @onehundred;
        height: 300px;
        .swiper-wrapper{
            width: @onehundred;
            height: 300px !important;
            .swiper-slide{
                width: @onehundred;
                height: @onehundred;
                a{
                    width: @onehundred;
                    height: @onehundred;
                    img{
                        width: @onehundred;
                        height: @onehundred;
                        object-fit: cover;
                        transition: all 0.6s;
                    }
                    &:hover{
                        img{
                            transform: scale(1.1);
                            -ms-transform: scale(1.1);
                            -moz-transform: scale(1.1);
                            -webkit-transform: scale(1.1);
                            -o-transform: scale(1.1);
                        }
                    }
                }
            }
        }
        .swiper-pagination{
            bottom: 16px !important;
            .swiper-pagination-bullet{
                width: 10px;
                height: 10px;
                background: @white;
                opacity: .5;
                outline: none;
            }
            .swiper-pagination-bullet-active{
                opacity: 1;
            }
        }
    }
}
.section{
    margin-bottom: 30px;
    ul{
        padding: 0;
        list-style: none;
    }
    &.section1{
        margin-top: 30px;
        .news-slide{
            float: @left;
            width: 560px;
            height: 336px;
            overflow: hidden;
            .swiper-slide{
                img{
                    width: @onehundred;
                    height: 336px;
                    object-fit: cover;
                    transition: all 0.6s;
                }
                .cover-title{
                    position: absolute;
                    left: 0;
                    right: 0;
                    bottom: 0;
                    padding: 5px 20px;
                    padding-right: 190px;
                    background: rgba(0,0,0,.5);
                    p{
                        font-size: @titlesize;
                        color: @white;
                        overflow: hidden;
                        text-overflow: ellipsis;
                        white-space: nowrap;
                    }
                }
                &:hover{
                    img{
                        transform: scale(1.1);
                        -ms-transform: scale(1.1);
                        -moz-transform: scale(1.1);
                        -webkit-transform: scale(1.1);
                        -o-transform: scale(1.1);
                    }
                }
            }
            .swiper-horizontal>.swiper-pagination-bullets,
            .swiper-pagination-bullets.swiper-pagination-horizontal,
            .swiper-pagination-custom, .swiper-pagination-fraction{
                left: inherit;
                left: initial;
                right: 15px;
                bottom: 15px;
                width: auto;
            }
            .swiper-horizontal>.swiper-pagination-bullets .swiper-pagination-bullet,
            .swiper-pagination-horizontal.swiper-pagination-bullets .swiper-pagination-bullet{
                margin: 0 5px;
            }
            .swiper-pagination-bullet{
                width: 8px;
                height: 8px;
                background: @white;
                opacity: .5;
                outline: none;
            }
            .swiper-pagination-bullet-active{
                opacity: 1;
            }
        }
        .news-tab{
            float: @right;
            width: 620px;
            .hd{
                height: 42px;
                border-bottom: 1px solid #DEDEDE;
                ul{
                    position: relative;
                    li{
                        float: @left;
                        height: 41px;
                        span{
                            position: relative;
                            display:@display-block;
                            padding: 0 15px;
                            height: 41px;
                            font-size: 20px;
                            color: @title-color;
                            font-weight: bold;
                            cursor: pointer;
                            &::after{
                                content: "";
                                position: absolute;
                                top: 6px;
                                right: 0;
                                width: 1px;
                                height: 18px;
                                background: #A7A7A7;
                            }
                        }
                        &:first-child{
                            span{
                                padding-left: 0;
                            }
                        }
                        &:last-child{
                            span{
                                &::after{
                                    display: @display-none;
                                }
                            }
                        }
                        .more{
                            display: @display-none;
                            position: absolute;
                            top: 5px;
                            right: 0;
                            font-size: @font-size-base;
                            color: @textinfo-color;
                        }
                        &.on{
                            span{
                                color: @active-color;
                                &::before{
                                    content: "";
                                    position: absolute;
                                    left: 15px;
                                    bottom: -1px;
                                    width: 38px;
                                    height: 3px;
                                    background: @active-color;
                                }
                            }
                            .more{
                                display: @display-block;
                                &:hover{
                                    color: @active-color;
                                }
                            }
                        }
                        &:first-child{
                            &.on{
                                span{
                                    &::before{
                                        left: 0;
                                    }
                                }
                            }
                        }
                    }
                }
            }
            .hd2{
                margin-bottom: 15px;
                ul{
                    position: relative;
                    li{
                        float: @left;
                        height: 36px;
                        background: #DAE7F7;
                        border-radius: 3px;
                        margin-right: 10px;
                        overflow: hidden;
                        span{
                            position: relative;
                            display:@display-block;
                            padding: 0 22px;
                            height: 36px;
                            line-height: 36px;
                            font-size: 16px;
                            color: @title-color;
                            font-weight: bold;
                            cursor: pointer;
                        }
                        .more{
                            display: @display-none;
                            position: absolute;
                            top: 5px;
                            right: 0;
                            font-size: @font-size-base;
                            color: @text-color;
                        }
                        &.on{
                            span{
                                background-color: @active-color;
                                color: @white;
                            }
                            .more{
                                display: @display-block;
                                &:hover{
                                    color: @active-color;
                                }
                            }
                        }
                        &:first-child{
                            &.on{
                                span{
                                    &::before{
                                        left: 0;
                                    }
                                }
                            }
                        }
                    }
                }
            }
        }
    }
    &.section2{
        .standards-section{
            float: @left;
            width: 585px;
        }
        .statistic-section{
            float: @right;
            width: 585px;
        }
    }
    &.section3{
        .standards-section{
            float: @left;
            width: 585px;
        }
        .statistic-section{
            float: @right;
            width: 585px;
        }
        .news-list{
            margin-top: 10px;
            li{
                &.two{
                    line-height: 34px;
                }
                &.item{
                    line-height: 50px;
                }
            }
        }
    }
    &.section4{
        display: flex;
        justify-content: space-between;
        flex-wrap: wrap;
        width: @onehundred;
        margin-bottom: 0 !important;
        a{
            width: calc((100% - 28px) / 2 );
            height: 110px;
            margin-bottom: 30px;
            overflow: hidden;
            img{
                width: @onehundred;
                height: @onehundred;
                object-fit: cover;
                transition: all 0.6s;
            }
            &:hover{
                img{
                    transform: scale(1.1);
                    -ms-transform: scale(1.1);
                    -moz-transform: scale(1.1);
                    -webkit-transform: scale(1.1);
                    -o-transform: scale(1.1);
                }
            }
        }
    }
    &.section5{
        margin-bottom: 20px !important;
        .links-list{
            display: flex;
            align-items: @center;
            flex-wrap: wrap;
            margin-top: 20px;
            overflow: hidden;
            li{
                color: @title-color;
                font-size: @titlesize;
                margin: 0 25px 20px 0;
                &:hover{
                    color: @active-color;
                }
            }
            li:last-child{
                margin-right: 0;
            }
        }
    }
    .news-list{
        overflow: hidden;
        li{
            overflow: hidden;
            &.first{
                padding: 20px 0;
                a{
                    display: @display-flex;
                    align-items: @center;
                    width: @onehundred;
                    .first-img{
                        width: 200px;
                        height: 120px;
                        overflow: hidden;
                        img{
                            width: @onehundred;
                            height: @onehundred;
                            object-fit: cover;
                            transition: all 0.6s;
                        }
                    }
                    &:hover{
                        img{
                            transform: scale(1.1);
                            -ms-transform: scale(1.1);
                            -moz-transform: scale(1.1);
                            -webkit-transform: scale(1.1);
                            -o-transform: scale(1.1);
                        }
                    }
                    .text{
                        flex: 1;
                        min-width: 0;
                        margin-left: 19px;
                        h6{
                            min-height: 48px;
                            font-size: 16px;
                            line-height: 1.5;
                            color: @title-color;
                            overflow: hidden;
                            text-overflow: ellipsis;
                            display: -webkit-box;
                            -webkit-box-orient: vertical;
                            -webkit-line-clamp: @line_clamp;
                            /*要显示的行数*/
                        }
                        p{

                            margin-top: 10px;
                            font-size: @font-size-base;
                            color: @text-color;
                            line-height: 24px;
                            overflow: hidden;
                            white-space: nowrap;
                            text-overflow: ellipsis;
                        }
                        .time{
                            display: @display-block;
                            margin-top: 10px;
                            font-size: @font-size-base;
                            color: @textinfo-color;
                        }
                    }
                    &:hover{
                        h6{
                            color: @active-color;
                        }
                    }
                }
            }
            &.two{
                font-size: @titlesize;
                color: @title-color;
                line-height: 34px;
                a{
                    display: @display-block;
                    float: @left;
                    max-width: 82%;
                    color: @title-color;
                    overflow: hidden;
                    text-overflow: ellipsis;
                    white-space: nowrap;
                    span{
                        display: inline-block;
                        margin-right: 2px;
                        width: @large-size;
                        color: @textinfo-color;
                        font-size: @large-size;
                        line-height: 0;
                    }
                    &:hover{
                        color: @active-color;
                    }
                }
                .time{
                    float: @right;
                    color: @textinfo-color;
                }
            }
            &.item{
                font-size: @titlesize;
                color: @title-color;
                line-height: 50px;
                background-color: #F5F5F5;
                margin-bottom: 9px;
                padding: 0 21px 0 16px;
                a{
                    display: @display-block;
                    float: @left;
                    max-width: 82%;
                    color: @title-color;
                    overflow: hidden;
                    text-overflow: ellipsis;
                    white-space: nowrap;
                    span{
                        display: inline-block;
                        width: @titlesize;
                        margin-right: 2px;
                        color: @textinfo-color;
                        font-size: @titlesize;
                    }
                    &:hover{
                        color: @active-color;
                    }
                }
                .time{
                    float: @right;
                    color: @textinfo-color;
                }
            }
            &:last-child{
                margin-bottom: 0;
            }
        }
    }
    .section-title{
        position: relative;
        height: 36px;
        border-bottom: 1px solid #DFEBF7;
        h6{
            position: relative;
            float: @left;
            height: 34px;
            font-size: 18px;
            color: @title-color;
            &::after{
                content: "";
                position: absolute;
                left: 0;
                bottom: -2px;
                width: 100%;
                height: 3px;
                background: @hover-color;
            }
        }
        .more{
            float: @right;
            font-size: @font-size-base;
            color: #666;
            line-height: 1.8;
            &:hover{
                color: @hover-color;
            }
        }
        .hd{
            float: @left;
            margin-left: 20px;
            ul{
                li{
                    float: @left;
                    height: 39px;
                    line-height: 28px;
                    span{
                        position: relative;
                        display:@display-block;
                        padding: 0 10px;
                        height: 39px;
                        font-size: 15px;
                        color: @text-color;
                        cursor: pointer;
                        &::after{
                            content: "";
                            position: absolute;
                            top: 8px;
                            right: 0;
                            width: 1px;
                            height: 16px;
                            background: #A7A7A7;
                        }
                    }
                    &:first-child{
                        span{
                            padding-left: 0;
                        }
                    }
                    &:last-child{
                        span{
                            &::after{
                                display: @display-none;
                            }
                        }
                    }
                    .more{
                        display: @display-none;
                        position: absolute;
                        top: 5px;
                        right: 0;
                        font-size: @font-size-base;
                        color: @textinfo-color;
                        line-height: 18px;
                    }
                    &.on{
                        span{
                            color: @active-color;
                        }
                        .more{
                            display: @display-block;
                            &:hover{
                                color: @active-color;
                            }
                        }
                    }
                }
            }
        }

    }
}
.adve-section{
    margin-bottom: 30px;
    overflow: hidden;
    img{
        width: @onehundred;
        height: 110px;
        object-fit: cover;
        transition: all 0.6s;
    }
    &:hover{
        img{
            transform: scale(1.1);
            -ms-transform: scale(1.1);
            -moz-transform: scale(1.1);
            -webkit-transform: scale(1.1);
            -o-transform: scale(1.1);
        }
    }
}
.footer{
    background: @hover-color;
    .w1200{
        padding: 30px 0;
    }
    .footer-top{
        .footer-left{
            float: @left;
            h6{
                margin-bottom: 15px;
                font-size: @titlesize;
                color: @white;
            }
            p{
                font-size: @titlesize;
                color: @white;
                line-height: 1.8;
            }
        }
        .footer-right{
            float: @right;
            ul{
                padding: 0;
                list-style: none;
                overflow: hidden;
                li{
                    float: @left;
                    margin-right: 28px;
                    img{
                        width: 120px;
                        height: 120px;
                    }
                    p{
                        margin-top: 14px;
                        font-size: @font-size-base;
                        color: @white;
                        text-align: @center;
                        line-height: 1;
                    }
                    &:last-child{
                        margin-right: 0;
                    }
                }
            }

        }
    }
    .footer-bottom{
        display: flex;
        flex-direction: column;
        align-items: center;
        margin-top: 18px;
        font-size: @titlesize;
        color: @white;
        text-align: @center;
        overflow: hidden;
        .record{
            display: flex;
            align-items: center;
            margin-top: 9px;
        }
        span{
            display: flex;
            align-items: center;
            line-height: 1;
            a{
                display: flex;
                align-items: center;
            }
        }
    }
}

.list-content {
    padding: 10px 30px 40px;
    background: @white;
    .cont-center{
        width: @onehundred !important;
        .cont-right-box {
            padding: 0 !important;
            margin: 0 !important;
            .news-list {
                .two {
                    height: 65px;
                    line-height: 65px;
                    border-bottom: 1px dashed #E8E8E8;
                    a{
                        span{
                            color: @active-color;
                        }
                    }
                }
            }
        }
    }
}
.page-content{
    .content {
        background: @white;
        padding: 20px;
    }
    .breadcrumb{
        display: @display-flex;
        align-items: @center;
        padding: 15px 0;
        overflow: hidden;
        .position{
            margin: 0 !important;
        }
        img{
            margin-right: 11px;
        }
        a,span{
            font-size: @font-size-base;
            color: @text-color;
        }
        span{
            margin: 0 5px;
        }
        a{
            &.active,
            &:hover{
                color: @active-color;
            }
        }
    }
    .page-content-box{
        .sidenav{
            float: @left;
            width: 240px;
            background: #FBFDFF;
            .sidenav-title{
                padding: 10px;
                min-height: 80px;
                display: @display-flex;
                align-items: @center;
                justify-content: @center;
                font-size: @large-two-size;
                color: @white;
                background: @active-color;
                border-bottom: 1px solid @white;
            }
            .sidenav-list{
                padding: 15px 0;
                list-style: none;
                overflow: hidden;
                border: 1px solid #E7E7E7;
                border-top: none;
                li{
                    a{
                        display: @display-block;
                        padding: 12px 24px;
                        font-size: @titlesize;
                        color: @title-color;
                        border-top: 1px solid transparent;
                        border-bottom: 1px solid transparent;
                    }
                    &:hover,
                    &.active{
                        a{
                            position: relative;
                            background: @white;
                            border-top: 1px solid #E7E7E7;
                            border-bottom: 1px solid #E7E7E7;
                            &:before{
                                content: "";
                                position: absolute;
                                top: 0;
                                left: 0;
                                bottom: 0;
                                margin: auto 0;
                                width: 4px;
                                height: 100%;
                                background: @active-color;
                            }
                        }
                    }
                }
            }
        }
        .cont-right{
            float: @right;
            width: 920px;
        }
        .cont-right-box{
            position: relative;
            padding: 0 10px 20px 30px;
            min-height: calc(100vh - 649px);
            background: @white;
            .page-title{
                display: flex;
                align-items: flex-start;
                justify-content: space-between;
                height: 58px;
                background: url('../images/line.png') no-repeat center center;
                background-size: 100% auto;
                background-position: bottom;
                h6{
                    position: relative;
                    float: @left;
                    height: 50px;
                    font-size: 20px;
                    color: @title-color;
                    line-height: 50px;
                    font-weight: 500;
                    max-width: 55%;
                    overflow: hidden;
                    text-overflow: ellipsis;
                    white-space: nowrap;
                }
            }
            .first-list{
                padding: 0;
                list-style: none;
                li{
                    position: relative;
                    padding: 19px 0;
                    padding-left: 15px;
                    font-size: @titlesize;
                    border-bottom: 1px dashed #F0F0F0;
                    overflow: hidden;
                    &::before{
                        content: "";
                        position: absolute;
                        top: 0;
                        left: 0;
                        bottom: 0;
                        margin: auto 0;
                        width: 5px;
                        height: 5px;
                        border-radius: 50%;
                        background: @active-color;
                    }
                    a{
                        display: @display-block;
                        float: @left;
                        max-width: 83%;
                        color: @title-color;
                        overflow: hidden;
                        text-overflow: ellipsis;
                        white-space: nowrap;
                        span{
                            color: @active-color;
                        }
                        &:hover{
                            color: @active-color;
                        }
                    }
                    .time{
                        float: @right;
                        color: @textinfo-color;
                    }
                }
            }
            .two-list{
                padding: 0;
                list-style: none;
                overflow: hidden;
                li{
                    padding: 25px 0;
                    border-bottom: 1px dashed #F0F0F0;
                    overflow: hidden;
                    .img-box{
                        float: @left;
                        width: 200px;
                        height: 120px;
                        overflow: hidden;
                        .table-img{
                            width: @onehundred;
                            height: @onehundred;
                            object-fit: cover;
                        }
                        img{
                            width: @onehundred;
                            height: @onehundred;
                            object-fit: cover;
                            transition: all 0.6s;
                        }
                    }
                    .item-cont{
                        margin-left: 220px;
                        overflow: hidden;
                        h6{
                            font-size: @titlesize;
                            color: @title-color;
                            overflow: hidden;
                            text-overflow: ellipsis;
                            white-space: nowrap;
                        }
                        p{
                            font-size: @font-size-base;
                            line-height: 24px;
                            color: @text-color;
                            &.item-text{
                                margin-top: 10px;
                                height: 48px;
                                display: -webkit-box;
                                -webkit-box-orient: vertical;
                                -webkit-line-clamp: @line_clamp;
                                /*要显示的行数*/
                                overflow: hidden;
                            }
                            &.item-time{
                                margin-top: 15px;
                                font-size: @titlesize;
                                color: @textinfo-color;
                            }
                        }
                    }
                    a{
                        &:hover{
                            .img-box{
                                img{
                                    transform: scale(1.1);
                                    -ms-transform: scale(1.1);
                                    -moz-transform: scale(1.1);
                                    -webkit-transform: scale(1.1);
                                    -o-transform: scale(1.1);
                                }
                            }
                            .item-cont{
                                h6{
                                    color: @active-color;
                                }
                            }
                        }
                    }
                }
            }
            .three-list{
                padding: 0;
                margin-top: 20px;
                list-style: none;
                overflow: hidden;
                li{
                    margin-bottom: 20px;
                    background: #F8F8F8;
                    overflow: hidden;
                    &:last-child{
                        margin-bottom: 0;
                    }
                    a{
                        display: @display-block;
                        padding-left: 30px;
                        overflow: hidden;
                        .item-cont{
                            float: @left;
                            position: relative;
                            margin-top: 25px;
                            margin-bottom: 10px;
                            padding-right: 35px;
                            width: 455px;
                            height: 200px;
                            border-right: 1px solid #E2E2E2;
                            h6{
                                font-size: @large-size;
                                color: @title-color;
                                overflow: hidden;
                                text-overflow: ellipsis;
                                white-space: nowrap;
                            }
                            .item-text{
                                margin-top: 15px;
                                height: 84px;
                                font-size: @font-size-base;
                                color: @text-color;
                                line-height: 28px;
                                display: -webkit-box;
                                -webkit-box-orient: vertical;
                                -webkit-line-clamp: 3;
                                /*要显示的行数*/
                                overflow: hidden;
                            }
                            .item-more{
                                margin-top: 25px;
                                width: 120px;
                                height: 36px;
                                font-size: @font-size-base;
                                color: @white;
                                text-align: @center;
                                line-height: 36px;
                                background: @active-color;
                            }
                        }
                        .item-info{
                            float: @left;
                            padding-left: 30px;
                            padding-top: 40px;
                            width: 210px;
                            .item-time{
                                font-size: @font-size-base;
                                color: @text-color;
                            }
                            .item-down{
                                margin-top: 105px;
                                font-size: @font-size-base;
                                color: @text-color;
                                img{
                                    margin-top: -5px;
                                    margin-right: 10px;
                                }
                            }
                        }
                        .img-box{
                            float: @right;
                            width: 175px;
                            height: 240px;
                            overflow: hidden;
                            img{
                                width: @onehundred;
                                height: @onehundred;
                                object-fit: cover;
                            }
                        }
                        &:hover{
                            .item-cont{
                                h6{
                                    color: @active-color;
                                }
                                .item-more{
                                    opacity: .85;
                                }
                            }
                        }
                    }
                }
            }
            .four-list{
                padding: 0;
                margin: -20px -10px;
                margin-top: 20px;
                list-style: none;
                overflow: hidden;
                li{
                    float: left;
                    padding: 0 10px;
                    margin-bottom: 20px;
                    width: 33.33%;
                    .img-box{
                        padding: 10px 30px;
                        display: @display-flex;
                        align-items: @center;
                        justify-content: @center;
                        width: @onehundred;
                        height: 160px;
                        background: url(../images/img16.jpg) no-repeat;
                        background-size: cover;
                        h6{
                            font-size: @large-two-size;
                            color: @white;
                            text-align: @center;
                        }
                    }
                    p{
                        margin-top: 5px;
                        font-size: @titlesize;
                        color: @title-color;
                        overflow: hidden;
                        text-overflow: ellipsis;
                        white-space: nowrap;
                    }
                    a{
                        &:hover{
                            p{
                                color: @active-color;
                            }
                        }
                    }
                }
            }
            .five-list{
                padding: 0;
                margin-top: 20px;
                list-style: none;
                overflow: hidden;
                li{
                    margin-bottom: 20px;
                    border: 1px solid #E5E5E5;
                    overflow: hidden;
                    &:last-child{
                        margin-bottom: 0;
                    }
                    a{
                        display: @display-block;
                        padding: 20px 35px;
                        overflow: hidden;
                    }
                    .img-box{
                        float: @left;
                        width: 100px;
                        height: 138px;
                        overflow: hidden;
                        img{
                            width: @onehundred;
                            height: @onehundred;
                            object-fit: cover;
                        }
                    }
                    .item-cont{
                        margin-left: 135px;
                        overflow: hidden;
                        .item-title{
                            margin-top: 17px;
                            line-height: 30px;
                            overflow: hidden;
                            h6{
                                float: @left;
                                font-size: @large-two-size;
                                color: @title-color;
                                font-weight: normal;
                            }
                            span{
                                margin-left: 20px;
                                font-size: @titlesize;
                                color: @title-color;
                            }
                        }
                        .item-text{
                            margin-top: 17px;
                            font-size: @font-size-base;
                            color: @text-color;
                            display: -webkit-box;
                            -webkit-box-orient: vertical;
                            -webkit-line-clamp: @line_clamp;
                            /*要显示的行数*/
                            overflow: hidden;
                        }
                    }
                    a{
                        &:hover{
                            .item-cont{
                                .item-title{
                                    h6{
                                        color: @active-color;
                                    }
                                }
                            }
                        }
                    }
                    &:hover{
                        border-color: @active-color;
                    }
                }
            }
            .six-list{
                padding: 0;
                list-style: none;
                overflow: hidden;
                li{
                    padding: 25px 0;
                    border-bottom: 1px dashed #F0F0F0;
                    overflow: hidden;
                    .img-box{
                        float: @left;
                        display: @display-flex;
                        align-items: @center;
                        justify-content: @center;
                        width: 180px;
                        height: 90px;
                        border: 1px solid #eee;
                        overflow: hidden;
                        img{
                            max-width: @onehundred;
                            max-height: @onehundred;
                            transition: all 0.6s;
                        }
                    }
                    .item-cont{
                        margin-left: 200px;
                        overflow: hidden;
                        h6{
                            font-size: @large-size;
                            color: @title-color;
                            overflow: hidden;
                            text-overflow: ellipsis;
                            white-space: nowrap;
                        }
                        p{
                            font-size: @font-size-base;
                            line-height: 24px;
                            color: @text-color;
                            &.item-text{
                                margin-top: 10px;
                                height: 48px;
                                display: -webkit-box;
                                -webkit-box-orient: vertical;
                                -webkit-line-clamp: @line_clamp;
                                /*要显示的行数*/
                                overflow: hidden;
                            }
                            &.item-time{
                                margin-top: 15px;
                                color: @textinfo-color;
                            }
                        }
                    }
                    a{
                        &:hover{
                            .img-box{
                                img{
                                    transform: scale(1.1);
                                    -ms-transform: scale(1.1);
                                    -moz-transform: scale(1.1);
                                    -webkit-transform: scale(1.1);
                                    -o-transform: scale(1.1);
                                }
                            }
                            .item-cont{
                                h6{
                                    color: @active-color;
                                }
                            }
                        }
                    }
                }
            }
            .introduction-section{
                position: relative;
                z-index: 9;
                margin-top:17px;
                .introduction-title{
                    margin-bottom: 18px;
                    font-size: 20px;
                    color: @title-color;
                    text-align: @center;
                    font-weight: bold;
                }
                .introduction-text{
                    &,*{
                        font-size:@titlesize;
                        color: @title-color;
                        line-height: 2;
                    }
                }
            }
            .introduction-img{
                position: absolute;
                left: 0;
                bottom: 0;
            }
            .nodata-section {
                margin: 10vh 0;
                text-align: @center;
                overflow: hidden;
                p{
                    margin-top: 40px;
                    font-size: @titlesize;
                    color: @text-color;
                }
            }
        }
    }
}
.scroll-up{
    display:@display-none;
    position: fixed;
    right: 13%;
    bottom: 285px;
    margin-right: 10px;
    width: 54px;
    height: 54px;
    text-align: @center;
    background: #fff;
    z-index: 999;
    box-shadow: 5px 0px 13px 0px rgba(0,0,0,.05);
    overflow: hidden;
    a{
        display: @display-flex;
        align-items: @center;
        justify-content:@center;
        width: 100%;
        height: 54px;
    }
}
.m-search-btn,
.m-nav-btn,
.m-nav-pop,
.submenu-bar,
.mobile-cover {
    display: @display-none;
}
@media screen and (min-width:0px) and (max-width:1340px) {
    .w1200{
        width: 90%;
    }
    .section{
        &.section1 {
            .news-slide{
                width: 49%;
            }
            .news-tab{
                width: 49%;
                .hd2{
                    ul{
                        li{
                            height: 34px;
                            span{
                                height: 34px;
                                line-height: 34px;
                                font-size: @font-size-base;
                                padding: 0 16px;
                            }
                        }
                    }
                }
            }
        }
        &.section2{
            .standards-section,.statistic-section{
                width: 49%;
            }
        }
        &.section3{
            .standards-section,
            .statistic-section{
                width: 48%;
            }
        }
        &.section4{
            a {
                height: 100px;
                margin-bottom: 25px;
            }
        }
        .section-title {
            height: 35px;
            h6{
                height: 34px;
                font-size: @large-size;
            }
            .hd {
                ul {
                    li{
                        height: 34px;
                        span{
                            height: 34px;
                        }
                    }
                }
            }
        }
        .news-list {
            li{
                &.first{
                    h6{
                        font-size: @large-size;
                    }
                }
                &.two{
                    line-height: 34px;
                    a{
                        max-width: 73%;
                    }
                }
                &.item{
                    a{
                        max-width: 80%;
                    }
                }
            }
        }
    }
    .adve-section{
        img{
            height: 100px;
        }
    }
    .scroll-up{
        right: 10px;
    }
    .page-content {
        .page-content-box {
            .cont-right{
                width: calc(100% - 240px);
            }
            .cont-right-box{
                .three-list{
                    li{
                        a{
                            padding-left: 15px;
                            .item-cont{
                                padding-right: 15px;
                                width: 370px;
                            }
                        }
                    }
                }
            }
        }
    }
}
@media screen and (min-width:0px) and (max-width:1024px) {
    .w1200{
        width: 94%;
    }
    .nav{
        ul{
            li{
                a{
                    font-size: @font-size-base;
                }
                .menu-nav{
                    li{
                        a{
                            padding: 8px;
                            font-size: @font-size-base;
                        }
                    }
                }
            }
        }
    }
    .page-content-box{
        .cont-right-box{
            padding: 0 0 20px 20px !important;
            .page-title{
                h6{
                    font-size: @large-size !important;
                }
            }
        }
    }
    .section{
        &.section1 {
            .news-tab{
                width: 49%;
                .hd2{
                    ul{
                        li{
                            span{
                                padding: 0 5px;
                            }
                        }
                    }
                }
            }
            .news-list {
                li{
                    &.first{
                        h6{
                            font-size: @large-size;
                        }
                    }
                    &.two{
                        line-height: 38px;
                    }
                    &.item{
                        font-size: @font-size-base;
                        padding: 0 15px 0 10px !important;
                        a{
                            max-width: 72%;
                        }
                    }
                }
            }
        }
    }
}
@media screen and (min-width:0px) and (max-width:820px) {
    .adve-section{
        img{
            height: auto;
        }
    }
    .page-content-box{
        .cont-right-box{
            padding: 0 0 20px 20px !important;
            .page-title{
                h6{
                    font-size: @large-size !important;
                }
            }
        }
    }
    .first-slide{
        height: 270px;
        .swiper{
            height: 270px;
            .swiper-wrapper{
                height: 270px !important;
            }
        }
    }
    .header{
        position: relative;
        padding-top: 35px;
        padding-bottom: 40px;
        background-size: auto @onehundred;
        .logo{
            img{
                width: 280px;
            }
        }
        .w1200{
            .header-right{
                display: flex;
                flex-direction: column;
                align-items: self-end;
                .m-header-right{
                    display: @display-block;
                }
                .search-box{
                    display: @display-none;
                    position: absolute;
                    top: @onehundred;
                    left: 0;
                    padding: 10px;
                    width: @onehundred;
                    height: auto;
                    background: @white;
                    border: 0;
                    border-radius: 0;
                    z-index: 99;
                    box-shadow: 5px 0px 13px 0px rgba(0, 0, 0, 0.1);
                    input{
                        border: 1px solid #dcdcdc;
                    }
                }
            }
        }
    }
    .section{
        .news-list{
            li.first a .first-img{
                width: 180px;
                height: 108px;
            }
        }
        &.section4{
            a{
                height: auto;
                margin-bottom: 20px;
            }
        }
    }
    .list-content{
        .cont-center{
            .cont-right-box{
                padding: 0 0 20px;
                .news-list{
                    .two{
                        height: 50px;
                        line-height: 50px;
                    }
                }
            }
        }
    }
    .m-search-btn,
    .m-nav-btn{
        display: @display-inline-block;
        margin-left: 10px;
    }
    .m-nav-btn {
        width: 20px;
        height: 20px;
    }

    .m-nav-btn{
        background: url(../images/icon3.png) center no-repeat;
        background-size: 20px;
    }
    .m-search-btn{
        width: 22px;
        height: 22px;
        background: url(../images/icon1.png) center no-repeat;
    }
    .nav{
        display: @display-none;
    }
    .m-nav-pop{
        width: @onehundred;
        height: @onehundred;
        position: fixed;
        z-index: 102;
        left: @onehundred;
        top: 0;
        display:@display-block;
        transition: left 0.3s;
        background: @white;
        z-index: 99999;
        overflow-y: auto;
        .m-nav-close {
            position: absolute;
            top: 15px;
            right: 15px;
            width: 18px;
            img {
                width: @onehundred;
            }
        }
        .m-nav-list {
            padding: 0;
            list-style: none;
            position: relative;
            margin-top: 45px;
            ul {
                padding: 0;
                list-style: none;
            }
            li {
                padding: 0 20px;
                font-size: @titlesize;
                color: @text-color;
                border-bottom: 1px solid #dcdcdc;
                a{
                    display: @display-block;
                    padding: 14px 0;
                }
                &.more{
                    background: url(../images/icon5.png) 95% 20px no-repeat;
                    background-size:@titlesize;
                    &.active {
                        border-bottom: 0;
                        background: url(../images/icon5_2.png) 95% 20px no-repeat;
                        background-size:@titlesize;
                    }
                }
                .menu-nav {
                    display:@display-none;
                }
            }
        }
    }
}
@media screen and (min-width:0px) and (max-width:768px) {
    .w1200 {
        width: calc(100% - 30px);
    }
    .section{
        margin-bottom: 20px;
        &.section1{
            margin-bottom: 18px;
            .news-slide,
            .news-tab{
                float: none;
                width: @onehundred;
            }
            .news-slide{
                margin-bottom: 25px;
                height: auto;
                .swiper-slide{
                    img{
                        height: 422px;
                    }
                }
            }
        }
        &.section2{
            margin-bottom: 15px;
            .standards-section{
                margin-bottom: 15px;
            }
            .standards-section,.statistic-section{
                width: 100%;
            }
        }
        &.section3 {
            margin-bottom: 15px;
            .standards-section,
            .statistic-section{
                float: none;
                width: @onehundred;
            }
            .standards-section{
                margin-bottom: 15px;
            }
        }
        &.section4{
            a{
                width: calc((100% - 15px) / 2);
            }
        }
    }
    .page-content-box{
        .cont-right-box{
            padding: 0 !important;
        }
    }
    .adve-section{
        margin-bottom: 20px;
    }
    .page-content{
        .page-content-box{
            .submenu-bar {
                display: block;
                padding-left: 30px;
                margin-bottom: 20px;
                font-size: @titlesize;
                color: @title-color;
                background: url(../images/icon3.png) left center no-repeat;
                background-size: 20px;
            }
            .mobile-cover {
                position: fixed;
                top: 0;
                left: 0;
                bottom: 0;
                width: @onehundred;
                height: @onehundred;
                background: rgba(0, 0, 0, .5);
                z-index: 999;
            }
            .sidenav{
                position: fixed;
                z-index: 2000;
                top: 0;
                left: -60%;
                width: 60%;
                bottom: 0;
                overflow-y: auto;
                background-color: @white;
                transition: left 0.6s;
                .sidenav-title{
                    margin: 0;
                    padding:15px;
                    height: auto;
                    min-height: inherit;
                    font-size: @large-size;
                    background: @active-color;
                    border-radius: 0;
                    border: 0;
                }
                .sidenav-list{
                    padding: 0;
                    margin: 0;
                    padding: 15px 0;
                    &>li{
                        &>a{
                            padding: 10px 15px;
                            font-size: @titlesize;
                            text-align: @left;
                            color: @title-color;
                        }
                        &:hover,
                        &.active{
                            &>a{
                                color: @active-color;
                            }
                        }
                    }
                }
            }
            .cont-right{
                float: none;
                width: @onehundred;
            }
            .cont-right-box{
                .three-list{
                    li{
                        a{
                            padding-left: 15px;
                            .item-cont{
                                padding-right: 15px;
                                width: 320px;
                                height: auto;
                            }
                            .item-info{
                                padding-left: 15px;
                                width: 160px;
                                .item-down{
                                    margin-top: 60px;
                                }
                            }
                            .img-box{
                                width: 160px;
                                height: 219px;
                            }
                        }
                    }
                }
            }
        }
    }
    .footer{
        .footer-top{
            .footer-right{
                ul{
                    li{
                        img{
                            width: 100px;
                            height: 100px;
                        }
                    }
                }
            }
        }
    }
}
@media screen and (min-width:0px) and (max-width:640px) {
    .header {
        padding: 15px 0;
        .logo{
            img{
                width: 200px;
            }
        }
        .w1200{
            .header-right{
                .report-entry{
                    font-size: 12px;
                    margin-bottom: 8px;
                }
            }
        }
    }
    .first-slide{
        height: 100px;
        .swiper{
            height: 100px;
            .swiper-wrapper{
                height: 100px !important;
            }
            .swiper-pagination{
                bottom: 5px !important;
                .swiper-pagination-bullet{
                    width: 8px;
                    height: 8px;
                    background: @white;
                    opacity: .5;
                    outline: none;
                }
                .swiper-pagination-bullet-active{
                    opacity: 1;
                }
            }
        }
    }
    .section{
        &.section1{
            margin-top: 20px;
            .news-slide{
                .swiper-slide{
                    img{
                        height: 201px;
                    }
                    .cover-title{
                        padding: 5px 10px;
                        padding-right: 100px;
                        p{
                            font-size: @font-size-base;
                            line-height: 22px;
                        }
                    }
                }
                .swiper-horizontal>.swiper-pagination-bullets,
                .swiper-pagination-bullets.swiper-pagination-horizontal,
                .swiper-pagination-custom,
                .swiper-pagination-fraction{
                    right: 10px;
                    bottom: 12px;
                }
                .swiper-horizontal>.swiper-pagination-bullets .swiper-pagination-bullet,
                .swiper-pagination-horizontal.swiper-pagination-bullets .swiper-pagination-bullet{
                    margin: 0 2px;
                }
            }
            .news-tab{
                .hd{
                    height: 30px;
                    ul{
                        li{
                            height: 29px;
                            span{
                                padding: 0 10px;
                                height: 29px;
                                font-size: @titlesize;
                            }
                            &:first-child{
                                span{
                                    padding-left: 0;
                                    &::after{
                                        top: 2px;
                                    }
                                }
                            }
                            .more{
                                top: 2px;
                            }
                        }
                    }
                }
                .news-list{
                    li{
                        &.two{
                            line-height: 30px;
                        }
                        &.item{
                            line-height: 30px;
                            padding: 0 9px 0 4px !important;
                        }
                    }
                }
            }
        }
        &.section2{
        }
        &.section3 {
            .standards-section{
                .section-title{
                    .hd{
                        ul{
                            max-width: 80%;
                            li{
                                text-align: @left;
                                span{
                                    padding: 0 10px;
                                }
                                &:first-child,
                                &:nth-child(4){
                                    span{
                                        padding-left: 0;
                                    }
                                }
                            }
                        }
                    }
                }
            }
            .news-list{
                li{
                    &.two{
                        line-height: 30px;
                    }
                    &.item{
                        line-height: 30px;
                    }
                }
            }
        }
        &.section4 {
            flex-direction: column;
            a{
                width: 100%;
            }
        }
        &.section5{
            margin-bottom: 5px;
            .links-list{
                margin-top: 15px;
                li{
                    margin-bottom: 15px;
                    width: @onehundred;
                    select{
                        padding-left: 10px;
                        height: 30px;
                    }
                }
            }
        }
        .section-title{
            height: auto;
            &::after,
            &::before{
                content: "";
                clear: both;
                overflow: hidden;
                display: table;
            }
            h6{
                height: 29px;
                font-size: @titlesize;
            }
            .hd{
                position: relative;
                margin-left:0;
                margin-top: 40px;
                float: none;
                width: @onehundred;
                overflow: hidden;
                ul{
                    li{
                        height: 29px;
                        line-height: 24px;
                        span{
                            height: 29px;
                            &::after{
                                top: 5px;
                            }
                        }
                        .more{
                            top: 4px;
                        }
                    }
                }
            }
        }
        .news-list{
            li{
                &.first{
                    padding: 10px 0;
                    h6{
                        font-size: @font-size-base;
                    }
                    p{
                        margin-top: 5px;
                        font-size: @small-size;
                        line-height: 20px;
                    }
                }
                &.two{
                    font-size: @font-size-base;
                    line-height: 30px;
                    a{
                        max-width: 75%;
                    }
                }
                &.item{
                    font-size: @font-size-base;
                    line-height: 30px;
                    a{
                        max-width: 75%;
                    }
                }
            }
        }
    }
    .list-content{
        padding: 0 15px 15px;
        .cont-center{
            .cont-right-box{
                .news-list{
                    .two{
                        height: 40px;
                        line-height: 40px;
                        a{
                            span{
                                font-size: @font-size-base;
                            }
                        }
                    }
                }
            }
        }
    }
    .page-content {
        .breadcrumb{
            display: @display-none;
        }
        .content{
            padding: 0 15px 15px;
        }
        .page-content-box{
            .submenu-bar{
                margin: 15px 0;
                font-size: @font-size-base;
            }
            .cont-right-box{
                padding: 0;
                .page-title{
                    height: 50px;
                    h6{
                        height: 49px;
                        font-size: @large-size;
                        line-height: 49px;
                    }
                }
                .first-list{
                    li{
                        padding: 10px 0;
                        padding-left: 15px;
                        font-size: @font-size-base;
                        a{
                            max-width: 68%;
                        }
                    }
                }
                .two-list,
                .six-list{
                    li{
                        padding: 15px 0;
                        .img-box{
                            width: 130px;
                            height: 78px;
                        }
                        .item-cont{
                            margin-left: 145px;
                            h6{
                                font-size: @font-size-base;
                            }
                            p{
                                font-size: @small-size;
                                line-height: 20px;
                                &.item-text{
                                    margin-top: 3px;
                                    height: 40px;
                                }
                                &.item-time{
                                    margin-top: 0;
                                    font-size: @small-size;
                                }
                            }
                        }
                    }
                }
                .three-list{
                    li{
                        a{
                            .item-cont{
                                padding-right: 10px;
                                margin-top: 15px;
                                width: calc(100% - 130px);
                                border-right: 0;
                                h6{
                                    font-size: @font-size-base;
                                }
                                .item-text{
                                    margin-top: 10px;
                                    height: 60px;
                                    font-size: @small-size;
                                    line-height: 20px;
                                }
                                .item-more{
                                    margin-top: 12px;
                                    width: 100px;
                                    height: 30px;
                                    font-size: @small-size;
                                    line-height: 30px;
                                }
                            }
                            .item-info{
                                display: @display-none;
                            }
                            .img-box{
                                width: 120px;
                                height: 164px;
                            }
                        }
                    }
                }
                .four-list{
                    margin: -15px -5px;
                    margin-top: 20px;
                    li{
                        padding: 0 5px;
                        margin-bottom: 15px;
                        width: 50%;
                        .img-box{
                            padding: 10px;
                            height: 100px;
                            h6{
                                font-size: @titlesize;
                            }
                        }
                        p{
                            font-size: @font-size-base;
                            line-height: 20px;
                        }
                    }
                }
                .five-list{
                    li{
                        a{
                            padding: 15px;
                            .img-box{
                                width: 70px;
                                height: 97px;
                            }
                            .item-cont{
                                margin-left: 85px;
                                .item-title{
                                    margin-top: 10px;
                                    line-height: 25px;
                                    h6{
                                        font-size: @titlesize;
                                    }
                                    span{
                                        margin-left: 15px;
                                        font-size:@font-size-base;
                                    }
                                }
                                .item-text{
                                    margin-top: 10px;
                                    font-size: @small-size;
                                    line-height: 20px;
                                }
                            }
                        }
                    }
                }
                .nodata-section{
                    img{
                        max-width: 70%;
                    }
                    p{
                        font-size: @font-size-base;
                    }
                }
                .TextTitle{
                    padding: 12px 0;
                    h5{
                        font-size: @titlesize;
                    }
                    .shar{
                        margin-top: 10px;
                        font-size: @small-size;
                        .share_items{
                            display: @display-none;
                        }
                    }
                }
                .NewsText{
                    padding: 15px 0;
                    &,& *{
                        font-size: @font-size-base;
                        line-height: 1.75;
                    }
                }
                .NewsPages{
                    padding-top: 10px;
                    a{
                        font-size: @font-size-base;
                        line-height: 22px;
                    }
                }
                .introduction-section {
                    .introduction-text{
                        &,& *{
                            font-size: @font-size-base;
                            line-height: 1.75;
                        }
                    }
                }
                .pages{
                    margin-top: 20px;
                    .pagination{
                        li{
                            margin-right:0;
                            width: 30px;
                            height: 30px;
                            font-size: @small-size;
                            line-height: 28px;
                            border-radius: 0;
                            border-right: 0;
                            &.first,
                            &.last{
                                display: @display-none;
                            }
                            &.prev,
                            &.next{
                                width: 60px;
                            }
                            &.next{
                                border-right: 1px solid #BFBFBF;
                            }
                        }
                    }
                }
                .introduction-img{
                    img{
                        max-width: @onehundred;
                    }
                }
            }
        }
    }

    .scroll-up{
        right: 5px;
        margin-right: 0;
        width: 40px;
        height: 40px;
        bottom: 15px;
        a{
            height: 40px;
        }
    }
    .footer{
        .w1200{
            padding: 15px 0;
            background-position: bottom right;
            background-size: 90%;
        }
        .footer-top{
            .footer-left,
            .footer-right{
                float: none;
            }
            .footer-left{
                h6{
                    margin-bottom: 5px;
                    font-size: @font-size-base;
                }
                p{
                    font-size: @small-size;
                    line-height: 1.7;
                }
            }
            .footer-right{
                margin-top: 15px;
                ul{
                    margin: 0 auto;
                    display: @display-table;
                    li{
                        p{
                            font-size: @small-size;
                        }
                    }
                }
            }
        }
        .footer-bottom{
            margin-top: 10px;
            font-size: @small-size;
            line-height: 1.7;
            .record{
                flex-direction: column;
            }
            span{
                display: @display-block;
                line-height: 1.5;
            }
        }
    }
}

@import 'djgz-theme.less';
