/* 舟山和院活动页面样式 */
/* zhousanApril.css - 舟山和院征集十套样板间活动样式 */

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

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

.wrapbox {
    width: 100%;
    min-height: 100vh;
    display: flex;
    align-items: center;
    justify-content: center;
    padding: 20px;
     background:url(/wp-content/uploads/pageimg/zhousanApril/zshy.png) no-repeat top center;
}

/* 主容器样式 */
.sixbox {
    width: 100%;
    max-width: 1200px;
    animation: fadeInUp 0.8s ease-out;
}

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

.container {
    width: 100%;
}

/* 活动卡片 */
.activity-card {
    padding: 10px;
    background: white;
    border-radius: 20px;
    box-shadow: 0 20px 60px rgba(0, 0, 0, 0.2);
    overflow: hidden;
    position: relative;
}

/* 顶部装饰 */
.activity-card:before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    height: 5px;
    /*background: linear-gradient(90deg, #ff6b6b, #feca57, #48dbfb, #1dd1a1, #ff9ff3);*/
    background-size: 300% 100%;
    animation: gradientFlow 8s ease infinite;
}

@keyframes gradientFlow {
    0% { background-position: 0% 50%; }
    50% { background-position: 100% 50%; }
    100% { background-position: 0% 50%; }
}

/* 活动信息区域 */
.activity-info {
    padding: 50px 50px 30px;
    background: linear-gradient(135deg, #667eea 0%, #764ba2 100%);
    color: white;
    position: relative;
    overflow: hidden;
}

.activity-info:after {
    content: '';
    position: absolute;
    bottom: 0;
    left: 0;
    right: 0;
    height: 1px;
    background: rgba(255, 255, 255, 0.2);
}

/* 活动标题 */
.activity-title {
    text-align: center;
    font-size: 36px;
    font-weight: 700;
    margin-bottom: 30px;
    color: white;
    text-shadow: 2px 2px 4px rgba(0, 0, 0, 0.2);
    letter-spacing: 2px;
    position: relative;
    padding-bottom: 20px;
}

.activity-title:after {
    content: '';
    position: absolute;
    bottom: 0;
    left: 50%;
    transform: translateX(-50%);
    width: 100px;
    height: 3px;
    background: #feca57;
    border-radius: 2px;
    box-shadow: 0 2px 8px rgba(254, 202, 87, 0.3);
}

/* 活动介绍 */
.activity-intro {
    background: rgba(255, 255, 255, 0.1);
    backdrop-filter: blur(10px);
    border-radius: 15px;
    padding: 30px;
    line-height: 1.8;
    font-size: 16px;
    margin-bottom: 40px;
    border: 1px solid rgba(255, 255, 255, 0.2);
    text-align: justify;
    position: relative;
    z-index: 1;
}

/* 信息网格布局 */
.info-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 25px;
    margin-bottom: 40px;
    position: relative;
    z-index: 1;
}

.info-item {
    background: rgba(255, 255, 255, 0.1);
    backdrop-filter: blur(10px);
    border-radius: 15px;
    padding: 25px;
    border: 1px solid rgba(255, 255, 255, 0.2);
    transition: all 0.4s ease;
    display: flex;
    align-items: flex-start;
    gap: 20px;
    position: relative;
    overflow: hidden;
}

.info-item:before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: linear-gradient(135deg, rgba(255, 255, 255, 0.1), rgba(255, 255, 255, 0.05));
    opacity: 0;
    transition: opacity 0.4s ease;
}

.info-item:hover {
    transform: translateY(-8px);
    background: rgba(255, 255, 255, 0.15);
    box-shadow: 0 15px 40px rgba(0, 0, 0, 0.3);
    border-color: rgba(255, 255, 255, 0.3);
}

.info-item:hover:before {
    opacity: 1;
}

/* 图标样式 */
.info-icon {
    font-size: 28px;
    background: rgba(255, 255, 255, 0.2);
    width: 60px;
    height: 60px;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    flex-shrink: 0;
    animation: float 3s ease-in-out infinite;
    position: relative;
    z-index: 2;
}

@keyframes float {
    0%, 100% { transform: translateY(0); }
    50% { transform: translateY(-8px); }
}

/* 信息内容 */
.info-content h3 {
    font-size: 20px;
    font-weight: 600;
    margin-bottom: 12px;
    color: #feca57;
    letter-spacing: 1px;
    position: relative;
    z-index: 2;
}

.info-content p {
    font-size: 15px;
    line-height: 1.6;
    margin-bottom: 8px;
    opacity: 0.9;
    position: relative;
    z-index: 2;
}

.time-detail {
    font-size: 14px;
    color: #a9f1df;
    font-weight: 500;
}

.phone-number {
    color: #feca57;
    font-weight: 600;
    font-size: 16px;
    letter-spacing: 0.5px;
}

/* 邀请部分 */
.invitation {
    text-align: center;
    background: linear-gradient(135deg, rgba(254, 202, 87, 0.2), rgba(29, 209, 161, 0.2));
    border-radius: 15px;
    padding: 30px;
    border: 1px solid rgba(254, 202, 87, 0.3);
    position: relative;
    overflow: hidden;
    z-index: 1;
}

.invitation:before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: url('data:image/svg+xml,<svg xmlns="http://www.w3.org/2000/svg" viewBox="0 0 100 100" preserveAspectRatio="none" opacity="0.1"><path d="M0,0 L100,0 L100,100 Z" fill="%23ffffff"/></svg>');
    pointer-events: none;
}

.invitation-icon {
    font-size: 24px;
    margin-bottom: 15px;
    animation: pulse 2s infinite;
    position: relative;
    z-index: 2;
}

@keyframes pulse {
    0%, 100% { opacity: 1; transform: scale(1); }
    50% { opacity: 0.7; transform: scale(1.1); }
}

.invitation-text {
    font-size: 20px;
    font-weight: 600;
    color: #fff;
    letter-spacing: 1px;
    text-shadow: 1px 1px 3px rgba(0, 0, 0, 0.3);
    position: relative;
    z-index: 2;
}

/* 表单区域 */
.form-wrapper {
    padding: 50px;
    background: white;
}

.reservation-form {
    padding: 20px;
    width: 100%;
    max-width: 800px;
    margin: 0 auto;
}
.reservation-form .phone{
    width: 100%;
    max-width: 800px;
    margin: 0 auto; 
}
.form-group {
    display: flex;
    flex-wrap: wrap;
    gap: 20px;
    justify-content: center;
    align-items: center;
}

.input-field {
    flex: 1;
    min-width: 250px;
    padding: 16px 24px;
    border: 2px solid #e0e0e0;
    border-radius: 12px;
    font-size: 16px;
    color: #333;
    background: #fff;
    transition: all 0.3s ease;
    box-shadow: 0 4px 15px rgba(0, 0, 0, 0.05);
    position: relative;
}

.input-field:focus {
    outline: none;
    border-color: #667eea;
    box-shadow: 0 6px 25px rgba(102, 126, 234, 0.2);
    transform: translateY(-2px);
}

.input-field::placeholder {
    color: #999;
    font-size: 15px;
}

.input-field:focus::placeholder {
    color: transparent;
}

/* 提交按钮 */
.submit-btn {
    display: inline-block;
    padding: 16px 50px;
    /*background: linear-gradient(135deg, #667eea 0%, #764ba2 100%);*/
    color: white;
    text-decoration: none;
    border-radius: 12px;
    font-size: 18px;
    font-weight: 600;
    text-align: center;
    cursor: pointer;
    border: none;
    transition: all 0.3s ease;
    box-shadow: 0 8px 25px rgba(102, 126, 234, 0.4);
    min-width: 200px;
    letter-spacing: 1px;
    position: relative;
    overflow: hidden;
    z-index: 1;
}

.submit-btn:hover {
    transform: translateY(-3px);
    box-shadow: 0 12px 30px rgba(102, 126, 234, 0.5);
    background: linear-gradient(135deg, #5a6fd8 0%, #6a4190 100%);
}

.submit-btn:active {
    transform: translateY(-1px);
    box-shadow: 0 4px 20px rgba(102, 126, 234, 0.4);
}

.submit-btn:after {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: linear-gradient(90deg, transparent, rgba(255, 255, 255, 0.3), transparent);
    transform: translateX(-100%);
    z-index: -1;
}

.submit-btn:hover:after {
    animation: shimmer 0.8s ease;
}

@keyframes shimmer {
    100% { transform: translateX(100%); }
}

/* 底部装饰 */
.form-wrapper:before {
    content: '';
    position: absolute;
    top: 0;
    left: 50px;
    right: 50px;
    height: 1px;
    background: linear-gradient(90deg, transparent, #e0e0e0, transparent);
}

/* 响应式设计 */
@media (max-width: 768px) {
    .wrapbox {
        padding: 15px;
    }
    
    .activity-info {
        padding: 30px 20px;
    }
    
    .activity-title {
        font-size: 28px;
        padding-bottom: 15px;
    }
    
    .activity-intro {
        padding: 20px;
        font-size: 15px;
    }
    
    .info-grid {
        grid-template-columns: 1fr;
        gap: 20px;
    }
    
    .info-item {
        padding: 20px;
    }
    
    .info-icon {
        width: 50px;
        height: 50px;
        font-size: 24px;
    }
    
    .invitation {
        padding: 20px;
    }
    
    .invitation-text {
        font-size: 18px;
    }
    
    .form-wrapper {
        padding: 30px 20px;
    }
    
    .form-group {
        flex-direction: column;
        gap: 15px;
    }
    
    .input-field {
        min-width: 100%;
        padding: 14px 20px;
    }
    
    .submit-btn {
        width: 100%;
        min-width: 100%;
        padding: 14px 20px;
        font-size: 16px;
    }
}

@media (max-width: 480px) {
    .activity-title {
        font-size: 24px;
    }
    
    .activity-intro {
        padding: 15px;
        font-size: 14px;
    }
    
    .info-item {
        flex-direction: column;
        text-align: center;
        align-items: center;
    }
    
    .info-icon {
        margin-bottom: 15px;
    }
    
    .invitation-text {
        font-size: 16px;
    }
    
    .input-field {
        padding: 12px 18px;
        font-size: 15px;
    }
    
    .submit-btn {
        padding: 12px 20px;
        font-size: 15px;
    }
}

/* 动画延迟 */
.activity-intro {
    animation-delay: 0.2s;
}

.info-item:nth-child(1) { animation-delay: 0.4s; }
.info-item:nth-child(2) { animation-delay: 0.6s; }
.info-item:nth-child(3) { animation-delay: 0.8s; }

.invitation {
    animation-delay: 1s;
}

.form-wrapper {
    animation-delay: 1.2s;
}