/* 全局样式 */
* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

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

.container {
    width: 100%;
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 15px;
}

a {
    text-decoration: none;
    color: inherit;
}

ul {
    list-style: none;
}

img {
    max-width: 100%;
    height: auto;
}

/* 按钮样式 */
.btn {
    display: inline-block;
    padding: 12px 30px;
    border-radius: 50px;
    font-weight: bold;
    text-align: center;
    cursor: pointer;
    transition: all 0.3s ease;
}

.btn-primary {
    background-color: #ff6b6b;
    color: white;
    border: 2px solid #ff6b6b;
}

.btn-primary:hover {
    background-color: #ff5252;
    border-color: #ff5252;
    transform: translateY(-3px);
    box-shadow: 0 5px 15px rgba(255, 107, 107, 0.3);
}

.btn-outline {
    background-color: transparent;
    color: #ff6b6b;
    border: 2px solid #ff6b6b;
}

.btn-outline:hover {
    background-color: #ff6b6b;
    color: white;
}

/* 头部样式 */
.header {
    position: fixed;
    top: 0;
    left: 0;
    right: 0;
    background-color: white;
    box-shadow: 0 2px 10px rgba(0, 0, 0, 0.1);
    z-index: 1000;
    padding: 15px 0;
    transition: all 0.3s ease;
}

.header.scrolled {
    padding: 10px 0;
    background-color: rgba(255, 255, 255, 0.95);
}

.header .container {
    display: flex;
    justify-content: space-between;
    align-items: center;
}

.logo {
    font-size: 28px;
    font-weight: bold;
    color: #ff6b6b;
    text-transform: uppercase;
    letter-spacing: 2px;
}

.main-nav ul {
    display: flex;
}

.main-nav li {
    margin-left: 30px;
    position: relative;
}

.main-nav a {
    font-weight: 500;
    color: #555;
    transition: color 0.3s ease;
    padding: 5px 0;
}

.main-nav a:hover,
.main-nav a.active {
    color: #ff6b6b;
}

.main-nav a::after {
    content: '';
    position: absolute;
    bottom: 0;
    left: 0;
    width: 0;
    height: 2px;
    background-color: #ff6b6b;
    transition: width 0.3s ease;
}

.main-nav a:hover::after,
.main-nav a.active::after {
    width: 100%;
}

.mobile-menu-btn {
    display: none;
    font-size: 24px;
    color: #ff6b6b;
    cursor: pointer;
}

/* Banner样式 */
.banner {
    height: 100vh;
    min-height: 600px;
    background: linear-gradient(rgba(0, 0, 0, 0.5), rgba(0, 0, 0, 0.5)), 
                url('/img/banner.jpg') no-repeat center center/cover;
    display: flex;
    align-items: center;
    justify-content: center;
    text-align: center;
    color: white;
    margin-top: 60px;
}

.banner-content {
    max-width: 800px;
    padding: 0 20px;
}

.banner h2 {
    font-size: 48px;
    margin-bottom: 20px;
    text-shadow: 2px 2px 5px rgba(0, 0, 0, 0.5);
    animation: fadeInDown 1s ease;
}

.banner p {
    font-size: 20px;
    margin-bottom: 30px;
    animation: fadeInUp 1s ease 0.3s both;
}

.btn-register {
    background-color: #ff6b6b;
    color: white;
    border: none;
    padding: 15px 40px;
    font-size: 18px;
    border-radius: 50px;
    cursor: pointer;
    transition: all 0.3s ease;
    animation: fadeIn 1s ease 0.6s both;
    position: relative;
    overflow: hidden;
}

.btn-register:hover {
    background-color: #ff5252;
    transform: translateY(-5px);
    box-shadow: 0 10px 20px rgba(0, 0, 0, 0.2);
}

.pulse {
    animation: pulse 2s infinite;
}

/* 关于我们Banner */
.about-banner {
    height: 400px;
    background: linear-gradient(rgba(0, 0, 0, 0.6), rgba(0, 0, 0, 0.6)), 
                url('/img/guanyubanner.jpg') no-repeat center center/cover;
    display: flex;
    align-items: center;
    justify-content: center;
    text-align: center;
    color: white;
    margin-top: 60px;
}

.about-banner h2 {
    font-size: 48px;
    margin-bottom: 15px;
    animation: fadeInDown 1s ease;
}

.about-banner p {
    font-size: 20px;
    animation: fadeInUp 1s ease 0.3s both;
}

/* 通用区块样式 */
.section {
    padding: 80px 0;
}

.section-title {
    text-align: center;
    font-size: 36px;
    margin-bottom: 50px;
    color: #333;
    position: relative;
}

.section-title::after {
    content: '';
    display: block;
    width: 80px;
    height: 4px;
    background-color: #ff6b6b;
    margin: 15px auto;
    border-radius: 2px;
}

/* 关于益达模块 */
.about-section {
    background-color: #f5f5f5;
}

.about-content {
    max-width: 800px;
    margin: 0 auto;
    text-align: center;
    font-size: 18px;
    line-height: 1.8;
}

.about-content p {
    margin-bottom: 20px;
}

.btn-more {
    display: inline-block;
    margin-top: 30px;
    padding: 10px 30px;
    background-color: #ff6b6b;
    color: white;
    border-radius: 50px;
    font-weight: bold;
    transition: all 0.3s ease;
}

.btn-more:hover {
    background-color: #ff5252;
    transform: translateY(-3px);
    box-shadow: 0 5px 15px rgba(255, 107, 107, 0.3);
}

/* 益达招商模块 */
.business-section {
    background-color: white;
}

.business-content {
    display: flex;
    justify-content: space-between;
    flex-wrap: wrap;
    gap: 30px;
}

.business-item {
    flex: 1;
    min-width: 250px;
    padding: 40px 30px;
    background-color: #f9f9f9;
    border-radius: 10px;
    text-align: center;
    transition: all 0.3s ease;
    box-shadow: 0 5px 15px rgba(0, 0, 0, 0.05);
}

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

.business-item i {
    font-size: 50px;
    color: #ff6b6b;
    margin-bottom: 20px;
}

.business-item h3 {
    font-size: 22px;
    margin-bottom: 15px;
    color: #333;
}

.business-item p {
    color: #666;
    line-height: 1.6;
}

/* 招商主管模块 */
.manager-section {
    background-color: #f5f5f5;
}

.manager-content {
    display: flex;
    align-items: center;
    gap: 50px;
    background-color: white;
    padding: 40px;
    border-radius: 10px;
    box-shadow: 0 5px 15px rgba(0, 0, 0, 0.05);
}

.manager-profile {
    text-align: center;
    flex: 1;
}

.manager-profile img {
    width: 200px;
    height: 200px;
    border-radius: 50%;
    object-fit: cover;
    margin-bottom: 20px;
    border: 5px solid #ff6b6b;
}

.manager-profile h3 {
    font-size: 24px;
    margin-bottom: 5px;
}

.manager-profile .position {
    color: #ff6b6b;
    font-weight: bold;
    margin-bottom: 20px;
}

.manager-desc {
    flex: 2;
}

.manager-desc p {
    margin-bottom: 15px;
    line-height: 1.6;
}

.contact-info {
    margin-top: 20px;
}

.contact-info p {
    margin-bottom: 10px;
    display: flex;
    align-items: center;
}

.contact-info i {
    margin-right: 10px;
    color: #ff6b6b;
}

/* 益达代理模块 */
.agent-section {
    background-color: white;
}

.agent-level {
    display: flex;
    justify-content: center;
    gap: 30px;
    flex-wrap: wrap;
}

.level-card {
    flex: 1;
    min-width: 280px;
    max-width: 350px;
    background-color: #f9f9f9;
    border-radius: 10px;
    padding: 40px 30px;
    text-align: center;
    transition: all 0.3s ease;
    position: relative;
    box-shadow: 0 5px 15px rgba(0, 0, 0, 0.05);
}

.level-card:hover {
    transform: translateY(-10px);
    box-shadow: 0 15px 30px rgba(0, 0, 0, 0.1);
}

.level-card.featured {
    border: 2px solid #ff6b6b;
}

.featured-badge {
    position: absolute;
    top: -15px;
    right: 20px;
    background-color: #ff6b6b;
    color: white;
    padding: 5px 15px;
    border-radius: 50px;
    font-weight: bold;
    font-size: 14px;
}

.level-card h3 {
    font-size: 24px;
    margin-bottom: 15px;
    color: #333;
}

.level-card .price {
    font-size: 20px;
    color: #ff6b6b;
    font-weight: bold;
    margin-bottom: 20px;
}

.level-card ul {
    margin-bottom: 30px;
    text-align: left;
}

.level-card li {
    margin-bottom: 10px;
    padding-left: 25px;
    position: relative;
}

.level-card li::before {
    content: '✓';
    position: absolute;
    left: 0;
    color: #ff6b6b;
    font-weight: bold;
}

.btn-apply {
    display: inline-block;
    width: 100%;
    padding: 12px;
    background-color: #ff6b6b;
    color: white;
    border: none;
    border-radius: 50px;
    font-weight: bold;
    cursor: pointer;
    transition: all 0.3s ease;
}

.btn-apply:hover {
    background-color: #ff5252;
    transform: translateY(-3px);
    box-shadow: 0 5px 15px rgba(255, 107, 107, 0.3);
}

/* 益达总代模块 */
.general-agent-section {
    background-color: #f5f5f5;
}

.general-agent-content {
    display: flex;
    gap: 50px;
}

.privilege-list {
    flex: 2;
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 30px;
}

.privilege-item {
    background-color: white;
    padding: 30px;
    border-radius: 10px;
    box-shadow: 0 5px 15px rgba(0, 0, 0, 0.05);
    transition: all 0.3s ease;
    text-align: center;
}

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

.privilege-item i {
    font-size: 40px;
    color: #ff6b6b;
    margin-bottom: 20px;
}

.privilege-item h3 {
    font-size: 20px;
    margin-bottom: 15px;
    color: #333;
}

.privilege-item p {
    color: #666;
    line-height: 1.6;
}

.requirements {
    flex: 1;
    background-color: white;
    padding: 30px;
    border-radius: 10px;
    box-shadow: 0 5px 15px rgba(0, 0, 0, 0.05);
}

.requirements h3 {
    font-size: 24px;
    margin-bottom: 20px;
    color: #333;
    text-align: center;
}

.requirements ul {
    margin-bottom: 30px;
}

.requirements li {
    margin-bottom: 15px;
    padding-left: 25px;
    position: relative;
}

.requirements li::before {
    content: '•';
    position: absolute;
    left: 0;
    color: #ff6b6b;
    font-weight: bold;
}

.btn-contact {
    display: inline-block;
    width: 100%;
    padding: 12px;
    background-color: #ff6b6b;
    color: white;
    border: none;
    border-radius: 50px;
    font-weight: bold;
    cursor: pointer;
    transition: all 0.3s ease;
    text-align: center;
}

.btn-contact:hover {
    background-color: #ff5252;
    transform: translateY(-3px);
    box-shadow: 0 5px 15px rgba(255, 107, 107, 0.3);
}

/* 联系益达模块 */
.contact-section {
    background-color: white;
}

.contact-content {
    display: flex;
    gap: 50px;
}

.contact-info {
    flex: 1;
    background-color: #f9f9f9;
    padding: 40px;
    border-radius: 10px;
}

.contact-info h3 {
    font-size: 24px;
    margin-bottom: 30px;
    color: #333;
}

.contact-info p {
    margin-bottom: 20px;
    display: flex;
    align-items: center;
}

.contact-info i {
    margin-right: 15px;
    color: #ff6b6b;
    font-size: 20px;
    width: 20px;
    text-align: center;
}

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

.social-links a {
    display: flex;
    align-items: center;
    justify-content: center;
    width: 40px;
    height: 40px;
    background-color: #ff6b6b;
    color: white;
    border-radius: 50%;
    transition: all 0.3s ease;
}

.social-links a:hover {
    background-color: #ff5252;
    transform: translateY(-3px);
}

.contact-form {
    flex: 2;
    background-color: #f9f9f9;
    padding: 40px;
    border-radius: 10px;
}

.contact-form h3 {
    font-size: 24px;
    margin-bottom: 30px;
    color: #333;
}

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

.form-group input,
.form-group textarea {
    width: 100%;
    padding: 12px 15px;
    border: 1px solid #ddd;
    border-radius: 5px;
    font-family: inherit;
    font-size: 16px;
    transition: all 0.3s ease;
}

.form-group input:focus,
.form-group textarea:focus {
    border-color: #ff6b6b;
    outline: none;
    box-shadow: 0 0 0 3px rgba(255, 107, 107, 0.2);
}

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

.btn-submit {
    display: inline-block;
    width: 100%;
    padding: 15px;
    background-color: #ff6b6b;
    color: white;
    border: none;
    border-radius: 5px;
    font-size: 18px;
    font-weight: bold;
    cursor: pointer;
    transition: all 0.3s ease;
}

.btn-submit:hover {
    background-color: #ff5252;
    transform: translateY(-3px);
    box-shadow: 0 5px 15px rgba(255, 107, 107, 0.3);
}

/* 页脚样式 */
.footer {
    background-color: #333;
    color: white;
    padding: 60px 0 20px;
}

.footer-content {
    display: flex;
    justify-content: space-between;
    flex-wrap: wrap;
    gap: 30px;
    margin-bottom: 40px;
}

.footer-logo h2 {
    font-size: 28px;
    color: #ff6b6b;
    margin-bottom: 10px;
}

.footer-logo p {
    color: #bbb;
}

.footer-links h3,
.footer-contact h3 {
    font-size: 20px;
    margin-bottom: 20px;
    color: white;
}

.footer-links ul li {
    margin-bottom: 10px;
}

.footer-links a {
    color: #bbb;
    transition: color 0.3s ease;
}

.footer-links a:hover {
    color: #ff6b6b;
}

.footer-contact p {
    color: #bbb;
    margin-bottom: 15px;
    display: flex;
    align-items: center;
}

.footer-contact i {
    margin-right: 10px;
    color: #ff6b6b;
}

.copyright {
    text-align: center;
    padding-top: 20px;
    border-top: 1px solid #444;
    color: #bbb;
    font-size: 14px;
}

/* 关于我们页面特定样式 */
.about-company {
    background-color: white;
    padding: 40px;
    border-radius: 10px;
    box-shadow: 0 5px 15px rgba(0, 0, 0, 0.05);
    margin-bottom: 60px;
}

.about-company h2 {
    font-size: 32px;
    margin-bottom: 30px;
    color: #333;
    text-align: center;
}

.about-company p {
    margin-bottom: 20px;
    line-height: 1.8;
    font-size: 16px;
}

.milestones h2 {
    font-size: 32px;
    margin-bottom: 50px;
    color: #333;
    text-align: center;
}

.timeline {
    position: relative;
    max-width: 800px;
    margin: 0 auto;
}

.timeline::before {
    content: '';
    position: absolute;
    top: 0;
    bottom: 0;
    left: 50%;
    width: 2px;
    background-color: #ff6b6b;
    transform: translateX(-50%);
}

.timeline-item {
    position: relative;
    margin-bottom: 50px;
    display: flex;
    justify-content: space-between;
}

.timeline-year {
    width: 100px;
    height: 100px;
    background-color: #ff6b6b;
    color: white;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 24px;
    font-weight: bold;
    position: relative;
    z-index: 1;
}

.timeline-content {
    width: calc(50% - 80px);
    padding: 30px;
    background-color: white;
    border-radius: 10px;
    box-shadow: 0 5px 15px rgba(0, 0, 0, 0.05);
}

.timeline-content h3 {
    font-size: 20px;
    margin-bottom: 10px;
    color: #333;
}

.timeline-content p {
    color: #666;
    line-height: 1.6;
}

.timeline-item:nth-child(even) .timeline-content {
    order: -1;
}

.culture-section {
    background-color: #f5f5f5;
    padding: 80px 0;
}

.culture-items {
    display: flex;
    justify-content: space-between;
    flex-wrap: wrap;
    gap: 30px;
}

.culture-item {
    flex: 1;
    min-width: 250px;
    background-color: white;
    padding: 40px 30px;
    border-radius: 10px;
    text-align: center;
    box-shadow: 0 5px 15px rgba(0, 0, 0, 0.05);
    transition: all 0.3s ease;
}

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

.culture-item i {
    font-size: 50px;
    color: #ff6b6b;
    margin-bottom: 20px;
}

.culture-item h3 {
    font-size: 22px;
    margin-bottom: 15px;
    color: #333;
}

.culture-item p {
    color: #666;
    line-height: 1.6;
}

.team-section {
    padding: 80px 0;
    background-color: white;
}

.team-members {
    display: flex;
    justify-content: center;
    flex-wrap: wrap;
    gap: 30px;
}

.team-member {
    flex: 1;
    min-width: 250px;
    max-width: 300px;
    background-color: #f9f9f9;
    padding: 30px;
    border-radius: 10px;
    text-align: center;
    box-shadow: 0 5px 15px rgba(0, 0, 0, 0.05);
    transition: all 0.3s ease;
}

.team-member:hover {
    transform: translateY(-10px);
    box-shadow: 0 15px 30px rgba(0, 0, 0, 0.1);
}

.team-member img {
    width: 150px;
    height: 150px;
    border-radius: 50%;
    object-fit: cover;
    margin-bottom: 20px;
    border: 5px solid #ff6b6b;
}

.team-member h3 {
    font-size: 22px;
    margin-bottom: 5px;
    color: #333;
}

.team-member .position {
    color: #ff6b6b;
    font-weight: bold;
    margin-bottom: 15px;
}

.team-member .desc {
    color: #666;
    line-height: 1.6;
}

.honor-section {
    padding: 80px 0;
    background-color: #f5f5f5;
}

.honor-items {
    display: flex;
    justify-content: space-between;
    flex-wrap: wrap;
    gap: 30px;
}

.honor-item {
    flex: 1;
    min-width: 200px;
    background-color: white;
    padding: 30px;
    border-radius: 10px;
    text-align: center;
    box-shadow: 0 5px 15px rgba(0, 0, 0, 0.05);
    transition: all 0.3s ease;
}

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

.honor-item i {
    font-size: 40px;
    color: #ff6b6b;
    margin-bottom: 20px;
}

.honor-item h3 {
    font-size: 20px;
    margin-bottom: 10px;
    color: #333;
}

.honor-item p {
    color: #666;
    line-height: 1.6;
}

/* 动画效果 */
@keyframes fadeIn {
    from { opacity: 0; }
    to { opacity: 1; }
}

@keyframes fadeInDown {
    from {
        opacity: 0;
        transform: translateY(-30px);
    }
    to {
        opacity: 1;
        transform: translateY(0);
    }
}

@keyframes fadeInUp {
    from {
        opacity: 0;
        transform: translateY(30px);
    }
    to {
        opacity: 1;
        transform: translateY(0);
    }
}

@keyframes pulse {
    0% {
        box-shadow: 0 0 0 0 rgba(255, 107, 107, 0.7);
    }
    70% {
        box-shadow: 0 0 0 15px rgba(255, 107, 107, 0);
    }
    100% {
        box-shadow: 0 0 0 0 rgba(255, 107, 107, 0);
    }
}

/* 响应式设计 */
@media (max-width: 992px) {
    .general-agent-content {
        flex-direction: column;
    }
    
    .privilege-list {
        grid-template-columns: 1fr;
    }
    
    .contact-content {
        flex-direction: column;
    }
    
    .timeline::before {
        left: 30px;
    }
    
    .timeline-item {
        flex-direction: column;
    }
    
    .timeline-year {
        margin-bottom: 20px;
    }
    
    .timeline-content {
        width: calc(100% - 80px);
        margin-left: 80px;
    }
    
    .timeline-item:nth-child(even) .timeline-content {
        order: 1;
    }
}

@media (max-width: 768px) {
    .main-nav {
        position: fixed;
        top: 80px;
        left: -100%;
        width: 80%;
        height: calc(100vh - 80px);
        background-color: white;
        flex-direction: column;
        align-items: center;
        justify-content: flex-start;
        padding-top: 30px;
        transition: all 0.3s ease;
        box-shadow: 2px 0 10px rgba(0, 0, 0, 0.1);
    }
    
    .main-nav.active {
        left: 0;
    }
    
    .main-nav ul {
        flex-direction: column;
        width: 100%;
    }
    
    .main-nav li {
        margin: 0 0 20px 0;
        width: 100%;
        text-align: center;
    }
    
    .main-nav a {
        padding: 10px 0;
        display: block;
    }
    
    .mobile-menu-btn {
        display: block;
    }
    
    .banner h2 {
        font-size: 36px;
    }
    
    .banner p {
        font-size: 18px;
    }
    
    .section-title {
        font-size: 30px;
    }
    
    .manager-content {
        flex-direction: column;
    }
    
    .manager-profile {
        margin-bottom: 30px;
    }
}

@media (max-width: 576px) {
    .banner h2 {
        font-size: 28px;
    }
    
    .banner p {
        font-size: 16px;
    }
    
    .section {
        padding: 60px 0;
    }
    
    .business-item,
    .level-card,
    .culture-item,
    .team-member,
    .honor-item {
        min-width: 100%;
    }
    
    .about-banner h2 {
        font-size: 36px;
    }
    
    .about-banner p {
        font-size: 18px;
    }
}
