/* 全局样式 */
* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

body {
    font-family: -apple-system, BlinkMacSystemFont, "Segoe UI", Roboto, "Helvetica Neue", Arial, sans-serif;
    line-height: 1.6;
    color: #333;
    background-color: #fafafa;
    min-height: 100vh;
    display: flex;
    flex-direction: column;
}

/* 主内容区域 */
.main-content {
    flex: 1;
    max-width: 1200px;
    margin: 0 auto;
    padding: 60px 20px;
    width: 100%;
}

/* 页面标题 */
.page-title {
    font-size: 42px;
    font-weight: 700;
    color: #333;
    margin-bottom: 40px;
    text-align: center;
    position: relative;
    padding-bottom: 20px;
}

.page-title::after {
    content: '';
    position: absolute;
    bottom: 0;
    left: 50%;
    transform: translateX(-50%);
    width: 80px;
    height: 4px;
    background: linear-gradient(90deg, #ff6b35, #ff8c42);
    border-radius: 2px;
}

/* 内容区域 */
.content-section {
    background: #fff;
    padding: 50px;
    border-radius: 12px;
    box-shadow: 0 2px 12px rgba(0, 0, 0, 0.08);
    margin-bottom: 30px;
}

/* 公司信息样式 */
.company-info {
    margin-bottom: 30px;
}

.company-info h2 {
    font-size: 28px;
    color: #ff6b35;
    margin-bottom: 20px;
    font-weight: 600;
}

.company-info p {
    font-size: 16px;
    line-height: 1.8;
    margin-bottom: 12px;
    color: #555;
}

.company-info .info-item {
    margin-bottom: 15px;
    padding-left: 20px;
    position: relative;
}

.company-info .info-item::before {
    content: '•';
    position: absolute;
    left: 0;
    color: #ff6b35;
    font-weight: bold;
    font-size: 20px;
}

/* 段落样式 */
.content-section p {
    font-size: 16px;
    line-height: 1.8;
    margin-bottom: 20px;
    color: #555;
    text-align: justify;
}

/* 标题样式 */
.content-section h2 {
    font-size: 24px;
    color: #333;
    margin-top: 30px;
    margin-bottom: 15px;
    font-weight: 600;
}

.content-section h3 {
    font-size: 20px;
    color: #ff6b35;
    margin-top: 25px;
    margin-bottom: 12px;
    font-weight: 600;
}

/* 列表样式 */
.content-section ul,
.content-section ol {
    margin-left: 30px;
    margin-bottom: 20px;
}

.content-section li {
    font-size: 16px;
    line-height: 1.8;
    margin-bottom: 10px;
    color: #555;
}

/* 联系信息样式 */
.contact-info {
    margin-top: 30px;
}

.contact-info h2 {
    font-size: 28px;
    color: #ff6b35;
    margin-bottom: 25px;
    font-weight: 600;
}

.contact-details {
    background: #fff9f7;
    padding: 30px;
    border-radius: 8px;
    border-left: 4px solid #ff6b35;
}

.contact-details p {
    margin-bottom: 15px;
    font-size: 16px;
    color: #555;
}

.contact-details strong {
    color: #333;
    font-weight: 600;
}

.contact-details a {
    color: #ff6b35;
    text-decoration: none;
    transition: color 0.3s ease;
}

.contact-details a:hover {
    color: #ff8c42;
    text-decoration: underline;
}

/* 底部导航 */
footer {
    background: #2c2c2c;
    color: #fff;
    padding: 40px 20px;
    margin-top: auto;
}

.footer-content {
    max-width: 1200px;
    margin: 0 auto;
}

.footer-nav {
    display: flex;
    justify-content: center;
    flex-wrap: wrap;
    gap: 20px;
    margin-bottom: 25px;
    padding-bottom: 25px;
    border-bottom: 1px solid #444;
}

.footer-nav a {
    color: #fff;
    text-decoration: none;
    font-size: 16px;
    transition: color 0.3s ease;
    padding: 5px 10px;
}

.footer-nav a:hover {
    color: #ff6b35;
}

.footer-nav a:not(:last-child)::after {
    content: '|';
    margin-left: 20px;
    color: #666;
}

.footer-copyright {
    text-align: center;
    font-size: 14px;
    color: #aaa;
    margin-bottom: 15px;
}

.footer-company-info {
    text-align: center;
    font-size: 14px;
    color: #aaa;
    line-height: 1.8;
}

/* 响应式设计 */
@media (max-width: 768px) {
    .main-content {
        padding: 40px 15px;
    }

    .page-title {
        font-size: 32px;
        margin-bottom: 30px;
    }

    .content-section {
        padding: 30px 20px;
    }

    .company-info h2,
    .contact-info h2 {
        font-size: 24px;
    }

    .content-section h2 {
        font-size: 20px;
    }

    .footer-nav {
        flex-direction: column;
        gap: 10px;
    }

    .footer-nav a:not(:last-child)::after {
        display: none;
    }
}

