.bg-bayi {
    background-color: #818181;
}

.park-subbb {
    font-size: 12px;
    letter-spacing: 1px;
    margin-bottom: 14px;
    position: relative;
    display: inline-block;
    padding-bottom: 8px;
    border-bottom: 2px solid #ffffff;
}

.raspberry-banner {
    width: 100%;
    margin: 0 auto;
    position: relative;
    overflow: hidden;
}

.raspberry-carousel {
    position: relative;
    width: 100%;
    margin: 0 auto;
    overflow: visible;
    display: flex;
    align-items: center;
    justify-content: center;
}

.raspberry-stage {
    width: 100%;
    overflow: visible;
    position: relative;
    background: #818181;
    min-height: 500px;
    height: 500px;
}

.raspberry-track {
    position: relative;
    width: 100%;
    height: 100%;
    display: flex;
    align-items: center;
    justify-content: center;
}

.raspberry-image-container {
    position: absolute;
    top: 0;
    width: 20%;
    height: 100%;
    opacity: 0.4;
    transition: none;
    z-index: 1;
    overflow: hidden;
}

.raspberry-image-container.active {
    opacity: 1;
    left: 30%;
    width: 40%;
    height: 100%;
    top: 0;
    z-index: 3;
}

.raspberry-image-container.prev {
    opacity: 0.4;
    left: 0;
    width: 20%;
    height: 100%;
    top: 0;
    z-index: 2;
}

.raspberry-image-container.next {
    opacity: 0.4;
    left: 80%;
    width: 20%;
    height: 100%;
    top: 0;
    z-index: 2;
}

.raspberry-img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    display: block;
}

.raspberry-percentage {
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    background: rgba(0, 0, 0, 0.7);
    color: white;
    padding: 10px 20px;
    font-size: 24px;
    font-weight: bold;
    z-index: 2;
}

.raspberry-info {
    position: absolute;
    bottom: 0;
    left: 0;
    right: 0;
    background: rgba(127, 24, 29, 0.7);
    padding: 15px 30px;
    display: flex;
    justify-content: space-between;
    align-items: center;
    z-index: 2;
    color: white;
    display: none;
}

.raspberry-image-container.active .raspberry-info {
    display: flex;
}

.raspberry-park-name {
    font-size: 20px;
    font-weight: bold;
    color: white;
}

.raspberry-park-address {
    font-size: 16px;
    color: white;
    opacity: 1;
    display: flex;
    align-items: center;
    gap: 10px;
}

.map-icon {
    font-size: 18px;
}

.raspberry-arrow {
    position: absolute;
    top: 50%;
    transform: translateY(-50%);
    width: 50px;
    height: 50px;
    background: #81818100;
    color: #333;
    border: none;
    border-radius: 50%;
    font-size: 130px;
    cursor: pointer;
    z-index: 20;
    display: flex;
    align-items: center;
    justify-content: center;
    font-weight: bold;
    transition: all 0.3s ease;
}

.raspberry-prev {
    left: 25%;
    transform: translate(-50%, -50%);
}

.raspberry-next {
    right: 25%;
    transform: translate(50%, -50%);
}

/* Header styles for raspberry park module */
.raspberry-header {
    margin-bottom: 20px;
    display: flex;
    justify-content: space-between;
    align-items: center;
    position: relative;
}

.raspberry-sub {
    font-size: 12px;
    color: #999;
    margin-bottom: 8px;
    display: block;
    text-transform: uppercase;
    letter-spacing: 1px;
    position: relative;
    padding-bottom: 10px;
}

.raspberry-sub::after {
    content: '';
    position: absolute;
    bottom: 0;
    left: 0;
    width: 50px;
    height: 1px;
    background: #999;
}

.raspberry-title {
    font-size: 28px;
    color: #333;
    margin: 0;
    font-weight: bold;
}

.raspberry-more {
    display: flex;
    align-items: center;
}

.raspberry-more .btn-more {
    color: #333;
    text-decoration: none;
    font-size: 14px;
    position: relative;
    padding-right: 70px;
    transition: color 0.3s ease;
}

.raspberry-more .btn-more::after {
    content: '查看更多';
    position: absolute;
    right: 0;
    top: 50%;
    transform: translateY(-50%);
    font-size: 12px;
    padding: 3px 8px;
    border: 1px solid #333;
    transition: background-color 0.3s ease, color 0.3s ease;
}

.raspberry-more .btn-more:hover {
    color: #000;
}

.raspberry-more .btn-more:hover::after {
    background-color: #333;
    color: white;
}

@media (max-width: 768px) {
    .raspberry-title {
        font-size: 24px;
    }
    
    .raspberry-arrow {
        width: 30px;
        height: 30px;
        font-size: 18px;
    }
    
    .raspberry-prev {
        left: 10px;
    }
    
    .raspberry-next {
        right: 10px;
    }
    
    .raspberry-info {
        flex-direction: column;
        align-items: flex-start;
        gap: 8px;
        padding: 10px 15px;
    }
    
    .raspberry-percentage {
        font-size: 20px;
        padding: 8px 16px;
    }
    
    /* 调整移动端预览图样式 */
    .raspberry-image-container.prev {
        left: -30%;
        width: 40%;
        height: 60%;
        top: 20%;
    }
    
    .raspberry-image-container.next {
        left: 90%;
        width: 40%;
        height: 60%;
        top: 20%;
    }
    .raspberry-image-container.active {
        opacity: 1;
        left: 7%;
        width: 86%;
        height: 100%;
        top: 0;
        z-index: 3;
}

@media (max-width: 576px) {
    .raspberry-sub {
        font-size: 11px;
    }
    
    .raspberry-title {
        font-size: 20px;
    }
    
    .raspberry-percentage {
        font-size: 18px;
        padding: 6px 12px;
    }
    
    .raspberry-info {
        padding: 8px 12px;
    }
    
    .raspberry-park-name {
        font-size: 14px;
    }
    
    .raspberry-park-address {
        font-size: 12px;
    }
}

/* View more link styles */
.view-more-link {
    font-size: 16px;
    text-decoration: none;
    transition: opacity 0.3s ease;
}

.view-more-link:hover {
    opacity: 0.8;
}

/* Hexagon arrow styles */
.hex-arrow {
    width: 30px;
    height: 30px;
    background: white;
    position: relative;
    clip-path: polygon(50% 0%, 100% 25%, 100% 75%, 50% 100%, 0% 75%, 0% 25%);
    display: flex;
    align-items: center;
    justify-content: center;
}

.arrow-icon {
    color: #cd1818;
    font-size: 18px;
    font-weight: bold;
    transform: translateX(1px);
}