﻿
/* 右侧导航 */
#fullPage-nav {
    _display: none;
    font-size: 12px;
}

    #fullPage-nav li {
        width: 90px;
        height: 21px;
        margin: 10px 0 0;
        vertical-align: middle;
    }

        #fullPage-nav li a {
            float: right;
            width: 21px;
            height: 21px;
            color: #8F9DA4;
            text-decoration: none;
            text-align: right;
            background: url(../Images/dot.png) 5px 5px no-repeat;
        }

        #fullPage-nav li .active {
            background-position: 0 bottom;
        }

    #fullPage-nav span {
        display: none;
    }

.fullPage-tooltip {
    float: left;
    top: 0;
    margin-right: 5px;
    font: 12px "Microsoft Yahei";
    color: #8F9DA4;
    line-height: 21px;
}

.section {
    position: relative;
    overflow: hidden;
    display: flex;
    flex-flow: row wrap;
    justify-content: center;
}

    .section .bg {
        position: absolute;
        left: 0;
        top: 0;
        width: 100%;
        height: 100%;
    }

        .section .bg img {
            display: block;
            width: 100%;
            height: 100vh;
            background-size: cover;
            background-position: center;
            object-fit: cover;
        }



    .section strong {
        position: absolute;
        top: 10%;
        z-index: 10;
        font-size: 4rem;
        font-weight: 800;
        opacity: 0;
        -webkit-transform: scale(0.5, 0.5);
        transform: scale(0.5, 0.5);
        transition: all 1s;
        padding: 1.5rem;
    }

    .section h3 {
        position: absolute;
        top: 20%;
        z-index: 10;
        font-size: 3rem;
        font-weight: 500;
        opacity: 0;
        -webkit-transform: scale(0.5, 0.5);
        transform: scale(0.5, 0.5);
        transition: all 1s;
        padding: 1.5rem;
    }
    .section p {
        position: absolute;
        top: 25%;        
        z-index: 10;
        font-size: 1.8rem;
        opacity: 0;
        -webkit-transform: scale(0.5, 0.5);
        transform: scale(0.5, 0.5);
        transition: all 1s;
        padding:1.5rem;
    }
    .section:nth-child(odd) strong, .section:nth-child(odd) h3, .section:nth-child(odd) p {
        color: #fff;
    }
    .section:nth-child(even) strong, .section:nth-child(even) h3, .section:nth-child(even) p {
        color: #414141;
    }
        .section .service_img {
            position: absolute;
            top: 40%;
            z-index: 10;
            opacity: 0;
            -webkit-transform: scale(0.5, 0.5);
            transform: scale(0.5, 0.5);
            transition: all 1s;
            padding: 1.5rem;
            filter: blur(5px);
        }
        .section .service_img img {
            max-width: 100%;
            box-shadow: 0px 4px 8px rgba(0, 0, 0, 0.5);
        }
        /* CSS3过度及动画 */
        .active strong, .active h3, .active p, .active .service_img {
            opacity: 1;
            -webkit-transform: scale(1, 1);
            transform: scale(1, 1);
        }
.active strong {
    transition-delay: 0.5s;
}
.active h3 {
    transition-delay: 0.8s;
}
.active p {
    transition-delay: 1.1s;
}
.active .service_img {
    transition-delay: 1.4s;
    filter: blur(0);
}
@media screen and (max-width: 767px) {
    .section strong {
        font-size:3rem;
    }
    .section h3 {
        font-size: 2rem;
    }
}