.resources-container {
    max-width: 1200px;
    min-height: 500px;
    margin: 0 auto;
    padding: 30px 20px;
}

/* 主要内容区域 */
.main-content {
    display: grid;
    grid-template-columns: 2fr 1fr;
    gap: 30px;
    margin-bottom: 40px;
}


/* 成果展示区域 */
.achievements-section {
    background: white;
    border-radius: 15px;
    padding: 25px;
    box-shadow: 0 5px 20px rgba(0,0,0,0.08);
    border-left: 4px solid #1e3c72;
}

.achievements-section h3 {
    color: #1e3c72;
    margin-bottom: 20px;
    font-size: 20px;
    font-weight: 600;
}

.achievements-content p {
    color: #666;
    margin-bottom: 15px;
    line-height: 1.6;
}

.achievement-links {
    display: flex;
    flex-direction: column;
    gap: 15px;
}

.achievement-card {
    background: #f8f9fa;
    border: 1px solid #e3f2fd;
    border-radius: 12px;
    padding: 20px;
    transition: all 0.3s ease;
    box-shadow: 0 2px 8px rgba(0,0,0,0.05);
}

.achievement-card:hover {
    transform: translateY(-3px);
    box-shadow: 0 8px 25px rgba(42, 82, 152, 0.15);
    border-color: #2a5298;
}

.achievement-link {
    color: #2a5298;
    text-decoration: none;
    font-size: 16px;
    font-weight: 600;
    display: block;
    margin-bottom: 8px;
    transition: color 0.3s ease;
}

.achievement-card:hover .achievement-link {
    color: #1e3c72;
}

.card-description {
    color: #666;
    font-size: 14px;
    line-height: 1.5;
    margin: 0;
}

/* 链接区域 */
.links-section {
    display: flex;
    flex-direction: column;
    gap: 20px;
    height: 100%;
}

.intranet-links,
.study-links {
    background: white;
    border-radius: 15px;
    padding: 20px;
    box-shadow: 0 5px 20px rgba(0,0,0,0.08);
    flex: 1;
    gap: 15px;
    display: flex;
    flex-direction: column;
}

.intranet-links {
    border-left: 4px solid #4caf50;
}

.study-links {
    border-left: 4px solid #ff9800;
}

.intranet-links h4 {
    color: #4caf50;
    margin-bottom: 15px;
    font-size: 16px;
    font-weight: 600;
}

.study-links h4 {
    color: #ff9800;
    margin-bottom: 15px;
    font-size: 16px;
    font-weight: 600;
}

.link-content {
    display: flex;
    flex-direction: column;
    gap: 15px;
    flex: 1;
}

.link-card {
    background: white;
    border-radius: 10px;
    padding: 15px;
    transition: all 0.3s ease;
    box-shadow: 0 2px 6px rgba(0,0,0,0.05);
    border: 1px solid #f0f0f0;
}

.intranet-links .link-card:hover {
    transform: translateY(-2px);
    box-shadow: 0 6px 20px rgba(76, 175, 80, 0.15);
    border-color: #4caf50;
}

.study-links .link-card:hover {
    transform: translateY(-2px);
    box-shadow: 0 6px 20px rgba(255, 152, 0, 0.15);
    border-color: #ff9800;
}

.link-content a {
    color: #333;
    text-decoration: none;
    font-size: 15px;
    font-weight: 600;
    display: block;
    margin-bottom: 6px;
    transition: color 0.3s ease;
}

.intranet-links .link-card:hover a {
    color: #4caf50;
}

.study-links .link-card:hover a {
    color: #ff9800;
}

