a:hover{text-decoration: none;}
/*banner背景图片动画*/
@-webkit-keyframes scale-bg {
    from {
        -webkit-transform: scale(1.1);
        transform: scale(1.1);
    }

    to {
        -webkit-transform: scale(1);
        transform: scale(1);
    }
}

@keyframes scale-bg {
    from {
        -webkit-transform: scale(1.1);
        transform: scale(1.1);
    }

    to {
        -webkit-transform: scale(1);
        transform: scale(1);
    }
}

/*banner */
.index_main {
    background: #f7f7f7;
}

.index_main .section1 {
    position: relative;
}

.index_main .section1 .index_banner .item {
    background-size: cover;
    -webkit-background-size: cover;
    background-position: center;
    background-repeat: no-repeat;
    height: 100vh;
    position: relative;
}

.index_main .section1 .index_banner .item.slick-current .scaleBg {
    visibility: visible;
    -webkit-animation: scale-bg 8s linear forwards;
    animation: scale-bg 8s linear forwards;
}

.index_main .section1 .index_banner .items {
    background-size: cover;
    background-position: center center;
    background-repeat: no-repeat;
    position: absolute;
    left: 0;
    top: 0;
    width: 100%;
    height: 100%;
    z-index: 0;
}

/* .index_main .section1 .index_banner .items:after{
	content: "";
	display: block;
	width: 100%;
	height: 100%;
	position: absolute;
	left: 0;
	top: 0;
	background: rgba(0,0,0,0.2);
} */
.index_main .section1 .index_banner .item .inner .block_txt {
    position: absolute;
    top: 30%;
    right: 10px;
    left: 10px;
    opacity: 0;
    transform: translateY(40px);
    -webkit-transform: translateY(40px);
    -webkit-transition: all 500ms ease;
    transition: all 500ms ease;
    /*text-shadow: 0 0 10px #333;*/
}

.index_main .section1 .index_banner .item.active .inner .block_txt {
    width: 90%;
    max-width:1000px;
    margin: auto;
    opacity: 1;
    -webkit-transform: translateY(0);
    transform: translateY(0);
    -webkit-transition-delay: 100ms;
    transition-delay: 100ms;
    text-align: center;
}

.index_main .section1 .index_banner .item .inner .block_txt h3 {
    font-size: 30px;
    color: #fff;
    text-align: center;
    font-family: 'COCO';
}

.index_main .section1 .index_banner .item .inner .block_txt h1 {
    color: #fff;
    font-size: 50px;
    font-weight: bold;
    text-align: center;
    letter-spacing: 5px;
}


.index_main .section1 .index_banner .item .inner .block_txt p {
    color: #fff;
    font-size: 15px;
    text-align: center;
    margin-top: 20px;
}
.index_main .section1 .index_banner .item .inner .block_txt a{
    color: #fff;
    display: inline-block;
    padding: 10px 50px;
    border: 2px solid #fff;
    border-radius: 5px;
    margin-top: 20px;
}
.index_main .section1 .index_banner .item .inner .block_txt a:hover{
    background: #ff9900;
    border-color: #ff9900;
}

.index_main .section1 .slick_txt {
    width: 30%;
    height: 100%;
    background-color: transparent;
    transition: all 500ms ease;
    -webkit-transition: all 500ms ease;
    background-repeat: no-repeat;
    position: absolute;
    top: 0;
    font-size: 0;
    outline: none;
    border: 0;
}

.index_main .section1 .left {
    left: 0;
}

.index_main .section1 .right {
    right: 0;
}

.index_main .section1 .slick_txt:hover .slick_arrow {
    opacity: 1;
    visibility: visible;
}

.index_main .section1 .slick_txt .slick_arrow {
    width: 20px;
    height: 36px;
    background-repeat: no-repeat;
    background-position: center;
    margin-top: -18px;
    position: absolute;
    top: 50%;
    cursor: pointer;
    transition: all 500ms ease;
    -webkit-transition: all 500ms ease;
    opacity: 0;
    visibility: hidden;
}

.index_main .section1 .slick_txt .prev {
    background-image: url(../images/ban_prev.png);
    left: 60px;
}

.index_main .section1 .slick_txt .next {
    background-image: url(../images/ban_next.png);
    right: 60px;
}

.index_main .section1 .slick_txt .prev:hover {
    background-image: url(../images/ban_prev_hover.png);
}

.index_main .section1 .slick_txt .next:hover {
    background-image: url(../images/ban_next_hover.png);
}

.index_main .section1 .number {
    position: absolute;
    bottom: 8%;
    left: 50%;
    padding-bottom: 5px;
    border-bottom: 1px solid rgba(255, 255, 255, 0.2);
    display: table;
    padding: 0 20px;
    width: auto;
    text-align: center;
    transform: translateX(-50%);
    -webkit-transform: translateX(-50%);
}

.index_main .section1 .number span {
    font-family: "Myriad Pro", "Microsoft YaHei";
    font-size: 14px;
    color: #fff;
    margin-right: 100px;
    display: inline-block;
    cursor: pointer;
    position: relative;
    transition: all 500ms ease;
    -webkit-transition: all 500ms ease;
}

.index_main .section1 .number span:last-child {
    margin-right: 0;
}

.index_main .section1 .number span:after {
    content: "";
    display: inline-block;
    width: 0;
    height: 2px;
    background: #fff;
    position: absolute;
    left: 50%;
    transform: translateX(-50%);
    -webkit-transform: translateX(-50%);
    bottom: -20px;
    opacity: 0;
    visibility: hidden;
    transition: all 500ms ease;
    -webkit-transition: all 500ms ease;
}

.index_main .section1 .number span.active:after {
    width: 100%;
    opacity: 1;
    visibility: visible;
}

.index_main .section2 {
    background: #f5f5f5;
    background: url(../images/bg01.jpg) no-repeat;
    background-size: 100% auto;
    background-position: center;
}
.index_main .section2 h3 {
    text-align: center;
}

.index_main .section3 {
    width: 100%;
    height: 100%;
    background: url(../images/bg02.jpg) no-repeat;
    background-size: 100% auto;
    background-position: center;
}

.index_main .section3 h3 {
    text-align: center;
}

.index_main .section4 {
    background: url(../images/bg03.jpg) no-repeat;
    background-size: 100% auto;
    background-position: center;
}

.index_main .section4 h3 {
    text-align: center;
}

.index_main .section5 {
    background: url(../images/bg04.jpg) no-repeat;
    background-size: 100% auto;
    background-position: center;
}

.index_main .section5 h3 {
    text-align: center;
}

.index_main .section6 {
    background: url(../images/bg05.jpg) no-repeat;
    background-size: 100% 100%;
    background-position: center;
}

.index_main .section6 h3 {
    text-align: center;
}

.index_main .section7 {
    background: url(../images/bg06.jpg) no-repeat;
    background-size: 100% 100%;
    background-position: center;
}

.index_main .section7 h3 {
    text-align: center;
}

.tit .smenu{ transition: all 0.5s;}


.section .tit{ color: #fff; max-width: 1000px; margin: auto;}
.section .tit h3{ font-size: 24px; }
.section .tit h1{ font-size: 50px; font-weight: bold; letter-spacing: 3px; }
.section .tit p{ font-size: 15px; color: #fff; padding: 15px 0; line-height: 30px; }
.section .tit p a{ font-size: 15px; color: #fff; display: inline-block; padding: 0 10px; }
.section .tit p a:hover{ color:#ff9900; }
.section a.more{ color: #fff; display: inline-block; padding: 10px 50px; border: 2px solid #ddd; border-radius: 5px;margin-top: 20px; }
.section a.more:hover{background: #ff9900; border-color: #ff9900; }


.section6 .box{ max-width: 400px; margin: auto; }
.section6 .box .code{ text-align: center; }
.section6 .box .code img{ display: inline-block; max-width: 200px; }
.section6 .box p{ text-align: center; color: #fff; font-size: 24px; line-height: 30px; }
.section6 .box h3{ font-family: impact; font-size: 40px; color: #fff; text-align: center; font-weight: normal; margin: 0;}
.section6 .box .contact{ text-align: left; color: #fff; line-height: 24px; font-size: 16px; padding-top: 30px;}




.footer{ padding: 0 30px; display: flex; justify-content: space-between; position: fixed; z-index: 9999; bottom: 0; font-size: 12px; width: 100%; height: 40px; line-height: 40px; border-top: 1px solid rgba(255, 255, 255, 0.2); color: #fff;}
.footer .rbox{ text-align: right;}
.footer a{ color: #fff;}


.wrapper{ width: 100%; height: 100%; padding-top: 100px; padding-bottom: 50px;}
.wrapper .nybox{ width: 100%; height: auto; overflow: hidden; padding: 30px; background: #fff;position: relative; padding-left: 280px; }

.nybox .sidebar{width: 240px; height: auto; overflow: hidden; float: left; margin-left: -100%;left: -250px; position: relative;  }
.nybox .box{width: 100%; float: left; box-sizing: border-box; height: auto; overflow: hidden; position: relative;}

.side_tit{ background: #ff9900; padding: 20px;}
.side_tit h3{ position: relative; padding-left: 15px; padding-bottom: 10px; color: #fff; font-size: 20px; border-bottom: 1px solid rgba(255, 255, 255, 0.3);}
.side_tit h3::after{ content: ""; display: block; width: 5px; height: 24px; position: absolute; left: 0; top: 0; background: #fff;}
.side_tit p{ color: #fff; font-size: 12px; opacity: 0.5;}
.side_nav{ margin-bottom: 20px; border: 1px solid #ddd; border-top: 0;}
.side_nav h3{ position: relative; line-height: 50px; width: 100%; font-size: 14px; margin: 0; box-sizing: border-box; padding: 0 10px; border-bottom: 1px solid #ddd;}
.side_nav h3 a{ display: inline-block; width: 100%; color: #333;}
.side_nav h3 span{ display: block; text-align: center; font-weight: normal; width: 50px; height: 50px; cursor: pointer; border-left: 1px solid #ddd; position: absolute; right: 0; top: 0;}
.side_nav h3 span::before{ content: "+";}
.side_nav h3 a:hover{ color: #ff9900;}
.side_nav ul{ width: 100%; height: 0; overflow: hidden;}
.side_nav ul.on{ height: auto;}
.side_nav ul.on li:last-child{ border-bottom: 1px solid #ddd; padding-bottom: 15px;}
.side_nav ul.on li:first-child{margin-top: 15px;}
.side_nav ul li{ line-height: 30px; box-sizing: border-box; padding-left: 35px; background: url(../images/dot.png) no-repeat 20px 15px;}
.side_nav ul li a{ display: inline-block; width: 100%; font-size: 15px; color: #666;}
.side_nav ul li:hover a{ color: #ff9900;}
.side_txt h3{ line-height: 50px; background: #ff9900; color: #fff; text-align: center;}
.side_txt p{ border: 1px solid #ddd; line-height: 24px; padding: 15px; text-align: center; border-top: 0;}
.side_txt p small{ font-size: 14px;}
.side_txt p b{ font-size: 24px; color: #ff9900;}

.imglist{ display: flex; justify-content: space-between; align-items: center; flex-wrap: wrap;}
.imglist .item{ width: 32%; margin-bottom: 20px;}
.imglist .item a{ display: block; height: auto; overflow: hidden;}
.imglist01 .item{ width: 23%;}
.imglist .img{ float: left; overflow: hidden; padding: 5px; border: 1px solid #ddd; border-bottom: 0;}
.imglist .img img{ display: block; transition: all .5s;}
.imglist p{ float: left; color: #333; width: 100%; position: relative; background: #ddd; padding:10px; box-sizing: border-box;}
.imglist p::after{ content: "+";position: absolute; right: 0; top: 0; width: 40px; height: 100%; display: flex; justify-content: center; align-items: center; background: #ddd; font-size: 18px;}
.imglist a:hover{ color: #ff9900;}
.imglist a:hover p::after{ transition: all .5s; background: #0061b3; background: #ff9900; color: #fff;}
.imglist a:hover img{ transform: scale(1.1);}

/*分页*/
div.paginationbox{width:100%;height:auto;padding:15px; box-sizing: border-box; border: 1px solid #ddd; text-align: center; margin: auto; overflow:hidden}
ul.pagination{display:inline-block;padding:0;margin:0}
ul.pagination li{display:inline-block;}
ul.pagination li a{color:#000;float:left;font-size:14px;padding:5px 13px;margin:0 5px;text-decoration:none;border:1px solid #ddd}
.pagination li:first-child a,.pagination li:last-child a{border-radius:0}
ul.pagination li.bor0 a{border-color:#fff;cursor:auto}
ul.pagination li a.active,ul.pagination li.thisclass a{color:#fff;border:1px solid #ff9900;cursor:default}
ul.pagination li.thisclass a{ background-color:#ff9900;}
ul.pagination li a:hover:not(.active){background-color:#ff9900;color:#fff;border-color:#ff9900}
ul.pagination li.bor0 a:hover{background:0 0;color:#333;border-color:#fff}
ul.preNext{ width:100%; display: flex; justify-content: space-between; float: left;}
ul.preNext li{ padding: 5px 15px; font-size: 16px;}
ul.preNext li a{color:#333;}
ul.preNext li a:hover{color:#ff9900}
ul.preNext li.pre,ul.preNext li.next{ background: #eee;}

/*newsinfo*/
.newsinfo {width: 100%; height: auto; line-height: 20px; overflow:hidden; border-bottom: 1px dotted #ccc; padding-bottom:5px;text-align:center;color: #666; font-size: 12px;}
.newsinfo span {color: #ff9900; font-family: Georgia, "Times New Roman", Times, serif;font-size: 14px;font-weight: bold;}
.newsinfo a{ display: inline-block; float: right; margin-left: 15px; padding: 5px 25px; background:#ff9900; color: #fff;}
.newsinfo a:last-child{ background: #ff9900;}
.article_box { width: 100%; height: auto; padding: 15px; border: 1px solid #ddd; box-sizing: border-box; overflow: hidden;}
.article_box h1 { text-align: center; padding: 15px;font-size: 24px;}
.detail { width: 100%; height: auto;overflow: hidden; line-height: 24px; padding: 15px 0;}
.detail img {max-width: 100%; width: auto;}

.newlist ul li a{ display: flex; justify-content: space-between; align-items: center; padding-bottom: 20px; margin-bottom: 20px; border-bottom: 1px solid #ddd;}
.newlist .img{ width: 100%; max-width: 20%; overflow: hidden; background: #eee;}
.newlist .txt{ width: 100%; padding-left: 30px;}
.newlist .txt h3{ font-size: 18px; margin: 0; color: #333;}
.newlist .txt p{ font-size: 12px; color: #666; line-height: 18px; padding: 10px 0; margin: 0;}
.newlist .txt span{ color: #aaa;}
.newlist ul li:hover h3{ color: #ff9900;}
.newlist ul li:hover p{  color: #333;}

.list_case .item{ background: #f0f0f0;}


.wrapper .contact{ padding: 30px; box-sizing: border-box; background: rgba(255, 255, 255, 1); height: auto; overflow: hidden; }
.wrapper .contact .left{ width: 50%; float: left;}
.wrapper .contact .right{ width: 50%; float: left; box-sizing: border-box;  padding-left: 50px;}
.wrapper .contact .right img{ box-shadow: 0 0 5px #aaa; }
.contact .message{ width: 100%; height: auto; overflow: hidden;}
.contact .message h3{ text-align: center; font-size: 20px; position: relative;}
.contact .message h3::before{ content: ""; z-index: -2; position: absolute; left: 0; top: 50%; width: 100%; height: 1px; background: #ddd;}
.contact .message h3::after{ content: ""; z-index: -1; position: absolute; left: 50%; margin-left: -60px; top: 50%; width:120px; height: 1px; background: #fff;}
.contact_txt{ width: 40%; float: left; line-height: 40px;}
.message .item{ display: flex; justify-content: space-between; align-items: center; margin-top: 20px; width: 100%; float: left;}
.message input,.message textarea{ border: 0; border: 1px solid #ddd; width: 48%; padding: 0 15px; box-sizing: border-box; line-height: 50px; font-size: 16px;}
.message textarea{ width: 100%;}
.message input.btn{ color: #fff; border: 0; cursor: pointer; background: #ff9900;}
.message a{ color: #333; }


.wrapper .danye{ background: #fff; }




                            #map{ width: 100%; border:1px solid #ddd}
                            #map .anchorBL{display:none}
                            #map #allmap{height:680px}



@media only screen and (max-width: 992px) {

    .wrapper .contact{ padding: 10px; }
    .wrapper .contact .left,.wrapper .contact .right{ width: 100%; padding: 0; }
     #map #allmap{height:300px}

  
    .index_main .section1 .index_banner .slick-arrow {
        display: none !important;
    }

    .index_main .section1 .index_banner .slick-dots {
        position: absolute;
        bottom: 50px;
    }

    .index_main .section1 .index_banner .slick-dots li {
        width: 12px;
        height: 12px;
        border-radius: 50%;
        border: 2px solid #fff;
    }

    .index_main .section1 .index_banner .slick-dots li button {
        display: none;
    }

    .index_main .section1 .index_banner .slick-dots li.slick-active {
        background: #fff;
    }

    .index_main .section1 .number {
        bottom: 12%;
        display: none;
    }

    .index_main .section1 .number span {
        margin-right: 22px;
    }

    .index_main .section1 .number span:after {
        bottom: -14px;
    }

    .index_main .section2,
    .index_main .section2-1,
    .index_main .section3,
    .index_main .section4,
    .index_main .section5,
    .index_main .section6,
    .index_main .section7 {
        background-size: auto 100%;
    }

    .header .left a img {
        height: 35px;
	}
	
	.index_main .section1 .index_banner .item .inner .block_txt h2 { letter-spacing: 0;}
	.footer{ display: block; padding: 0; text-align: center;}
	.section3 .about p{ padding: 0; max-height: 300px; overflow-y: scroll;}
	.section4 .box{ padding:15px 0;}
	.section4 .item{ width: 100%; margin: 0; border-bottom: 1px solid #ddd;}
	.section4 .item p{ font-size: 12px;}
	.section5 .lbox,.section5 .rbox{ width: 100%;}
	.section5 .rbox p{ display: none;}
	.section5 .box{ padding: 10px;}
	.section5 a.item .img{ max-width: 80px;}
    .section6 .box{ width: 100%; padding:30px 10px;}
    .section7 .box{ padding: 0;}
    .section7 .lbox{ width: 100%; height: 150px; overflow: hidden;}
    .section7 .rbox{ width: 100%;}
    .wrapper .nybox{ padding: 10px;}
    .nybox .sidebar{display: none;}
    .nybox .box{width: 100%;}
    .nybox .imglist .item{ width: 48%;}




.index_main .section1 .index_banner .item .inner .block_txt h3 {
    font-size: 18px;
}

.index_main .section1 .index_banner .item .inner .block_txt h1 {
    font-size: 30px;
}


.index_main .section1 .index_banner .item .inner .block_txt p {
    font-size: 10px;
}

.section .tit h3{ font-size: 18px; }
.section .tit h1{ font-size: 30px; }
.section .tit p{ font-size: 10px; }
.section .tit p a{ font-size: 12px;}


}



@media only screen and (max-width: 340px) {}

@media only screen and (max-width: 320px) {}


/* 客服样式 */
#kefu{position:fixed;width:177px;top:20%;z-index:9999;}
.kbtn{width:30px;height:146px;background-repeat:no-repeat;background-position:center 120px;border-radius:5px;font-size:16px;text-align:center;color:#fff;margin-top:120px;cursor:pointer; background-color: #003ed2;}
.kbtn span{background:url(../images/xrn.png) no-repeat 2px 5px;padding-top:35px;display:block;line-height:18px}
.kren span{display:block;background:url(../images/ren.png) no-repeat 0 0;width:100px;height:100px;border-radius:50%;overflow:hidden;margin:10px auto}
.kbox .con{padding:0;padding-bottom:30px; background: #003ed2;}
.kbox .con p{text-align:center;line-height:20px;color:#fff;font-size:12px}
.kbox .con p b{font-size:15px}
.kbox .ewm{text-align:center;font-size:14px;padding:10px 0;background:url(../images/line.png) no-repeat top;color:#fff}
.kbox .ewm img{width:80%; margin: auto; height:auto;margin-top:10px}
.lkefu{left:0}
.lkefu .kbtn{float:right;background-image:url(../images/jt.png)}
.lkefu .kbox{width:135px;float:left;position:relative;border-top-right-radius:50px;border-bottom-left-radius:50px;overflow:hidden;float:right;position:relative}
.rkefu{right:0}
.rkefu .kbtn{float:left;background-image:url(../images/jt1.png)}
.rkefu .kbox{width:145px;border-top-left-radius:50px;border-bottom-right-radius:50px;overflow:hidden;float:right;position:relative; background: #003ed2;}

@media only screen and (max-width: 767px) {
    .newlist ul li a{ display: block;}
    .newlist .img{ max-width: 100%;}
    .newlist .txt{ padding: 15px 0;}
    .imglist .item{ margin-bottom: 0;}




    #kefu{ display: none;}
    .container{ padding: 0;}
    .section3 .box{ padding: 30px;}
    .section7 .rbox{ padding: 15px;}
    .section7 .lbox{ display: none;}


    
.index_main .section2 {
    background: url(../images/mbg01.jpg) no-repeat;
}
.index_main .section2-1 {
    background: url(../images/mbg02.jpg) no-repeat;
}
.index_main .section3 {
    background: url(../images/mbg03.jpg) no-repeat;
}
.index_main .section4 {
    background: url(../images/mbg04.jpg) no-repeat;
}
.index_main .section5 {
    background: url(../images/mbg05.jpg) no-repeat;
}
.index_main .section6 {
    background: url(../images/mbg06.jpg) no-repeat;
}
.index_main .section7 {
    background: url(../images/mbg06.jpg) no-repeat;
}

.index_main .section2,
.index_main .section2-1,
.index_main .section3,
.index_main .section4,
.index_main .section5,
.index_main .section6,
.index_main .section7 {
    background-size: auto 100%;
}



}

.flink{ padding:15px 0; color:#fff; line-height:18px;}
.flink a{display:inline-block; padding:0 5px; color:#fff}

.page-area .box{ background:none; padding:0;text-align:left;}
.page-area .box h3{font-weight:normal;color:#fff;padding:0; margin:0;text-align:left; font-size:18px;}
.page-area .box p a{display:inline-block;font-size:14px;color:#fff;padding-right:15px}
.page-area .box p a:hover{color:#fff}


@media (min-width:1440px) {
 .container {
     width:80%;
    }
}