﻿@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: #2D97FA; //文字滑过颜色跟随当前主体色，也有可能滑过的和高亮的不是一种颜色这个主要作为文字颜色
@active-color: #2D97FA; //高亮颜色跟随当前主体色，也有可能滑过的和高亮的不是一种颜色这个主要作为背景颜色
@text-color:#666; //简介颜色
@textinfo-color:#999;// 不重要的文字颜色比如时间
@forminputjianju: 10px;// 输入框左内间距
@white:#fff; //白色
@black:#000;
@e5:#e5e5e5;
@dc:#dcdcdc;
@party-color:#C50C11;
@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{
    .header{
        padding: 20px 0;
        background: linear-gradient(to bottom, #CCE4FB, #fff);
        .logo{
            float: @left;
            margin-top: 25px;
        }
        .header-right{
            float: @right;
        }
        .header-top{
            .quick-list{
                text-align: @right;
                li{
                    display: @display-inline-block;
                    position: relative;
                    margin-right: 20px;
                    &:last-child{
                        margin-right: 0;
                    }
                    a{
                        display: @display-block;
                        height: 20px;
                        text-align: @center;
                        overflow: hidden;
                        img{
                            filter: drop-shadow(0px 72px @party-color);
                            -ms-filter: "progid:DXImageTransform.Microsoft.Dropshadow(OffX=0, OffY=72, Color='#C50C11', Positive='true')";
                        }
                    }
                    .img-box{
                        display: @display-none;
                        position: absolute;
                        top: 100%;
                        left: 50%;
                        margin-left:-59px;
                        padding: 5px;
                        width: 108px;
                        height: 108px;
                        background: @white;
                        box-shadow: 0px 5px 13px 0px rgba(0, 0, 0, 0.1);
                        z-index: 9;
                        img{
                            width: 98px;
                            height: 98px;
                        }
                    }
                    &:hover{
                        .img-box{
                            display: @display-block;
                        }
                    }
                }
            }
        }
        .header-bottom{
            margin-top: 25px;
            .search-box{
                width: 365px;
                height: 42px;
                border-radius: 5px;
                border: 1px solid @active-color;
                overflow: hidden;
                input{
                    float: @left;
                    padding-left: 15px;
                    width: calc(100% - 40px);
                    height: 40px;
                    font-size: @font-size-base;
                    color: @text-color;
                    border: 0;
                    background: transparent;
                }
                button{
                    width: 40px;
                    height: 40px;
                    border: 0;
                    background: transparent;
                    img{
                        filter: drop-shadow(0px 72px @party-color);
                        -ms-filter: "progid:DXImageTransform.Microsoft.Dropshadow(OffX=0, OffY=72, Color='#C50C11', Positive='true')";
                    }
                }
            }
        }
    }
    .nav{
        height: 60px;
        background: @active-color;
        ul{
            padding: 0;
            list-style: none;
        }
        &>ul{
            &>li{
                float: @left;
                position: relative;
                width: calc(100% / 6);
                a{
                    display: @display-block;
                }
                &>a{
                    font-size: 22px;
                    color: @white;
                    text-align: @center;
                    line-height: 60px;
                }
                &:hover,
                &.active{
                    background: #47ABFC;
                    &>a{
                        font-weight: bold;
                    }
                }
                .menu-nav{
                    display: @display-none;
                    position: absolute;
                    top: @onehundred;
                    left: 0;
                    right: 0;
                    width: @onehundred;
                    background: @active-color;
                    z-index: 99;
                    li{
                        a{
                            padding: 10px 15px;
                            padding-bottom: 11px;
                            font-size: @large-size;
                            color: @white;
                            text-align: @center;
                        }
                        &:hover{
                            background: #47ABFC;
                        }
                    }
                }
            }
        }
    }
    .content{
        &.bg-grey{
            background: #F3F4F8;
        }
        .section{
            margin-bottom: 30px;
            overflow: hidden;
            ul{
                padding: 0;
                list-style: none;
            }
            &.first{
                margin-top: 30px;
                .news-slide{
                    float: @left;
                    width: 620px;
                    height: 342px;
                    overflow: hidden;
                    .swiper {
                        height: @onehundred;
                        .swiper-slide{
                            img{
                                width: @onehundred;
                                height: @onehundred;
                                object-fit: cover;
                                transition: all 0.6s;
                            }
                            .section-cover{
                                position: absolute;
                                left: 0;
                                right: 0;
                                bottom: 0;
                                padding: 10px 15px;
                                padding-right: 110px;
                                background: rgba(0, 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: 10px;
                            bottom: 20px;
                            width: auto;
                        }
                        .swiper-pagination-bullet{
                            width: 10px;
                            height: 10px;
                            background: @white;
                            opacity: 1;
                        }
                        .swiper-horizontal>.swiper-pagination-bullets .swiper-pagination-bullet, 
                        .swiper-pagination-horizontal.swiper-pagination-bullets .swiper-pagination-bullet{
                            margin: 0 5px;
                        }
                        .swiper-pagination-bullet-active{
                            background: @active-color;
                        }
                    }
                }
                .news-tab{
                    float: @right;
                    width: 550px;
                    .hd{
                        height: 47px;
                        border-bottom: 1px solid #E2E2E2;
                        ul{
                            position: relative;
                            li{
                                float: @left;
                                span{
                                    display: @display-block;
                                    position: relative;
                                    height: 46px;
                                    font-size: 20px;
                                    color: @title-color;
                                    line-height: 40px;
                                    cursor: pointer;
                                    &::after{
                                        content: "";
                                        display:@display-inline-block;
                                        margin: 0 15px;
                                        position: relative;
                                        top: 2px;
                                        width: 2px;
                                        height: 18px;
                                        background: #BFBFBF;
                                    }
                                }
                                .more{
                                    display: @display-none;
                                    position: absolute;
                                    top: 0;
                                    right: 0;
                                    font-size: 15px;
                                    color: @text-color;
                                    line-height: 40px;
                                    &:hover{
                                        color: @active-color;
                                    }
                                }
                                &:last-child{
                                    span{
                                        &::after{
                                            display: @display-none;
                                        }
                                    }
                                }
                                &.on{
                                    span{
                                        color: @active-color;
                                        font-weight: bold;
                                        &::before{
                                            content: "";
                                            position: absolute;
                                            left: 0;
                                            bottom: -1px;
                                            width: 80px;
                                            height: 3px;
                                            background: @active-color;
                                        }
                                    }
                                    .more{
                                        display: @display-block;
                                    }
                                }
                            }
                        }
                    }
                    .news-list{
                        overflow: hidden;
                        li{
                            overflow: hidden;
                            &.first{
                                margin-bottom: 8px;
                                padding: 15px 0;
                                border-bottom: 1px dashed #E2E2E2;
                                h6{
                                    font-size: @large-size;
                                    color: @title-color;
                                    font-weight: normal;
                                    line-height: 28px;
                                    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{
                                        h6{
                                            color: @active-color;
                                        }
                                    }
                                }
                            }
                            &.two{
                                font-size: @titlesize;
                                color: @title-color;
                                line-height: 42px;
                                overflow: hidden;
                                text-overflow: ellipsis;
                                white-space: nowrap;
                                &:hover{
                                    color: @active-color;
                                }
                            }
                        }
                    }
                }
            }
            &.two{
                margin-bottom: 20px;
                display: @display-flex;
                justify-content: space-between;
            
            }
            &.three{
                display: @display-flex;
                justify-content: space-between;
                .news-list2{
                    margin-top: 8px;
                }
            }
            &.four{
                margin-bottom: 40px;
                overflow: hidden;
                .partner-slide{
                    margin-top: 20px;
                    overflow: hidden;
                    .swiper{
                        .swiper-slide{
                            .img-box{
                                width: @onehundred;
                                height: 90px;
                                background: #F5F5F5;
                                overflow: hidden;
                                a{
                                    display: @display-flex;
                                    align-items: @center;
                                    justify-content: @center;
                                    height: @onehundred;
                                    img{
                                        max-width: 95%;
                                        max-height: 95%;
                                    }
                                }
                            }
                        }
                        .swiper-button-next,
                        .swiper-button-prev{
                            width: 20px;
                            height: 50px;
                            background: rgba(0, 0, 0, .1);
                            outline: none;
                        }
                        .swiper-button-next:after, 
                        .swiper-rtl .swiper-button-prev:after,
                        .swiper-button-prev:after,
                        .swiper-rtl .swiper-button-next:after{
                            content: "";
                        }
                        .swiper-button-next:after,
                        .swiper-button-prev:after{
                            width: 9px;
                            height: 20px;
                        }
                        .swiper-button-prev:after, 
                        .swiper-rtl .swiper-button-next:after{
                            background: url(../image/icon13.png) center no-repeat;
                        }
                        .swiper-button-next:after, 
                        .swiper-rtl .swiper-button-prev:after{
                            background: url(../image/icon14.png) center no-repeat;
                        }
                        .swiper-button-prev, 
                        .swiper-rtl .swiper-button-next{
                            left: 0;
                        }
                        .swiper-button-next, 
                        .swiper-rtl .swiper-button-prev{
                            right: 0;
                        }
                    }
                }
            }
            .section-title{
                height: 45px;
                line-height: 35px;
                border-bottom: 1px solid #DFEBF7;
                h6{
                    float: @left;
                    position: relative;
                    height: 44px;
                    font-size: 20px;
                    color: @title-color;
                    &::after{
                        content: "";
                        position: absolute;
                        left: 0;
                        bottom: -1px;
                        width: @onehundred;
                        height: 3px;
                        background: @active-color;
                    }
                }
                .more{
                    float: @right;
                    font-size: 15px;
                    color: @text-color;
                    &:hover{
                        color: @active-color;
                    }
                }
            }
            .news-section{
                width: 585px;
                .news-list2{
                    overflow: hidden;
                    li{
                        overflow: hidden;
                        &.first{
                            padding-top: 20px;
                            padding-bottom: 10px;
                            .img-box{
                                float: @left;
                                width: 200px;
                                height: 120px;
                                overflow: hidden;
                                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;
                                    font-weight: normal;
                                    line-height: 28px;
                                    overflow: hidden;
                                    text-overflow: ellipsis;
                                    white-space: nowrap;
                                }
                                p{
                                    font-size: @font-size-base;
                                    line-height: 24px;
                                    &.item-text{
                                        margin-top: 6px;
                                        color: @text-color;
                                        display: -webkit-box;
                                        -webkit-box-orient: vertical;
                                        -webkit-line-clamp: @line_clamp;
                                        /*要显示的行数*/
                                        overflow: hidden;
                                    }
                                    &.item-time{
                                        margin-top: 13px;
                                        color: @textinfo-color;
                                    }
                                }
                            }
                            &: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;
                                    }
                                }
                            }
                        }
                        &.two{
                            line-height: 40px;
                            a{
                                display: @display-block;
                                float: @left;
                                max-width: 75%;
                                font-size: @titlesize;
                                color: @title-color;
                                overflow: hidden;
                                text-overflow: ellipsis;
                                white-space: nowrap;
                                &:hover{
                                    color: @active-color;
                                }
                            }
                            .time{
                                float: @right;
                                font-size: @titlesize;
                                color: @textinfo-color;
                            }
                        }
                    }
                }
            }
        }
        .adver-section{
            margin-bottom: 25px;
            overflow: hidden;
            img{
                width: @onehundred;
                height: 130px;
                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);
                }
            }
        }
        .adve-list{
            margin-bottom: 35px;
            padding: 0;
            list-style: none;
            overflow: hidden;
            li{
                float: left;
                margin-right: 30px;
                width: 585px;
                height: 110px;
                overflow: hidden;
                img{
                    width: @onehundred;
                    height: 110px;
                    object-fit: cover;
                    transition: all 0.6s;
                }
                &:nth-child(2n){
                    margin-right: 0;
                }
                &: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);
                    }
                }
            }
        }
        .breadcrumb{
            padding: 18px 0;
            overflow: hidden;
            img,i,a,span{
                display: @display-block;
                float: @left;
                font-style: normal;
                font-size: @font-size-base;
                color: @title-color;
            }
            img{
                margin-right: 7px;
                filter: drop-shadow(0px 72px @party-color);
                -ms-filter: "progid:DXImageTransform.Microsoft.Dropshadow(OffX=0, OffY=72, Color='#C50C11', Positive='true')";
            }
            span{
                margin: 0 5px;
            }
            a{
                &:hover,&.active{
                    color: @active-color;
                }
            }
        }
        .page-content{
            margin-bottom: 20px;
            padding: 30px;
            min-height: calc(100vh - 500px);
            background: @white;
            .sidenav{
                float: @left;
                width: 240px;
                .sidenav-title{
                    display: @display-flex;
                    align-items: @center;
                    justify-content: @center;
                    width: @onehundred;
                    height: 60px;
                    font-size: 20px;
                    color: @white;
                    font-weight: bold;
                    background: @active-color;
                    border-radius: 10px 10px 0 0;
                }
                ul{
                    padding: 0;
                    list-style: none;
                    overflow: hidden;
                }
                .sidenav-list{
                    margin-top: 5px;
                    &>li{
                        margin-bottom: 5px;
                        background: #F3F4F6;
                        a{
                            display: @display-block;
                        }
                        &>a{
                            padding: 15px 0;
                            font-size: @titlesize;
                            color: @title-color;
                            text-align: @center;
                            background: url(../image/icon10.png) 93% center no-repeat;
                        }
                        
                        ul{
                            display: @display-none;
                            padding:10px 0;
                            padding-bottom: 5px;
                            background: @white;
                            li{
                                a{
                                    font-size: @titlesize;
                                    color: @text-color;
                                    text-align: @center;
                                    line-height: 32px;
                                }
                                &:hover,
                                &.active{
                                    a{
                                        color: @active-color;
                                    }
                                }
                            }
                        }
                        &:hover,
                        &.active{
                            background: #ECF2FE;
                            &>a{
                                color: @active-color;
                                font-weight: bold;
                                background: url(../image/icon10_3.png) 93% center no-repeat;
                            }
                        }
                        &.more.active{
                            &>a{
                                background: url(../image/icon10_2.png) 93% center no-repeat;
                            }
                        }
                        &.more.active{
                            ul{
                                display: @display-block;
                            }
                        }
                    }
                }
            }
            .cont-right{
                float: @right;
                width: 870px;
            }
            .page-title{
                height: 38px;
                border-bottom: 2px solid @active-color;
                h6{
                    font-size: @large-size;
                    color: @title-color;
                }
            }
            .introduction-section{
                margin-top: 25px;
                overflow: hidden;
                .introduction-title{
                    margin-bottom: 30px;
                    font-size: @large-size;
                    color: @title-color;
                    text-align: @center;
                    font-weight: bold;
                }
            }
            .introduction-text{
                overflow: hidden;
                &,*{
                    font-size:@titlesize;
                    color: @title-color;
                    line-height:2;
                }
            }
            .first-list{
                padding: 0;
                list-style: none;
                overflow: hidden;
                li{
                    padding: 17px 0;
                    border-bottom: 1px dashed #F0F0F0;
                    overflow: hidden;
                    a{
                        float: @left;
                        display: @display-block;
                        max-width: 80%;
                        font-size: @titlesize;
                        color: @title-color;
                        overflow: hidden;
                        text-overflow: ellipsis;
                        white-space: nowrap;
                        span{
                            margin-right: 10px;
                            color: @active-color;
                        }
                        i{
                            font-style: normal;
                            color: @active-color;
                        }
                        &:hover{
                            color: @active-color;
                        }
                    }
                    .time{
                        float: @right;
                        font-size: @titlesize;
                        color: @textinfo-color;
                    }
                }
            }
            .certificate-query{
                margin: 0 auto;
                margin-top: 25px;
                width: 560px;
                overflow: hidden;
                .certificate-title{
                    text-align: @center;
                    overflow: hidden;
                    h6 {
                        font-size: @large-two-size;
                        color: @title-color;
                        font-weight: normal;
                    }
                    p {
                        margin-top: 5px;
                        font-size: @font-size-base;
                        color: @textinfo-color;
                        line-height: 22px;
                    }
                }
                .certificate-form{
                    margin-top: 25px;
                    overflow: hidden;
                    .el-form-item {
                        margin-bottom: 20px;
                        .el-form-item__label {
                            display: @display-block;
                            padding-right: 0;
                            width: 80px;
                            font-size: @titlesize;
                            color: @title-color;
                            text-align: @right;
                        }
                        .el-form-item__content {
                            margin-left: 80px;
                            .img-box {
                                position: absolute;
                                top: 0;
                                right: 0;
                                bottom: 0;
                                padding: 0 15px;
                                display: @display-flex;
                                align-items: @center;
                                img {
                                    max-height: 38px;
                                }                                
                            }
                        }
                    }
                    .btn {
                        margin-top: 30px;
                        text-align: @center;
                        overflow: hidden;
                        .el-button {
                            padding: 0;
                            width: 150px;
                            height: 37px;
                            font-size:@titlesize;
                            border-radius: 5px;
                            &.el-button--primary {
                                background-color: @active-color;
                                border-color: @active-color;
                            }
                        }
                    }
                }
                .certificate-result{
                    margin-top: 35px;
                    overflow: hidden;
                    .certificate-result-title {
                        font-size: @large-size;
                        color: @title-color;
                        text-align: @center;
                    }
                    .result-list {
                        margin-top: 30px;
                        overflow: hidden;
                        .result-list-item {
                            margin-bottom: 23px;
                            overflow: hidden;
                            h6 {
                                margin-bottom: 10px;
                                font-size: @titlesize;
                                color: @title-color;
                            }
                            .info-list {
                                padding: 0;
                                list-style: none;
                                overflow: hidden;
                                li {
                                    float: @left;
                                    margin-bottom: 10px;
                                    width: 50%;
                                    font-size:@titlesize;
                                    color: @title-color;
                                    span {
                                        width: 80px;
                                    }                                    
                                }
                            }
                        }
                    }
                }
            }
            .nodata-section {
                margin-top: 40px;
                text-align: @center;
                overflow: hidden;
                p {
                    margin-top: 10px;
                    font-size:@titlesize;
                    color: @title-color;
                }
            }
            .nodata-section2 {
                margin: 10vh 0;
                text-align: @center;
                overflow: hidden;
                p{
                    margin-top: 40px;
                    font-size: @titlesize;
                    color: @text-color;
                }
            }
            .about-section{
                margin-top: 20px;
                overflow: hidden;
                .map-section{
                    margin-bottom: 20px;
                    width: @onehundred;
                    height: 400px;
                    overflow: hidden;
                    iframe{
                        width: @onehundred;
                        height: @onehundred;
                        border: 0;
                    }
                }
                .about-text{
                    overflow: hidden;
                    &,& *{
                        font-size: @titlesize;
                        color: @title-color;
                        line-height: 2;
                        font-weight: bold;
                    }
                }
            }
            .leader-section{
                margin-top: 30px;
                overflow: hidden;
                .leader-group{
                    margin-bottom: 20px;
                    overflow: hidden;
                    .leader-group-title{
                        margin-bottom: 12px;
                        font-size: @large-size;
                        color: @title-color;
                        font-weight: bold;
                    }
                    .leader-group-first{
                        margin-bottom: 7px;
                        background: #F3F7FB;
                        overflow: hidden;
                        a{
                            display: @display-block;
                            padding: 15px 20px;
                            overflow: hidden;
                            .img-box{
                                float: @left;
                                width: 100px;
                                height: 138px;
                                overflow: hidden;
                                a{
                                    padding: 0;
                                    height: @onehundred;
                                }
                                img{
                                    width: @onehundred;
                                    height: @onehundred;
                                    object-fit: cover;
                                }
                            }
                            .item-cont{
                                margin-left: 120px;
                                overflow: hidden;
                                h6{
                                    margin-top: 5px;
                                    font-size: @large-size;
                                    color: @title-color;
                                }
                                p{
                                    margin-top: 12px;
                                    font-size: @font-size-base;
                                    color: @text-color;
                                    line-height: 22px;
                                }
                            }
                        }
                    }
                    .leader-list{
                        padding: 0;
                        list-style: none;
                        margin: 0 -5px;
                        overflow: hidden;
                        li{
                            float: @left;
                            margin-bottom: 10px;
                            padding: 0 5px;
                            width: 50%;
                            a{
                                display: @display-block;
                                padding: 15px 20px;
                                background: #F3F7FB;
                                overflow: hidden;
                                .img-box{
                                    float: @left;
                                    width: 100px;
                                    height: 138px;
                                    overflow: hidden;
                                    a{
                                        padding: 0;
                                        height: @onehundred;
                                    }
                                    img{
                                        width: @onehundred;
                                        height: @onehundred;
                                        object-fit: cover;
                                    }
                                }
                                .item-cont{
                                    margin-left: 120px;
                                    overflow: hidden;
                                    h6{
                                        margin-top: 5px;
                                        font-size: @large-size;
                                        color: @title-color;
                                    }
                                    p{
                                        margin-top: 12px;
                                        font-size: @font-size-base;
                                        color: @text-color;
                                        line-height: 22px;
                                    }
                                }
                            }
                        }
                    }
                    &:last-child{
                        margin-bottom: 0;
                    }
                }
            }
            .webmap-list{
                padding: 0;
                list-style: none;
                overflow: hidden;
                li{
                    padding: 20px 0;
                    line-height: 40px;
                    border-bottom: 1px solid #eee;
                    overflow: hidden;
                    .item-title{
                        float: @left;
                        width: 120px;
                        height: 40px;
                        font-size:@large-size;
                        color: @white;
                        text-align: @center;
                        line-height: 40px;
                        background: @active-color;
                    }
                    .item-cont{
                        margin-left: 140px;
                        overflow: hidden;
                        a{
                            margin-right: 40px;
                            font-size: @titlesize;
                            &:hover{
                                color: @active-color;
                            }
                        }
                    }
                }
            }
        }
    }
    .footer{
        padding-top: 30px;
        background: url(../image/footbg.jpg) top center no-repeat;
        overflow: hidden;
        .footer-top{
            padding-bottom: 20px;
            display: @display-flex;
            justify-content: space-between;
            border-bottom: 1px solid rgba(255,255,255,.2);
            .footer-text{
                margin-top: -5px;
                .footer-group{
                    margin-bottom: 10px;
                    overflow: hidden;
                    .item-title{
                        float: @left;
                        width:50px;
                        font-size: @titlesize;
                        color: @white;
                        line-height: 24px;
                    }
                    .item-cont{
                        margin-left: 50px;
                    }
                }
                P{
                    margin-bottom: 10px;
                    font-size: @titlesize;
                    color: @white;
                    line-height: 24px;
                    &:last-child{
                        margin-bottom: 0;
                    }
                }
            }
            .follow-list{
                padding: 0;
                list-style: none;
                overflow: hidden;
                li{
                    float: @left;
                    margin-right: 30px;
                    text-align: @center;
                    &:last-child{
                        margin-right: 0;
                    }
                    img{
                        width: 98px;
                        height: 98px;
                        object-fit: cover;
                    }
                    p{
                        margin-top: 1px;
                        font-size: @font-size-base;
                        color: @white;
                    }
                }
            }
        }
        .footer-bottom{
            padding: 18px 0;
            display: @display-flex;
            justify-content: space-between;
            .copyright-text{
                font-size: @font-size-base;
                color: @white;
                span{
                    margin-right: 20px;
                    &:last-child{
                        margin-right: 0;
                    }
                }
            }
            .footer-link{
                a{
                    display: @display-block;
                    float: @left;
                    position: relative;
                    padding: 0 9px;
                    font-size: @font-size-base;
                    color: @white;
                    &::after{
                        content: "";
                        position: absolute;
                        top: 6px;
                        right: 0;
                        bottom: 0;
                        width: 1px;
                        height: 9px;
                        background: @white;
                    }
                    &:last-child{
                        padding-right: 0;
                        &::after{
                            display: @display-none;
                        }
                    }
                }
            }
        }
    }
    .scroll-up{
        display:@display-none;
        position: fixed;
        right: 13%;
        bottom: 275px;
        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;
        }
    }
    &.party-wrap{
        .header{
            background: linear-gradient(to bottom, #F6CDCE, #fff);
            .header-top{
                .quick-list{
                    li{
                        a{
                            img{
                                transform: translateY(-72px);
                            }
                        }
                    }
                }
            }
            .header-bottom{
                .search-box{
                    border-color: @party-color;
                    button{
                        img{
                            transform: translateY(-72px);
                        }
                    }
                }
            }
        }
        .nav{
            background: @party-color;
            &>ul{
                &>li{
                    &:hover,
                    &.active{
                        background: #D5191E;
                    }
                    .menu-nav{
                        background: @party-color;
                        ul{
                            li{
                                &:hover{
                                    background: #D5191E;
                                }
                            }
                        }
                    }
                }
            }
        }
        .content{
            .breadcrumb{
                img{
                    transform: translateY(-72px);
                }
                a{
                    &:hover,
                    &.active{
                        color:  @party-color;
                    }
                }
            }
            .page-content{
                .sidenav{
                    .sidenav-title{
                        background: @party-color;
                    }
                    .sidenav-list{
                        &>li{
                            &:hover,
                            &.active{
                                background: #FFE6E7;
                                &>a{
                                    color: @party-color;
                                    background: url(../image/icon10_4.png) 93% center no-repeat;
                                }
                            }
                            &.more{
                                &.active{
                                    &> a{
                                        background: url(../image/icon10_5.png) 93% center no-repeat;
                                    }
                                }
                            }
                            ul{
                                li{
                                    &:hover,
                                    &.active{
                                        a{
                                            color: @party-color;
                                        }
                                    }
                                }
                            }
                        }
                    }
                }
                .page-title{
                    border-color: @party-color;
                }
                .first-list{
                    li{
                        a{
                            span{
                                color: @party-color;
                            }
                            &:hover{
                                color: @party-color;
                            }
                        }
                    }
                }
            }
        }
        .pages{
            .pagination{
                li{
                    &:hover,
                    &.active{
                        border-color: @party-color;
                        background: @party-color;
                    }
                    &.prev,
                    &.next,
                    &.first,
                    &.last{
                        &:hover{
                            color: @party-color;
                            border-color:@party-color;
                            background: @white;
                            a{
                                color: @party-color;
                            }
                        }
                    }
                }
            }
        }
        .NewsPages{
            a{
                &:hover{
                    color: @party-color;
                }
            }
        }
        .footer{
            background: url(../image/footbg2.jpg) top center no-repeat;
        }
    }
}
.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%;
    }
    .wrap{
        .content{
            .section{
                &.first{
                    .news-slide{
                        width: 52%;
                        height: 329px;
                    }
                    .news-tab{
                        width: 46%;
                        .news-list {
                            li{
                                &.two{
                                    line-height: 39px;
                                }
                            }
                        }
                    }
                }
                .news-section{
                    width: 49%;
                }
            }
            .adver-section {
                img{
                    height: 125px;
                }
            }
            .adve-list{
                li{
                    margin-right: 23px;
                    width: calc((100% - 23px) / 2);
                    height: 107px;
                    img{
                        height: 107px;
                    }
                }
            }
            .page-content {
                .sidenav{
                    width: 200px;
                }
                .cont-right{
                    width: calc(100% - 240px);
                }
            }
        }
        .scroll-up{
            right: 0;
        }
    }
}
@media screen and (min-width:0px) and (max-width:768px) {
    .w1200 {
        width: calc(100% - 30px);
    }
    .wrap{
        .header {
            position: relative;
            .logo{
                margin-top: 0;
                img{
                    height: 55px;
                }
            }
            .header-top{
                display: @display-none;
            }
            .header-bottom{
                margin-top: 5px;
                .search-box{
                    display: @display-none;
                    position: absolute;
                    top: @onehundred;
                    left: 0;
                    width: @onehundred;
                    height: auto;
                    background: @white;
                    z-index: 99;
                    box-shadow: 5px 0px 13px 0px rgba(0, 0, 0, 0.1);
                }
            }
        }
        .content{
            .section{
                &.first{
                    margin-top: 0;
                    margin-bottom: 20px;
                    .news-slide,
                    .news-tab{
                        float: none;
                        width: @onehundred;
                    }
                    .news-slide{
                        margin-bottom: 20px;
                        height: 408px;
                    }
                }
                &.two,
                &.three{
                    margin-bottom: 0;
                    display: @display-block;
                }
                &.four{
                    margin-bottom: 15px;
                }
                .news-section{
                    margin-bottom: 15px;
                    width: @onehundred;
                }
            }
            .adver-section {
                img{
                    height: 81px;
                }
            }
            .adve-list{
                margin-bottom: 0;
                li{
                    float: none;
                    margin-bottom: 20px;
                    margin-right: 0;
                    width: @onehundred;
                    height: 141px;
                    img{
                        height: 141px;
                    }
                }
            }
            .page-content {
                padding: 15px;
                .submenu-bar {
                    display: block;
                    padding-left: 30px;
                    margin-bottom: 20px;
                    font-size: @titlesize;
                    color: @title-color;
                    background: url(../image/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: @white;
                    transition: left 0.6s;
                    .sidenav-title{
                        border-radius: 0;
                    }
                }
                .cont-right{
                    float: none;
                    width: @onehundred;
                }
                .certificate-query{
                    width: 90%;
                }
            }
        }
        &.party-wrap{
            .m-search-btn{
                background: url(../image/icon7_2.png) center no-repeat;
            }
            .m-nav-btn{
                background: url(../image/icon3_3.png) center no-repeat;
                background-size: 20px;
            }
            .content {
                .page-content {
                    .submenu-bar{
                        background: url(../image/icon3_3.png) left center no-repeat;
                        background-size: 20px;
                    }
                }
            }
            .footer{
                background-size: cover;
            }
        }
    }
    .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(../image/icon3_2.png) center no-repeat;
        background-size: 20px;
    }
    .m-search-btn{
        width: 22px;
        height: 22px;
        background: url(../image/icon7.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(../image/icon5.png) 95% 20px no-repeat;
                    background-size:@titlesize;
                    &.active {
                        border-bottom: 0;
                        background: url(../image/icon5_2.png) 95% 20px no-repeat;
                        background-size:@titlesize;
                    }
                }
                .menu-nav {
                    display:@display-none;
                    ul{ 
                        ul{
                            display: @display-none;
                        }
                    }
                }
            }
        }
    }
}
@media screen and (min-width:0px) and (max-width:640px) {
    .wrap{
        .header {
            padding: 15px 0;
            .logo{
                img{
                    height: 37px;
                }
            }
            .header-bottom{
                margin-top: 7px;
                .search-box {
                    input,
                    button{
                        height: 35px;
                    }
                }
            }
        }
        .content {
            .section{
                &.first {
                    margin-bottom: 15px;
                    .news-slide{
                        margin-bottom: 15px;
                        height: 191px;
                        .swiper {
                            .swiper-slide {
                                .section-cover{
                                    padding: 5px 15px;
                                    padding-right: 100px;
                                    p{
                                        font-size: @font-size-base;
                                        line-height: 1.5;
                                    }
                                }
                            }
                            .swiper-horizontal>.swiper-pagination-bullets,
                            .swiper-pagination-bullets.swiper-pagination-horizontal, 
                            .swiper-pagination-custom, 
                            .swiper-pagination-fraction{
                                right: 5px;
                                bottom: 10px;
                            }
                            .swiper-pagination-bullet{
                                width: 8px;
                                height: 8px;
                            }
                            .swiper-horizontal>.swiper-pagination-bullets .swiper-pagination-bullet,
                            .swiper-pagination-horizontal.swiper-pagination-bullets .swiper-pagination-bullet{
                                margin: 0 4px;
                            }
                        }
                    }
                    .news-tab {
                        .hd {
                            height: 40px;
                            ul{
                                li{
                                    span{
                                        height: 39px;
                                        font-size: @titlesize;
                                        &::after{
                                            margin: 0 10px;
                                            top: 3px;
                                        }
                                    }
                                    .more{
                                        font-size: @font-size-base;
                                    }
                                    &.on{
                                        span{
                                            &::before{
                                                width: 65px;
                                            }
                                        }
                                    }
                                }
                            }
                        }
                        .news-list{
                            li{
                                &.first{
                                    padding-bottom: 10px;
                                    h6{
                                        font-size: @font-size-base;
                                        font-weight: bold;
                                        line-height: 20px;
                                    }
                                }
                                &.two{
                                    font-size: @font-size-base;
                                    line-height: 30px;
                                }
                            }
                        }
                    }
                }
                &.three{
                    margin-bottom:7px;
                }
                &.four{
                    margin-bottom: 10px;
                    .partner-slide{
                        .swiper{
                            .swiper-slide{
                                .img-box{
                                    height: 65px;
                                }
                            }
                        }
                    }
                }
                .section-title{
                    height: 40px;
                    line-height: 39px;
                    h6{
                        height: 39px;
                        font-size: @titlesize;
                    }
                    .more{
                        font-size: @font-size-base;
                    }
                }
                .news-section{
                    margin-bottom: 7px;
                    .news-list2 {
                        li{
                            &.first{
                                .img-box{
                                    width: 130px;
                                    height: 79px;
                                }
                                .item-cont{
                                    margin-left: 145px;
                                    h6{
                                        font-size: @font-size-base;
                                        line-height: 20px;
                                    }
                                    p{
                                        font-size: @small-size;
                                        line-height: 18px;
                                        &.item-text,
                                        &.item-time{
                                            margin-top: 3px;
                                        }
                                    }
                                }
                            }
                            &.two{
                                line-height: 30px;
                                a{
                                    max-width: 70%;
                                    font-size: @font-size-base;
                                }
                                .time{
                                    font-size: @font-size-base;
                                }
                            }
                        }
                    }
                }
            }
            .adver-section{
                margin-bottom: 15px;
                img{
                    height: auto;
                }
            }
            .adve-list{
                li{
                    margin-bottom: 15px;
                    height: auto;
                    img{
                        height: auto;
                    }
                } 
            }
            .breadcrumb{
                display: @display-none;
            }
            .page-content{
                margin-top: 20px;
                .submenu-bar{
                    margin-bottom: 15px;
                    font-size: @font-size-base;
                }
                .page-title{
                    height: 32px;
                }
                .certificate-query{
                    margin-top: 15px;
                    width: @onehundred;
                    .certificate-title{
                        h6{
                            font-size: @large-size;
                        }
                    }
                    .certificate-form{
                        margin-top: 15px;
                        .el-form-item{
                            margin-bottom: 15px;
                            .el-form-item__label{
                                float: none;
                                width: @onehundred;
                                font-size: @font-size-base;
                                text-align: @left;
                                line-height: 25px;
                            }
                            .el-form-item__content{
                                margin-left: 0;
                                .el-input__inner{
                                    height: 35px;
                                    line-height: 35px;
                                }
                                .img-box{
                                    img{
                                        max-height: 33px;
                                    }
                                }
                            }
                        }
                        .btn{
                            margin-top: 20px;
                            .el-button{
                                width: 120px;
                            }
                        }
                    }
                    .certificate-result{
                        margin-top: 25px;
                        .result-list{
                            margin-top: 20px;
                            .result-list-item{
                                margin-bottom: 18px;
                                .info-list{
                                    li{
                                        float: none;
                                        width: @onehundred;
                                    }
                                }
                            }
                        }
                    }
                }
                .nodata-section{
                    margin-top: 30px;
                    img{
                        max-width: 90%;
                    }
                }
                .nodata-section2{
                    img{
                        max-width: 90%;
                    }
                    p{
                        margin-top: 25px;
                        font-size: @font-size-base;
                    }
                }
                .first-list{
                    li{
                        padding: 11px 0;
                        a,
                        .time{
                            font-size: @font-size-base;
                        }
                        a{
                            max-width: 72%;
                            span{
                                margin-right: 5px;
                            }
                        }
                    }
                }
                .pages{
                    margin-top: 15px;
                    .pagination{
                        li{
                            margin-right: 5px;
                            width: 30px;
                            height: 30px;
                            font-size: @small-size;
                            line-height: 28px;
                            &.first,
                            &.last{
                                display: @display-none;
                            }
                            &.prev,
                            &.next{
                                width: 50px;
                            }
                        }
                    }
                }
                .TextTitle{
                    padding: 15px 0;
                    padding-bottom: 10px;
                    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: 30px;
                    }
                }
                .leader-section{
                    margin-top: 20px;
                    .leader-group{
                        .leader-group-title{
                            font-size: @titlesize;
                        }
                        .leader-group-first{
                            a{
                                padding: 10px 15px;
                                .img-box{
                                    width: 75px;
                                    height: 103px;
                                }
                                .item-cont{
                                    margin-left: 90px;
                                    h6{
                                        font-size: @titlesize;
                                    }
                                }
                            }
                        }
                        .leader-list{
                            margin: 0;
                            li{
                                padding: 0;
                                float: none;
                                width: @onehundred;
                                a{
                                    padding: 10px 15px;
                                    .img-box{
                                        width: 75px;
                                        height: 103px;
                                    }
                                    .item-cont{
                                        margin-left: 90px;
                                        h6{
                                            font-size: @titlesize;
                                        }
                                    }
                                }
                            }
                        }
                    }
                }
                .about-section {
                    .map-section{
                        height: 175px;
                    }
                    .about-text{
                        &,& *{
                            font-size: @font-size-base;
                            line-height: 1.75;
                        }
                    }
                }
                .introduction-section{
                    margin-top: 15px;
                    .introduction-title{
                        margin-bottom: 15px;
                        font-size: @titlesize;
                    }
                }
                .introduction-text{
                    &,& *{
                        font-size: @font-size-base;
                        line-height: 1.75;
                    }
                }
                .webmap-list{
                    li{
                        padding: 15px 0;
                        line-height: 30px;
                        .item-title{
                            width: 80px;
                            height: 30px;
                            font-size:  15px;
                            line-height: 30px;
                        }
                        .item-cont{
                            margin-left: 100px;
                            a{
                                display: @display-block;
                                float: @left;
                                margin-right: 15px;
                                font-size: @font-size-base;
                            }
                        }
                    }
                }
            }
        }
        .footer{
            padding-top: 15px;
            background-size: cover;
            .footer-top{
                display: @display-block;
                padding-bottom: 15px;
                .footer-text{
                    margin-top: 0;
                    .footer-group{
                        .item-title{
                            width: 42px;
                            font-size: @font-size-base;
                        }
                        .item-cont{
                            margin-left: 42px;
                        }
                    }
                    p{
                        margin-bottom: 0;
                        font-size: @font-size-base;
                    }
                }
                .follow-list{
                    margin: 0 auto;
                    margin-top: 15px;
                    display: @display-table;
                    li{
                        p{
                            margin-top: 5px;
                            line-height: 24px;
                        }
                    }
                }
            }
            .footer-bottom{
                display: @display-block;
                padding: 15px 0;
                text-align: @center;
                .copyright-text{
                    span{
                        margin: 0;
                        display: @display-block;
                        text-align: @center;
                        line-height: 1.65;
                    }
                }
                .footer-link{
                    margin: 0 auto;
                    margin-top: 5px;
                    display: @display-table;
                    overflow: hidden;
                }
            }
        }
        .scroll-up{
            bottom: 35px;
            width: 46px;
            height: 46px;
            a{
                height: @onehundred;
            }
        }
    }

}