/* 公共样式 */
* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

body {
    font-family: Arial, sans-serif;
    margin: 0 auto;
}

/* 头部导航栏 */
.header {
    background-color: white;
    width: 1400px;
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    z-index: 100;
    padding: 30px 0;
    margin: 0 auto;
}

.nav {
   
    display: flex;
    justify-content: space-between;
    align-items: center;
    width: 100%;
    margin: 0 auto;
    padding: 0 40px;
}

.nav-logo {
    color: black;
    font-size: 20px;
    font-weight: bold;
    cursor: pointer;
    transition: opacity 0.3s ease;
    letter-spacing: 1px;
}

.nav-logo:hover {
    opacity: 0.8;
}

.nav-items {
    display: flex;
    align-items: center;
    gap: 60px;
}

.nav-items a {
    text-decoration: none;
}

.nav-item {
    color: black;
    font-size: 16px;
    font-weight: 400;
    cursor: pointer;
    transition: opacity 0.3s ease;
}

.nav-item:hover {
    opacity: 0.8;
}

.home-btn {
    background-color: orange;
    color:white;
    border: 2px solid orange;
    border-radius: 6px;
    padding: 8px 16px;
    font-weight: 500;
}

.home-btn:hover {
    background-color: rgba(255, 255, 255, 0.1);
    color:orange;
}

/* 主要内容区域 */
.main-content {
    margin: 0 auto;
    width: 1400px;
    position: relative;
}

/* Footer Section */
.footer {
    background-color: #ffffff;
    padding: 60px 0;
    border-top: 1px solid #eaeaea;
    width: 1400px;
    margin: 0 auto;
}

.footer-container {
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 40px;
    display: flex;
    justify-content: space-between;
}

.footer-left {
    flex: 1;
    display: flex;
    flex-direction: column;
    justify-content: space-between;
}

.contact-info {
    margin-bottom: 30px;
}

.contact-item {
    color: #777;
    font-size: 16px;
    margin-bottom: 10px;
}

.social-links {
    display: flex;
    gap: 15px;
}

.social-link {
    display: inline-block;
    opacity: 0.6;
    transition: opacity 0.3s ease;
}

.social-link:hover {
    opacity: 1;
}

.social-icon {
    width: 24px;
    height: 24px;
}

.footer-center {
    flex: 1;
    display: flex;
    justify-content: center;
}

.footer-nav {
    display: flex;
    flex-direction: column;
    gap: 15px;
}

.footer-link {
    color: #333;
    text-decoration: none;
    font-size: 16px;
    transition: color 0.3s ease;
}

.footer-link:hover {
    color: #ff8c00;
}

.footer-right {
    flex: 1;
    display: flex;
    justify-content: space-between;
}

.address-info, .hours-info {
    flex: 1;
}

.footer-heading {
    color: #333;
    font-size: 16px;
    font-weight: 600;
    margin-bottom: 15px;
}

.address-text, .hours-text {
    color: #777;
    font-size: 16px;
    line-height: 1.6;
} 