@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: #2270D5; //文字滑过颜色跟随当前主体色，也有可能滑过的和高亮的不是一种颜色这个主要作为文字颜色
@active-color: #2270D5; //高亮颜色跟随当前主体色，也有可能滑过的和高亮的不是一种颜色这个主要作为背景颜色
@text-color:#666; //简介颜色
@textinfo-color:#999;// 不重要的文字颜色比如时间
@forminputjianju: 10px;// 输入框左内间距
@white:#fff; //白色
@black:#000;
@e5:#e5e5e5;
@dc:#dcdcdc;
@family:"Microsoft YaHei";
@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: #EDF6FB;
    .header{
        width: @onehundred;
        height: 150px;
        background: url(../images/headbg.jpg) center no-repeat;
        .w1200{
            display: @display-flex;
            align-items: @center;
            justify-content: space-between;
            height: @onehundred;
            .header-right{
                .quick-link{
                    padding-right: 15px;
                    text-align: @right;
                    overflow: hidden;
                    a{
                        display: @display-inline-block;
                        margin-right: 5px;
                        width: 70px;
                        height: 30px;
                        font-size: @font-size-base;
                        color: @white;
                        text-align: @center;
                        line-height: 30px;
                        border-radius: 3px;
                        background: #0089E0;
                        &.en{
                            background: @active-color;
                        }
                        &:last-child{
                            margin-right: 0;
                        }
                    }
                }
                .header-bottom{
                    margin-top: 12px;
                    overflow: hidden;
                    .search-box{
                        width: 320px;
                        height: 40px;
                        border-radius: 20px;
                        background: @white;
                        overflow: hidden;
                        input{
                            float: @left;
                            padding-left: 15px;
                            width: calc(100% - 60px);
                            height: 40px;
                            font-size: @font-size-base;
                            color: @text-color;
                            border: 0;
                        }
                        button{
                            float: @right;
                            width: 55px;
                            height: 40px;
                            border: 0;
                            background: transparent;
                        }
                    }
                }
            }
        }
    }
    .nav{
        background:#0089E0;
        ul{
            padding: 0;
            list-style: none;
        }
        &>ul{
            display: @display-table;
            &>li{
                display: table-cell;
                position: relative;
                transition: all 0.3s ease;
                a{
                    display: @display-block;
                }
                &>a{
                    padding: 0 10px;
                    font-size: @titlesize;
                    color: @white;
                    text-align: @center;
                    font-weight: bold;
                    line-height: 50px;
                }
                &:hover,&.active{
                    background:@active-color;
                }
                .menu-nav{
                    display: @display-none;
                    position: absolute;
                    top: @onehundred;
                    left: 0;
                    min-width: @onehundred;
                    background:@active-color;
                    box-shadow: 0px 3px 6px 1px rgba(0,0,0,0.09);
                    z-index: 999;
                    ul{
                        li{
                            font-size: @font-size-base;
                            color: @white;
                            white-space: nowrap;
                            a{
                                padding: 8px 15px;
                            }
                            &:hover{
                                background:#0089E0;
                            }
                        }
                    }
                }
            }
    
        }
    }
    .content{
        padding: 20px;
        min-height: calc(100vh - 200px);
        background: @white;
        .quick-section{
            margin-bottom: 30px;
            overflow: hidden;
            ul{
                padding: 0;
                list-style: none;
                margin: 0 -10px;
                overflow: hidden;
                li{
                    float: @left;
                    padding: 0 10px;
                    width: 25%;
                    .item-box{
                        img{
                            width: @onehundred;
                            height: 80px;
                            object-fit: cover;
                        }
                    }
                }
            }
        }
        .section{
            margin-bottom: 30px;
            width: @onehundred;
            &.section1{
                .news-slide{
                    float: @left;
                    position: relative;
                    width: 565px;
                    height: 360px;
                    overflow: hidden;
                    .swiper {
                        height: @onehundred;
                        .swiper-slide{
                            img{
                                width: @onehundred;
                                height: @onehundred;
                                object-fit: cover;
                                transition: all 0.6s;
                            }
                            .cover-title{
                                position: absolute;
                                left: 0;
                                right: 0;
                                bottom: 0;
                                padding: 5px 20px;
                                padding-right: 100px;
                                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);
                                    /* IE 9 */
                                    -moz-transform: scale(1.1);
                                    /* Firefox */
                                    -webkit-transform: scale(1.1);
                                    /* Safari 和 Chrome */
                                    -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: 10px;
                            width: auto;
                            bottom: 15px;
                        }
                        .swiper-pagination-bullet{
                            width: 10px;
                            height: 10px;
                            background: #f5f5f5;
                            opacity: 1;
                        }
                        .swiper-pagination-bullet-active{
                            background: #1A5CA4;
                        }
                    }
                }
                .news-tab{
                    float: @right;
                    width: 565px;
                }
            }
            &.section2{
                .branch-section{
                    float: @left;
                    width: 565px;
                    .branch-content{
                        padding: 11px 20px;
                        padding-bottom: 40px;
                        background: #F1F4F9 url(../images/logo2.jpg) right bottom no-repeat;
                        overflow: hidden;
                        .branch-list{
                            padding: 0;
                            list-style: none;
                            overflow: hidden;
                            li{
                                font-size: @titlesize;
                                color: @title-color;
                                line-height: 36px;
                                a{
                                    display: @display-block;
                                    font-size: @titlesize;
                                    color: @title-color;
                                    overflow: hidden;
                                    text-overflow: ellipsis;
                                    white-space: nowrap;
                                    span{
                                        margin-right: 10px;
                                        color: @textinfo-color;
                                    }
                                    &:hover{
                                        color: @active-color;
                                    }
                                }
                            }
                        }
                    }
                }
                .section-right2{
                    float: @right;
                    width: 565px;
                    .news-tab{
                        float: none;
                        margin-bottom: 11px;
                        width: @onehundred;
                        overflow: hidden;
                    }
                    .entrance-section{
                        margin-top: 15px;
                        overflow: hidden;
                        .entrance-content{
                            padding: 25px 30px;
                            padding-bottom: 20px;
                            background: #F1F4F9;
                            overflow: hidden;
                            .entrance-list{
                                padding: 0;
                                list-style: none;
                                display: @display-flex;
                                justify-content: space-between;
                                overflow: hidden;
                                li{
                                    text-align: @center;
                                    .icon-box{
                                        margin: 0 auto;
                                        display: @display-flex;
                                        align-items: @center;
                                        justify-content: @center;
                                        width: 80px;
                                        height: 80px;
                                        background: #8CBADB;
                                        border-radius: 10px;
                                        overflow: hidden;
                                    }
                                    p{
                                        margin-top: 5px;
                                        font-size: @titlesize;
                                        color: @title-color;
                                    }
                                    &:nth-child(2){
                                        .icon-box{
                                            background: #66BABC;
                                        }
                                    }
                                    &:nth-child(3){
                                        .icon-box{
                                            background: #F7BA5F;
                                        }
                                    }
                                    &:nth-child(4){
                                        .icon-box{
                                            background: #68BABB;
                                        }
                                    }
                                }
                            }
                        }
                    }
                }
            }
            &.section3{
                margin-bottom: 15px;
                .news-tab{
                    float: @left;
                    width: 565px;
                }
                .statistics-section{
                    float: @right;
                    width: 565px;
                }
            }
            &.section4{
                margin-bottom: 25px;
                .journal-section{
                    float: @left;
                    width: 565px;
                    .journal-list{
                        padding: 0;
                        list-style: none;
                        margin: 0 -20px;
                        margin-top: 20px;
                        overflow: hidden;
                        li{
                            float: @left;
                            padding: 0 20px;
                            width: 50%;
                            .item-box{
                                a{
                                    display: @display-flex;
                                    align-items: @center;
                                    justify-content: space-between;
                                    .img-box{
                                        width: 130px;
                                        height: 185px;
                                        overflow: hidden;
                                        img{
                                            width: @onehundred;
                                            height: @onehundred;
                                            object-fit: cover;
                                        }
                                    }
                                    .item-cont{
                                        width: calc(100% - 150px);
                                        overflow: hidden;
                                        h6{
                                            margin-bottom: 30px;
                                            font-size: @large-size;
                                            color: @title-color;
                                            overflow: hidden;
                                            text-overflow: ellipsis;
                                            white-space: nowrap;
                                        }
                                        p{
                                            font-size: @font-size-base;
                                            color: @text-color;
                                            line-height: 24px;
                                        }
                                    }
                                }
                            }
                        }
                    }
                }
                .member-section{
                    float: @right;
                    width: 565px;
                    .news-list2{
                        padding: 0;
                        margin-top: 20px;
                        list-style: none;
                        overflow: hidden;
                        li{
                            margin-bottom: 20px;
                            overflow: hidden;
                            .img-box{
                                float: @left;
                                width: 150px;
                                height: 85px;
                                overflow: hidden;
                                img{
                                    width: @onehundred;
                                    height: @onehundred;
                                    object-fit: cover;
                                    transition: all .6s;
                                }
                            }
                            .item-cont{
                                margin-left: 170px;
                                overflow: hidden;
                                h6{
                                    margin-top: 3px;
                                    font-size: @titlesize;
                                    color: @title-color;
                                    line-height: 24px;
                                    overflow: hidden;
                                    text-overflow: ellipsis;
                                    white-space: nowrap;
                                }
                                p{
                                    margin-top: 10px;
                                    font-size: @font-size-base;
                                    color: @text-color;
                                    line-height: 24px;
                                    display: -webkit-box;
                                    -webkit-box-orient: vertical;
                                    -webkit-line-clamp: @line_clamp;
                                    /*要显示的行数*/
                                    overflow: hidden;
                                }
                            }
                            a{
                                &:hover{
                                    .img-box{
                                        img{
                                            transform: scale(1.1);
                                            -ms-transform: scale(1.1);
                                            /* IE 9 */
                                            -moz-transform: scale(1.1);
                                            /* Firefox */
                                            -webkit-transform: scale(1.1);
                                            /* Safari 和 Chrome */
                                            -o-transform: scale(1.1);
                                        }
                                    }
                                    .item-cont{
                                        h6{
                                            color: @active-color;
                                        }
                                    }
                                }
                            }
                            &:last-child{
                                margin-bottom: 0;
                            }
                        }
                    }
                }
            }
            &.section5{
                margin-bottom: 10px;
                .links-list{
                    margin-top: 10px;
                    padding: 0;
                    list-style: none;
                    overflow: hidden;
                    li{
                        float: @left;
                        margin-right: 30px;
                        font-size: @titlesize;
                        color: @title-color;
                        line-height: 34px;
                        &:hover{
                            color: @active-color;
                        }
                    }
                }
            }
            .section-title{
                padding: 10px 20px;
                background: #0089E0;
                overflow: hidden;
                h6{
                    float: @left;
                    font-size: @large-size;
                    color: @white;
                }
                .more{
                    float: @right;
                    font-size: @font-size-base;
                    color: @white;
                    line-height: 25px;
                }
            }
            .news-tab{
                .hd{
                    height: 33px;
                    border-bottom: 1px solid #DFEBF7;
                    ul{
                        position: relative;
                        li{
                            float: @left;
                            margin-right: 20px;
                            height: 32px;
                            span{
                                display: inline-block;
                                position: relative;
                                height: 32px;
                                font-size: @large-size;
                                color: @title-color;
                                font-weight: bold;
                                cursor: pointer;
                            }
                            .more{
                                display: @display-none;
                            }
                            &.on{
                                span{
                                    color: @active-color;
                                    &::before{
                                        content: "";
                                        position: absolute;
                                        left: 0;
                                        right: 0;
                                        bottom: -1px;
                                        height: 3px;
                                        background: @active-color;
                                    }
                                }
                                .more{
                                    position: absolute;
                                    top: 0;
                                    right: 0;
                                    display: @display-block;
                                    font-size: @font-size-base;
                                    color: @text-color;
                                    &:hover{
                                        color: @active-color;
                                    }
                                }
                            }
                        }
                    }
                }
                ul{
                    padding: 0;
                    list-style: none;
                }
            }
        }
        .adve-section{
            margin-bottom: 30px;
            overflow: hidden;
            ul{
                padding: 0;
                margin: 0 -15px;
                list-style: none;
                overflow: hidden;
                li{
                    float: @left;
                    padding: 0 15px;
                    width: 50%;
                    a{
                        display: @display-block;
                        overflow: hidden;
                        img{
                            width: @onehundred;
                            height: 100px;
                            object-fit: cover;
                            transition: all .6s;
                        }
                        &:hover{
                            img{
                                transform: scale(1.1);
                                -ms-transform: scale(1.1);
                                /* IE 9 */
                                -moz-transform: scale(1.1);
                                /* Firefox */
                                -webkit-transform: scale(1.1);
                                /* Safari 和 Chrome */
                                -o-transform: scale(1.1);
                            }
                        }
                    }
                }
            }
        }
    }
    .section-title2{
        height: 33px;
        border-bottom: 1px solid #DFEBF7;
        h6{
            float: @left;
            position: relative;
            height: 32px;
            font-size: @large-size;
            color: @active-color;
            &::before{
                content: "";
                position: absolute;
                left: 0;
                right: 0;
                bottom: -1px;
                height: 3px;
                background: @active-color;
            }
        }
        .more{
            float: @right;
            font-size: @font-size-base;
            color: @text-color;
            &:hover{
                color: @active-color;
            }
        }
    }
    .news-list{
        padding: 0;
        list-style: none;
        margin-top: 10px;
        overflow: hidden;
        li{
            font-size: @titlesize;
            line-height: 36px;
            overflow: hidden;
            a{
                float: @left;
                max-width: 70%;
                color: @title-color;
                overflow: hidden;
                text-overflow: ellipsis;
                white-space: nowrap;
                span{
                    margin-right: 10px;
                    color: @textinfo-color;
                }
                &:hover{
                    color: @active-color;
                }
            }
            .time{
                float: @right;
                color: @textinfo-color;
            }
            &.first{
                margin: 10px 0;
                overflow: hidden;
                a{
                    float: none;
                    max-width: @onehundred;
                    white-space: inherit;
                    white-space: initial;
                    .img-box{
                        float: @left;
                        width: 200px;
                        height: 120px;
                        border-radius: 5px;
                        overflow: hidden;
                        img{
                            width: @onehundred;
                            height: @onehundred;
                            object-fit: cover;
                            transition: all .6s;
                        }
                    }
                    .item-cont{
                        margin-left: 220px;
                        overflow: hidden;
                        h6{
                            font-size:@large-size;
                            color: @title-color;
                            line-height: 28px;
                            overflow: hidden;
                            text-overflow: ellipsis;
                            white-space: nowrap;
                        }
                        p{
                            font-size: @font-size-base;
                            line-height: 24px;
                            color: @title-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: 7px;
                                color: @textinfo-color;
                            }
                        }
                    }
                    &:hover{
                        .img-box{
                            img{
                                transform: scale(1.1);
                                -ms-transform: scale(1.1);
                                /* IE 9 */
                                -moz-transform: scale(1.1);
                                /* Firefox */
                                -webkit-transform: scale(1.1);
                                /* Safari 和 Chrome */
                                -o-transform: scale(1.1);
                            }
                        }
                        .item-cont{
                            h6{
                                color: @active-color;
                            }
                        }
                    }
                }
            }
        }
    }
    .sidenav{
        float: @left;
        width: 200px;
        .sidenav-title{
            display: @display-flex;
            align-items: @center;
            padding: 10px 20px;
            width: @onehundred;
            min-height: 76px;
            font-size: 20px;
            color: @white;
            font-weight: bold;
            background: url(../images/bg1.jpg) no-repeat;
            background-size: cover;
        }
        .sidenav-list{
            padding: 0;
            list-style: none;
            overflow: hidden;
            ul{
                padding: 0;
                list-style: none;
                overflow: hidden;
            }
            &>li{
                margin-bottom: 1px;
                background: #F5F5F5;
                a{
                    display: @display-block;
                }
                &>a{
                    display: @display-block;
                    padding: 12px 20px;
                    padding-right: 15px;
                    font-size: @titlesize;
                    color: @title-color;
                }
                &:hover,&.active{
                    background: @active-color;
                    &>a{
                        color: @white;
                    }
                }
                &.more{
                    &>a{
                        background: url(../images/icon9.jpg) 92% center no-repeat;
                    }
                    &:hover,&.active{
                        &>a{
                            background: url(../images/icon10.jpg) 92% center no-repeat;
                        }
                    }
                }
                ul{
                    display: @display-none;
                    padding: 7px 0;
                    background: @white;
                    border: 1px solid #F4F4F4;
                    li{
                        a{
                            padding: 2px 20px;
                            font-size: @font-size-base;
                            color: @title-color;
                            line-height: 24px;
                        }
                        &:hover,&.active{
                            a{
                                color: @active-color;
                            }
                        }
                    }
                }
                &.more.active{
                    ul{
                        display: @display-block;
                    }
                }
            }
        }
    }
    .cont-right{
        float: @right;
        width: 920px;
    }
    .page-title{
        margin-top: -5px;
        height: 46px;
        border-bottom: 1px solid #DEDEDE;
        h6{
            position: relative;
            float: @left;
            height: 45px;
            font-size: @large-size;
            color: @active-color;
            line-height: 45px;
            &::after{
                content: "";
                position: absolute;
                left: 0;
                right: 0;
                bottom: -2px;
                width: @onehundred;
                height: 3px;
                background: @active-color;
            }
        }
        .breadcrumb{
            float: @right;
            i,a,span{
                display: @display-block;
                float: @left;
                font-size: @font-size-base;
                color: @text-color;
                line-height: 45px;
            }
            i{
                font-style: normal;
            }
            span{
                margin: 0 5px;
            }
            a{
                &:hover,
                &.active{
                    color: @active-color;
                }
            }
        }
    }
    .certificate-section{
        margin-top: 25px;
        overflow: hidden;
        .certificate-title{
            text-align: @center;
            overflow: hidden;
            h6{
                font-size: @large-two-size;
                color: @title-color;
                font-weight: normal;
                line-height: 24px;
            }
            p{
                font-size: @font-size-base;
                color: @textinfo-color;
                line-height: 36px;
            }
        }
        .certificate-form{
            margin: 40px auto;
            margin-top: 25px;
            width: 560px;
            .el-form-item{
                margin-bottom: 20px;
                .el-form-item__label{
                    padding-right: 0;
                    width: 80px;
                    font-size: @titlesize;
                    color: @title-color;
                    text-align: @right;
                }
                .el-form-item__content{
                    margin-left: 80px;
                    .el-input{
                        height: 40px;
                        border-radius: 3px;
                        border: 1px solid #E5E5E5;
                        -webkit-transition: border-color .2s cubic-bezier(.645,.045,.355,1);
                        transition: border-color .2s cubic-bezier(.645,.045,.355,1);
                        .el-input__inner{
                            height: 38px;
                            font-size: @titlesize;
                            color: @text-color;
                            line-height: 38px;
                            border: 0;
                        }
                        &:hover{
                            border-color:#C0C4CC
                        }
                    }
                    .img-box{
                        position: absolute;
                        top: 1px;
                        right: 1px;
                        bottom: 1px;
                        padding: 0 15px;
                        display: @display-flex;
                        align-items: @center;
                        justify-content: @center;
                        background: @white;
                        img{
                            max-height: 38px;
                        }
                    }
                }
            }
            .btn{
                margin-top: 30px;
                text-align: @center;
                overflow: hidden;
                .el-button{
                    padding: 0;
                    width: 150px;
                    height: 35px;
                    line-height: 35px;
                    border-radius: 5px;
                    &.el-button--primary{
                        background-color: @active-color;
                        border-color: @active-color;
                    }
                }
            }
        }
        .result-section{
            margin-bottom: 20px;
            overflow: hidden;
            table{
                width: @onehundred;
                thead{
                    th{
                        padding: 15px 30px;
                        font-size: @titlesize;
                        color: @white;
                        text-align: @left;
                        background: @active-color;
                        border-bottom: 1px solid @white;
                    }
                }
                tbody{
                    tr{
                        td{
                            padding: 14px 30px;
                            font-size: @titlesize;
                            color: #444;
                            background: #F5F6F9;
                            border-bottom: 1px solid @white;
                            a{
                                color: @active-color;
                            }
                        }
                    }
                }
            }
        }
    }
    .first-list{
        padding: 0;
        list-style: none;
        li{
            position: relative;
            padding: 19px 0;
            padding-left: 20px;
            font-size: @titlesize;
            border-bottom: 1px dashed #DEE2E6;
            overflow: hidden;
            &::before{
                content: "";
                position: absolute;
                top: 0;
                left: 0;
                bottom: 0;
                margin: auto 0;
                width: 5px;
                height: 5px;
                border-radius: 50%;
                background:@textinfo-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;
                    font-weight: bold;
                }
                &: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 #DEE2E6;
            overflow: hidden;
            .time-box{
                float: @left;
                display: @display-flex;
                align-items: @center;
                justify-content: @center;
                flex-flow: column;
                width: 80px;
                height: 80px;
                background: #F6F6F6;
                border: 1px solid #E9E9E9;
                h6{
                    font-size: 30px;
                    color: #005BB6;
                    font-weight: normal;
                }
                p{
                    margin-top: -4px;
                    font-size: @small-size;
                    color: @text-color;
                }
            }
            .item-cont{
                margin-left: 95px;
                overflow: hidden;
                h6{
                    font-size: @titlesize;
                    color: @title-color;
                    overflow: hidden;
                    text-overflow: ellipsis;
                    white-space: nowrap;
                }
                p{
                    margin-top: 12px;
                    height: 48px;
                    font-size: @font-size-base;
                    color: @textinfo-color;
                    line-height: 24px;
                    display: -webkit-box;
                    -webkit-box-orient: vertical;
                    -webkit-line-clamp: @line_clamp;
                    /*要显示的行数*/
                    overflow: hidden;
                }
            }
            &:hover{
                .item-cont{
                    h6{
                        color: @active-color;
                    }
                }
            }
        }
    }
    .three-list{
        padding: 0;
        list-style: none;
        overflow: hidden;
        li{
            padding: 20px 0;
            border-bottom: 1px dashed #DEE2E6;
            overflow: hidden;
            .img-box{
                float: @left;
                width: 200px;
                height: 120px;
                overflow: hidden;
                img{
                    width: @onehundred;
                    height: @onehundred;
                    object-fit: cover;
                    transition: all .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;
                    color: @text-color;
                    line-height: 24px;
                    &.item-text{
                        margin-top: 12px;
                        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);
                            /* IE 9 */
                            -moz-transform: scale(1.1);
                            /* Firefox */
                            -webkit-transform: scale(1.1);
                            /* Safari 和 Chrome */
                            -o-transform: scale(1.1);
                        }
                    }
                    .item-cont{
                        h6{
                            color: @active-color;
                        }
                    }
                }
            }
        }
    }
    .nodata-section{
        margin: 10vh 0;
        text-align: @center;
        overflow: hidden;
        p{
            margin-top: 15px;
            font-size: @titlesize;
            color: @textinfo-color;
        }
    }
    .introduction-section{
        margin-top: 22px;
        overflow: hidden;
        .introduction-title{
            margin-bottom: 18px;
            font-size: 20px;
            color: @title-color;
            text-align: @center;
            font-weight: bold;
        }
    }
    .introduction-text{
        overflow: hidden;
        &,*{
            font-family: "微软雅黑" !important;
            font-size: @font-size-base !important;
            color: @title-color;
            line-height: 1.9 !important;
        }
    }
    .content2{
        padding: 20px 30px;
        min-height: calc(100vh - 453px);
        background: @white;
    }
    .content3{
        padding: 20px 30px;
        padding-left: 20px;
        min-height: calc(100vh - 453px);
        background: @white;
    }
    .technology-left{
        margin-top: 5px;
        float: @left;
        width: 760px;
        .technology-section{
            margin-bottom: 15px;
            .news-list{
                li{
                    line-height: 34px;
                }
            }
            &:last-child{
                margin-bottom: 0;
            }
        }
    }
    .technology-login{
        float: right;
        width: 360px;
        height: 432px;
        overflow: hidden;
        iframe{
            width: @onehundred;
            height: @onehundred;
            border: 0;
        }
        .technology-title{
            font-size: 20px;
            color: @title-color;
            font-weight: bold;
            text-align: @center;
        }
        .technology-login-tab{
            margin-top: 28px;
            overflow: hidden;
            ul{
                padding: 0;
                list-style: none;
            }
            .hd{
                height: 35px;
                border-bottom: 1px solid #eee;
                li{
                    float: @left;
                    width: 50%;
                    text-align: @center;
                    span{
                        display: @display-inline-block;
                        position: relative;
                        height: 34px;
                        font-size: @titlesize;
                        color: #444;
                        cursor: pointer;
                    }
                    &.on{
                        span{
                            color: @active-color;
                            &::after{
                                content: "";
                                position: absolute;
                                left: 0;
                                right: 0;
                                bottom: -1px;
                                height: 3px;
                                background: @active-color;
                            }
                        }
                    }
                }
            }
            .bd{
                margin-top: 20px;
                overflow: hidden;
                .technology-login-item{
                    overflow: hidden;
                    &:not(:first-child){
                        display: @display-none;
                    }
                    .findpass{
                        margin-top: 20px;
                        font-size: @font-size-base;
                        color: @text-color;
                        text-align: @center;
                        a{
                            &:hover{
                                color: @active-color;
                            }
                        }
                    }
                    .technology-login-form{
                        overflow: hidden;
                        .input-group{
                            margin-bottom: 20px;
                            position: relative;
                            height: 42px;
                            background: #FEFEFE;
                            border: 1px solid #F0F0F0;
                            overflow: hidden;
                            .icon-box{
                                position: absolute;
                                top: 0;
                                left: 15px;
                                bottom: 0;
                                width: 18px;
                                height: 40px;
                                display: @display-flex;
                                align-items: @center;
                                justify-content: @center;
                            }
                            input{
                                padding-left: 43px;
                                padding-right: 10px;
                                width: @onehundred;
                                height: 40px;
                                font-size: @font-size-base;
                                color: @text-color;
                                border: 0;
                            }
                            .yzm-box{
                                position: absolute;
                                top: 0;
                                right: 0;
                                bottom: 0;
                                padding:0 15px;
                                display: @display-flex;
                                align-items: @center;
                                img{
                                    max-height: 40px;
                                }
                            }
                            .box {
                                width:@onehundred;
                                height: 40px;
                                position: relative;
                            }                    
                        }
                        .btn-group{
                            display: @display-flex;
                            justify-content: space-between;
                            a,.btn{
                                display: @display-block;
                                width: 140px;
                                height: 42px;
                                font-size: @titlesize;
                                color: @white;
                                text-align: @center;
                                line-height: 42px;
                                background: #FC9B00;
                            }
                            .btn{
                                border: 0;
                                background: @active-color;
                            }
                        }
                    }
                }
            }
        }
    }
    .adve-section2{
        margin-top: 18px;
        margin-bottom: 17px;
        overflow: hidden;
        img{
            width: @onehundred;
            height: 100px;
            object-fit: cover;
        }
    }
    .footer{
        padding: 30px 0;
        padding-bottom:17px;
        background: url(../images/footbg.jpg) top center no-repeat;
        overflow: hidden;
        .footer-top{
            overflow: hidden;
            .footer-left{
                float: @left;
                margin-top: -5px;
                p{
                    font-size: @titlesize;
                    color: @white;
                }
            }
            .footer-wechat{
                float: @right;
                width: 120px;
                text-align: @center;
                img{
                    width: @onehundred;
                    height: 120px;
                }
                p{
                    margin-top: 5px;
                    font-size: @font-size-base;
                    color: @white;
                }
            }
        }
        .footer-bottom{
            margin-top: 30px;
            font-size: @titlesize;
            color: @white;
            text-align: @center;
            overflow: hidden;
        }
    }
    .scroll-up{
        display:@display-none;
        position: fixed;
        right: 13%;
        bottom: 265px;
        margin-right: 10px;
        width: 54px;
        height: 54px;
        text-align: @center;
        background: #fff;
        z-index: 999;
        box-shadow: 0px 5px 13px 0px rgba(0, 0, 0, 0.05);
        overflow: hidden;
        a{
            display: @display-flex;
            align-items: @center;
            justify-content:@center;
            width: 100%;
            height: 54px;
        }
    }
    &.wrap-party{
        .header {
            .w1200 {
                .header-right {
                    .quick-link{
                        a{
                            background: #C50C11;
                            &.en{
                                background: #AC1418;
                            }
                        }
                    }
                }
            }
        }
        .nav{
            background: #C50C11;
            &>ul{
                &>li{
                    &:hover,
                    &.active{
                        background:#AC1418;
                    }
                    .menu-nav{
                        background:#AC1418;
                        ul{
                            li{
                                &:hover{
                                    background: #C50C11;
                                }
                            }
                        }
                    }
                }
            }
        }
        .page-title{
            h6{
                color: #C50C11;
                &::after{
                    background: #C50C11;
                }
            }
            .breadcrumb{
                a{
                    &:hover,&.active{
                        color: #C50C11;
                    }
                }
            }
        }
        .two-list{
            li{
                .time-box{
                    h6{
                        color: #C50C11;
                    }
                }
                &:hover{
                    .item-cont{
                        h6{
                            color: #C50C11;
                        }
                    }
                }
            }
        }
        .NewsPages{
            a{
                &:hover{
                    color: #C50C11;
                }
            }
        }
        .pages{
            .pagination{
                li{
                    &.active,&:hover{
                        border-color: #C50C11;
                        background: #C50C11;
                    }
                    &.prev:hover, 
                    &.next:hover, 
                    &.first:hover, 
                    &.last:hover{
                        color: #C50C11;
                        border-color:#C50C11;
                        background: @white;
                        a{
                            color: #C50C11;
                        }
                    }
                }
            }
        }
        .footer{
            background: url(../images/footbg2.jpg) top center no-repeat;
        }
    }

}
.m-search-btn,
.m-nav-btn,
.usre-btn,
.m-nav-pop,
.submenu-bar,
.mobile-cover {
    display: @display-none;
}
@media screen and (min-width:0px) and (max-width:1340px) {
    .w1200{
        width: 90%;
    }
    .wrap {
        .content{
            .section{
                &.section1,
                &.section2,
                &.section3,
                &.section4 {
                    .news-slide,
                    .news-tab,
                    .branch-section,
                    .section-right2,
                    .statistics-section,
                    .journal-section,
                    .member-section{
                        width: 49%;
                    }
                }
                .news-tab{
                    width: 49%;
                }
            }
        }
        .cont-right{
            width: calc(100% - 220px);
        }
        .technology-left{
            width: calc(100% - 380px);
        }
    }
}
@media screen and (min-width:0px) and (max-width:768px) {
    .w1200 {
        width: calc(100% - 30px);
    }
    .wrap{
        .header {
            position: relative;
            height: 100px;
            .w1200{
                .logo{
                    img{
                        height: 60px;
                    }
                }
                .header-right{
                    .header-bottom {
                        text-align: @right;
                        .search-box{
                            display: @display-none;
                            position: absolute;
                            top: @onehundred;
                            left: 0;
                            right: 0;
                            width: @onehundred;
                            border-radius: 0;
                            z-index: 999;
                            box-shadow: 0px 5px 13px 0px rgba(0, 0, 0, 0.05);
                        }
                    }
                }
            }
        }
        .content{
            padding: 15px;
            .quick-section{
                margin-bottom: 25px;
                ul{
                    margin: 0 -5px;
                    li{
                        padding: 0 5px;
                        .item-box{
                            img{
                                height: 50px;
                            }
                        }
                    }
                }
            }
            .section{
                margin-bottom: 25px;
                &.section1{
                    margin-bottom: 15px;
                    .news-slide{
                        float: none;
                        margin-bottom: 20px;
                        width: @onehundred;
                        height: 450px;
                    }
                    .news-tab{
                        float: none;
                        width: @onehundred;
                    }
                }
                &.section2{
                    .branch-section{
                        margin-bottom: 20px;
                    }
                    .branch-section,
                    .section-right2{
                        float: none;
                        width: @onehundred;
                    }
                    .section-right2 {
                        .news-tab{
                            margin-bottom: 10px;
                            &:last-child{
                                margin-bottom: 0;
                            }
                        }
                    }
                }
                &.section3{
                    margin-bottom: 10px;
                    .news-tab{
                        margin-bottom: 12px;
                    }
                    .news-tab,
                    .statistics-section{
                        float: none;
                        width: @onehundred;
                    }
                }
                &.section4{
                    margin-bottom: 20px;
                    .journal-section{
                        margin-bottom: 20px;
                    }
                    .journal-section,
                    .member-section{
                        float: none;
                        width: @onehundred;
                    }
                }
                .news-tab{
                    float: none;
                    width: @onehundred;
                }
            }
            .adve-section{
                margin-bottom: 20px;
                ul{
                    margin: 0 -7px;
                    li{
                        padding: 0 7px;
                        a{
                            img{
                                height: 62px;
                            }
                        }
                    }
                }
            }
        }
        .content2,
        .content3 {
            padding: 15px 15px;
        }
        .submenu-bar {
            display: block;
            padding-left: 30px;
            margin-bottom: 20px;
            font-size: @titlesize;
            color: @title-color;
            background: url(../images/icon3_2.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: #fff;
            transition: left 0.6s;
            .sidenav-title{
                height: 60px;
                font-size: 20px;
                background: @active-color;
            }
        }
        .cont-right{
            float: none;
            width: @onehundred;
        }
        .adve-section2{
            img{
                height: 62px;
            }
        }
    }
    
    .m-search-btn,
    .m-nav-btn{
        display: @display-inline-block;
        margin-left: 5px;
        width: 20px;
        height: 20px;
    }
    .m-search-btn{
        background: url(../images/icon1_2.png) center no-repeat;
        background-size: 20px;
    }
    .m-nav-btn {
        background: url(../images/icon3.png) center no-repeat;
        background-size: 20px;
    }
    .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:640px) {
    .wrap {
        .header{
            height: 70px;
            .w1200 {
                .logo{
                    img{
                        height: 20px;
                    }
                }
                .header-right {
                    .quick-link{
                        display: @display-inline-block;
                        a{
                            margin-right: 0;
                            display: @display-none;
                            padding:0 5px;
                            width: auto;
                            height: 25px;
                            font-size: @small-size;
                            line-height:24px;
                            &.en{
                                display: @display-inline-block;
                            }
                        }
                    }
                    .header-bottom{
                        display: @display-inline-block;
                        margin-top: 0;
                    }
                }
            }
        }
        .usre-btn{
            display: @display-inline-block;
            margin-left:5px;
            width: 20px;
            height: 20px;
        }
        .usre-btn{
            background: url(../images/icon41.png) center no-repeat;
            background-size: 20px;
        }
        .content {
            .quick-section{
                ul{
                    li{
                        float: none;
                        margin-bottom: 10px;
                        width: @onehundred;
                        &:last-child{
                            margin-bottom: 0;
                        }
                        .item-box {
                            img{
                                height: 50px;
                            }
                        }
                    }
                }
            }
            .section{
                &.section1 {
                    .news-slide{
                        height: 201px;
                        .swiper {
                            .swiper-slide {
                                .cover-title{
                                    padding: 5px 15px;
                                    padding-right: 80px;
                                    p{
                                        font-size: @font-size-base;
                                        line-height: 24px;
                                    }
                                }
                            }
                            .swiper-horizontal>.swiper-pagination-bullets, 
                            .swiper-pagination-bullets.swiper-pagination-horizontal, 
                            .swiper-pagination-custom, 
                            .swiper-pagination-fraction{
                                right: 5px;
                                bottom: 10px;
                            }
                        }
                    }
                }
                &.section2{
                    .branch-section {
                        .branch-content{
                            padding: 10px 15px;
                            background-size: 63%;
                            .branch-list{
                                li{
                                    font-size: @font-size-base;
                                    line-height: 26px;
                                    a{
                                        font-size: @font-size-base;
                                    }
                                }
                            }
                        }
                    }
                    .section-right2 {
                        .entrance-section {
                            .entrance-content{
                                padding: 15px;
                                padding-top: 20px;
                                .entrance-list {
                                    li {
                                        .icon-box{
                                            width: 40px;
                                            height: 40px;
                                            img{
                                                max-width:58%;
                                            }
                                        }
                                        p{
                                            font-size: @font-size-base;
                                            line-height: 25px;
                                        }
                                    }
                                }
                            }
                        }
                    }
                }
                &.section4 {
                    .journal-section {
                        .journal-list {
                            li{
                                float: none;
                                margin-bottom: 15px;
                                width: @onehundred;
                                &:last-child{
                                    margin-bottom: 0;
                                }
                                .item-box {
                                    a {
                                        .item-cont{
                                            h6{
                                                margin-bottom: 15px;
                                                font-size: @titlesize;
                                            }
                                        }
                                    }
                                }
                            }
                        }
                    }
                    .member-section {
                        .news-list2 {
                            li {
                                .img-box{
                                    width: 120px;
                                    height: 68px;
                                    img{
                                        width: @onehundred;
                                        height: @onehundred;
                                        object-fit: cover;
                                    }
                                }
                                .item-cont{
                                    margin-left: 135px;
                                    h6{
                                        margin-top: 0;
                                        font-size: @font-size-base;
                                        line-height: 20px;
                                    }
                                    p{
                                        margin-top: 5px;
                                        height: 40px;
                                        font-size: @small-size;
                                        line-height: 20px;
                                    }
                                }
                            }
                        }
                    }
                }
                &.section5 {
                    margin-bottom: 0;
                    .links-list{
                        li{
                            margin-right: 10px;
                            font-size: @font-size-base;
                            line-height: 25px;
                            &:last-child{
                                margin-right: 0;
                            }
                        }
                    }
                }
                .news-tab {
                    .hd {
                        ul {
                            li{
                                span{
                                    font-size: @titlesize;
                                }
                            }
                        }
                    }
                }
                .section-title{
                    padding: 5px 15px;
                    h6{
                        font-size: @titlesize;
                    }
                    .more{
                        line-height: 22px;
                    }
                }
            }
            .adve-section{
                ul{
                    li{
                        float: none;
                        margin-bottom: 15px;
                        width: @onehundred;
                        a{
                            img{
                                height: 57px;
                            }
                        }
                        
                        &:last-child{
                            margin-bottom: 0;
                        }
                    }
                }
            }
        }
        .news-list{
            li{
                font-size: @font-size-base;
                line-height: 30px;
                a{
                    float: @left;
                }
                &.first{
                    a{
                        .img-box{
                            width: 125px;
                            height: 74px;
                        }
                        .item-cont{
                            margin-left: 140px;
                            h6{
                                font-size: @font-size-base;
                                line-height: 20px;
                            }
                            p{
                                font-size: @small-size;
                                line-height: 20px;
                                &.item-text{
                                    margin-top: 0;
                                    height: 40px;
                                }
                                &.item-time{
                                    margin-top: 0;
                                }
                            }
                        }
                    }
                }
            }
        }
        .section-title2{
            h6{
                font-size: @titlesize;
            }
        }
        .submenu-bar{
            margin-bottom: 10px;
            font-size: @font-size-base;
        }
        .page-title{
            height: 37px;
            h6{
                float: none;
                display: @display-inline-block;
                height: 37px;
                font-size: @titlesize;
                line-height: 37px;
                &::after{
                    bottom: -1px;
                }
            }
            .breadcrumb{
                display: @display-none;
            }
        }
        .introduction-section{
            margin-top: 20px;
            .introduction-title{
                font-size: @large-size;
            }
            .introduction-text {
                &,*{
                    font-size: @font-size-base;
                    line-height: 1.75 !important;
                }
            }
        }
        .certificate-section{
            margin-top: 21px;
            .certificate-title{
                h6{
                    font-size: @titlesize;
                }
                p{
                    font-size: @small-size;
                    line-height: 18px;
                }
            }
            .certificate-form{
                margin-top: 20px;
                margin-bottom: 25px;
                width: @onehundred;
                .el-form-item {
                    .el-form-item__label{
                        float: none;
                        display: @display-block;
                        width: @onehundred;
                        font-size: @font-size-base;
                        text-align: @left;
                        line-height: 1.75;
                    }
                    .el-form-item__content{
                        margin-left: 0;
                        line-height: 30px;
                        .el-input{
                            height: 30px;
                            .el-input__inner{
                                padding: 0 5px;
                                height: 28px;
                                font-size: @font-size-base;
                                line-height: 28px;
                            }
                        }
                        .img-box{
                            padding: 0 10px;
                            img{
                                max-height: 28px;
                            }
                        }
                    }
                }
                .btn{
                    margin-top: 20px;
                    
                }
            }
            .result-section {
                overflow-x: auto;
                /* 显示滚动条 */
                -webkit-overflow-scrolling: touch;
                /* 启用平滑滚动 */
                overflow: auto !important;
                /* 强制显示滚动条 */
                /* 自定义滚动条样式 */
                scrollbar-width: thin;
                scrollbar-color: #909090 #f1f1f1;
                /* 防止滚动条闪烁 */
                -webkit-backface-visibility: hidden;
                -moz-backface-visibility: hidden;
                -webkit-transform: translate3d(0, 0, 0);
                -moz-transform: translate3d(0, 0, 0);
                
                table{
                    thead{
                        th{
                            padding: 9px 15px;
                            font-size: @small-size;
                            white-space: nowrap;
                        }
                    }
                    tbody {
                        tr{
                            td{
                                padding: 9px 15px;
                                font-size: @small-size;
                            }
                        }
                    }
                }
            }
            .result-section::-webkit-scrollbar {
                -webkit-appearance: none;
                width: 8px;
                height: 4px;
            }
            
            .result-section::-webkit-scrollbar-track {
                background: #f1f1f1;
                border-radius: 2px;
            }
            
            .result-section::-webkit-scrollbar-thumb {
                background: #909090;
                border-radius: 4px;
                min-height: 40px;
                /* 确保滚动条滑块足够长 */
            }
            
            
            /* 确保在滚动时滚动条仍然可见 */
            
            .result-section:hover::-webkit-scrollbar-thumb,
            .result-section:active::-webkit-scrollbar-thumb,
            .result-section:hover::-webkit-scrollbar-track,
            .result-section:active::-webkit-scrollbar-track{
                display: block !important;
                opacity: 1;
                /* 确保在悬停或激活时滚动条可见 */
            }
            
            
            /* 确保在不同机型上滚动条都可见 */
            
            @supports (-webkit-overflow-scrolling: touch) {
                .result-section {
                    overflow-x: auto !important;
                    overflow-y: auto !important;
                    /* 可以根据需要设置只显示水平或垂直滚动条 */
                }
            }
            
            
            /* 针对Android设备 */
            
            @media screen and (-webkit-min-device-pixel-ratio:0) {
                .result-section {
                    overflow: overlay;
                    /* 在某些Android设备上可以更好地显示滚动条 */
                }
            }
        }
        .first-list{
            li{
                padding: 10px 0;
                padding-left: 15px;
                font-size: @font-size-base;
                a{
                    max-width: 70%;
                }
            }
        }
        .two-list{
            li{
                padding: 15px 0;
                .time-box{
                    width: 66px;
                    height: 66px;
                    h6{
                        font-size: @large-two-size;
                    }
                    p{
                        margin-top: -2px;
                        line-height: 20px;
                    }
                }
                .item-cont{
                    margin-left: 80px;
                    h6{
                        font-size: @font-size-base;
                    }
                    p{
                        margin-top: 5px;
                        height: 40px;
                        font-size: @small-size;
                        line-height: 20px;
                    }
                }
            }
        }
        .three-list{
            li{
                padding: 15px 0;
                .img-box{
                    width: 125px;
                    height: 75px;
                }
                .item-cont{
                    margin-left: 140px;
                    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: 3px;
                        }
                    }
                }
            }
        }
        .nodata-section{
            img{
                max-width: 70%;
            }
            p{
                font-size: @font-size-base;
            }
        }
        .technology-left{
            float: none;
            margin-bottom: 15px;
            width: @onehundred;
        }
        .technology-login{
            float: none;
            width: @onehundred;
            .technology-title{
                font-size: @large-size;
            }
            .technology-login-tab{
                margin-top: 15px;
                .bd {
                    .technology-login-item {
                        .findpass{
                            margin-top: 15px;
                        }
                        .technology-login-form {
                            .btn-group{
                                a,.btn{
                                    width: 48%;
                                    height: 35px;
                                    font-size: @font-size-base;
                                    line-height: 35px;
                                }
                            }
                        }
                    }
                }
            }
        }
        .adve-section2{
            margin-bottom: 0;
            img{
                height: 45px;
            }
        }
        .pages{
            margin-top: 15px;
            margin-bottom: 0;
            .pagination{
                li{
                    width: 30px;
                    height: 30px;
                    font-size: @small-size;
                    line-height: 28px;
                    &.first,
                    &.last{
                        display: @display-none;
                    }
                    &.prev,
                    &.next{
                        width: auto;
                    }
                    span,a{
                        padding: 0 5px;
                    }
                }
            }
            button{
                &.el-button{
                    display: @display-none;
                }
            }
            .el-pagination {
                button{
                    padding: 0 5px;
                    width: auto;
                    height: 30px;
                    font-size: @small-size;
                    line-height: 28px !important;
                }
                .el-pager {
                    li{
                        min-width: 30px;
                        width: 30px;
                        height: 30px;
                        font-size: @small-size;
                        line-height: 28px;
                    }
                }
            }
        }
        .TextTitle{
            padding: 15px 0;
            h5{
                font-size: @large-size;
            }
            h6{
                font-size: @titlesize;
            }
            .shar{
                font-size: @small-size;
            }
        }
        .NewsText{
            &,*{
                font-size: @font-size-base;
                line-height: 1.75 !important;
            }
        }
        .NewsPages {
            a{
                font-size: @font-size-base;
                line-height: 27px;
            }
        }
        .footer{
            padding: 15px 0;
            background-size: cover;
            .footer-top {
                .footer-left{
                    float: none;
                    margin-top: 0;
                    width: @onehundred;
                    p{
                        font-size: @font-size-base;
                        line-height: 24px;
                    }
                }
                .footer-wechat{
                    float: none;
                    margin-top: 15px;
                    width: @onehundred;
                    text-align: @center;
                    img{
                        width: 120px;
                    }
                }
            }
            .footer-bottom{
                margin-top: 10px;
                font-size: @font-size-base;
            }
        }
        &.wrap-party {
            .footer{
                background-size: cover;
            }
        }
        .scroll-up{
            margin-right: 0;
            right: 10px;
            bottom: 35px;
            width: 40px;
            height: 40px;
            a{
                height: 40px;
            }
        }
    }

}