/* 我们的服务板块样式 */
.section-our-services {
    width: 100%;
    background-color: #000;
    padding: 60px 8vw;
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 50px;
    position: relative;
    overflow: hidden;
}

/* 添加背景图片 */
.section-our-services::before {
    content: '';
    position: absolute;
    top: 50%;
    left: 50%;
    width: 100%;
    height: 100%;
    background-image: url('../images/服务底纹.png');
    background-size: cover;
    background-position: center;
    background-repeat: no-repeat;
    transform: translate(-50%, -50%);
    opacity: 0.15;
    pointer-events: none;
    z-index: 1;
}

/* 确保内容在背景之上 */
.section-our-services > * {
    position: relative;
    z-index: 2;
}

.our-services-title {
    font-size: clamp(2.5rem, 6vw, 4rem);
    color: #ffffff;
    font-weight: 600;
    letter-spacing: 0.1em;
    text-align: center;
    margin-bottom: 20px;
    position: relative;
}

.services-container {
    display: grid;
    gap: 30px;
    width: 100%;
    max-width: 1400px;
    margin: 0 auto;
}

.service-box {
    background: rgba(255, 255, 255, 0.05);
    border-radius: 15px;
    padding: 30px;
    transition: transform 0.3s ease, box-shadow 0.3s ease;
    backdrop-filter: blur(10px);
    border: 1px solid rgba(255, 255, 255, 0.1);
}

.service-box:hover {
    transform: translateY(-5px);
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.3);
}

.service-header {
    margin-bottom: 25px;
}

.service-title {
    font-size: clamp(1.5rem, 3vw, 2rem);
    color: #FFD700;
    margin-bottom: 10px;
    font-weight: 600;
}

.service-subtitle {
    color: #ffffff;
    font-size: 1.1rem;
    opacity: 0.8;
}

.service-content {
    display: flex;
    flex-direction: column;
    gap: 20px;
}

.content-section {
    padding: 15px 0;
    border-bottom: 1px solid rgba(255, 255, 255, 0.1);
}

.content-section:last-child {
    border-bottom: none;
}

.content-title {
    color: #FFD700;
    font-size: 1.2rem;
    margin-bottom: 10px;
    font-weight: 500;
}

.content-list {
    list-style: none;
    padding: 0;
    margin: 0;
}

.content-list li {
    color: #ffffff;
    margin-bottom: 10px;
    padding-left: 20px;
    position: relative;
    line-height: 1.6;
}

.content-list li::before {
    content: '•';
    color: #FFD700;
    position: absolute;
    left: 0;
    top: 0;
}

.content-section p:not(.content-title) {
    color: #ffffff;
    line-height: 1.6;
}

/* 响应式调整 */
@media screen and (max-width: 768px) {
    /* 移动端：1*1布局 */
    .services-container {
        grid-template-columns: 1fr;
        gap: 20px;
    }

    .section-our-services {
        padding: 40px 5vw;
    }

    .service-box {
        padding: 20px;
    }

    .service-title {
        font-size: 1.5rem;
    }

    .service-subtitle {
        font-size: 1rem;
    }

    .content-title {
        font-size: 1.1rem;
    }

    .content-list li,
    .content-section p:not(.content-title) {
        font-size: 0.95rem;
    }
}

/* 平板设备：2*2布局 */
@media screen and (min-width: 769px) and (max-width: 1024px) {
    .services-container {
        grid-template-columns: repeat(2, 1fr);
        grid-template-rows: repeat(2, auto);
        gap: 25px;
    }

    .section-our-services {
        padding: 50px 6vw;
    }

    .service-box {
        padding: 25px;
    }
}

/* 桌面端：1*4布局 */
@media screen and (min-width: 1025px) {
    .services-container {
        grid-template-columns: repeat(4, 1fr);
        gap: 30px;
    }

    .section-our-services {
        padding: 60px 8vw;
    }

    .service-box {
        padding: 30px;
    }
}
