*{
    margin: 0;
    padding: 0;
    box-sizing: border-box;
    font-family: "Microsoft YaHei", "PingFang SC", sans-serif;
}
.cp_content{
    background: linear-gradient(180deg, #ffffff 0%, #ffffff 50%, #ffffff 85%, #08367a 100%);
    min-height: 100vh;
}

/* 顶部主视觉区 */
.hero-section {
    width:100%;
    overflow:hidden;
}
.hero-bg {
    width:100%;
}
.container {
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 20px 30px;
}
/* 活动内容区 */
.content-section {
    background: #fff;
    margin-top: -18vw;
    border-radius: 16px;
    padding: 50px 40px 5px;
    position: relative;
    z-index: 5;
    box-shadow: 0 -6px 30px rgba(0,0,0,0.12);
}
.content-header {
    text-align: center;
    margin-bottom: 45px;
}
.content-header h2 {
    font-size: 36px;
    color: #d92b2b;
    margin-bottom: 12px;
    font-weight: 700;
}
.content-header p {
    color: #666;
    font-size: 16px;
}
.content-wrapper {
    display: grid;
    grid-template-columns: 2fr 1fr;
    gap: 40px;
    align-items: center;
    margin-bottom: 50px;
}

.benefits-wrapper {
    display: grid;
    grid-template-columns:4fr 2.5fr 0.5fr;
    gap: 40px;
    align-items: flex-start;
    margin-bottom: 50px;
}
.benefits-list {
    list-style: none;
    max-width: 750px;
    margin: 0 auto;
}
.benefits-list li {
    display: flex;
    align-items: center;
    font-size: 22px;
    padding: 14px 0;
    border-bottom: 1px solid #f0f0f0;
    transition: all 0.3s ease;
    letter-spacing: 3px;
}
.benefits-list li:hover {
    background-color: #f8fbff;
    padding-left: 10px;
    border-radius: 8px;
}
.benefits-list li:last-child {
    border-bottom: none;
}
.gift-icon {
    width: 36px;
    height: 36px;
    background: linear-gradient(135deg, #ff4d4d 0%, #d92b2b 100%);
    border-radius: 6px;
    margin-right: 18px;
    position: relative;
    flex-shrink: 0;
}
.gift-icon::after {
    content: '';
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    width: 22px;
    height: 22px;
    background: #ffcc00;
    clip-path: polygon(50% 0%, 100% 35%, 80% 100%, 20% 100%, 0% 35%);
}
.highlight-text {
    color: #d92b2b;
    font-weight: bold;
    margin-left: 4px;
}
/* 预约表单模块 */
.booking-form {
    background: linear-gradient(135deg, #0f66b8 0%, #08367a 100%);
    border-radius: 12px;
    padding: 30px;
    color: #fff;
    margin-top: 18px;
}
.booking-form h3 {
    font-size: 24px;
    margin-bottom: 20px;
    text-align: center;
}
.form-group{
    margin-bottom: 18px;
}
.form-group label {
    display: block;
    margin-bottom: 6px;
    font-size: 14px;
    opacity: 0.9;
}
.form-group input, .form-group select {
    width: 100%;
    padding: 12px;
    border: none;
    border-radius: 6px;
    font-size: 16px;
    outline: none;
}
.submit-btn {
    width: 100%;
    background: #ffcc00;
    color: #08367a;
    font-size: 18px;
    font-weight: bold;
    padding: 14px;
    border: none;
    border-radius: 6px;
    cursor: pointer;
    margin-top: 20px;
    transition: all 0.3s ease;
}
.submit-btn:hover {
    background: #ffdd33;
    transform: translateY(-2px);
}
/* 联系方式模块 */
.contact-section {
    display: flex;
    justify-content: space-around;
    flex-wrap: wrap;
    gap: 20px;
    margin: 30px 0;
    text-align: center;
}
.contact-item {
    flex: 1;
    min-width: 200px;
    padding: 20px;
    background: #f8fbff;
    border-radius: 10px;    
}
.contact-item h4 {
    color: #08367a;
    font-size: 18px;
    margin-bottom: 8px;
}
.contact-item p {
    color: #333;
    font-size: 16px;
}
/* 预约按钮模块 */
.booking-section {
    background: linear-gradient(90deg, #0f66b8 0%, #08367a 100%);
    border-radius: 12px;
    padding: 35px;
    text-align: center;
    margin: 40px 0;
    color: #fff;
}
.booking-section h3 {
    font-size: 26px;
    margin-bottom: 15px;
}
.booking-btn {
    display: inline-block;
    background: #ffcc00;
    color: #08367a;
    font-size: 20px;
    font-weight: bold;
    padding: 15px 45px;
    border-radius: 50px;
    text-decoration: none;
    margin-top: 10px;
    transition: all 0.3s ease;
    box-shadow: 0 4px 15px rgba(255, 204, 0, 0.4);
}
.booking-btn:hover {
    background: #ffdd33;
    transform: translateY(-3px);
    box-shadow: 0 6px 20px rgba(255, 204, 0, 0.5);
}
/* 响应式适配 */
@media (max-width: 992px) {
    .hero-title .season {
        font-size: 52px;
    }
    .hero-title .campaign {
        font-size: 90px;
    }
    .hero-subtitle {
        font-size: 26px;
        right: 30px;
        padding: 10px 25px;
    }
    .benefits-wrapper {
        grid-template-columns: 1fr;
        gap: 15px;
    }
    .booking-form {
        order: -1;
    }
}
@media (max-width: 768px) {
    .hero-section {
        /*height: 324px;*/
    }
    .hero-title .season {
        font-size: 38px;
    }
    .hero-title .campaign {
        font-size: 65px;
    }
    .hero-title .brand {
        font-size: 22px;
    }
    .hero-subtitle {
        font-size: 20px;
        right: 20px;
        bottom: 30px;
        padding: 8px 18px;
    }
    .content-section {
        margin-top: -30px;
        padding: 30px 20px;
    }
    .content-header{
        margin-bottom: 10px;
    }
    .content-header h2 {
        font-size: 28px;
    }
    .benefits-list li {
        font-size: 18px;
    }
    .booking-section h3 {
        font-size: 22px;
    }
    .booking-btn {
        font-size: 18px;
        padding: 12px 35px;
    }
}
