@charset "utf-8";
/* CSS Document */
.home_body {
    background-color: #f8f8f8
}
.home_body .header {
    position: absolute;
    width: 100%;
    z-index: 200;
    background: url(../images/home_header_bg.png) repeat;
}
.home_body .topNav li a,
.home_body .header .link_a {
    color: #fff
}
.home_body .header .link_a {
    background-image: url(../images/top_icon1_home.png)
}
.home_body .header .logo .img1 {
    display: none
}
.home_body .header .logo .img2 {
    display: inline
}

#fullpage>.section .bg {
    position: absolute;
    top: 0;
    left: 0;
    height: 100%;
    width: 100%;
    background-repeat: no-repeat;
    background-position: center;
    background-size: cover;
    z-index: 1;
}
/*#fullpage>.section.active .bg{*/
/*    animation: slowScale 6s forwards;*/
/*    -webkit-animation: slowScale 6s forwards;*/
/*}*/
@keyframes slowScale {
    0% {
        transform: scale(1)
    }
    100% {
        transform: scale(1.2)
    }
}
@-webkit-keyframes slowScale {
    0% {
        -webkit-transform: scale(1)
    }
    100% {
        -webkit-transform: scale(1.2)
    }
}
#fullpage .section {
    overflow: hidden;
}
#fullpage>.section .w1200 {
    position: relative;
    z-index: 3;
}
.HomeBanner {
    overflow: hidden;
}
.HomeBanner .slick-arrow {
    display: none !important;
}
.HomeBanner li a {
    display: block;
    height: 100vh;
    width: 100%;
    background-size: cover;
    background-repeat: no-repeat;
    background-position: center;
    cursor: default;
}
.HomeBanner li .w1200 {
    position: relative;
    height: 100%;
}
.HomeBanner li a .txt {
    position: absolute;
    top: 30%;
    display: block;
    left: 0;
}
/*.HomeBanner li.slick-active a{ animation: slowScale 6s forwards;-webkit-animation: slowScale 6s forwards;}*/
.HomeBanner li .img {
    display: none;
}


.home-layer {
    display: inline-block;
    position: relative;
    z-index: 3;
    width: 100%;
}
.home-layer>.w1200 {
    display: block;
}
.home-layer .item {
    width: 50%;
    padding: 2%;
    float: left;
    letter-spacing: 2px;
}
.home-layer .item .inner {
    background: rgba(0, 0, 0, .36);
    padding: 8vh 2%;
    text-align: center;
    color: #fff;
    font-size: 24px;
    min-height: 28vh;
    box-shadow: 0 0 13px rgba(0, 0, 0, .35);
}
.home-layer .item .en {
    font-size: 16px;
}
.home-layer .item .cn {
    padding: 10px 0 2px;
}
.home-layer .item .snum span {
    font-size: 48px;
    padding: 0 3px;
}

.Homesec-content {
    width: 50%;
    margin-top: 10%;
    color: #fff;
    font-size: 16px;
    position: relative;
    background: rgba(0, 0, 0, .36);
    box-shadow: 0 0 13px rgba(0, 0, 0, .35);
    padding: 5%;
}
.Homesec-content.p_right {
    margin-left: auto;
}
.Homesec-content .tit {
    max-width: 445px;
}
.Homesec-content .tit span {
    display: block;
}
.Homesec-content .tit .cn {
    font-size: 30px;
    padding-bottom: 5px;
}
.Homesec-content .tit .en {
    font-size: 24px;
}
.Homesec-content .line {
    display: block;
    width: 100%;
    margin: 30px 0;
    height: 1px;
    background: #fff;
    max-width: 445px;
}
.Homesec-content figure {
    font-size: 16px;
    line-height: 1.85;
    margin-bottom: 30px;
}
.Homesec-content .more a {
    display: inline-block;
    border: 1px solid #fff;
    border-radius: 10px;
    padding: 5px 15px 7px;
    color: #fff;
    letter-spacing: 5px;
    position: relative;
    overflow: hidden;
}
.Homesec-content .more a span {
    position: relative;
    z-index: 3;
}
.Homesec-content .more a::before {
    content: "";
    position: absolute;
    top: 0;
    left: 0;
    width: 0;
    height: 100%;
    background: rgba(0, 0, 0, .45);
    z-index: 1;
    transition: width .5s ease-in-out;
    -webkit-transition: width .5s ease-in-out;
}
.Homesec-content .more a:hover::before {
    background: rgba(0, 0, 0, .45);
    width: 100%;
}

.mouse-scroll {
    position: absolute;
    left: 50%;
    z-index: 100;
    bottom: 1%;
    width: 25px;
    height: 25px;
    background: url("../images/mouse.png") no-repeat center;
    margin-left: -12px;
}
.mouse-up {
    display: none;
    transform: rotate(180deg);
}
@-webkit-keyframes fadeInUp {
    0% {
        opacity: 0;
        -webkit-transform: translate3d(0, 50px, 0);
        transform: translate3d(0, 50px, 0)
    }
    100% {
        opacity: 1;
        -webkit-transform: none;
        transform: none
    }
}
@keyframes fadeInUp {
    0% {
        opacity: 0;
        -webkit-transform: translate3d(0, 50px, 0);
        transform: translate3d(0, 50px, 0)
    }
    100% {
        opacity: 1;
        -webkit-transform: none;
        transform: none
    }
}

@media (min-width:1024px) {
    #fullpage>.section.active .Homesec-content .animated,
    #fullpage>.section.active .home-layer .animated {
        -webkit-animation-name: fadeInUp;
        animation-name: fadeInUp;
    }
    #fullpage>.section.active .Homesec-content .tit {
        animation-delay: 0.5s;
    }
    #fullpage>.section.active .Homesec-content .line {
        animation-delay: 1s;
    }
    #fullpage>.section.active .Homesec-content figure {
        animation-delay: 1.5s;
    }
    #fullpage>.section.active .Homesec-content .more {
        animation-delay: 2s;
    }
    .Homesec2 .animated {
        -webkit-animation-duration: 0.6s;
        animation-duration: 0.6s;
    }
}
@media (max-width:767px) {
    #fullpage .section, #fullpage .fp-tableCell {
        height: auto !important;
    }
    .Homesec-content {
        margin: 5% auto;
        padding: 5%;
        width: 92%;
    }
    .Homesec-content.p_right {
        text-align: right;
    }
    .Homesec-content .line {
        margin: 15px 0;
    }
    .Homesec-content figure {
        margin-bottom: 15px;
        font-size: 14px;
    }
    .Homesec-content .more a span {
        font-size: 14px;
    }
    .Homesec-content .tit .cn {
        font-size: 24px;
    }
    .Homesec-content .tit .en {
        font-size: 20px;
    }
    .home-layer .item {
        width: 100%;
    }
    .home-layer .item .inner {
        font-size: 20px;
    }
    .home-layer .item .snum span {
        font-size: 36px;
    }
    .HomeBanner li .img {
        display: block;
    }
    .HomeBanner li a {
        height: auto;
    }
    .home-layer {
        padding-top: 6%;
    }
    .HomeBanner li .w1200 {
        position: absolute !important;
        top: 0;
        left: 0;
        height: 100%;
        width: 100%;
    }
    .HomeBanner li a .txt {
        width: 100%;
        padding-left: 10%;
        padding-top: 10%;
    }
    .HomeBanner li a .txt img {
        max-width: 50%;
    }
    .header .logo {
        height: 70px;
    }
    .header .logo img {
        max-height: 100%;
    }
}