/* 生态伙伴页面样式 */

/* 主要内容区域样式 */
.partners-page .main-content {
    padding: 160px 160px;
    position: relative;
}

/* 生态伙伴页面背景图样式 */
.partners-page .main-content::before {
    content: "";
    position: absolute;
    bottom: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background-image: url('../images/conteng-bg-2.png');
    background-repeat: no-repeat;
    background-position: bottom center;
    background-size: contain;
    opacity: 1;
    z-index: -1;
}

.partner-description {
    margin-bottom: 40px;
    width: 80%;
}

.partner-description p {
    font-family: 'Alibaba PuHuiTi', sans-serif;
    font-size: 36px;
    line-height: 1.6em;
    color: #333;
}

.arrow-icon {
    display: flex;
    justify-content: flex-start; /* 左对齐 */
    align-items: flex-start;
    margin-top: 100px;
}

.arrow-icon img {
    width: 80px;
    height: auto;
}

/* 占位符，只在宽度大于1024px时显示 */
.placeholder {
    height: 160px;
    width: 100%;
    display: block;
}

/* 响应式样式 */
@media (max-width: 1024px) {
    .partners-page .main-content {
        padding: 80px 40px;
    }
    
    /* 覆盖container在main-content内的padding */
    .partners-page .main-content .container {
        padding: 0;
    }
    
    .partner-description {
        width: 90%;
    }
    
    .partner-description p {
        font-size: 28px;
        line-height: 1.5em;
    }
    
    /* 在宽度小于等于1024px时隐藏占位符 */
    .placeholder {
        display: none;
    }

    .arrow-icon {
        margin-top: 60px;
    }
}

@media (max-width: 480px) {
    .partners-page .main-content {
        padding: 60px 16px;
    }
    
    .partner-description {
        width: 100%;
        margin-bottom: 15px; /* 减小下方间距 */
        display: flex;
        align-items: center; /* 垂直中心对齐 */
    }
    
    .partner-description p {
        font-size: 20px;
        text-align: left; /* 文本居中 */
    }
    
    /* 调整箭头图标样式 - 在移动端居中显示 */
    .arrow-icon {
        justify-content: center; /* 在移动端居中 */
        align-items: center; /* 垂直中心对齐 */
        margin-top: 40px; /* 减小上方间距 */
    }
    
    .arrow-icon img {
        width: 36px;
        height: auto;
    }
}