.industry-cooperation-container {
    /*display: flex;*/
    max-width: 1200px;
    margin: 20px auto;
    background: white;
    border-radius: 10px;
    box-shadow: 0 4px 20px rgba(0,0,0,0.1);
    overflow: hidden;
    min-height: 600px;
}


/* 右侧内容区域样式 */
.content-area {
    flex: 1;
    padding: 30px;
    overflow-y: visible;
}
 
.content-section {
    display: block;
    animation: fadeInUp 0.5s ease;
}

.content-section h2 {
    color: #2a5298;
    margin-bottom: 30px;
    font-size: 28px;
    border-bottom: 3px solid #2a5298;
    padding-bottom: 10px;
}

/* 交流合作页面样式 */
.cooperation-content {
    max-width: 100%;
}

.cooperation-intro {
    background: #f8f9fa;
    padding: 20px;
    border-radius: 8px;
    margin-bottom: 30px;
    border-left: 4px solid #2a5298;
}

.cooperation-intro p {
    margin: 0;
    color: #555;
    line-height: 1.6;
}

.cooperation-section {
    display: flex;
    flex-direction: column;
    margin-bottom: 35px;
}

.cooperation-section h3 {
    color: #2a5298;
    margin-bottom: 20px;
    font-size: 22px;
    border-bottom: 2px solid #e9ecef;
    padding-bottom: 10px;
}

.cooperation-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(400px, 1fr));
    gap: 25px;
}

.cooperation-item {
    display: flex;
    background: white;
    border: 1px solid #e9ecef;
    border-radius: 12px;
    padding: 20px;
    box-shadow: 0 2px 10px rgba(0,0,0,0.05);
    transition: all 0.3s ease;
}

.cooperation-item:hover {
    transform: translateY(-3px);
    box-shadow: 0 6px 20px rgba(0,0,0,0.1);
}

.cooperation-logo {
    width: 120px;
    height: 120px;
    margin-right: 20px;
    flex-shrink: 0;
}

.cooperation-logo img {
    width: 100%;
    height: 100%;
    object-fit: contain;
    border-radius: 8px;
}

.cooperation-info {
    flex: 1;
}

.cooperation-info h4 {
    color: #2a5298;
    margin: 0 0 10px 0;
    font-size: 18px;
}

.cooperation-info p {
    color: #555;
    line-height: 1.6;
    margin-bottom: 15px;
    font-size: 14px;
}

.cooperation-details {
    display: flex;
    gap: 15px;
    flex-wrap: wrap;
}

.cooperation-details span {
    background: #f8f9fa;
    padding: 4px 10px;
    border-radius: 12px;
    font-size: 12px;
    color: #666;
    border: 1px solid #e9ecef;
}

/* 服务列表样式 */
.service-list {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 2px 15px;
    margin: 10px 0;
    align-items: start;
}

.service-item {
    font-size: 13px;
    color: #555;
    line-height: 1.5;
    padding: 2px 0;
    margin: 0;
    display: block;
}

/* 公司官网链接样式 */
.cooperation-info a {
    display: inline-flex;
    align-items: center;
    color: #2a5298;
    text-decoration: none;
    font-weight: 500;
    font-size: 14px;
    padding: 6px 12px;
    border: 1px solid #2a5298;
    border-radius: 20px;
    background: linear-gradient(135deg, #f8f9fa 0%, #e9ecef 100%);
    transition: all 0.3s ease;
    box-shadow: 0 2px 4px rgba(42, 82, 152, 0.1);
}

.cooperation-info a:before {
    content: "🌐";
    margin-right: 6px;
    font-size: 12px;
}

.cooperation-info a:hover {
    color: white;
    background: linear-gradient(135deg, #2a5298 0%, #1e3d6f 100%);
    transform: translateY(-1px);
    box-shadow: 0 4px 12px rgba(42, 82, 152, 0.3);
}

.cooperation-info a:active {
    transform: translateY(0);
    box-shadow: 0 2px 6px rgba(42, 82, 152, 0.2);
}