
@font-face {
    font-family: "FZYANSJW_ZHONG";
    src: url(/lcyx/2021/css/FZYANSJW_ZHONG.woff);
}
@-webkit-keyframes rubberBand {
    0% {
        -webkit-transform: scale3d(1,1,1);
        transform: scale3d(1,1,1)
    }

    30% {
        -webkit-transform: scale3d(1.25,.75,1);
        transform: scale3d(1.25,.75,1)
    }

    40% {
        -webkit-transform: scale3d(0.75,1.25,1);
        transform: scale3d(0.75,1.25,1)
    }

    50% {
        -webkit-transform: scale3d(1.15,.85,1);
        transform: scale3d(1.15,.85,1)
    }

    65% {
        -webkit-transform: scale3d(.95,1.05,1);
        transform: scale3d(.95,1.05,1)
    }

    75% {
        -webkit-transform: scale3d(1.05,.95,1);
        transform: scale3d(1.05,.95,1)
    }

    100% {
        -webkit-transform: scale3d(1,1,1);
        transform: scale3d(1,1,1)
    }
}

@keyframes rubberBand {
    0% {
        -webkit-transform: scale3d(1,1,1);
        -ms-transform: scale3d(1,1,1);
        transform: scale3d(1,1,1)
    }

    30% {
        -webkit-transform: scale3d(1.25,.75,1);
        -ms-transform: scale3d(1.25,.75,1);
        transform: scale3d(1.25,.75,1)
    }

    40% {
        -webkit-transform: scale3d(0.75,1.25,1);
        -ms-transform: scale3d(0.75,1.25,1);
        transform: scale3d(0.75,1.25,1)
    }

    50% {
        -webkit-transform: scale3d(1.15,.85,1);
        -ms-transform: scale3d(1.15,.85,1);
        transform: scale3d(1.15,.85,1)
    }

    65% {
        -webkit-transform: scale3d(.95,1.05,1);
        -ms-transform: scale3d(.95,1.05,1);
        transform: scale3d(.95,1.05,1)
    }

    75% {
        -webkit-transform: scale3d(1.05,.95,1);
        -ms-transform: scale3d(1.05,.95,1);
        transform: scale3d(1.05,.95,1)
    }

    100% {
        -webkit-transform: scale3d(1,1,1);
        -ms-transform: scale3d(1,1,1);
        transform: scale3d(1,1,1)
    }
}

/* banner */
.banner ul li a{
    display: block;
}
@keyframes zoomin {
    0% {-webkit-transform: scale(1);}
    100% {-webkit-transform: scale(1.1);}
}
.banner ul li{
    overflow: hidden;
}
.banner ul li a img{
    display: block;
    width: 100%;
/* 
    animation: zoomin 10s ease-in-out infinite alternate;
    -webkit-animation: zoomin 10s ease-in-out infinite alternate;
*/
}
.controls a{
    opacity: 0;
    visibility: hidden;
    -webkit-transition: all .3s;
    -moz-transition: all .3s;
    -o-transition: all .3s;
    transition: all .3s;
}
.previous{
    background: url(../image/left_ico.png) no-repeat;
    width: 50px;
    height: 50px;
    cursor: pointer;
    position: absolute;
    left: 20px;
    top: 50%;
    margin-top: -25px;
    -webkit-transform: translateX(10px);
    -o-transform: translateX(10px);
    -moz-transform: translateX(10px);
    transform: translateX(10px);
}
 
.next{
    background: url(../image/right_ico.png) no-repeat;
    width: 50px;
    height: 50px;
    cursor: pointer;

    position: absolute;
    right: 20px;
    top: 50%;
    margin-top: -25px;
    -webkit-transform: translateX(-10px);
    -o-transform: translateX(-10px);
    -moz-transform: translateX(-10px);
    transform: translateX(-10px);
}
.banner-cursor:hover .controls a{
    opacity: 1;
    visibility: visible;
    -webkit-transform: translate(0);
    -o-transform: translate(0);
    -moz-transform: translate(0);
    transform: translate(0);
}
.banner-pagination{
    display: block;
    position: absolute;
    bottom: 10px;
    width: 100%;
    z-index: 2;
    text-align:center;
    left: 0;
}
.banner-pagination ul li{
    width: 12px;
    height: 12px;
    background: none;
    display: inline-block;
    border-radius: 50%;
    margin: 0 5px;
    cursor: pointer;
    border: 2px solid #fff;
}

.banner-pagination .on{
    background: #fff;
}

.header{
    background: url(../image/header_bg1.png) no-repeat right bottom #00736d;
    padding: 35px 0;
    position: relative;
    z-index: 2;
}
.search{
    float: right;
    margin-top: 28px;
    background-color: #fff;
    border: 1px solid #f39800;
}
.search>.search-text{
    width: 190px;
    height: 42px;
    font-size: 14px;
    padding-left: 10px;
    padding-right: 13px;
    margin-right: -7px;
    background: none;
    color: #fff;
}
.search>.search-btn{
    vertical-align: top;
    width: 28px;
    height: 34px;
    background: url(../image/search.png) no-repeat center #f39800;
    box-sizing: content-box;
    cursor: pointer;
    padding: 4px 9px;
}



.nav{
    box-shadow: 0px 20px 17.85px 3.15px rgba(0, 0, 0, 0.22);
}
.nav .w>ul{
    width: 100%;
    display: table;
    table-layout: auto;
}
.nav .w>ul>li{
    display: table-cell;
    text-align: center;
    position: relative;
}
.nav .w>ul>li>a{
    color: #191919;
    line-height: 53px;
    display: block;
    font-size: 15px;
}
.nav .w>ul>li:hover{
    background: #f39800;
}
.nav .w>ul>li:hover>a{
    color: #fff;
}
.nav .w>ul>li:after {
    content: "";
    /* width: 1px;
    height: 15px;
    background: #b30502;
    position: absolute;
    left: 0;
    top: 20px; */
}
.nav .w>ul>li:first-child:after{
    width:0;
}
.nav .w .hasSub:hover .nav_ul_2{
    opacity: 1;
    visibility: visible;
    -webkit-transform: translateY(0);
    -moz-transform: translateY(0);
    -o-transform: translateY(0);
    transform: translateY(0);
}

.nav .w .nav_ul_2{
    position: absolute;
    min-width: 100%;
    z-index: 9;
    visibility: hidden;
    opacity: 0;
    -webkit-transition: all .3s;
    -moz-transition: all .3s;
    -o-transition: all .3s;
    transition: all .3s;
    -webkit-transform: translateY(5px);
    -moz-transform: translateY(5px);
    -o-transform: translateY(5px);
    transform: translateY(5px);
}
.nav .w .nav_ul_2 li {
    background: #fff;
    border-bottom: 1px solid #fff;
    padding: 0 8px;
}
.nav .w .nav_ul_2 li:hover{
    background: #f39800;
}
.nav .w .nav_ul_2 li:hover a{
    color: #fff;
}
.nav .w .nav_ul_2 li a{
    display: block;
    color: #191919;
    font-size: 14px;
    line-height: 40px;
    white-space:  nowrap;
}











/* 尾部 */
.footer{
    background: #00736d;
    padding: 23px 0;
}
.Copyright{
    width: 24%;
}
.Copyright p{
    font-size: 14px;
    color: #fff;
    font-size: 14px;
    line-height: 24px;
}