﻿/* 重置样式 */
* { margin: 0; padding: 0; box-sizing: border-box; }

body { font-family: 'Microsoft YaHei', Arial, sans-serif; line-height: 1.6; color: #333; background-color: #fff; }

/* 容器样式 - 确保1000px宽度并居中 */
.container { width: 1000px; margin: 0 auto; padding: 0 20px; }

/* 顶部导航栏 */
.header { background-color: #08c2f0; padding: 15px 0; display:block; min-width:1000px; }
    .header .container { display: flex; justify-content: space-between; align-items: center; }
    .header .logo { display: flex; align-items: center; gap: 10px; }

    .header .nav { display: flex; align-items: center; gap: 5px; }
        .header .nav a { color: white; text-decoration: none; padding: 8px 14px 8px 0; transition: color 0.3s; }
            .header .nav a::before { content:'|'; color:#fff; font-size:14px; padding-right:14px; }
            .header .nav a:first-child::before{ content:''; margin-right:0; }
            .header .nav a:hover, .header .nav .active { color: #367fff; font-weight: bold; }

/* 主要内容区域 */
.main-content { padding: 30px 0; background-color: white; min-height: calc(100vh - 429px); min-width: 1000px; }
    .main-content > .container { height:100%; }

.footer { position: relative; min-width: 1000px; color: white; padding: 40px 0 20px; margin-top: 50px; background: url('../imgs/footer-bg.jpg') top center no-repeat; background-size: cover; }
.footer-content { display: flex; align-items:flex-start; justify-content:space-between; }
    .footer-content .contact-us { width: 40% !important; }
    .footer-column h3 { font-size: 14px; margin-bottom: 15px; color: white; }

.footer-column p { font-size: 12px; margin-bottom: 8px; color: rgba(255, 255, 255, 0.9); }
.footer-copyright { text-align: center; padding-top: 20px; border-top: 1px solid rgba(255, 255, 255, 0.2); margin-top:30px; }
    .footer-copyright p { font-size: 12px; color: rgba(255, 255, 255, 0.8); }

