/* 页面通用样式 */

/* 页面头部 */
.page-header {
    background: linear-gradient(135deg, #1a365d 0%, #2d4a7c 100%);
    color: #fff;
    padding: 120px 20px 60px;
    text-align: center;
}

.page-header h1 {
    font-size: 36px;
    margin-bottom: 10px;
}

.page-header p {
    font-size: 18px;
    opacity: 0.9;
}

/* 页面内容 */
.page-content {
    padding: 60px 20px;
    min-height: 50vh;
}

.content-block {
    margin-bottom: 60px;
}

.content-block h2 {
    font-size: 28px;
    color: #1a365d;
    margin-bottom: 20px;
    position: relative;
    padding-bottom: 15px;
}

.content-block h2::after {
    content: '';
    position: absolute;
    bottom: 0;
    left: 0;
    width: 60px;
    height: 3px;
    background: #c9a227;
}

.content-block p {
    color: #666;
    line-height: 1.8;
    font-size: 16px;
}

/* 使命网格 */
.mission-grid {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 30px;
    margin-top: 30px;
}

.mission-item {
    text-align: center;
    padding: 30px 20px;
    background: #f8f9fa;
    border-radius: 10px;
    transition: transform 0.3s, box-shadow 0.3s;
}

.mission-item:hover {
    transform: translateY(-5px);
    box-shadow: 0 10px 30px rgba(0,0,0,0.1);
}

.mission-icon {
    font-size: 50px;
    margin-bottom: 15px;
}

.mission-item h3 {
    color: #1a365d;
    margin-bottom: 10px;
}

.mission-item p {
    font-size: 14px;
}

/* 优势列表 */
.advantage-list {
    list-style: none;
    padding: 0;
}

.advantage-list li {
    padding: 15px 20px;
    background: #f8f9fa;
    margin-bottom: 10px;
    border-radius: 5px;
    font-size: 16px;
    border-left: 4px solid #c9a227;
}

.advantage-list strong {
    color: #1a365d;
}

/* 时间线 */
.process-timeline {
    position: relative;
    padding-left: 60px;
}

.process-timeline::before {
    content: '';
    position: absolute;
    left: 20px;
    top: 0;
    bottom: 0;
    width: 2px;
    background: #e8e8e8;
}

.timeline-item {
    position: relative;
    margin-bottom: 40px;
}

.timeline-item:last-child {
    margin-bottom: 0;
}

.timeline-num {
    position: absolute;
    left: -52px;
    top: 0;
    width: 40px;
    height: 40px;
    background: #1a365d;
    color: #fff;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-weight: bold;
    font-size: 16px;
}

.timeline-content {
    background: #f8f9fa;
    padding: 20px;
    border-radius: 8px;
}

.timeline-content h3 {
    color: #1a365d;
    margin-bottom: 8px;
}

.timeline-content p {
    margin: 0;
}

/* CTA区块 */
.cta-block {
    background: linear-gradient(135deg, #1a365d 0%, #2d4a7c 100%);
    color: #fff;
    padding: 60px 40px;
    border-radius: 10px;
    text-align: center;
    margin-top: 40px;
}

.cta-block h2 {
    color: #fff;
    margin-bottom: 10px;
}

.cta-block h2::after {
    display: none;
}

.cta-block p {
    color: rgba(255,255,255,0.8);
    margin-bottom: 25px;
}

.cta-block .btn-primary {
    background: #c9a227;
}

.cta-block .btn-primary:hover {
    background: #b8922a;
}

.cta-block .btn-secondary {
    border-color: #fff;
    margin-left: 15px;
}

/* 服务列表 */
.services-list {
    margin-bottom: 40px;
}

.service-list-item {
    display: flex;
    align-items: center;
    padding: 25px;
    background: #fff;
    border: 1px solid #e8e8e8;
    border-radius: 10px;
    margin-bottom: 15px;
    cursor: pointer;
    transition: all 0.3s;
}

.service-list-item:hover {
    border-color: #1a365d;
    box-shadow: 0 5px 20px rgba(0,0,0,0.1);
    transform: translateX(10px);
}

.service-list-icon {
    font-size: 40px;
    margin-right: 25px;
}

.service-list-content {
    flex: 1;
}

.service-list-content h3 {
    color: #1a365d;
    margin-bottom: 5px;
}

.service-list-content p {
    margin: 0;
    font-size: 14px;
}

.service-list-arrow {
    font-size: 24px;
    color: #c9a227;
}

/* 服务详情 */
.service-detail {
    text-align: center;
}

.service-detail-icon {
    font-size: 80px;
    margin-bottom: 20px;
}

.service-detail h2 {
    display: inline-block;
}

.service-detail-desc {
    max-width: 700px;
    margin: 0 auto 40px;
    font-size: 18px;
}

.service-detail-content {
    text-align: left;
    max-width: 700px;
    margin: 0 auto 40px;
}

.service-detail-content h3 {
    color: #1a365d;
    margin: 30px 0 15px;
}

.service-scope {
    list-style: none;
    padding: 0;
}

.service-scope li {
    padding: 12px 20px;
    background: #f8f9fa;
    margin-bottom: 10px;
    border-radius: 5px;
    position: relative;
    padding-left: 40px;
}

.service-scope li::before {
    content: '✓';
    position: absolute;
    left: 15px;
    color: #c9a227;
    font-weight: bold;
}

.mini-process {
    display: flex;
    justify-content: center;
    align-items: center;
    gap: 10px;
    flex-wrap: wrap;
}

.mini-step {
    background: #1a365d;
    color: #fff;
    padding: 10px 20px;
    border-radius: 25px;
    font-size: 14px;
}

.mini-arrow {
    color: #c9a227;
    font-size: 20px;
}

/* 团队列表 */
.team-list {
    margin-bottom: 40px;
}

.team-list-item {
    display: flex;
    align-items: center;
    padding: 25px;
    background: #fff;
    border: 1px solid #e8e8e8;
    border-radius: 10px;
    margin-bottom: 15px;
    cursor: pointer;
    transition: all 0.3s;
}

.team-list-item:hover {
    border-color: #1a365d;
    box-shadow: 0 5px 20px rgba(0,0,0,0.1);
}

.team-list-photo {
    width: 100px;
    height: 100px;
    background: #e8e8e8;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 40px;
    margin-right: 25px;
    overflow: hidden;
}

.team-list-photo img {
    width: 100%;
    height: 100%;
    object-fit: cover;
}

.team-list-info {
    flex: 1;
}

.team-list-info h3 {
    color: #1a365d;
    margin-bottom: 5px;
}

.team-list-info .title {
    color: #c9a227;
    margin-bottom: 8px;
}

.team-list-info p {
    margin: 0;
    font-size: 14px;
}

.team-list-arrow {
    font-size: 24px;
    color: #c9a227;
}

/* 成员详情 */
.member-detail {
    display: flex;
    gap: 50px;
    align-items: flex-start;
}

.member-detail-photo {
    width: 300px;
    height: 380px;
    background: #e8e8e8;
    border-radius: 10px;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 80px;
    flex-shrink: 0;
    overflow: hidden;
}

.member-detail-photo img {
    width: 100%;
    height: 100%;
    object-fit: cover;
}

.member-detail-info {
    flex: 1;
}

.member-detail-info h2 {
    display: block;
    margin-bottom: 5px;
}

.member-detail-title {
    color: #c9a227;
    font-size: 18px;
    margin-bottom: 20px;
}

.member-detail-desc {
    font-size: 16px;
    line-height: 1.8;
    margin-bottom: 30px;
}

.member-detail-section {
    margin-bottom: 30px;
}

.member-detail-section h3 {
    color: #1a365d;
    margin-bottom: 15px;
}

.expertise-tags {
    display: flex;
    gap: 10px;
    flex-wrap: wrap;
}

.tag {
    background: #f0f4f8;
    color: #1a365d;
    padding: 8px 20px;
    border-radius: 20px;
    font-size: 14px;
}

/* 联系页面 */
.contact-layout {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 60px;
}

.contact-item-list {
    margin-bottom: 30px;
}

.contact-item-block {
    display: flex;
    gap: 20px;
    padding: 20px;
    background: #f8f9fa;
    border-radius: 10px;
    margin-bottom: 15px;
}

.contact-item-icon {
    font-size: 30px;
}

.contact-item-content h3 {
    color: #1a365d;
    margin-bottom: 5px;
}

.contact-item-content .hint {
    font-size: 12px;
    color: #999;
}

.map-container {
    height: 200px;
    border-radius: 10px;
    overflow: hidden;
    border: 1px solid #e0e0e0;
}

/* 联系表单 */
.contact-form-wrapper h2 {
    display: block;
}

.form-row {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 20px;
}

.contact-form .form-group {
    margin-bottom: 20px;
}

.contact-form label {
    display: block;
    margin-bottom: 8px;
    font-weight: 500;
    color: #333;
}

.contact-form .required {
    color: #e53e3e;
}

.contact-form input,
.contact-form select,
.contact-form textarea {
    width: 100%;
    padding: 12px 15px;
    border: 1px solid #ddd;
    border-radius: 5px;
    font-size: 14px;
    transition: border-color 0.3s;
}

.contact-form input:focus,
.contact-form select:focus,
.contact-form textarea:focus {
    outline: none;
    border-color: #1a365d;
}

.contact-form textarea {
    height: 120px;
    resize: vertical;
}

.btn-full {
    width: 100%;
}

.error-message {
    background: #fed7d7;
    color: #c53030;
    padding: 15px;
    border-radius: 5px;
    margin-bottom: 20px;
}

.success-message {
    text-align: center;
    padding: 40px;
    background: #f0fff4;
    border-radius: 10px;
}

.success-icon {
    font-size: 60px;
    margin-bottom: 20px;
}

/* 新闻页面 */
.news-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 30px;
}

.news-card {
    background: #fff;
    border-radius: 10px;
    overflow: hidden;
    box-shadow: 0 2px 10px rgba(0,0,0,0.08);
    text-decoration: none;
    color: inherit;
    transition: transform 0.3s, box-shadow 0.3s;
}

.news-card:hover {
    transform: translateY(-5px);
    box-shadow: 0 10px 30px rgba(0,0,0,0.15);
}

.news-cover {
    height: 180px;
    background-size: cover;
    background-position: center;
    background-color: #f0f4f8;
}

.news-cover-placeholder {
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 50px;
}

.news-content {
    padding: 20px;
}

.news-meta {
    display: flex;
    gap: 10px;
    margin-bottom: 10px;
    font-size: 13px;
}

.news-category {
    background: #1a365d;
    color: #fff;
    padding: 3px 10px;
    border-radius: 12px;
}

.news-date {
    color: #999;
    line-height: 24px;
}

.news-item-title {
    font-size: 16px;
    color: #333;
    margin-bottom: 10px;
    line-height: 1.4;
}

.news-excerpt {
    font-size: 13px;
    color: #666;
    line-height: 1.6;
    margin: 0;
}

.news-detail {
    max-width: 800px;
    margin: 0 auto;
}

.news-detail .news-meta {
    margin-bottom: 15px;
}

.news-detail .news-title {
    font-size: 28px;
    color: #1a365d;
    margin-bottom: 20px;
    line-height: 1.4;
}

.news-body {
    font-size: 16px;
    line-height: 1.8;
    color: #333;
    padding: 30px;
    background: #f8f9fa;
    border-radius: 10px;
}

.news-back {
    margin-top: 30px;
    text-align: center;
}

.empty-state {
    text-align: center;
    padding: 60px;
    color: #999;
    font-size: 18px;
}

@media (max-width: 768px) {
    .news-grid {
        grid-template-columns: 1fr;
    }
}

/* 响应式 */
@media (max-width: 768px) {
    .mission-grid {
        grid-template-columns: repeat(2, 1fr);
    }
    
    .contact-layout {
        grid-template-columns: 1fr;
    }
    
    .member-detail {
        flex-direction: column;
        text-align: center;
    }
    
    .member-detail-photo {
        margin: 0 auto;
    }
    
    .expertise-tags {
        justify-content: center;
    }
    
    .form-row {
        grid-template-columns: 1fr;
    }
    
    .mini-process {
        flex-direction: column;
    }
    
    .mini-arrow {
        transform: rotate(90deg);
    }
}
