* {
    box-sizing: border-box;
}


/*banner背景图片动画*/

@-webkit-keyframes scale-bg {
    from {
        -webkit-transform: scale(1.2);
        transform: scale(1.2);
    }
    to {
        -webkit-transform: scale(1);
        transform: scale(1);
    }
}

@keyframes scale-bg {
    from {
        -webkit-transform: scale(1.2);
        transform: scale(1.2);
    }
    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 6s linear forwards;
    animation: scale-bg 6s 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: 44%;
    right: 10px;
    left: 10px;
    opacity: 0;
    transform: translateY(40px);
    -webkit-transform: translateY(40px);
    -webkit-transition: all 500ms ease;
    transition: all 500ms ease;
}

.index_main .section1 .index_banner .item .inner .block_txt img {
    display: block;
    margin: 0 auto;
}

.index_main .section1 .index_banner .item.active .inner .block_txt {
    opacity: 1;
    -webkit-transform: translateY(0);
    transform: translateY(0);
    -webkit-transition-delay: 100ms;
    transition-delay: 100ms;
}

.index_main .section1 .index_banner .item .inner .block_txt h4 {
    font-size: 30px;
    color: #fff;
    text-align: center;
    font-family: 'COCO';
}

.index_main .section1 .index_banner .item .inner .block_txt h2 {
    color: #fff;
    font-size: 70px;
    font-weight: bold;
    text-align: center;
    letter-spacing: 5px;
}

.index_main .section1 .index_banner .item .inner .block_txt h2 span {
    color: #f5c920;
    display: inline-block;
    letter-spacing: 5px;
}

.index_main .section1 .index_banner .item .inner .block_txt h3 {
    color: #fff;
    font-size: 22px;
    text-align: center;
    margin-top: 10px;
    letter-spacing: 3px;
}

.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;
}

@media only screen and (max-width: 1600px) {
    .index_main .section1 .index_banner .item .inner .block_txt h4 {
        font-size: 28px;
    }
    .index_main .section1 .index_banner .item .inner .block_txt h2 {
        font-size: 60px;
    }
    .index_main .section1 .index_banner .item .inner .block_txt h3 {
        font-size: 20px;
    }
}

@media only screen and (max-width: 1440px) {
    .index_main .section1 .index_banner .item .inner .block_txt h4 {
        font-size: 24px;
    }
    .index_main .section1 .index_banner .item .inner .block_txt h2 {
        font-size: 40px;
    }
    .index_main .section1 .index_banner .item .inner .block_txt h3 {
        font-size: 18px;
        margin-top: 5px;
    }
}

@media only screen and (max-width: 1366px) {
    .index_main .section1 .index_banner .item .inner .block_txt h4 {
        font-size: 20px;
    }
    .index_main .section1 .index_banner .item .inner .block_txt h2 {
        font-size: 26px;
    }
    .index_main .section1 .index_banner .item .inner .block_txt h3 {
        font-size: 16px;
    }
    .index_main .section1 .index_banner .slick-arrow {
        background-size: auto 30px;
    }
}

@media only screen and (max-width: 1300px) {}

@media only screen and (max-width: 1199px) {
    .index_main .section1 .index_banner .item .inner .block_txt h4 {
        font-size: 18px;
    }
    .index_main .section1 .index_banner .item .inner .block_txt h2 {
        font-size: 22px;
    }
    .index_main .section1 .index_banner .item .inner .block_txt h3 {
        font-size: 14px;
    }
}

@media only screen and (max-width: 992px) {
    .index_main .section1 .index_banner .item {
        height: 100vh;
    }
    .index_main .section1 .index_banner .item .inner .block_txt {
        left: 0;
        right: 0;
        margin: 0 auto;
        padding: 0 20px;
        top: 42%;
    }
    .index_main .section1 .index_banner .slick-arrow {
        display: none !important;
    }
    .index_main .section1 .index_banner .slick-dots {
        position: absolute;
        bottom: 12px;
    }
    .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;
    }
}

@media only screen and (max-width: 767px) {}

@media only screen and (max-width: 340px) {}

@media only screen and (max-width: 320px) {}

#menu {
    margin: 0;
    padding: 0;
    position: fixed;
    height: 100%;
    right: 0px;
    top: 40;
    padding-top: 112px;
    list-style-type: none;
    z-index: 70;
    width: 50px;
}

#menu li {
    width: 100%;
    height: 25%;
    font-size: 14px;
    background: #0a0b0b;
    overflow: hidden;
}

#menu li img {
    display: block;
    margin: 10px auto;
    margin-top: 60px;
}

#menu a {
    display: block;
    margin: 0 auto;
    color: #fff;
    text-align: center;
    font-size: 15px;
    line-height: 30px;
}

#menu .active {
    background: #11488b
}

#menu .active a {
    background: #11488b;
}

@-webkit-keyframes twinkling {
    0% {
        opacity: 0.3;
    }
    50% {
        opacity: 0.5;
    }
    70% {
        opacity: 0.7;
    }
    100% {
        opacity: 1;
    }
}

@keyframes twinkling {
    0% {
        opacity: 0.3;
    }
    50% {
        opacity: 0.5;
    }
    70% {
        opacity: 0.7;
    }
    100% {
        opacity: 1;
    }
}

@-moz-keyframes twinkling {
    0% {
        opacity: 0.3;
    }
    50% {
        opacity: 0.5;
    }
    70% {
        opacity: 0.7;
    }
    100% {
        opacity: 1;
    }
}

.section {
    position: relative;
}


/* .section1{background:url(../images/page1_bg.jpg) no-repeat center center;background-size:cover; height: 100% !important;} */

.section2 {
    background: url(../images/page2_bg.jpg) no-repeat center center;
    background-size: cover;
    height: 100% !important;
}

.section3 {
    background: url(../images/page3_bg.jpg) no-repeat center center;
    background-size: cover;
    height: 100% !important;
}

.section4 {
    background: url(../images/page4_bg.jpg) no-repeat center center;
    background-size: cover;
    height: 100% !important;
}

.section5 {
    background: url(../images/page5_bg.jpg) no-repeat center center;
    background-size: cover;
    height: 100% !important;
}

.section1 .wrap {
    width: 1200px;
    left: 490px;
    position: absolute;
    top: 50%;
    left: 50%;
    margin-left: -600px;
    margin-top: -190px;
}

.section1 .pagetxt {
    width: 1245px;
    height: 340px;
    top: -1900px;
    left: -1940px;
    background: url(../images/pagetxtbg.png) repeat;
}

.section1 .s {
    position: absolute;
}

.section1 ul {
    text-align: left;
    width: 885px;
    float: right;
    padding: 65px 50px;
    font-size: 0;
    vertical-align: top;
    overflow: hidden;
}

.section1 ul h2 {
    font-size: 36px;
    color: #f0cf90;
    font-weight: normal;
    text-align: left;
    padding-bottom: 15px;
}

.section1 ul h3 {
    font-size: 20px;
    color: #fefdfc;
    font-style: italic;
    font-weight: normal;
    text-align: left;
    margin-bottom: 30px;
}

.section1 ul li {
    overflow: hidden;
    display: inline-block;
    margin-right: 40px;
    width: 103px;
    height: 103px;
    text-align: center;
    line-height: 30px;
    padding-top: 35px;
    font-size: 18px;
    border: 1px solid #f0d196;
    border-radius: 50%;
    color: #f0d196
}

.section1 ul li p {
    width: 220px;
    height: 45px;
    line-height: 45px;
    color: #f4f9f8;
    font-size: 18px;
    background: #007d3c;
    text-align: center;
    margin-top: 20px;
}

.section1 ul li.yuansu5 {
    padding-top: 20px;
}

.section1 .pro {
    top: 140px;
    left: 60px;
}

.section1 .title {
    margin: 0 auto;
    display: block
}

.section1 .icos {
    top: 195px;
    left: 626px;
}

.section1 .text {
    top: 345px;
    left: 626px;
}

.section1 .more {
    top: 458px;
    left: 640px;
    width: 152px;
    height: 50px;
    line-height: 50px;
    text-align: center;
    background: #f37125;
    color: #fff;
    font-size: 24px;
}

.section2 .wrap {
    width: 1200px;
    position: absolute;
    top: 43%;
    left: 50%;
    margin-left: -600px;
    margin-top: -220px;
}

.section2 .s {
    position: absolute;
}


/* 本例子css */

.prolist .l {
    background: url(../images/pl.png) no-repeat right top;
    width: 855px;
    padding: 0 16px;
    box-sizing: border-box;
    float: left;
}

.prolist .l ul li {
    width: 826px;
    height: 138px;
    background: #0152a7;
    margin-top: 22px;
    color: #fff;
    padding: 0 20px;
    box-sizing: border-box;
    font-size: 17px;
    line-height: auto;
    overflow: hidden;
    padding-top: 20px;
    cursor: pointer;
    text-align: center;
}

.prolist .l ul li.active {
    background: #f9ab15;
}

.prolist .l ul li i {
    font-family: Impact, Haettenschweiler, 'Arial Narrow Bold', sans-serif;
    font-size: 55px;
    font-weight: bold;
    display: block;
    padding-right: 50px;
    padding-top: 12px;
    float: left;
}

.prolist .l ul li.licomon {
    padding-top: 26px;
}

.prolist .l ul li.licomon i {
    padding-top: 0;
}

a.test {
    font-size: 18px;
}

a.test:hover {
    font-size: 29px;
}

.prolist .r {
    width: 742px;
    float: right;
}

.prolist .r .box {
    display: none
}

.prolist .r .top {
    height: 283px;
    background: url(../images/pro2.png) no-repeat center;
    overflow: hidden;
    padding: 0 27px;
    position: relative;
}

.prolist .r .top .img {
    position: absolute;
    right: 52px;
    top: 40px;
}

.prolist .r .top p {
    color: #1b1b1b;
    font-size: 14px;
    line-height: 30px;
}

.prolist .r .top a.amore {
    width: 48px;
    height: 45px;
    display: block;
    right: 0;
    top: 0;
    position: absolute;
}

.prolist .r .top h2 {
    font-size: 18px;
    color: #0152a7;
    margin-top: 55px;
    margin-bottom: 15px;
}

.prolist .r ul li {
    width: 300px;
    /* height: 111px;
    */
    border: 5px solid #0152a7;
    float: left;
    margin-right: 13px;
    box-sizing: content-box;
    background: #fff;
}

.prolist .r ul {
    margin-top: 30px;
}

.prolist .r ul li img {
    width: 165px;
    height: 111px;
    transition: all ease-in-out 0.5s;
}

.prolist .r ul li p {
    font-size: 16px;
    color: #11488b;
    text-align: center;
    height: 40px;
    line-height: 40px;
}

.prolist .r ul li a {
    cursor: pointer;
}

.prolist .r ul li .img1 {
    overflow: hidden;
}

.prolist .r ul li:hover img {
    transform: scale(1.12)
}

.prolist .r ul li:hover {
    border: 5px solid #f9ab15;
}

.ban {
    width: 1051px;
    height: 660px;
    position: absolute;
    overflow: hidden;
    margin: 40px auto 0 auto;
    top: 0px;
    left: 68px;
}

.ban2 {
    width: 1051px;
    height: 457px;
    position: relative;
    overflow: hidden;
    margin-bottom: 30px;
}

.ban2 ul {
    position: absolute;
    left: 0;
    top: 0;
}

.ban2 ul li {
    width: 1051px;
    height: 457px;
}

.prev {
    float: left;
    cursor: pointer;
}

.num {
    height: 142px;
    overflow: hidden;
    width: 817px;
    position: relative;
    margin: 0 auto;
}

.min_pic {
    width: 948px;
    position: relative;
    left: 58px;
}

.num ul {
    position: absolute;
    left: 0;
    top: 0;
}

.num ul li {
    height: 142px;
    width: 142px;
    margin: 0px 10px;
}

.num ul li img {
    border: 5px solid #b8d9ed;
    width: 132px;
    height: 132px;
    border-radius: 132px;
    background: #fff;
}

.num ul li.on img {
    border: 5px solid #fc9c05;
}

.next_btn1,
.prev_btn1 {
    position: absolute;
    top: 55px;
    cursor: pointer;
}

.next_btn1 {
    right: 0px;
}

.prev_btn1 {
    left: 0px;
}

.next_btn1 img,
.prev_btn1 img {
    display: block;
}


/* 本例子css */

.pro-list {
    width: 973px;
    height: 146px;
    overflow: hidden;
    position: absolute;
    top: 489px;
    left: 124px;
}

.pro-list .bd {
    padding: 0px;
    width: 817px;
    position: absolute;
    top: 0px;
    left: 58px;
}

.pro-list .bd ul {
    overflow: hidden;
    zoom: 1;
}

.pro-list .bd ul li {
    margin: 0 0px;
    float: left;
    overflow: hidden;
    height: 142px;
    width: 142px;
    margin: 0px 10px;
}

.pro-list .bd ul li img {
    border: 5px solid #b8d9ed;
    width: 132px;
    height: 132px;
    border-radius: 132px;
    background: #fff;
}

.pro-list .hd {
    width: 948px;
    position: absolute;
    top: 0px;
    left: 0px;
    z-index: 0;
}

.pro-list .next,
.pro-list .prev {
    position: absolute;
    top: 55px;
}

.pro-list .next {
    left: 0px;
}

.pro-list .prev {
    right: 0px;
}

.section3 .wrap {
    width: 1200px;
    height: 440px;
    position: absolute;
    top: 50%;
    left: 50%;
    margin-left: -600px;
    margin-top: -200px;
}

.section3 .l {
    width: 720px;
    /* background: url(../images/about1.png) no-repeat right top; */
    margin: 0 auto;
    padding: 0 25px;
}

.section3 .l {
    margin-top: 30px;
}

.section3 .l img {}

.section3 .l p {
    font-size: 15px;
    color: #fff;
    line-height: 30px;
    margin-top: 20px;
}

.section3 .video {
    margin-top: 30px;
    float: right;
    width: 720px;
    height: 380px;

}


/* 本例子css */

.section4 .wrap {
    width: 1200px;
    height: 565px;
    position: absolute;
    top: 50%;
    left: 50%;
    margin-left: -600px;
    margin-top: -200px;
}

.section4 .title {
    position: relative;
}

.section4 .title a.amore {
    position: absolute;
    right: 38px;
    top: 0;
    display: block;
    width: 31px;
    height: 31px;
}


/* 本例子css */

.picScroll-left {
    width: 100%;
    overflow: hidden;
    position: relative;
    margin-top: 40px;
}

.picScroll-left .hd {
    overflow: hidden;
    height: 30px;
    padding: 0 10px;
    margin-top: 20px;
}

.picScroll-left .hd .prev,
.picScroll-left .hd .next {
    display: block;
    width: 5px;
    height: 9px;
    float: right;
    margin-right: 5px;
    margin-top: 10px;
    overflow: hidden;
    cursor: pointer;
    background: url("images/arrow.png") no-repeat;
}

.picScroll-left .hd .next {
    background-position: 0 -50px;
}

.picScroll-left .hd .prevStop {
    background-position: -60px 0;
}

.picScroll-left .hd .nextStop {
    background-position: -60px -50px;
}

.picScroll-left .hd ul {
    width: 100%;
    overflow: hidden;
    zoom: 1;
    margin-top: 10px;
    zoom: 1;
    text-align: center;
}

.picScroll-left .hd ul li {
    display: inline-block;
    width: 9px;
    height: 9px;
    border-radius: 50%;
    background: #a5a4a4;
    overflow: hidden;
    margin-right: 15px;
    text-indent: -999px;
    cursor: pointer;
}

.picScroll-left .hd ul li.on {
    background: #0455b5
}

.picScroll-left .bd {
    padding: 10px;
}

.picScroll-left .bd ul {
    overflow: hidden;
    zoom: 1;
}

.picScroll-left .bd ul li {
    margin: 0 8px;
    float: left;
    _display: inline;
    overflow: hidden;
    text-align: center;
    width: 362px
}

.picScroll-left .bd ul li .pic {
    text-align: center;
}

.picScroll-left .bd ul li .pic img {
    width: 362px;
    height: 230px;
    display: block;
    padding: 2px;
    border: 1px solid #ccc;
}

.picScroll-left .bd ul li .pic a:hover img {
    border-color: #999;
}

.picScroll-left .bd ul li .title {
    line-height: 24px;
    height: 65px;
    border-bottom: 1px solid #bab9ba;
    line-height: 65px;
    color: #fff;
    background: url(../images/bgg.png) repeat-x center;
}

.picScroll-left .bd ul li .title a {
    color: #fff;
    text-align: left;
    display: block;
    padding: 0 10px;
    font-size: 16px;
}

.picScroll-left .bd ul li .title span {
    float: right;
}

.copyRightBox {
    width: 1200px;
    height: 100vh;
    position: absolute;
    top: 0px;
    left: 0px;
    z-index: 0;
    width: 100%;
}

#copyRight {
    position: absolute;
    bottom: 32px;
    width: 100%;
    left: 0px;
    text-align: center;
    color: #fcfbfb;
    font-size: 16px;
    z-index: 1;
}

#copyRight a {
    color: #fcfbfb;
}

@media (min-width: 1400px) {
    #menu {
        right: 0%;
    }
}

.footerss .fp-tableCell {
    display: block!important;
    height: 480px !important;
}

.footerss .fp-tableCell {
    display: block!important;
}