.main {
    max-width: 1200px;
    margin: 0 auto;
    padding: 80px 0px 20px;
   
    border-radius: 8px;
}

.breadcrumb {
    font-size: 14px;
    margin-bottom: 20px;
    color: #666;
}

.breadcrumb a {
    color: #1E90FF;
    text-decoration: none;
}

.breadcrumb a:hover {
    text-decoration: underline;
}

.section-header {
    display: flex;
    justify-content: flex-end;
    align-items: center;
    margin-bottom: 20px;
    position: relative;
    margin: 0 0 50px;
}

.section-header h2 {
    font-size: 32px;
    color: #1E90FF;
    font-weight: bold;
    padding-bottom: 10px;
    position: relative;
    z-index: 1;
    padding-right: 12px;
}

.section-header::after {
    content: '';
    position: absolute;
    left: 0;
    bottom: 0;
    width: 100%;
    height: 2px;
    background-color: #1E90FF;
    z-index: 0;
}

.gallery-list {
    display: flex;
    flex-wrap: wrap;
    gap: 14px;
    list-style: none;
    padding: 0;
    margin: 0;
}

.gallery-item {
    border-radius: 4px;
    overflow: hidden;
    transition: transform 0.2s ease;
}

.gallery-item:hover {
    transform: translateY(-5px);
}

.gallery-item img {
    width: 100%;
    height: auto;
    display: block;
}

.gallery-title {
    padding: 10px;
    font-size: 16px;
    color: #333;
    text-align: center;
}

.play-icon {
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    font-size: 48px;
    color: rgba(0, 0, 0, 0.8);
    pointer-events: none;
}

.video-link {
    position: relative;
    display: block;
} 