/* 页面容器 */ .cooperation-container { padding: 20rpx; background-color: #f5f5f5; min-height: 100vh; } /* 页面标题 */ .page-title { text-align: center; font-size: 36rpx; font-weight: bold; color: #333; margin: 30rpx 0; } /* 广告区域 */ .ad-section { background-color: #fff; border-radius: 16rpx; padding: 30rpx; margin-bottom: 20rpx; box-shadow: 0 2rpx 10rpx rgba(0, 0, 0, 0.1); } .ad-title { font-size: 32rpx; font-weight: bold; color: #ff6b81; margin-bottom: 20rpx; text-align: center; } .ad-content { display: flex; flex-direction: column; gap: 20rpx; } .ad-item { display: flex; align-items: flex-start; gap: 20rpx; padding: 20rpx; background-color: #f9f9f9; border-radius: 12rpx; } .ad-icon { font-size: 48rpx; margin-top: 8rpx; } .ad-text { flex: 1; } .ad-item-title { font-size: 28rpx; font-weight: bold; color: #333; margin-bottom: 8rpx; } .ad-item-desc { font-size: 24rpx; color: #666; line-height: 1.5; } /* 合作优势区域 */ .advantage-section { background-color: #fff; border-radius: 16rpx; padding: 30rpx; margin-bottom: 20rpx; box-shadow: 0 2rpx 10rpx rgba(0, 0, 0, 0.1); } .section-title { font-size: 30rpx; font-weight: bold; color: #333; margin-bottom: 20rpx; text-align: center; } .advantage-grid { display: grid; grid-template-columns: repeat(2, 1fr); gap: 20rpx; } .advantage-item { display: flex; flex-direction: column; align-items: center; gap: 10rpx; padding: 20rpx; background-color: #f9f9f9; border-radius: 12rpx; transition: transform 0.3s ease; } .advantage-item:active { transform: scale(0.98); } .advantage-icon { font-size: 48rpx; } .advantage-text { font-size: 24rpx; color: #333; font-weight: 500; } /* 联系方式区域 */ .contact-section { background-color: #fff; border-radius: 16rpx; padding: 30rpx; margin-bottom: 20rpx; box-shadow: 0 2rpx 10rpx rgba(0, 0, 0, 0.1); } .contact-info { display: flex; flex-direction: column; gap: 16rpx; margin-bottom: 30rpx; } .contact-item { display: flex; align-items: center; gap: 12rpx; padding: 16rpx; background-color: #f9f9f9; border-radius: 12rpx; } .contact-label { font-size: 26rpx; color: #666; width: 180rpx; } .contact-value { font-size: 26rpx; color: #333; flex: 1; } .contact-value:active { color: #ff6b81; } /* 立即合作按钮 */ .cooperate-btn { background-color: #ff6b81; color: #fff; font-size: 28rpx; font-weight: bold; border-radius: 50rpx; height: 80rpx; line-height: 80rpx; margin: 0; box-shadow: 0 4rpx 12rpx rgba(255, 107, 129, 0.3); } .cooperate-btn:active { background-color: #ff526c; transform: scale(0.98); } /* 底部提示 */ .bottom-tip { text-align: center; font-size: 22rpx; color: #999; margin: 30rpx 0; } /* 响应式设计 */ @media (max-width: 768rpx) { .advantage-grid { grid-template-columns: 1fr; } .ad-item { flex-direction: column; align-items: center; text-align: center; } .contact-item { flex-direction: column; align-items: flex-start; gap: 8rpx; } .contact-label { width: auto; } }