﻿
/* Banner */
.leftUp img {
    -webkit-animation-name: leftUp;
    animation-name: leftUp;
}

@-webkit-keyframes leftUp {
    0% {
        transform: scale(1.1,1.1) translate(4.545%,4.545%);
    }

    100% {
        transform: scale(1.1,1.1) translate(-4.545%,-4.545%);
    }
}

@keyframes leftUp {
    0% {
        transform: scale(1.1,1.1) translate(4.545%,4.545%);
    }

    100% {
        transform: scale(1.1,1.1) translate(-4.545%,-4.545%);
    }
}

.moveRight img {
    -webkit-animation-name: moveRight;
    animation-name: moveRight;
}

@-webkit-keyframes moveRight {
    0% {
        transform: scale(1.1,1.1) translate(-4.545%,0);
    }

    100% {
        transform: scale(1.1,1.1) translate(4.545%,0);
    }
}

@keyframes moveRight {
    0% {
        transform: scale(1.1,1.1) translate(-4.545%,0);
    }

    100% {
        transform: scale(1.1,1.1) translate(4.545%,0);
    }
}

.moveDown img {
    -webkit-animation-name: moveDown;
    animation-name: moveDown;
}

@-webkit-keyframes moveDown {
    0% {
        transform: scale(1.1,1.1) translate(0,-4.545%);
    }

    100% {
        transform: scale(1.1,1.1) translate(0,4.545%);
    }
}

@keyframes moveDown {
    0% {
        transform: scale(1.1,1.1) translate(0,-4.545%);
    }

    100% {
        transform: scale(1.1,1.1) translate(0,4.545%);
    }
}

.centerBig img {
    -webkit-animation-name: centerBig;
    animation-name: centerBig;
}

@-webkit-keyframes centerBig {
    100% {
        transform: scale(1.1,1.1);
    }
}

@keyframes centerBig {
    100% {
        transform: scale(1.1,1.1);
    }
}

.rightDownBig img {
    -webkit-animation-name: rightDownBig;
    animation-name: rightDownBig;
}

@-webkit-keyframes rightDownBig {
    100% {
        transform: scale(1.1,1.1) translate(4%,4%);
    }
}

@keyframes rightDownBig {
    100% {
        transform: scale(1.1,1.1) translate(4%,4%);
    }
}

.swiper-slide img {
    animation-duration: 5s;
    animation-timing-function: linear;
    animation-fill-mode: forwards;
    -webkit-animation-duration: 5s;
    -webkit-animation-timing-function: linear;
    -webkit-animation-fill-mode: forwards;
}


/* news */
.news {
    width: 100%;
}

    .news div {
        border: 0px solid blue;
        padding: 0px;
    }

    .news .newsLeft .newsLeftTitle {
        margin-bottom: 10px;
    }

        .news .newsLeft .newsLeftTitle a {
            color: #687074;
        }

            .news .newsLeft .newsLeftTitle a:hover {
                color: #FF6600;
            }

    .news .newsLeft .newsLeftContent {
        border: 0px solid blue;
        padding-left: 0px;
    }

        .news .newsLeft .newsLeftContent ul {
            margin-left: 0px;
            padding-left: 20px;
        }

            .news .newsLeft .newsLeftContent ul li {
                margin-top: 20px;
                color: #687074;
                font-size: 14px;
                list-style-type: none;
            }

                .news .newsLeft .newsLeftContent ul li a {
                    color: #687074;
                    font-size: 16px;
                }

                    .news .newsLeft .newsLeftContent ul li a:hover {
                        color: #FF6600;
                        text-decoration: none;
                    }

        .news .newsLeft .newsLeftContent .newsLeftContentBottom {
            margin-top: 20px;
            margin-right: 30px;
            font-size: 16px;
            color: #687074;
            float: right;
            text-decoration: underline;
        }

            .news .newsLeft .newsLeftContent .newsLeftContentBottom:hover {
                color: #FF6600;
            }

    .news .newsRight {
        padding-left: 20px;
    }

        .news .newsRight .newsRightTitle {
            margin-bottom: 10px;
        }

            .news .newsRight .newsRightTitle a {
                color: #687074;
            }

                .news .newsRight .newsRightTitle a:hover {
                    color: #FF6600;
                }

        .news .newsRight .newsRightContent {
            border: 0px solid blue;
        }

            .news .newsRight .newsRightContent .newsRightContentLeft {
                margin-left: 30px;
                width: 300px;
                float: left;
                overflow: hidden;
            }

            .news .newsRight .newsRightContent .newsRightContentRight {
                margin-left: 80px;
                width: 300px;
                float: left;
                overflow: hidden;
            }

            .news .newsRight .newsRightContent div {
                border: 0px solid blue;
            }

                .news .newsRight .newsRightContent div a {
                    color: #687074;
                    font-size: 16px;
                    border: 0px solid red;
                }

                    .news .newsRight .newsRightContent div a:hover {
                        text-decoration: none;
                        color: #FF6600;
                    }

                    .news .newsRight .newsRightContent div a img {
                        width: 300px;
                        height: 150px;
                    }

                    .news .newsRight .newsRightContent div a span {
                        width: 300px;
                    }

/* solution */
.solution .solutionLeft {
    padding-left: 0px;
    padding-right: 0px;
    width: 655px;
    border: 1px solid green;
}

.solution .solutionLeft:hover .solutionLeftMask {
    opacity: 1;
    -webkit-transition: all .8s ease 0s;
    -moz-transition: all .8s ease 0s;
    -ms-transition: all .8s ease 0s;
    -o-transition: all .8s ease 0s;
    transition: all .8s ease 0s;
}

.solution .solutionLeft:hover .solutionLeftImage img {
    margin-left: -30px;
    -webkit-transition: all .8s ease 0s;
    -moz-transition: all .8s ease 0s;
    -ms-transition: all .8s ease 0s;
    -o-transition: all .8s ease 0s;
    transition: all .8s ease 0s;
}

.solution .solutionLeft:hover .solutionLeftText {
    margin-top: -30px;
    opacity: 1;
    -webkit-transition: all .8s ease 0s;
    -moz-transition: all .8s ease 0s;
    -ms-transition: all .8s ease 0s;
    -o-transition: all .8s ease 0s;
    transition: all .8s ease 0s;
}

.solution .solutionLeft:hover .solutionLeftText dd {
    opacity: 1;
    -webkit-transition: all .8s ease 0s;
    -moz-transition: all .8s ease 0s;
    -ms-transition: all .8s ease 0s;
    -o-transition: all .8s ease 0s;
    transition: all .8s ease 0s;
}

.solution .solutionLeft .solutionLeftImage {
    padding-left: 0px;
    padding-right: 0px;
    height: 650px;
    overflow-x: hidden;
}

.solution .solutionLeft .solutionLeftMask {
    opacity: 0;
    z-index: 1;
    position: absolute;
    left: 0px;
    top: 0px;
    background-color: rgba(0,0,0,0.4);
    height: 650px;
}

.solution .solutionLeft .solutionLeftText {
    z-index: 2;
    position: absolute;
    left: 10%;
    top: 80%;
    color: white;
}

.solution .solutionLeft .solutionLeftText dt {
    font-size: 36px;
}

.solution .solutionLeft .solutionLeftText dd {
    opacity: 0;
    margin-top: 20px;
    font-size: 20px;
}


.solution .solutionRight {
    padding-left: 0px;
    padding-right: 0px;
    width: 480px;
}

.solution .solutionRight .solutionRightOne {
    margin-left: 45px;
    padding-left: 0px;
    padding-right: 0px;
    border: 0px solid blue;
}

.solution .solutionRight .solutionRightOne:hover .solutionRightMask {
    opacity: 1;
    -webkit-transition: all .8s ease 0s;
    -moz-transition: all .8s ease 0s;
    -ms-transition: all .8s ease 0s;
    -o-transition: all .8s ease 0s;
    transition: all .8s ease 0s;
}

.solution .solutionRight .solutionRightOne:hover .solutionRightImage img {
    margin-left: -30px;
    -webkit-transition: all .8s ease 0s;
    -moz-transition: all .8s ease 0s;
    -ms-transition: all .8s ease 0s;
    -o-transition: all .8s ease 0s;
    transition: all .8s ease 0s;
}

.solution .solutionRight .solutionRightOne:hover .solutionRightText {
    margin-top: -30px;
    opacity: 1;
    -webkit-transition: all .8s ease 0s;
    -moz-transition: all .8s ease 0s;
    -ms-transition: all .8s ease 0s;
    -o-transition: all .8s ease 0s;
    transition: all .8s ease 0s;
}

.solution .solutionRight .solutionRightOne:hover .solutionRightText dd {
    opacity: 1;
    -webkit-transition: all .8s ease 0s;
    -moz-transition: all .8s ease 0s;
    -ms-transition: all .8s ease 0s;
    -o-transition: all .8s ease 0s;
    transition: all .8s ease 0s;
}

.solution .solutionRight .solutionRightTwo {
    margin-left: 45px;
    margin-top: 28px;
    padding-left: 0px;
    padding-right: 0px;
    border: 0px solid blue;
}

.solution .solutionRight .solutionRightTwo:hover .solutionRightMask {
    opacity: 1;
    -webkit-transition: all .8s ease 0s;
    -moz-transition: all .8s ease 0s;
    -ms-transition: all .8s ease 0s;
    -o-transition: all .8s ease 0s;
    transition: all .8s ease 0s;
}

.solution .solutionRight .solutionRightTwo:hover .solutionRightImage img {
    margin-left: -30px;
    -webkit-transition: all .8s ease 0s;
    -moz-transition: all .8s ease 0s;
    -ms-transition: all .8s ease 0s;
    -o-transition: all .8s ease 0s;
    transition: all .8s ease 0s;
}

.solution .solutionRight .solutionRightTwo:hover .solutionRightText {
    margin-top: -30px;
    opacity: 1;
    -webkit-transition: all .8s ease 0s;
    -moz-transition: all .8s ease 0s;
    -ms-transition: all .8s ease 0s;
    -o-transition: all .8s ease 0s;
    transition: all .8s ease 0s;
}

.solution .solutionRight .solutionRightTwo:hover .solutionRightText dd {
    opacity: 1;
    -webkit-transition: all .8s ease 0s;
    -moz-transition: all .8s ease 0s;
    -ms-transition: all .8s ease 0s;
    -o-transition: all .8s ease 0s;
    transition: all .8s ease 0s;
}

.solution .solutionRight .solutionRightThree {
    margin-left: 45px;
    margin-top: 28px;
    padding-left: 0px;
    padding-right: 0px;
    border: 0px solid blue;
}

.solution .solutionRight .solutionRightThree:hover .solutionRightMask {
    opacity: 1;
    -webkit-transition: all .8s ease 0s;
    -moz-transition: all .8s ease 0s;
    -ms-transition: all .8s ease 0s;
    -o-transition: all .8s ease 0s;
    transition: all .8s ease 0s;
}

.solution .solutionRight .solutionRightThree:hover .solutionRightImage img {
    margin-left: -30px;
    -webkit-transition: all .8s ease 0s;
    -moz-transition: all .8s ease 0s;
    -ms-transition: all .8s ease 0s;
    -o-transition: all .8s ease 0s;
    transition: all .8s ease 0s;
}

.solution .solutionRight .solutionRightThree:hover .solutionRightText {
    margin-top: -30px;
    opacity: 1;
    -webkit-transition: all .8s ease 0s;
    -moz-transition: all .8s ease 0s;
    -ms-transition: all .8s ease 0s;
    -o-transition: all .8s ease 0s;
    transition: all .8s ease 0s;
}

.solution .solutionRight .solutionRightThree:hover .solutionRightText dd {
    opacity: 1;
    -webkit-transition: all .8s ease 0s;
    -moz-transition: all .8s ease 0s;
    -ms-transition: all .8s ease 0s;
    -o-transition: all .8s ease 0s;
    transition: all .8s ease 0s;
}

.solution .solutionRight .solutionRightImage {
    padding-left: 0px;
    padding-right: 0px;
    overflow-x: hidden;
    height: 198px;
}

.solution .solutionRight .solutionRightMask {
    opacity: 0;
    z-index: 1;
    position: absolute;
    left: 0px;
    top: 0px;
    background-color: rgba(0,0,0,0.4);
    height: 198px;
}

.solution .solutionRight .solutionRightText {
    z-index: 2;
    position: absolute;
    left: 10%;
    top: 65%;
    color: white;
}

.solution .solutionRight .solutionRightText dt {
    font-size: 25px;
    font-weight: 500;
}

.solution .solutionRight .solutionRightText dd {
    opacity: 0;
    margin-top: 10px;
    font-size: 15px;
}

/* fsbanner */
.fsbanner {
    width: 100%;
}

    .fsbanner > div {
        width: 180px;
        float: left;
        height: 300px;
        overflow: hidden;
        position: relative;
        margin-right: 30px;
        background: url(../img/a_bg2.png) no-repeat -1100px bottom;
        transition: background 1s;
        -moz-transition: background 1s; /* Firefox 4 */
        -webkit-transition: background 1s; /* Safari 和 Chrome */
        -o-transition: background 1s; /* Opera */
    }

    .fsbanner .active {
        background: url(../img/a_bg2.png) no-repeat left bottom;
        border-bottom: 4px solid #F76809;
    }

    .fsbanner .div1 {
        width: 550px;
        
    }

        .fsbanner .div1 .pic_box {
            width: 280px;
            height: 259px;
        }

            .fsbanner .div1 .pic_box > img {
                width: 280px;
                height: 260px;
            }

        .fsbanner .div1 .text {
            left: 280px;
            opacity: 1;
        }

        .fsbanner .div1 .fs_text {
            height: 160px;
        }

.fs_text div {
    display: inline-block;
    padding-bottom: 20px;
    border-bottom: 1px solid #b5b5b5;
}

.fs_text h2 {
    margin-bottom: 5px;
}

.fsbanner > div .pic_box {
    width: 179px;
    float: left;
    height: 299px;
    border: 1px solid #ccc;
    border-top: none;
    border-right: none;
    text-align: center;
    overflow: hidden;
    position: absolute;
    left: 0;
    top: 0;
    z-index: 100;
    background: #f7f7f7;
}

.fsbanner > div .pic_box > img {
    display: block;
    width: 180px;
    height: 170px;
}

.fsbanner > div .pic_box .fs_text {
    width: 178px;
    height: 160px;
    border-right: 1px solid #ccc;
}

.fsbanner > div .pic_box .fs_text h2 {
    line-height: 45px;
}

.fsbanner > div .pic_box .fs_text div {
}

.fsbanner > div .text {
    /*
            width: 209px;
            height: 178px;
            */
    width: 260px;
    height: 260px;
    padding: 40px 30px;
    border: 1px solid #ccc;
    border-left: none;
    float: left;
    position: absolute;
    left: 0;
    top: 0;
    z-index: 99;
    background: #f7f7f7;
    opacity: 0;
}

.fsbanner > div .text h2 {
    font-size: 18px;
    color: #333333;
    padding-left: 30px;
    background: url(../img/8.jpg) no-repeat left center;
    margin-bottom: 20px;
}

.fsbanner > div .text h3 {
    font-size: 12px;
    color: #808080;
    line-height: 25px;
    margin-bottom: 30px;
    height: 75px;
    overflow: hidden;
}

.fsbanner > div .text a {
    font-size: 12px;
    color: #b41b26;
    text-decoration: underline;
    text-decoration-color: #b41b26;
    font-weight: bold;
}

.fsbanner > div .text a:hover {
    color: #ff0012;
}

.fs_slide {
    width: 100%;
    background: #f7f7f7;
    padding: 60px 0;
}

.bottom_hr {
    display: none;
    width: 100%;
    margin: 0;
    border: 3px solid #0e76b4;
    position: relative;
    top: 371px;
    z-index: 200;
}


.text_tit {
    display: block;
    font-size: 15px;
    margin-bottom: 7px;
    color: #737373;
}
