/* ===== Topseed 获奖公示页面（PC版） ===== */

.awards-page-wrapper {
    width: 100%;
    background-image: url("https://pushthink-images.oss-cn-shanghai.aliyuncs.com/mjload/topseed/jiang/bg22.jpg");
    background-repeat: repeat-y;
    background-position: top center;
    background-size: 100% auto;
    margin-top: 150px;
}

.awards-page {
    max-width: 1200px;
    margin: 0 auto;
    padding: 0px 20px 80px;

    font-family: -apple-system, BlinkMacSystemFont, "PingFang SC", "Microsoft YaHei", sans-serif;
}

/* ===== 标题区 ===== */
.awards-header {
    display: flex;
    align-items: center;
    margin-bottom: 40px;
}

.awards-header-left h2 {
    display: inline-block;
    background: #113f27;
    color: #fff;
    font-size: 26px;
    font-weight: bold;
    padding: 10px 28px;
    margin: 0;
    letter-spacing: 4px;
}

.awards-sub {
    color: #113f27;
    font-size: 14px;
    font-weight: bold;
    letter-spacing: 4px;
    margin-top: 8px;
    padding-left: 8px;
}

/* ===== 奖项通用区块 ===== */
.award-section {
    margin-bottom: 60px;
}

.award-icon-wrap {
    text-align: center;
    margin-bottom: 24px;
}

.award-icon {
    max-width: 220px;
    height: auto;
    display: inline-block;
}

/* ===== 金/银/铜大卡片 ===== */
.award-card-large {
    width: 700px;
    margin: 0 auto;
    background: #87BF4D;
    padding: 30px;
    box-sizing: border-box;
    overflow: hidden;
    cursor: pointer;
    transition: transform 0.25s, box-shadow 0.25s;
    box-shadow: 0 6px 20px rgba(0, 0, 0, 0.06);
}

.award-card-large:hover {
    transform: translateY(-4px);
    box-shadow: 0 12px 32px rgba(0, 0, 0, 0.12);
}

.award-card-cover {
    width: 100%;
    height: 380px;
    overflow: hidden;
    background: #f4f4f4;
}

.award-card-cover img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    display: block;
    transition: transform 0.4s;
}

.award-card-large:hover .award-card-cover img {
    transform: scale(1.03);
}

.award-card-info {
    margin-top: 16px;
    color: #fff;
}

.award-card-title-bar {
    display: flex;
    align-items: center;
    justify-content: space-between;
    background: #003022;
    color: #fff;
    padding: 12px 18px;
    gap: 16px;
}

.award-card-title {
    font-size: 16px;
    font-weight: bold;
    color: #fff;
    line-height: 1.4;
    flex: 1;
    overflow: hidden;
    text-overflow: ellipsis;
    white-space: nowrap;
}

.award-card-author {
    font-size: 13px;
    color: rgba(255, 255, 255, 0.85);
    white-space: nowrap;
    flex-shrink: 0;
}

.award-card-desc {
    margin-top: 14px;
    font-size: 13px;
    color: #fff;
    line-height: 1.7;
    display: -webkit-box;
    -webkit-line-clamp: 4;
    -webkit-box-orient: vertical;
    overflow: hidden;
    text-overflow: ellipsis;
}

/* ===== 优胜奖 ===== */
.award-winner-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 24px;
}

.award-winner-card {
    background: #87BF4D;
    padding: 30px;
    box-sizing: border-box;
    overflow: hidden;
    cursor: pointer;
    transition: transform 0.25s, box-shadow 0.25s;
}

.award-winner-card:hover {
    transform: translateY(-3px);
    box-shadow: 0 8px 20px rgba(0, 0, 0, 0.12);
}

.award-winner-cover {
    width: 100%;
    height: 200px;
    overflow: hidden;
    background: #f4f4f4;
}

.award-winner-cover img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    display: block;
    transition: transform 0.4s;
}

.award-winner-card:hover .award-winner-cover img {
    transform: scale(1.05);
}

.award-winner-title-bar {
    margin-top: 14px;
    background: #003022;
    color: #fff;
    padding: 10px 14px;
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 12px;
}

.award-winner-title {
    font-size: 14px;
    font-weight: bold;
    color: #fff;
    flex: 1;
    overflow: hidden;
    text-overflow: ellipsis;
    white-space: nowrap;
}

.award-winner-author {
    font-size: 12px;
    color: rgba(255, 255, 255, 0.85);
    white-space: nowrap;
    flex-shrink: 0;
}

.award-winner-desc {
    margin-top: 12px;
    font-size: 12px;
    color: #fff;
    line-height: 1.6;
    display: -webkit-box;
    -webkit-line-clamp: 4;
    -webkit-box-orient: vertical;
    overflow: hidden;
    text-overflow: ellipsis;
}

/* ===== 详情弹窗 ===== */
.award-modal-overlay {
    position: fixed;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: rgba(0, 0, 0, 0.6);
    display: flex;
    align-items: center;
    justify-content: center;
    z-index: 9999;
    opacity: 0;
    transition: opacity 0.25s;
}

.award-modal-overlay.show {
    opacity: 1;
}

.award-modal {
    position: relative;
    background: #fff;
    width: 92%;
    max-width: 1100px;
    max-height: 88vh;
    border-radius: 8px;
    overflow: hidden;
    display: flex;
    flex-direction: column;
}

.award-modal-close {
    position: absolute;
    top: 12px;
    right: 16px;
    width: 36px;
    height: 36px;
    border: none;
    background: rgba(0, 0, 0, 0.5);
    color: #fff;
    font-size: 22px;
    line-height: 36px;
    border-radius: 50%;
    cursor: pointer;
    z-index: 10;
    padding: 0;
}

.award-modal-close:hover {
    background: rgba(0, 0, 0, 0.75);
}

.award-modal-body {
    display: flex;
    flex: 1;
    overflow: hidden;
}

.award-modal-photos {
    flex: 1.4;
    overflow-y: auto;
    padding: 24px;
    background: #f7f7f7;
    max-height: 88vh;
}

.award-modal-photos a {
    display: block;
    margin-bottom: 16px;
}

.award-modal-photos a:last-child {
    margin-bottom: 0;
}

.award-modal-photos img {
    width: 100%;
    height: auto;
    display: block;
    border-radius: 4px;
    background: #eee;
}

.award-modal-info {
    flex: 1;
    padding: 32px 28px;
    overflow-y: auto;
    max-height: 88vh;
    border-left: 1px solid #eee;
}

.award-modal-title {
    font-size: 22px;
    font-weight: bold;
    color: #113f27;
    margin: 0 0 14px;
    line-height: 1.4;
}

.award-modal-meta {
    font-size: 13px;
    color: #666;
    line-height: 1.8;
    margin-bottom: 16px;
    padding-bottom: 16px;
    border-bottom: 1px solid #eee;
}

.award-modal-meta span {
    display: inline-block;
    margin-right: 16px;
}

.award-modal-desc {
    font-size: 14px;
    color: #333;
    line-height: 1.8;
    white-space: pre-wrap;
    word-break: break-word;
}

/* ===== 响应式 ===== */
@media (max-width: 900px) {
    .award-modal-body {
        flex-direction: column;
    }

    .award-modal-photos,
    .award-modal-info {
        max-height: none;
        border-left: none;
    }

    .award-winner-grid {
        grid-template-columns: repeat(2, 1fr);
    }
}