
* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
    font-family: "Microsoft Yahei", sans-serif;
}


.service-center-page {
    padding: 0 0 160px 0;
    border-bottom: 1px solid #eeeeee;
}

.page-header {
    padding-top: 160px;
    margin: 0 auto;
    max-width: 1280px;

    h1 {
        line-height: 80px;
        font-size: 64px;
        font-weight: 700;
    }

    p {
        display: none;
    }
}

.banner {
    background-position: center top;
    background-repeat: no-repeat;
    background-size: cover !important;
    background-image: url(/site/img/service-center-banner.jpg);
    margin-top: 60px;
    height: 480px;
    width: 100%;
    color: #fff;
    display: flex;
    align-items: center;

    .banner-content1,
    .banner-content {
        margin: auto;
        width: 100%;
        max-width: 1280px;

        h2 {
            font-weight: 700;
            margin-bottom: 30px;
            line-height: 60px;
            font-size: 40px;
        }
    }

    .banner-content1 {
        display: none;
        line-height: 36px;
        font-size: 24px;
        font-weight: 500;
    }

    p {
        line-height: 36px;
        font-size: 24px;
        font-weight: 500;
    }
}


.service-section {
    margin: 0 auto;
    width: 100%;
    max-width: 1280px;
    padding-top: 18px;

    .section-title {
        h2 {
            font-size: 32px;
            font-weight: 700;
            line-height: 96px;
            border-bottom: 2px solid #111111;
        }
    }

    .service-centers {
        display: grid;
        grid-template-columns: repeat(auto-fill, minmax(300px, 1fr));
        gap: 30px;
        padding-top: 40px;
        padding-bottom: 40px;

        .center-card {
            background: white;
            border: 1px solid #e0e0e0;
            border-radius: 8px;
            padding: 25px;
            box-shadow: 0 2px 8px rgba(0, 0, 0, 0.08);
            transition: all 0.3s ease;
            color: #111111;


            .center-name {
                font-size: 1.3rem;
                color: #0b50f2;
                margin-bottom: 15px;
                font-weight: 600;
            }

            .center-info {
                display: flex;
                align-items: center;
                margin-bottom: 10px;
                gap: 10px;

                i {
                    position: relative;;
                    width: 50px;
                    height: 50px;
                    margin-right: 10px;
                }

                i::after {
                    position: absolute;
                    top: 0;
                    left: 0;
                    /*transform: translateX(-15px);*/
                    background-image: url(/site/img/icon.png);
                    /*display: block;*/
                    background-repeat: no-repeat;
                    background-size: 500px;
                    content: '';
                    width: 50px;
                    height: 50px;
                    display: inline-block;
                }

                .i1::after {
                    background-position: 0 -50px;
                }

                .i2::after {
                    background-position: -50px -50px;
                }

                .i3::after {
                    background-position: -300px -200px;
                }

                span {
                    display: inline-block;
                    /*min-height: 50px;*/
                    width: 100%;
                    text-align: left;
                    /*line-height: 25px;*/
                    /*margin-left: 50px;*/
                }
            }
        }
    }
}

.service-features {
    display: flex;
    justify-content: space-between;
    max-width: 1280px;
    margin: 0 auto;
    padding-top: 80px;
    color: #111111;

    .feature-item {
        text-align: center;
        padding: 44px;
        width: 408px;
        min-height: 299px;
        background-color: #F4F4F4;

        .feature-icon {
            display: flex;
            align-items: center;
            justify-content: space-between;


            h3 {
                font-size: 32px;
                line-height: 46px;
                font-weight: 700;
            }

            i {
                position: relative;
                width: 50px;
                height: 50px;
            }

            i::before {
                top: 0;
                left: 0;
                position: absolute;
                background-repeat: no-repeat;
                content: '';
                width: 50px;
                height: 50px;
                transform: translate(0);
                background-image: url('https://www.dn-solutions.com/resources/w/images/service/service.png');
            }
        }


        p {
            text-align: left;
            margin-top: 32px;
            line-height: 26px;
            color: #444444;
            font-size: 18px;
            font-weight: 500;
        }
    }

    .feature-item:nth-child(2) {
        .feature-icon {
            ::before {
                background-position: -50px 0;
            }
        }
    }

    .feature-item:nth-child(3) {
        .feature-icon {
            ::before {
                background-position: -100px 0;
            }
        }
    }
}


@media (max-width: 1280px) {
    .service-center-page {
        padding: 0 0 60px 0;
        border-bottom: 1px solid #eeeeee;
    }

    .page-header {
        padding: 80px 20px 0 20px;
        margin: 0;

        h1 {
            font-size: 32px;
            line-height: 42px;
        }

        p {
            display: block;
            font-size: 12px;
            line-height: 18px;
            font-weight: 400;
            margin-top: 12px;
            color: #767676;
        }
    }

    .banner {
        margin-top: 40px;
        height: 240px;


        .banner-content {
            display: none;
        }

        .banner-content1 {
            display: block;
            width: 100%;
            max-width: 1280px;
            margin: 0;
            padding: 0 20px;

            h2 {
                margin-bottom: 16px;
                line-height: 32px;
                font-size: 24px;
            }
        }

        p {
            font-size: 14px;
            line-height: 20px;
            width: 308px;
        }
    }


    .service-section {
        padding: 18px 20px 0 20px;

        .section-title {
            h2 {
                border-bottom: 1px solid #111111;
                padding: 40px 0 16px;
                font-size: 24px;
                line-height: 32px;
            }
        }

        .service-centers {
            display: grid;
            grid-template-columns: 1fr;
            gap: 30px;

            .center-card {
                box-shadow: none;
                border-radius: 0;
                padding: 30px;
                border: 1px solid #D4D4D4;
                font-size: 14px;

                &:hover {
                    box-shadow: none;
                    transform: translateY(0px);
                }

                .center-name {
                    color: #111111;
                    margin-bottom: 0;
                    font-size: 20px;
                    line-height: 30px;
                    font-weight: 700;
                    width: 256px;
                }

                .center-info {
                    /*width: 256px;*/
                    display: flex;
                    align-items: center;
                    margin-bottom: 0;
                    gap: 0;
                    font-size: 14px;
                    line-height: 22px;
                    margin-top: 10px;
                    min-height: 30px;

                    i {
                        /*top: 0;*/
                        /*transform: translateY(0);*/
                    }

                    div {
                        font-size: 14px;
                        line-height: 1.5;
                    }
                }
            }
        }
    }

    .service-features {
        max-width: none;
        padding-top: 0;
        flex-direction: column;
        padding-left: 20px;
        padding-right: 20px;

        .feature-item {
            min-height: auto;
            width: 100%;
            padding: 30px;
            margin-bottom: 12px;


            .feature-icon {
                display: flex;
                align-items: center;
                justify-content: space-between;


                h3 {
                    font-size: 24px;
                    line-height: 32px;
                    font-weight: 700;
                }
            }


            p {
                text-align: left;
                font-size: 16px;
                line-height: 22px;
                margin-top: 24px;
                width: 256px;
                font-weight: 500;
            }
        }

        .feature-item:nth-child(2) {
            .feature-icon {
                ::before {
                    background-position: -50px 0;
                }
            }
        }

        .feature-item:nth-child(3) {
            .feature-icon {
                ::before {
                    background-position: -100px 0;
                }
            }
        }
    }


}