.title {
    padding: 50px 0;
    text-align: center;
    color: var(--color-blue);

    h2 {
        position: relative;
        display: inline-block;
        padding: 15px 30px;
        font-size: 32px;
        font-weight: bold;
        border-bottom: 1px solid #eee;

        &::after {
            content: '';
            position: absolute;
            display: block;
            bottom: -2px;
            right: -10px;
            height: 15px;
            width: 15px;
            border-radius: 3px;
            background-color: #2cdfd3;
            box-shadow: 10px 10px 0 rgba(0, 0, 0, 0.05);
        }
    }

    p {
        opacity: 0.5;
        padding: 10px 0;
        font-size: 16px;
        color: #999;
    }
}

@media(max-width:1024px) {
    .title {
        h2 {
            font-size: 24px;
            padding: 10px 20px;
        }

        p {
            font-size: 12px;
        }
    }
}

//口号（首屏）
.slogan {
    background-image: linear-gradient(0deg, #005CA6, #0CD9A5);

    #particle {
        position: relative;
        flex: 1;
        width: 100%;
        margin-top: 120px;
        height: calc(100vh - var(--nav-h) - 120px);
    }

    .slogan-box {
        position: absolute;
        top: 0;
        left: 0;
        right: 0;
        bottom: 0;
        display: flex;
        flex-direction: column;
        justify-content: center;
        align-items: center;

        h1 {
            color: #fff;
            font-size: 56px;
            font-weight: bold;
        }

        p {
            padding-left: 10px;
            font-size: 18px;
        }

        h1, p {
            transform: translateY(-200px);
        }
    }
}

@media(max-width:1024px) {
    .slogan {
        .slogan-box {
            h1 {
                font-size: 34px;
                color: #fff;
            }

            p {
                font-size: 11px;
            }

            h1, p {
                transform: translateY(-120px);
            }
        }
    }
}

//产品及服务
.services {
    flex: 1;

    .item {
        position: relative;
        display: flex;
        margin: 0 15px 30px 15px;
        padding: 20px 0;
        background-color: #fff;
        border-radius: 40px 10px 40px 10px;
        border-left: 10px solid #eee;
        box-shadow: 0 0 20px rgba(0, 0, 0, 0.05);
        transform-style: preserve-3d;

        &::before {
            content: '';
            position: absolute;
            top: 0;
            display: block;
            height: 100%;
            width: 250px;
            background-color: #fff;
            border-radius: 40px 10px 40px 10px;
            box-shadow: -20px 0 20px rgba(0, 0, 0, 0.05);
            transform: translateZ(-1px)
        }

        h3 {
            font-size: 20px;
            display: flex;
            align-items: center;
            padding-left: 30px;
            min-width: 200px;

            i {
                margin-right: 10px;
                font-size: 28px;
            }
        }

        ul {
            flex: 1;
            display: flex;
            padding-left: 50px;
            flex-wrap: wrap;

            li {
                width: 16.6666666%;
                font-size: 16px;
                align-items: center;
                height: 50px;
                line-height: 50px;
            }
        }
    }
}

@media(max-width:1024px) {
    .services {
        .item {
            flex-direction: column;
            border-left: 0;
            border-bottom: 10px solid #eee;

            ul {
                margin-top: 20px;

                li {
                    width: 49%;
                }
            }
        }
    }
}

//研发成果
#results {

    img {
        display: block;
        margin: 0 auto 30px auto;
        width: calc(100% - 60px);
    }
}

@media(max-width:1024px) {
    #results {
        img {
            width: 200%;
            margin-left: -50%;
        }
    }
}

#about-us {

    img {
        display: block;
        width: 100%;
        height: auto;
        padding: 150px 120px 30px 150px;
    }

    .text {
        display: block;
        padding: 0 220px 120px 150px;
        text-align: justify;
    }
}

@media(max-width:1024px) {
    #about-us > div {
        flex-direction: column-reverse;
    }

    #about-us > div > div {
        padding: 0;
        margin: 0;
        width: 100%;
    }

    #about-us {
        img {
            padding: 0 10px 0 40px;
        }

        .text {
            padding: 20px 45px 45px 45px;
        }
    }
}


//企业文化
.culture {
    height: 200px;
    display: flex;
    background-color: #f1faff;

    .item {
        flex: 1;
        padding: 20px 30px;
        color: var(--color-blue);

        h3 {
            font-size: 20px;
            padding: 15px 0;
            font-weight: bold;
        }
    }
}

@media(max-width:1024px) {
    .culture {
        height: auto;

        .content {
            flex-direction: column;
        }

        .item {
        }
    }
}

//联系我们
#contact-us {
    > div:nth-child(2) {
        padding: 150px 30px;
    }
}

@media(max-width:1024px) {

    #contact-us {
        flex-direction: column;


        > div:nth-child(2) {
            padding: 0 30px 100px 30px;
        }
    }
}
