/* Winners Page Styles */
@font-face {
    font-family: 'PlayfairDisplay';
    src: url('fonts/PlayfairDisplay-Regular.ttf') format('truetype');
    font-weight: normal;
    font-style: normal;
}
@font-face {
    font-family: 'PlayfairDisplay-Bold';
    src: url('fonts/PlayfairDisplay-Bold.ttf') format('truetype');
    font-weight: bold;
    font-style: normal;
}
@font-face {
    font-family: 'PlayfairDisplay-ExtraBold';
    src: url('fonts/PlayfairDisplay-ExtraBold.ttf') format('truetype');
    font-weight: bold;
    font-style: normal;
}
@font-face {
    font-family: 'PlayfairDisplay-ExtraBoldItalic';
    src: url('fonts/PlayfairDisplay-ExtraBoldItalic.ttf') format('truetype');
    font-weight: bold;
    font-style: italic;
}
/* 全屏图片显示 */
.fullscreen-image-overlay {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background-color: rgba(0, 0, 0, 0.9);
    display: flex;
    justify-content: center;
    align-items: center;
    z-index: 9999;
    opacity: 0;
    visibility: hidden;
    transition: opacity 0.3s ease, visibility 0.3s ease;
}

.fullscreen-image-overlay.active {
    opacity: 1;
    visibility: visible;
}

.fullscreen-image {
    max-width: 90%;
    max-height: 90%;
    object-fit: contain;
    box-shadow: 0 0 20px rgba(255, 255, 255, 0.2);
    cursor: pointer;
    transform: scale(0.9);
    transition: transform 0.3s ease;
}

.fullscreen-image-overlay.active .fullscreen-image {
    transform: scale(1);
}

.close-fullscreen {
    position: absolute;
    top: 20px;
    right: 20px;
    color: #fff;
    font-size: 30px;
    cursor: pointer;
    opacity: 0.7;
    transition: opacity 0.3s ease;
}

.close-fullscreen:hover {
    opacity: 1;
}

/* 鼠标悬停在图片上显示放大提示 */
.winners-slide-item .right img {
    cursor: pointer;
    transition: transform 0.3s ease;
}

.winners-slide-item .right img:hover {
    transform: scale(1.03);
}

/* Winners Section */
#winners {
    padding: 60px 0;
    background-color: #000;
    color: #fff;
}

.winners-container {
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 20px;
}

.winnersintro {
    /* font-size: 24px; */
    line-height: 1.6;
    margin-bottom: 40px;
    color: #D3D300;
    font-family: 'PlayfairDisplay', serif;
    font-weight: bold;
    /* max-width: 900px; */
}

#winners h2 {
    font-size: 2.8rem;
    color: #000;
    background: #d3d300;
    padding: 10px 20px;
    /* margin-bottom: 40px; */
    font-style: italic;
    position: relative;
    display: inline-block;
}

/* Banner Section */
#banner {
    position: relative;
    height: 400px;
    overflow: hidden;
}

.banner-container {
    height: 100%;
}

.banner-slider {
    height: 100%;
}

.banner-slider .slide {
    height: 100%;
    width: 100%;
    position: absolute;
    top: 0;
    left: 0;
    opacity: 0;
    transition: opacity 0.5s ease;
}

.banner-slider .slide.active {
    opacity: 1;
}

.banner-slider .slide img {
    width: 100%;
    height: 100%;
    object-fit: cover;
}

.winners-data {
    display: flex;
    flex-direction: column;
    gap: 60px;
}

/* Prize Sections */
.winners-slide {
    /* margin-bottom: 60px; */
    position: relative;
    /* background-color: #111;
    padding: 30px; 
    border-radius: 5px;
    */
}

/* Special Awards Container
.left-right-container {
    display: flex;
    background-color: #000;
    border: 1px solid #333;
    border-radius: 5px;
    overflow: hidden;
    margin-top: 20px;
}

.left-right-container .left {
    flex: 0 0 60%;
    padding: 30px;
    padding-left: 45px;
    display: flex;
    flex-direction: column;
    justify-content: space-between;
}

.left-right-container .right {
    flex: 0 0 40%;
    position: relative;
}

.left-right-container .right img {
    width: 100%;
    max-height: 500px;
    object-fit: cover;
    display: block;
    align-items: right bottom;
}

.left-right-container .title {
    font-size: 1.8rem;
    color: #D3D300;
    margin-bottom: 15px;
    font-weight: bold;
}

.left-right-container .intro {
    font-size: 1rem;
    line-height: 1.6;
    margin-bottom: 20px;
    color: #ccc;
}

.left-right-container .detail {
    font-size: 0.9rem;
    color: #aaa;
    line-height: 1.8;
}

.left-right-container .detail p {
    margin-bottom: 5px;
} */

.prize-title {
    font-family: 'PlayfairDisplay-ExtraBold', serif;
    font-size: 2.6rem;
    color: #D3D300;
    margin-bottom: 10px;
    font-weight: bold;
    font-style: italic;
}

.author {
    font-size: 1.2rem;
    margin-bottom: 30px;
    color: #ccc;
}

/* Swiper Styles */
.swiper {
    width: 100%;
    margin-top: 20px;
}

.winners-slide-item {
    display: flex;
    background-color: #000;
    /* border: 1px solid #333; */
    border-radius: 5px;
    overflow: hidden;
}

.winners-slide-item .left {
    flex: 0 0 50%;
    padding: 30px;
    padding-left: 75px;
    display: flex;
    flex-direction: column;
    /* justify-content: space-between; */
}

.winners-slide-item .right {
    flex: 0 0 50%;
    position: relative;
    display: flex;
    justify-content: flex-end;
    align-items: flex-end;
    padding-right: 75px;
}

.winners-slide-item .right img {
    width: auto;
    height: 500px;
    max-height: 500px;
    object-fit: contain;
    display: block;
    margin-left: auto;
    margin-top: auto;
    padding-bottom: 35px;
}

.winners-slide-item .title {
    font-family: 'PlayfairDisplay-ExtraBold', serif;
    font-size: 1.8rem;
    color: #D3D300;
    margin-bottom: 15px;
    font-weight: bold;
    font-style: italic;
}

.winners-slide-item .intro {
    font-family: 'PlayfairDisplay', serif;
    font-style: italic;
    font-size: 0.8rem;
    line-height: 1.5;
    margin-bottom: 20px;
    /* color: #ccc; */
}

.winners-slide-item .detail {
    font-size: 0.8rem;
    /* color: #aaa; */
    line-height: 1.5;
    font-family: 'PlayfairDisplay', serif;
}

.winners-slide-item .detail p {
    margin-bottom: 2px;
}
.winners-slide-item-45 .left{
    padding-left: 0;
}
.winners-slide-item-45 .right{
    padding-right: 0;
}
/* Swiper Navigation */
.swiper-button-next,
.swiper-button-prev {
    color: #D3D300;
}

.swiper-pagination-bullet {
    background: #D3D300;
}

.swiper-pagination-bullet-active {
    background: #D3D300;
}

/* Works Section */
#works {
    padding: 60px 0;
    background-color: #fff;
}

.awards-container {
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 20px;
}

#works h2 {
    font-size: 2.5rem;
    color: #000;
    margin-bottom: 40px;
    margin-top: 40px;
    font-weight: bold;
}

.ex-works-area {
    margin-bottom: 60px;
}

.ex-works-area h2 {
    font-size: 2rem;
    color: #000;
    margin-bottom: 30px;
    border-bottom: 2px solid #D3D300;
    padding-bottom: 10px;
    display: inline-block;
}

.ex-works-area {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 30px;
    margin-top: 30px;
}

.ex-works-area:first-of-type {
    margin-top: 0;
}

.works-item {
    background-color: #f2f2f2;
    /* border-radius: 5px; */
    overflow: hidden;
    /* box-shadow: 0 5px 15px rgba(0, 0, 0, 0.1);
    transition: transform 0.3s ease; */
    padding: 20px;
    padding-top: 2px
}

/* .works-item:hover {
    transform: translateY(-10px);
} */

.works-item img {
    width: 100%;
    height: 250px;
    object-fit: cover;
}

.works-item .title {
    font-size: 1rem;
    font-weight: bold;
    color: #000;
    /* height: 62px; */
    min-height: 72px;
    overflow-y: auto;
    /* padding: 0px 15px 5px; */
    display: flex;
    align-items: center;
    line-height: 1.2;
}

.works-item .intro {
    font-size: 0.9rem;
    color: #1A1818;
    padding: 0 15px 15px;
    line-height: 1.6;
    max-height: 156px;
    overflow-y: auto;
    scrollbar-width: thin;
    scrollbar-color: grey #f2f2f2;
    font-family: 'PlayfairDisplay';
    font-size: 12px;
    /* font-style: italic; */
}

.works-item .intro::-webkit-scrollbar {
    width: 6px;
}

.works-item .intro::-webkit-scrollbar-track {
    background: #f2f2f2;
}

.works-item .intro::-webkit-scrollbar-thumb {
    background-color: #D3D300;
    border-radius: 6px;
}

.works-item .detail {
    padding: 15px;
    font-size: 0.8rem;
    color: #000;
    line-height: 1.5;
}

.works-item .detail p {
    margin-bottom: 5px;
}

/* Responsive Styles */
@media (max-width: 992px) {
    .ex-works-area {
        grid-template-columns: repeat(2, 1fr);
    }
}

@media (max-width: 768px) {
    #winners, #works {
        padding: 40px 0;
    }
    .swiper-button-next,
    .swiper-button-prev {
        display: none;
    }

    .winners-container, .awards-container {
        padding: 0 15px;
    }
    .winnersintro {
    font-size:16px;
    line-height: 1.6;
    }
    #winners h2, #works h2 {
        font-size: 2rem;
        margin-bottom: 30px;
    }
    
    /* 移动端获奖者展示部分上下排列 */
    .winners-slide-item {
        flex-direction: column;
    }
    
    .winners-slide-item .left,
    .winners-slide-item .right {
        flex: 0 0 100%;
        width: 100%;
        padding: 20px;
    }
    
    .winners-slide-item .right {
        justify-content: center;
        align-items: center;
        padding-top: 0;
    }
    
    .winners-slide-item .right img {
        width: 100%;
        height: auto;
        max-height: 400px;
        margin: 0 auto;
        padding-bottom: 15px;
    }
    
    .prize-title {
        font-size: 1.8rem;
    }
    
    .winners-slide-item,
    .left-right-container {
        flex-direction: column;
    }
    
    .winners-slide-item .left,
    .winners-slide-item .right,
    .left-right-container .left,
    .left-right-container .right {
        flex: 0 0 100%;
    }
    
    .winners-slide-item .right img,
    .left-right-container .right img {
        width: 100%;
        height: auto;
    }
    
    #banner {
        height: 250px;
    }
    
    .ex-works-area {
        grid-template-columns: 1fr;
        gap: 20px;
    }
    
    .works-item img {
        height: 200px;
    }
}

/* Award Sponsor Images Styling */
.award-sponsor-container {
    text-align: center;
    display: flex;
    justify-content: left;
    align-items: center;
    flex-wrap: wrap;
    gap: 20px;
}

.award-sponsor-container a {
    display: inline-block;
    margin: 40px 15px;
}

.award-sponsor-container a img {
    max-height: 80px;
    width: auto;
    object-fit: contain;
    transition: transform 0.3s ease;
}

.award-sponsor-container a img:hover {
    transform: scale(1.05);
}

/* Responsive adjustments for award sponsor images */
@media (max-width: 768px) {
    .award-sponsor-container {
        gap: 15px;
    }
    
    .award-sponsor-container a {
        margin: 0 10px;
    }
    
    .award-sponsor-container a img {
        max-height: 50px;
    }
}