﻿ 
.slider-section {
    width: 100%;
   
}

.slider-wrapper {
    position: relative;
    width: 100%;
    overflow: hidden;
}

.slider-container {
    width: 100%;
    height: 300px;
    position: relative;
    overflow: hidden;
    border-radius: 8px;
    box-shadow: 0 4px 12px rgba(0, 0, 0, 0.1);
    background: white;
    margin: 0 auto;
}

.slider {
    display: flex;
    height: 300px;
    transition: transform 0.5s ease-in-out;
}

.slidelist {
    width: 25%;
    height: 100%;
    flex-shrink: 0;
    position: relative;
    padding: 10px;
}

.slide-link {
    display: block;
    text-decoration: none;
    color: inherit;
    height: 100%;
}

.slidelist > a > img {
    width: 100%;
    height: 250px;
    object-fit: cover;
    border-radius: 4px;
    transition: transform 0.3s;
}

.slide-link:hover img {
    transform: scale(1.03);
    box-shadow: 0 4px 8px rgba(0, 0, 0, 0.1);
}

.slide-title {
    margin-top: 10px;
    text-align: center;
    font-size: 16px;
    font-weight: bold;
    color: #333;
    transition: color 0.3s;
}

.slide-link:hover .slide-title {
    color: #0066cc;
}

.slide-desc {
    margin-top: 5px;
    text-align: center;
    font-size: 14px;
    color: #666;
}

.arrow {
    position: absolute;
    top: 50%;
    transform: translateY(-50%);
    width: 40px;
    height: 40px;
    background: rgba(255, 255, 255, 0.8);
    border-radius: 50%;
    display: flex;
    justify-content: center;
    align-items: center;
    cursor: pointer;
    box-shadow: 0 2px 5px rgba(0, 0, 0, 0.2);
    z-index: 10;
    border: none;
    transition: all 0.3s;
}

    .arrow:hover {
        background: white;
        box-shadow: 0 3px 8px rgba(0, 0, 0, 0.3);
    }

    .arrow:active {
        transform: translateY(-50%) scale(0.95);
    }

.arrow-left {
    left: 0;
}

.arrow-right {
    right: 0;
}

.arrow i {
    font-size: 20px;
    color: #333;
}

.section-title {
    text-align: center;
    margin-bottom: 15px;
    font-size: 24px;
    color: #333;
    font-weight: bold;
}
#prev2 #prev1 {
    background: url(../images/rightjt.png) no-repeat center left;background-size:contain
}