.pake-slider {
    position: relative;
    width: 100%;
    height: 800px;
    overflow: hidden;
}
/* 媒体查询 - 移动端 */
@media (max-width: 768px) {
     .pake-slider {
      height: 300px;
      }
}
.pake-slide {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    opacity: 0;
    transition: opacity 0.8s ease;
}

.pake-slide.active {
    opacity: 1;
}

.pake-slide img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    object-position: center;
}

.pake-slide-content {
    position: absolute;
    bottom: 35%;
    left: 10%;
    color: #fff;
    text-shadow: 0 2px 4px rgba(0,0,0,0.5);
}

.pake-slide-title {
    font-size: 3.5rem;
    margin-bottom: 1rem;
    font-weight: 700;
	 color: red;
}

.pake-slide-subtitle {
    font-size: 1.2rem;
    margin-bottom: 1.5rem;
    font-weight: 400;
}

.pake-slide-button {
    display: inline-block;
    padding: 12px 30px;
    background-color: #fff;
    color: #333;
    text-decoration: none;
    font-weight: 500;
    border-radius: 6px;
    transition: all 0.3s ease;
}

.pake-slide-button:hover {
    background-color: #f8f8f8;
    transform: translateY(-2px);
    box-shadow: 0 4px 8px rgba(0,0,0,0.1);
}

.pake-slider-nav {
    position: absolute;
    top: 50%;
    width: 100%;
    display: flex;
    justify-content: space-between;
    transform: translateY(-50%);
    padding: 0 20px;
}

.pake-slider-arrow {
    background: none;
    border: none;
    color: #fff;
    font-size: 3rem;
    cursor: pointer;
    text-shadow: 0 2px 4px rgba(0,0,0,0.5);
    opacity: 0.7;
    transition: opacity 0.3s ease;
    padding: 10px;
}

.pake-slider-arrow:hover {
    opacity: 1;
}

.pake-slider-dots {
    position: absolute;
    bottom: 20px;
    width: 100%;
    display: flex;
    justify-content: center;
    gap: 10px;
}

.pake-slider-dot {
    width: 12px;
    height: 12px;
    border-radius: 50%;
    background: rgba(255,255,255,0.5);
    cursor: pointer;
    transition: all 0.3s ease;
}

.pake-slider-dot.active {
    background: rgba(255,255,255,0.9);
    transform: scale(1.2);
}

@media (max-width: 768px) {
    .pake-slide-content {
        bottom: 15%;
        left: 5%;
        right: 5%;
        text-align: center;
    }
    
    .pake-slide-title {
        font-size: 2rem;
    }
    
    .pake-slide-subtitle {
        font-size: 1rem;
    }
    
    .pake-slider-arrow {
        font-size: 2.5rem;
    }
}