*{
    margin: 0; 
    padding: 0; 
    color: #282828; 
    font-size: 0.24rem; 
    font-family: 微软雅黑;
}
a {
    text-decoration: none;
    color: #000000;
}

li {
    list-style: none;
}

.flex-center {
    display: flex;
    align-items: center;
    justify-content: center;
}

.column-center{
    display: flex;
    align-items: center;
}

.row-center{
    display: flex;
    justify-content: center;
}

.flex-row {
    display: flex;
    flex-direction: row;
}
.flex-column{
    display: flex;
    flex-direction: column;
}

.flex-between {
    display: flex;
    justify-content: space-between;
}
.flex-wraps{
    display: flex;
    flex-wrap: wrap;
}
.flex-around{
    display: flex;
    justify-content: space-around;
}

.row-end{
    display: flex;
    justify-content: flex-end;
}
.column-end{
    display: flex;
    align-items: flex-end;
}
.flex-start{
    display: flex;
    align-items:flex-start;
}
.flex-end{
    display: flex;
    align-items:flex-end;
}


@keyframes myfirst_animate
    {
        0%{
            opacity: 0;
             
        }
        10%{
            opacity: 0;
            transform: scale(1.09); 
        }
        10%{
            opacity: 0.1;
            transform: scale(1.08); 
        }
        20%{
            opacity: 0.2;
            transform: scale(1.07); 
        }
        30%{
            opacity: 0.4;
            transform: scale(1.06); 
        }
        50%{
            opacity: 0.5;
            transform: scale(1.05); 
        }
        60%{
            opacity: 0.6;
            transform: scale(1.04); 
        }
        70%{
            opacity: 0.7;
            transform: scale(1.03); 
        }
        80%{
            opacity: 0.8;
            transform: scale(1.02); 
        }
        90%{
            opacity: 0.9;
            transform: scale(1.01); 
        }
      
        100%{
            transform: scale(1);
            opacity: 1;
        }
    }

    .active_animate{
        animation:myfirst_animate 2s linear;
       
    }



    /*导航栏及侧边划入导航*/
    .leftMenu a {
        text-decoration: none;
        display: block;color: #fff;font-size: .3rem;border-bottom: 1px dashed rgba(255,255,255,.5);line-height: 1.2rem
    }

    .leftMenu {
        background: rgba(0,0,0,.5);
        left: -1000px;
        position: fixed;
        top: .88rem;
        display: block;
        height: 100%;
        width: 70%;
        min-width: 140px;
        max-width: 440px;
        z-index: 90002;
        transition: all 0.4s ease;
        -moz-transition: all 0.4s ease;
        -webkit-transition: all 0.4s ease;
        -o-transition: all 0.4s ease;
        position: fixed;
        overflow: auto;
    }

    .leftMenu.menu-open {
        left: 0;
    }

    .leftMenu ul {
        list-style: none;
        padding: 0;
        overflow: hidden;box-sizing: border-box
    }

    .leftMenu ul li {
        position: relative;
        line-height: .8rem;
        overflow:hidden;box-sizing: border-box
    }
    
    .leftMenu ul li.hasChild > a:after {
        content: "+";
        position: absolute;
        right: 20px;
        top: 0px;
        font-size: 24px;
        font-weight: 300;
    }

    .leftMenu ul li.hasChild.open > a:after {
        content: "-";
        right: 23px;
        font-size: 28px;
        top: -3px;
    }

    .f1 {padding: .6rem;}
    .f2, .f3 {
        height: 0;
        padding-left: 20px;
        overflow: hidden;
        position: relative;
        transition: height 0.4s ease;
        -moz-transition: height 0.4s ease;
        -webkit-transition: height 0.4s ease;
        -o-transition: height 0.4s ease;
    }

    .leftMenu a {
        text-decoration: none;
        display: block;color: #fff;font-size: .3rem;border-bottom: 1px dashed rgba(255,255,255,.5);line-height: 1.2rem
    }
    

    .menu-dark-backdrop.in {
        height: 100%;
        z-index: 90001;
        background: rgba(0,0,0,0.5);
        position: fixed;
        width: 100%;
        left: 0;top: 0;
        animation: mask .3s linear forwards;/*infinite */
    }




    .head {height: .88rem;background-color: #208cd7;display: flex;align-items: center;justify-content: space-between;padding: 0 .3rem;box-sizing: border-box;}	
    .logo {
        width: 4.3rem;
        height: .69rem;
        background-image: url(../img/LOGO.png);
        background-size: cover;
    }
    .btn {background-image: url(../img/menu.png);width: .5rem;height: .4rem;background-size: cover;background-position: center;border: none;
        outline: none;
        background-color: transparent;
    }

    .heard-ss{
        width: 0.5rem;
        height: 0.5rem;
        background-image: url(../img/heard-ss.png);
        background-size: contain;
        margin-left: 0.5rem;
    }
    /*导航栏及侧边划入导航*/





    /* 分页器 */
    .pagination>li{
        margin: 0 0.1rem;
    }
    .paginat-prev{
        width: 0.48rem;
        height: 0.48rem;
        background-image: url(../img/p-left.png);
        background-position: center;
        background-repeat: no-repeat;
        cursor: pointer;
        background-size: 40%;
    }
    .paginat-next{
        width: 0.48rem;
        height: 0.48rem;
        background-image: url(../img/p-left.png);
        background-position: center;
        background-repeat: no-repeat;
        transform: rotate(180deg);
        cursor: pointer;
        background-size: 40%;
    }
    .paginat-page{
        width: 0.48rem;
        height: 0.48rem;
        text-align: center;
        line-height: 0.48rem;
        cursor: pointer;
    }
    .active_page{
        border-radius: 50%;
        background-color: #2f76b7;
        color: #ffffff;
    }
    .active_page>a{
        color: #ffffff;
    }