.duosi-page2{
    display: flex;
    flex-direction: column;
    align-items: center;
    width: 100%;
    min-height: 100vh;
    padding: var(--content-padding);
    background-size: cover;
    background-image: url(../../images/duosi/backgroundImage.jpg);
    position: relative;
    overflow: hidden;
}   
.duosi-page2-content{
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 3rem;
    max-width: 1440px;
    width: 100%;
    padding: var(--content-padding);
    margin-top: var(--section-spacing);
}
.duosi-page2-footer-image{
    position: absolute;
    bottom: 0;
    left: 0;
    width: 100%;
    height: 20vh;
    background-size: contain;
    background-position: bottom center;
    background-repeat: no-repeat;
    z-index: 1;
}

/* 上面一行4个 */
.hexagon-row-top {
    display: flex;
    justify-content: center;
    gap: 20px;
    width: 100%;
    padding: 0 20px;
}

/* 下面一行3个 */
.hexagon-row-bottom {
    display: flex;
    justify-content: center;
    gap: 20px;
    width: 100%;
    padding: 0 20px;
}

.hexagon-shape-t {
    width: 330px;
    height: 330px;
    position: relative;
    background: linear-gradient(to bottom, #5e90d1, #3574e9);
    clip-path: polygon(50% 0%, 100% 25%, 100% 75%, 50% 100%, 0% 75%, 0% 25%);
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    transition: transform 0.3s ease;
}
.hexagon-shape-t:hover {
    transform: scale(1.05);
}
.hexagon-shape-title{
    text-align: center;
    font-size: clamp(1.25rem, 2.5vw, 1.875rem);
    font-weight: 700;
    color: #ffffff;
    margin-bottom: 1rem;
}
.hexagon-shape-content{
    width: 80%;
    font-size: clamp(0.875rem, 1.5vw, 1.125rem);
    font-weight: 500;
    line-height: 1.6;
    text-align: center;
    color: #ffffff;
    margin-bottom: 1rem;
}
.hexagon-shape-image{
    width: clamp(60px, 10vw, 100px);
    aspect-ratio: 1;
    background-size: contain;
    background-position: center;
    background-repeat: no-repeat;
}

/* 响应式布局 */
@media (max-width: 1439px) {
    .hexagon-row-top,
    .hexagon-row-bottom {
        flex-wrap: wrap;
    }
    
    .hexagon-shape-t {
        margin: 10px;
    }
}

@media (max-width: 768px) {
    .hexagon-row-top,
    .hexagon-row-bottom {
        flex-direction: column;
        align-items: center;
        gap: 2rem;
    }

    .hexagon-shape-t {
        width: 330px;
        max-width: 90%;
        margin: 0;
    }
}

/* 平板 */
@media (min-width: 769px) and (max-width: 1024px) {
    .hexagon-shape-t {
        width: 330px;
    }
}

/* 大屏幕 */
@media (min-width: 1025px) {
    .hexagon-shape-t {
        width: 330px;
    }
}
