/* 基础重置与全局样式 */
* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
    font-family: 'Microsoft YaHei', 'Arial', sans-serif;
}

/* 动态海洋科技风背景 */
.bg-container {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: linear-gradient(135deg, #0a192f, #112940, #0f3460);
    overflow: hidden;
    z-index: -1;
}
.wave {
    position: absolute;
    width: 200%;
    height: 200%;
    border-radius: 45%;
    background: rgba(30, 136, 229, 0.1);
    animation: wave 20s linear infinite;
}
.wave:nth-child(1) {
    top: -150%;
    left: -50%;
    animation-duration: 15s;
}
.wave:nth-child(2) {
    top: -140%;
    left: -50%;
    animation-duration: 25s;
    animation-delay: 2s;
}
.wave:nth-child(3) {
    top: -130%;
    left: -50%;
    animation-duration: 20s;
    animation-delay: 5s;
}
.glow-point {
    position: absolute;
    width: 2px;
    height: 2px;
    background: rgba(100, 181, 246, 0.8);
    border-radius: 50%;
    animation: glow 3s infinite alternate;
}
@keyframes wave {
    0% { transform: rotate(0deg); }
    100% { transform: rotate(360deg); }
}
@keyframes glow {
    0% { box-shadow: 0 0 5px rgba(100, 181, 246, 0.5); }
    100% { box-shadow: 0 0 15px rgba(100, 181, 246, 0.9); }
}

/* 头部导航 */
header {
    width: 100%;
    padding: 20px 5%;
    display: flex;
    justify-content: space-between;
    align-items: center;
    background: rgba(10, 25, 47, 0.7);
    backdrop-filter: blur(10px);
    border-bottom: 1px solid rgba(66, 165, 245, 0.3);
}
.logo {
    display: flex;
    align-items: center;
    gap: 15px;
}
.logo-img {
    width: 60px;
    height: 60px;
    border-radius: 8px;
    background: #fff;
    display: flex;
    align-items: center;
    justify-content: center;
    overflow: hidden;
}
.logo-img img {
    width: 100%;
    height: 100%;
    object-fit: cover;
}
.logo-text {
    color: #e3f2fd;
    font-size: 24px;
    font-weight: 700;
}
.nav-menu {
    display: flex;
    gap: 30px;
}
.nav-item {
    color: #bbdefb;
    text-decoration: none;
    font-size: 16px;
    padding: 8px 12px;
    border-radius: 6px;
    transition: all 0.3s ease;
    position: relative;
}
.nav-item:hover {
    color: #e3f2fd;
    background: rgba(66, 165, 245, 0.2);
}
.nav-item::after {
    content: '';
    position: absolute;
    bottom: 0;
    left: 0;
    width: 0;
    height: 2px;
    background: #42a5f5;
    transition: width 0.3s ease;
}
.nav-item:hover::after {
    width: 100%;
}
.nav-item.active {
    color: #e3f2fd;
    background: rgba(66, 165, 245, 0.2);
}
.nav-item.active::after {
    width: 100%;
}
.mobile-menu-btn {
    display: none;
    font-size: 24px;
    color: #e3f2fd;
    background: none;
    border: none;
    cursor: pointer;
}

/* 页面主体样式 */
.about-main {
    width: 90%;
    margin: 40px auto;
    padding-bottom: 80px;
}

/* 页面标题区 */
.about-header {
    text-align: center;
    margin-bottom: 40px;
    padding: 20px 0;
}
.about-title {
    color: #e3f2fd;
    font-size: 32px;
    margin-bottom: 15px;
    text-shadow: 0 0 8px rgba(30, 136, 229, 0.4);
}
.about-subtitle {
    color: #bbdefb;
    font-size: 18px;
    max-width: 800px;
    margin: 0 auto;
    line-height: 1.6;
}

/* 通用卡片样式 */
.card-title {
    color: #e3f2fd;
    font-size: 18px;
    margin-bottom: 20px;
    padding-bottom: 10px;
    border-bottom: 1px solid rgba(66, 165, 245, 0.2);
    display: flex;
    align-items: center;
    gap: 8px;
}
.card-title i {
    color: #42a5f5;
    font-size: 20px;
}
.intro-card, .team-card, .timeline-card, .culture-card, .contact-card {
    background: rgba(10, 25, 47, 0.6);
    backdrop-filter: blur(8px);
    border-radius: 12px;
    border: 1px solid rgba(66, 165, 245, 0.3);
    padding: 25px;
    margin-bottom: 30px;
}

/* 组织简介 */
.intro-content {
    color: #bbdefb;
    font-size: 16px;
    line-height: 1.8;
}
.intro-content p {
    margin-bottom: 15px;
}

/* 团队介绍 */
.team-list {
    display: flex;
    flex-wrap: wrap;
    gap: 25px;
    justify-content: center;
}
.team-item {
    display: flex;
    gap: 20px;
    width: 100%;
    max-width: 600px;
    background: rgba(10, 25, 47, 0.4);
    border-radius: 8px;
    padding: 20px;
    transition: all 0.3s ease;
}
.team-item:hover {
    transform: translateY(-5px);
    box-shadow: 0 10px 20px rgba(30, 136, 229, 0.15);
}
.team-avatar {
    width: 120px;
    height: 120px;
    border-radius: 8px;
    overflow: hidden;
    flex-shrink: 0;
}
.team-avatar img {
    width: 100%;
    height: 100%;
    object-fit: cover;
}
.team-info {
    display: flex;
    flex-direction: column;
    gap: 8px;
}
.team-name {
    color: #e3f2fd;
    font-size: 18px;
    font-weight: 600;
}
.team-position {
    color: #42a5f5;
    font-size: 16px;
    font-weight: 500;
}
.team-desc {
    color: #bbdefb;
    font-size: 14px;
    line-height: 1.6;
}

/* 发展历程时间轴 */
.timeline {
    position: relative;
    padding-left: 40px;
}
.timeline::before {
    content: '';
    position: absolute;
    left: 0;
    top: 0;
    bottom: 0;
    width: 2px;
    background: rgba(66, 165, 245, 0.3);
}
.timeline-item {
    position: relative;
    margin-bottom: 30px;
}
.timeline-item:last-child {
    margin-bottom: 0;
}
.timeline-date {
    position: absolute;
    left: -55px;
    top: 0;
    width: 40px;
    height: 40px;
    border-radius: 50%;
    background: #42a5f5;
    color: #fff;
    display: flex;
    align-items: center;
    justify-content: center;
    font-weight: 600;
}
.timeline-content {
    background: rgba(10, 25, 47, 0.4);
    border-radius: 8px;
    padding: 15px;
}
.timeline-title {
    color: #e3f2fd;
    font-size: 16px;
    font-weight: 600;
    margin-bottom: 8px;
}
.timeline-desc {
    color: #bbdefb;
    font-size: 14px;
    line-height: 1.6;
}

/* 组织文化 */
.culture-list {
    display: grid;
    grid-template-columns: repeat(auto-fill, minmax(300px, 1fr));
    gap: 20px;
}
.culture-item {
    display: flex;
    gap: 15px;
    background: rgba(10, 25, 47, 0.4);
    border-radius: 8px;
    padding: 20px;
    transition: all 0.3s ease;
}
.culture-item:hover {
    transform: translateY(-5px);
    border: 1px solid rgba(66, 165, 245, 0.5);
    box-shadow: 0 10px 20px rgba(30, 136, 229, 0.15);
}
.culture-icon {
    width: 50px;
    height: 50px;
    border-radius: 50%;
    background: rgba(66, 165, 245, 0.1);
    display: flex;
    align-items: center;
    justify-content: center;
    color: #42a5f5;
    font-size: 24px;
    flex-shrink: 0;
}
.culture-info {
    display: flex;
    flex-direction: column;
    gap: 8px;
}
.culture-name {
    color: #e3f2fd;
    font-size: 16px;
    font-weight: 600;
}
.culture-desc {
    color: #bbdefb;
    font-size: 14px;
    line-height: 1.6;
}

/* 联系我们 */
.contact-form {
    display: flex;
    flex-direction: column;
    gap: 18px;
    margin-bottom: 30px;
}
.form-group {
    display: flex;
    flex-direction: column;
    gap: 8px;
}
.form-label {
    color: #e3f2fd;
    font-size: 16px;
    font-weight: 500;
}
.form-input, .form-textarea {
    background: rgba(10, 25, 47, 0.8);
    border: 1px solid rgba(66, 165, 245, 0.3);
    color: #e3f2fd;
    padding: 10px 15px;
    border-radius: 8px;
    outline: none;
    font-size: 14px;
}
.form-textarea {
    resize: none;
    min-height: 120px;
}
.form-input::placeholder, .form-textarea::placeholder {
    color: #90caf9;
    opacity: 0.7;
}
.submit-btn {
    padding: 12px 0;
    background: #2196f3;
    color: #fff;
    border: none;
    border-radius: 8px;
    font-size: 16px;
    font-weight: 600;
    cursor: pointer;
    transition: all 0.3s ease;
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 8px;
}
.submit-btn:hover {
    background: #1976d2;
    transform: translateY(-3px);
    box-shadow: 0 6px 15px rgba(33, 150, 243, 0.3);
}
.contact-info {
    display: flex;
    flex-direction: column;
    gap: 15px;
}
.info-item {
    color: #bbdefb;
    font-size: 16px;
    display: flex;
    align-items: center;
    gap: 10px;
}
.info-item i {
    color: #42a5f5;
    font-size: 18px;
}

/* 成功弹窗 */
.success-modal {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: rgba(10, 25, 47, 0.7);
    backdrop-filter: blur(5px);
    display: flex;
    align-items: center;
    justify-content: center;
    z-index: 9999;
}
.modal-content {
    background: rgba(10, 25, 47, 0.9);
    border: 1px solid rgba(66, 165, 245, 0.5);
    border-radius: 12px;
    width: 90%;
    max-width: 500px;
    padding: 30px;
    display: flex;
    flex-direction: column;
    gap: 20px;
}
.modal-header {
    color: #4caf50;
    font-size: 20px;
    font-weight: 600;
    display: flex;
    align-items: center;
    gap: 10px;
}
.modal-header i {
    font-size: 24px;
}
.modal-body {
    color: #bbdefb;
    font-size: 15px;
    line-height: 1.8;
}
.modal-footer {
    display: flex;
    justify-content: center;
}
.close-modal-btn {
    padding: 10px 30px;
    background: #2196f3;
    color: #fff;
    border: none;
    border-radius: 8px;
    font-size: 16px;
    cursor: pointer;
    transition: all 0.3s ease;
}
.close-modal-btn:hover {
    background: #1976d2;
}

/* 底部样式 */
footer {
    width: 100%;
    padding: 40px 5%;
    background: rgba(10, 25, 47, 0.8);
    border-top: 1px solid rgba(66, 165, 245, 0.3);
    margin-top: 80px;
}
.footer-content {
    color: #bbdefb;
    text-align: center;
    font-size: 14px;
    line-height: 1.8;
}

/* 响应式适配 */
@media (max-width: 1200px) {
    .culture-list {
        grid-template-columns: 1fr;
    }
}
@media (max-width: 768px) {
    .nav-menu {
        display: none;
        flex-direction: column;
        position: absolute;
        top: 100px;
        right: 5%;
        background: rgba(10, 25, 47, 0.9);
        backdrop-filter: blur(10px);
        border-radius: 8px;
        padding: 20px;
        border: 1px solid rgba(66, 165, 245, 0.3);
        z-index: 999;
    }
    .nav-menu.active {
        display: flex;
    }
    .mobile-menu-btn {
        display: block;
    }
    .about-header {
        margin-bottom: 30px;
    }
    .about-title {
        font-size: 28px;
    }
    .team-item {
        flex-direction: column;
        align-items: center;
        text-align: center;
    }
    .timeline {
        padding-left: 20px;
    }
    .timeline-date {
        left: -35px;
        width: 30px;
        height: 30px;
        font-size: 12px;
    }
}
@media (max-width: 480px) {
    .about-subtitle {
        font-size: 16px;
    }
    .intro-card, .team-card, .timeline-card, .culture-card, .contact-card {
        padding: 15px;
    }
    .card-title {
        font-size: 16px;
    }
    .form-textarea {
        min-height: 100px;
    }
    .modal-content {
        padding: 20px;
    }
}