/* 引导页样式 */
.welcome-container {
    width: 100%;
    height: 100%;
    min-height: 100vh;
    background: linear-gradient(to bottom, #fff 0%, #f8f9fa 100%);
    overflow: hidden;
}

.welcome-swiper {
    width: 100%;
    height: 100%;
    position: relative;
}

.welcome-slide {
    width: 100%;
    height: 100%;
    display: none;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    padding: 40px 30px;
    opacity: 0;
    transition: opacity 0.5s ease;
}

.welcome-slide.active {
    display: flex;
    opacity: 1;
}

.welcome-image {
    width: 100%;
    max-width: 400px;
    height: 400px;
    margin-bottom: 40px;
    border-radius: 20px;
    overflow: hidden;
    box-shadow: 0 10px 40px rgba(0, 0, 0, 0.1);
}

.welcome-image img {
    width: 100%;
    height: 100%;
    object-fit: cover;
}

.welcome-title {
    font-size: 28px;
    font-weight: bold;
    color: #333;
    margin-bottom: 15px;
    text-align: center;
}

.welcome-desc {
    font-size: 15px;
    color: #666;
    text-align: center;
    line-height: 1.6;
    margin-bottom: 50px;
}

.welcome-progress {
    width: 100%;
    max-width: 400px;
    display: flex;
    align-items: center;
    justify-content: space-between;
    margin-bottom: 30px;
}

.progress-text {
    font-size: 14px;
    color: #999;
}

.progress-bar {
    flex: 1;
    height: 4px;
    background-color: #e0e0e0;
    border-radius: 2px;
    margin: 0 20px;
    overflow: hidden;
}

.progress-fill {
    height: 100%;
    background-color: #c8a882;
    transition: width 0.3s ease;
}

.skip-btn {
    font-size: 14px;
    color: #999;
    cursor: pointer;
}

.welcome-btn {
    width: 100%;
    max-width: 400px;
    height: 50px;
    background-color: #c8a882;
    color: #fff;
    border: none;
    border-radius: 25px;
    font-size: 18px;
    font-weight: 500;
    cursor: pointer;
    transition: all 0.3s;
}

.welcome-btn:active {
    transform: scale(0.98);
}

