@charset "UTF-8";
/* 头部 */
body{
    padding-top:190px;
}
.header_top,nav{
    animation: 0.8s ease 0.3s 1 normal backwards running fadeInDown;
}
.ny_banner{
    animation: 0.8s ease 0.3s 1 normal backwards running fadeInUp;
}
.header_top{
    padding: 25px 0;
    background: #fff;
}
/* logo */
a.logo,a.logo img{
    display: block;
    width: auto;
    height: 120px;
}
/* 顶部链接 */
.lj_top ul li{
    float: left;
    width: auto;
    margin-left: 20px;
    margin-top: 40px;
}
.lj_top ul li a{
    display: block;
    box-sizing: border-box;
    border-radius: 16px;
    font-size: 14px;
    line-height: 32px;
    color:#811d98;
    background: #f8f8f8;
    text-align: left;
    position: relative;
}
.lj_top ul li a img{}
.lj_top ul li a span{width: 70px;
    display: inline-block;
    text-align: center;}
.lj_top ul li a::before{
    display: block;
    content: "";
    width: 32px;
    height: 32px;
    border-radius: 100%;
    position: absolute;
    left: 0;
    top: 0;
    display:none;
}

.lj_top ul li:nth-of-type(1) a::before{
     background: #811d98 url(../img/header_lj_img2.png) no-repeat 8px center;
}

.lj_top ul li:nth-of-type(3) a::before{
    background: #811d98 url(../img/header_lj_img2.png) no-repeat -23px center;
}

.lj_top ul li:nth-of-type(4) a::before{
  background: #7a4486 url(../img/header_lj_img2.png) no-repeat -56px center;
}

.lj_top ul li:nth-of-type(2) a::before{
       background: #811d98 url(../img/header_lj_img2.png) no-repeat -121px center;
}

.lj_top ul li:nth-of-type(5) a::before{
       background: #811d98 url(../img/header_lj_img2.png) no-repeat -151px center;
}

.lj_top ul li:nth-of-type(6) a::before{
      background: #811d98 url(../img/header_lj_img2.png) no-repeat -87px center;
}

/* 导航 */
nav{
    background: #811d98;
    position: relative;
}
nav ul.w1600 li{
    float: left;
    width: calc(100% / 8);
}
nav ul.w1600 li>a{
    display: block;
    width: 100%;
    text-align: center;
    font-size: 20px;
    color: #fff;
    padding: 15px 0;
    height: 40px;
    line-height: 40px;
    position: relative;
}
nav ul.w1600 li>a::before{
    display: block;
    content: "";
    width: 1px;
    height: 20px;
    background: #a344b8;
    position: absolute;
    right: 0;
    top: 0;
    bottom: 0;
    margin: auto;
}
nav ul.w1600 li>a::after{
    display: none;
    content: "";
    width: 0;
    height: 0;
    border-width: 14px 14px 0 14px;
    border-style: solid;
    border-color: #5d156d transparent transparent transparent;
    position: absolute;
    bottom: -14px;
    left: 0;
    right: 0;
    margin: auto;
    z-index: 999;
}
nav ul.w1600 li>a:hover,nav ul.w1600 li>a.hover{
    background: #5d156d;
}
nav ul.w1600 li>a:hover::after,nav ul.w1600 li>a.hover::after{
    display: block;
}
nav ul.w1600 .menu_sub{
    display: none;
    width: 100%;
    box-sizing: border-box;
    height: auto;
    background: #fff;
    position: absolute;
    left: 0;
    top: 70px;
    z-index: 998;
    box-shadow: 0 0 10px rgba(0,0,0,0.15);
}
.menu_sub div.w1600{
    position: relative;
}
.menu_sub div.fl{
    width: 50%;
}
.menu_sub div.fl img{
    display: block;
    width: 85%;
    height: 240px;
    object-fit: none;
    padding: 40px 0;
}
.menu_sub div.fr{
    width: 50%;
    height: auto;
    margin-top: 50px;
}
.menu_sub div.fr p{
    font-size: 20px;
    font-weight: bold;
    color: #811d98;
    padding-left: 40px;
    box-sizing: border-box;
    background: url(/img/ej_nav_icon.png) no-repeat left center;
}
.menu_sub div.fr a{
    display: block;
    float: left;
    width: 20%;
    font-size: 16px;
    color: #333333;
    margin-right: 4%;
    line-height: 50px;
    text-align: center;
    border: 1px solid #f2f2f2;
    box-sizing: border-box;
    margin-top: 30px;
}
.menu_sub div.fr a:hover{
    background: #f6f6f6;
    color: #7a4486;
    border: 1px solid #f6f6f6;
}
.header_m{
    display: none;
}
/* 搜索 */
nav ul.w1600 li p.search{
    background: url(/img/search.png) no-repeat  center;
    width: 40px;
    height:40px;
    margin: 15px auto;
    border: 1px solid #fff;
    box-sizing: border-box;
    border-radius: 100%;
    cursor:pointer;
}
.layer {
    width: 100%;
    height: 100%;
    background: rgba(0, 0, 0, 0.8);
    position: fixed;
    left: 0;
    top: 0;
    right: 0;
    bottom: 0;
    z-index: 99999;
    opacity: 0;
    visibility: hidden;
    transition: all 0.3s ease-out 0s;
 }
 .layer.showdiv {
    opacity: 1;
    visibility: visible;
 }
 .layer .close {position: absolute;right: 150px;top: 80px;width: 66px;height: 66px;text-align: center;line-height: 50px;cursor: pointer;font-size: 0;transition: all 0.3s ease-out 0s;}
 .layer .close:before,.layer .close:after{content:'';width: 100%;height: 2px;display:block;position:absolute;background: #7a4486;transition:1s;transform: rotate(45deg);top: 24px;}
 .layer .close:before{transform: rotate(-45deg);}
 .layer .close:hover{transform: rotate(90deg);}
 .layer .search_box {
    height: 45px;
    line-height: 45px;
    width: 850px;
    transform: translateY(-50px);
    opacity: 0;
    position: absolute;
    left: 0;
    top: 0;
    right: 0;
    bottom: 0;
    margin: auto;
 }
 .layer.showdiv .search_box {
    transform: none;
    transition: all 0.5s ease-out 0s;
    opacity: 1;
    font-size: 0;
 }
 .layer .search_box .kw {
    width: 85%;
    height: 48px;
    background: #fff;
    box-shadow: 3px 3px 3px rgba(0, 0, 0, 0.5) inset;
    padding: 0 12px;
    font-size: 16px;
    border-radius: 0;
    float: left;
    margin: 0;
    border: none;
    box-sizing: border-box;
 }
 .layer .search_box .ok {
    background: #7a4486;
    color: #fff;
    width: 15%;
    height: 48px;
    text-align: center;
    font-size: 18px;
    cursor: pointer;
    border-radius: 0;
    float: left;
 }
.header_top,nav{
    position:fixed;
    z-index:9999;    
    width: 100%;
    
}
.header_top{
    top:0;
    left:0;
}
nav{
    top:150px;
    box-shadow: 0 5px 10px 2px rgb(122,68,134,0.6);
}
/* 友情链接 */
.yqlj{
    margin: 30px 0 30px;
}
.yqlj ul p{
    width: auto;
    float: left;
    font-size: 20px;
    color: #811d98;
    font-weight: bold;
    line-height: 30px;
}
.yqlj ul li{
    float: left;
    width: auto;
    padding: 0 33px;
    position: relative;
}
.yqlj ul li:first-of-type{
    padding-left:0;
}
.yqlj ul li::before{
    display: block;
    content: "";
    width: 1px;
    height: 16px;
    background: #dfdfdf;
    position: absolute;
    right: 0;
    bottom: 0px;
    top: 0;
    margin: auto;
}
.yqlj ul li:last-of-type::before{
    display: none;
}
.yqlj ul li a{
    display: block;
    width: auto;
    font-size: 17px;
    color: #2d2d2d;
    line-height: 30px;
    margin-top: 1px;
}
.yqlj ul li a:hover{
    color: #811d98;
}
/* 底部 */
footer{
    border-top: 5px solid #811d98;
    background: #ffffff;
}
footer .foot_sub{
    padding: 20px 0;
    border-bottom: 1px solid #e4e4e4;
    position: relative;
}
footer .foot_sub a.footer_logo{
    display: block;
    width: 50%;
    float: left;
}
footer .foot_sub a.footer_logo img{
    display: block;
    height: auto;
    margin-top: 12px;
}
footer .foot_sub .dz{
    font-size: 18px;
    color: #811d98;
    line-height: 30px;
    margin-top: 37px;
    float: left;
}
footer .foot_sub .dz span{
    width: auto;
    padding-left: 30px;
    display: inline-block;
}
footer .foot_sub .dz span:nth-of-type(1){
    margin-right: 30px;
    background: url(/img/yx_icon.png) no-repeat left center;
}
footer .foot_sub .dz span:nth-of-type(2){
    background: url(/img/dz_icon.png) no-repeat left center;
}
footer .foot_sub p.code{
    float: right;
    width: auto;
}
footer .foot_sub p.code img{
    display: block;
    width: 104px;
    height: 104px;
    object-fit: cover;
}
footer .bq{
    padding: 20px 0;
}
footer .bq p,footer .bq p a{
    font-size: 14px;
    color: #707070;
    line-height: 27px;
    text-align: center;
}
footer .bq p span{
    margin-right: 15px;
}
footer .bq p a{
    margin-right: 15px;
}
footer .bq p a:last-of-type{
    margin-right: 0;
}
footer .bq p a:hover{
    color: #7a4486;
}
/* 媒体查询 */
@media only screen and (max-width: 1640px){
    .w1600{
        padding: 0 40px;
    } 
    .yqlj ul p{
        font-size:18px;
    }
    .yqlj ul li a{
        font-size:15px;
    }
    a.logo,a.logo img{ 
    height: 100px;
}
}
@media only screen and (max-width: 1440px){
    body{
        padding-top:170px;
    }
    nav{
        top:110px;
    }
    a.logo, a.logo img{
        height:80px;
    }
    .lj_top ul li{
        margin-top:14px;
        margin-left: 10px;
    }
    .lj_top ul li a{
        font-size:13px;
    }
    nav ul.w1600 li>a{
        padding: 10px 0;
        font-size: 18px;
    }
    nav ul.w1600 li p.search{
        margin: 13px auto;
        width: 34px;
        height: 34px;
    }
    nav ul.w1600 .menu_sub{
        top:60px;
    }
    .menu_sub div.fl{
        width:45%;
    }
    .menu_sub div.fr{
        width:55%;
    }
    .menu_sub div.fl img{
        width:90%;
        height: 180px;
    }
    .menu_sub div.fr a{
        width: 23%;
        margin-right: 2%;
        font-size: 14px;
        line-height: 45px;
        margin-top: 20px;
    }
    footer .foot_sub .dz span:nth-of-type(1){
        margin-right:20px;
    }
}
@media only screen and (max-width: 1240px){
    body{
        padding-top:160px;
    }
    .w1600{
        padding: 0 30px;
    } 
    .lj_top ul li a{
        padding-left:0;
        border-radius: 5px;
    }
    .lj_top ul li a:hover{
        background:#7a4486;
        color:#fff;
    }
    .lj_top ul li a::before{
        display:none;
    }
    nav ul.w1600 li>a{
        padding: 5px 0;
        font-size: 15px;
    }
    nav ul.w1600 li p.search{
        margin: 10px auto;
        width: 30px;
        height: 30px;
    }
    nav ul.w1600 .menu_sub{
        top:50px;
    }
     .yqlj{
         margin-bottom: 20px;
     }
    .yqlj ul li{
        padding:0 10px;
    }
    .yqlj ul li::before{
        top:2px;
    }
    .yqlj ul p{
        float:none;
    }
    footer .foot_sub a.footer_logo{
        width:auto;
        float: none;
    }
    footer .foot_sub a.footer_logo img{
        height:60px;
        margin-top: 0;
    }
    footer .foot_sub .dz{
        font-size:16px;
        margin-top: 15px;
    }
    footer .foot_sub p.code{
        float:none;
        position: absolute;
        right: 0;
        top: 31px;
    }
    footer .bq p span{
        margin-right: 8px;
    }
    footer .bq p a{
        margin-right: 8px;
    }
}
@media only screen and (max-width: 1024px){

}
@media only screen and (max-width: 960px){
     body{
        padding-top:0;
    }
    .w1600{
        padding: 0 20px;
    } 
    .header_top,nav{
        display: none;
    }
    .header_m{
        display: block;
    }
    body.navshow {
        overflow: hidden;
        position: fixed;
        width: 100%;
        top: 0px;
        left: 0px;
        margin: 0;
    }
	.header_m {
        display: block;
        width: 100%;
        position: relative;
        top: 0;
        z-index: 9999;
        box-sizing: border-box;
        padding: 12px 30px;
        background: #fff;
    }
    .header_m .m_logo {
        display: block;
        width: auto;
        float: left;
    }

    .header_m .m_logo a,
    .header_m .m_logo a img {
        width: auto;
        display: inline-block;
        height: auto;
    }

    .menu1 {
        width: 40px;
        height: 40px;
        display: block;
        right: 30px;
        top: 27px;
        overflow: hidden;
        z-index: 999999999;
        cursor: pointer;
        position: absolute;
    }

    .menu1 span {
        float: left;
        width: 80%;
        background: #7a4486;
        transition: all 0.4s ease;
        margin-top: 8px;
        margin-left: 10%;
        height: 2px;
    }

    .menu1 span:first-child {
        margin-top: 9px;
    }

    .menu1.open span:nth-child(1) {
        transform: rotate(45deg);
        margin-top: 19px;
    }

    .menu1.open span:nth-child(2) {
        transform: rotate(-45deg);
        margin-top: -2px;
    }

    .menu1.open span:nth-child(3) {
        opacity: 0;
    }

    .m_nav {
        width: 100vw;
        height: calc(100% - 94px);
        position: fixed;
        top: 94px;
        left: 0;
        background: rgba(0, 0, 0, 0.5);
        z-index: -1;
        opacity: 0;
        visibility: hidden;
        transition: all 0.5s;
        display: block;
        overflow: auto;
        box-sizing: border-box;
    }

    .m_nav.active {
        visibility: visible;
        opacity: 1;
        z-index: 99999999;
    }

    .m_nav ul{
        position: absolute;
        transition: right 0.3s ease;
        right: 0;
        top: 47px;
        left: auto;
        width: 420px;
        height: calc(100% - 47px);
        z-index: 99999;
        background: #fff;
        margin: 0;
        overflow: auto;
    }
    .m_nav ul li {
        height: auto;
        width: 100%;
        position: relative;
        border-bottom: 1px solid #ccc;
        float: none;
        text-align: left;
        padding: 0;
        line-height: 54px;
    }
    .m_nav ul>li>a {
        font-size: 18px;
        color: #333;
        font-weight: bold;
        width: 80%;
        text-indent: 20px;
        position: relative;
        display: block;
        line-height: 54px;
    }
    .m_nav ul>li>a:hover {
        color: #7a4486;
    }
    .m_nav ul li i {
        position: absolute;
        right: 0;
        width: 15%;
        height: 54px;
        top: 0;
        background: url(/img/jia.png) no-repeat center center;
        margin: auto;
        z-index: 10;
        cursor: pointer;
        transition: all .2s ease;
        -moz-transition: all .2s ease;
        -o-transition: all .2s ease;
        -webkit-transition: all .2s ease;
    }
    .m_nav ul li i.on {
        background: url(/img/jian.png) no-repeat center center;
    }
    .m_nav ul li ol {
        position: relative;
        width: 100%;
        top: 0;
        left: 0;
        box-shadow: none;
        display: none;
        transition: all 0s;
    }
    .m_nav ul li ol>li {
        text-align: left;
        border: 0;
        font-size: 16px;
        line-height: 45px;
        position: relative;
        text-indent: 40px;
        border-top: 1px solid rgba(0, 0, 0, 0.2);
        transition: all .5s;
    }

    .m_nav ul li ol>li a {
        color: #444444;
        font-weight: bold;
    }

    .m_nav ul li ol>li:hover a {
        text-indent: 50px;
        color: #7a4486;
    }
	/* 小屏搜索 */
	.m_nav .search3{
        position: absolute;
        top: 0;
        right: 0;
        width: 420px;
        border-top: 1px solid #ccc;
    }
    .m_nav .search3 div.search3_sub{
        background: #ffffff;
        width: 100%;
        height: 46px;
        overflow: hidden;
        box-sizing: border-box;
        border-bottom: 1px solid #cccccc;
    }
    .m_nav .search3 .text {
        float: left;
        width: calc(100% - 50px);
        height: 46px;
        border: none;
        outline: none;
        line-height: 46px;
        padding-left: 20px;
        font-size: 15px;
        margin: 0;
        background: transparent;
        color: #000000;
        box-sizing: border-box;
        border-right: 1px solid #ccc;
    }
	.m_nav .search3 .text::-webkit-input-placeholder{
		color:#969696;
	}
	.m_nav .search3 .text::-moz-input-placeholder{
		color:#969696;
	}
	.m_nav .search3 .text::-ms-input-placeholder{
		color:#969696;
	}
    .m_nav .search3 .submit {
        width: 50px;
        height: 46px;
        float: right;
        background: #fff url(../img/search3.png) no-repeat center;
        border: none;
        box-sizing: content-box;
        position:relative;
    }
    .m_nav .search3 .submit::before{
        display:block;
        content:"";
        width:1px;
        height:20px;
        position:absolute;
        left: 1px;
        top:3px;
        background: #000000;
    }
}
@media only screen and (max-width: 768px){
    .header_m .m_logo a,
    .header_m .m_logo a img {
        height:62px;
    }
    .menu1{
        top:15px;
    }
    .m_nav{
        top:70px;
        height:calc(100% - 70px);
    }
    footer .foot_sub .dz{
        float:none;
    }
    #vsb_content_2 video, #vsb_content video{
        width:100%;
        height:auto;
        max-width:100%;
    }
    #vsb_content p.vsbcontent_img img,#vsb_content p img,#vsb_content_2 p.vsbcontent_img img, #vsb_content_2 p img{
        width:auto;
        height: auto!important;
        max-width: 100%!important;
    }
}

@media only screen and (max-width: 640px){
    .header_m{
        padding: 11px 12px;
    }
    .w1600{
        padding: 0 15px;
    } 
    .menu1{
        right:15px;
    }
    footer .foot_sub p.code{
        position: static;
        margin-top: 15px;
    }
    footer .foot_sub p.code img{
        margin:0 auto;
    }
    footer .foot_sub{
        padding: 15px 0;
    }
    footer .foot_sub a.footer_logo img{
        max-width: 100%;
        height: auto;
        margin: 0 auto;
    }
    footer .foot_sub .dz{
        font-size:13px;
    }
    footer .foot_sub .dz span:nth-of-type(1){
        margin-right: 10px;
        background-size: 18px;
    }
    footer .foot_sub .dz span:nth-of-type(2){
        background-size: auto 18px;
    }
    footer .foot_sub .dz span{
        padding-left:20px;
    }
    footer .bq p, footer .bq p a{
        line-height: 20px;
        font-size: 13px;
    }
     footer .bq p{
         margin-bottom:5px;
     }
    footer .bq{
        padding:10px 0;
    }
    .list_xx table tr td input.qd,.list_xx table tr td input.qx{
    width: 35% !important;
}
.list_xx table tr td{font-size:15px !important;}
}
@media only screen and (max-width: 560px){
    .header_m .m_logo a,
    .header_m .m_logo a img {
        height:60px;
    }
    .menu1{
        top:11px;
        width:36px;
        height:36px;
    }
    .menu1 span{
        margin-left: 25%;
        margin-top: 6px;
    }
    .m_nav{
        top:58px;
        height:calc(100% - 58px);
    }
    .m_nav ul,.m_nav .search3,.m_nav{
        width:100%;
    }
    .m_nav ul>li>a{
        font-size:16px;
        line-height: 40px;
    }
    .m_nav ul li i{
        height: 40px;
    }
    .m_nav ul li ol>li{
        font-size:14px;
        line-height: 36px;
    }
}
@media only screen and (max-width: 460px){

}