* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

body {
    font-family: "Microsoft YaHei", "SimHei", Arial, sans-serif;
    min-height: 100vh;
    position: relative;
    overflow-x: hidden;
    padding: 0;
    background-color: #ffd7d7;
}
.banner-top {
    width: 100%;
    margin: 0 auto;
    text-align: center;
    position: relative;
    z-index: 1;
    overflow: hidden;
}

.banner-top img {
    width: 100%;
    display: block;
    object-fit: cover;
    object-position: center;
}

.container {
    max-width: 1366px;
    margin: 0 auto;
    position: relative;
    z-index: 1;
    color: #333333;
    padding: 40px 30px;
}

.preface-section {
    background: linear-gradient(135deg, #C20B0D 0%, #E23030 100%);
    border-radius: 8px;
    padding: 40px;
    margin-bottom: 40px;
    box-shadow: 0 4px 15px rgba(0, 0, 0, 0.1);
}

.preface-title {
    font-size: 36px;
    font-weight: bold;
    margin-bottom: 30px;
    text-align: center;
    letter-spacing: 2px;
    color: #FFFFFF;
}

.preface-content {
    font-size: 18px;
    line-height: 2;
    text-align: justify;
    color: #FFFFFF;
}

.preface-content p {
    margin-bottom: 20px;
    text-indent: 2em;
}

.preface-content p:last-child {
    margin-bottom: 0;
}

.cases-section {
    display: flex;
    gap: 40px;
}

.awards-column {
    flex: 1;
}

.special-award {
    flex: 1;
    background: linear-gradient(135deg, #C20B0D 0%, #E23030 100%);
    border-radius: 8px;
    padding: 30px;
}

.first-prize {
    flex: 2;
    background: linear-gradient(135deg, #C20B0D 0%, #E23030 100%);
    border-radius: 8px;
    padding: 30px;
}

.award-title {
    font-size: 36px;
    font-weight: bold;
    text-align: center;
    margin-bottom: 30px;
    letter-spacing: 3px;
    color: #FFFFFF;
}

.special-award .case-list {
    display: flex;
    flex-direction: column;
}

.special-award .case-item {
    display: block;
    background: rgba(216, 216, 216, 0.1);
    border-radius: 6px;
    padding: 20px;
    transition: all 0.3s ease;
    border: 1px solid rgba(139, 0, 0, 0.2);
    margin-bottom: 15px;
    text-decoration: none;
    color: inherit;
}

.special-award .case-item:visited,
.special-award .case-item:active,
.special-award .case-item:focus {
    text-decoration: none;
    color: inherit;
}

.special-award .case-item:hover {
    background: rgba(216, 216, 216, 0.15);
    transform: translateY(-2px);
    box-shadow: 0 4px 12px rgba(0, 0, 0, 0.15);
}

.first-prize .case-list {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 15px;
}

.first-prize .case-item {
    display: block;
    background: rgba(216, 216, 216, 0.1);
    border-radius: 6px;
    padding: 18px;
    transition: all 0.3s ease;
    border: 1px solid rgba(139, 0, 0, 0.2);
    text-decoration: none;
    color: inherit;
}

.first-prize .case-item:visited,
.first-prize .case-item:active,
.first-prize .case-item:focus {
    text-decoration: none;
    color: inherit;
}

.first-prize .case-item:hover {
    background: rgba(216, 216, 216, 0.15);
    transform: translateY(-2px);
    box-shadow: 0 4px 12px rgba(0, 0, 0, 0.15);
}

.case-title {
    font-size: 18px;
    font-weight: 500;
    line-height: 1.6;
    margin-bottom: 10px;
    color: #FFFFFF;
}

.case-unit {
    font-size: 16px;
    color: #e3d68c;
    padding-top: 8px;
    font-weight: 500;
}

.copyright {
    text-align: center;
    font-size: 16px;
    color: #FFFFFF;
    position: relative;
    z-index: 1;
    height: 100px;
    line-height: 100px;
    background-color: #E23030;
}

.breadcrumb {
    margin-bottom: 30px;
}

.back-link {
    display: inline-block;
    color: #C20B0D;
    font-size: 16px;
    text-decoration: none;
    padding: 8px 16px;
    border-radius: 4px;
    transition: all 0.3s ease;
}

.back-link:hover {
    background-color: rgba(194, 11, 13, 0.1);
    color: #E23030;
}

.detail-section {
    background: linear-gradient(135deg, #C20B0D 0%, #E23030 100%);
    border-radius: 8px;
    padding: 50px;
    margin-bottom: 40px;
    box-shadow: 0 4px 15px rgba(0, 0, 0, 0.1);
}

.detail-header {
    text-align: center;
    margin-bottom: 40px;
    padding-bottom: 30px;
    border-bottom: 2px solid rgba(255, 255, 255, 0.3);
}

.case-award-badge {
    display: inline-block;
    background-color: #FFD700;
    color: #C20B0D;
    font-size: 18px;
    font-weight: bold;
    padding: 8px 24px;
    border-radius: 20px;
    margin-bottom: 20px;
    box-shadow: 0 2px 8px rgba(0, 0, 0, 0.2);
}

.detail-title {
    font-size: 36px;
    font-weight: bold;
    color: #FFFFFF;
    margin-bottom: 20px;
    line-height: 1.4;
    letter-spacing: 1px;
}

.detail-meta {
    font-size: 18px;
    color: rgba(255, 255, 255, 0.9);
}

.unit-name {
    color: #FFD700;
    font-weight: 500;
    font-size: 20px;
}

.detail-content {
    background: rgba(255, 255, 255, 0.95);
    border-radius: 8px;
    padding: 40px;
    color: #333333;
    line-height: 2;
}

.content-image {
    width: 100%;
    height: auto;
    display: block;
    margin-bottom: 20px;
    border-radius: 4px;
}

.content-image:last-child {
    margin-bottom: 0;
}

.content-title {
    font-size: 24px;
    font-weight: bold;
    color: #C20B0D;
    margin: 30px 0 20px 0;
    padding-bottom: 10px;
    border-bottom: 2px solid #E23030;
}

.content-title:first-child {
    margin-top: 0;
}

.detail-content p {
    font-size: 18px;
    line-height: 2;
    margin-bottom: 16px;
    text-align: justify;
}
.detail-content p img{
   width:100% !important;
}
.detail-content p strong {
    color: #C20B0D;
    font-weight: 600;
}

.detail-footer {
    margin-top: 40px;
    padding-top: 20px;
    border-top: 1px solid rgba(194, 11, 13, 0.2);
    text-align: right;
}

.publish-date {
    color: #666666;
    font-size: 14px;
    text-indent: 0;
    margin: 0;
}

@media (max-width: 1400px) {
    .container {
        padding: 30px 40px;
    }
    
    .main-title {
        font-size: 42px;
    }
    
    .cases-section {
        gap: 30px;
    }
}

@media (max-width: 1024px) {
    .cases-section {
        flex-direction: column;
    }
    
    .first-prize .case-list {
        grid-template-columns: 1fr;
    }
    
    .main-title {
        font-size: 36px;
    }
    
    .preface-title,
    .award-title {
        font-size: 28px;
    }
    
    .detail-section {
        padding: 40px 30px;
    }
    
    .detail-title {
        font-size: 30px;
    }
}

@media (max-width: 768px) {
    .container {
        padding: 20px;
    }
    
    .main-title {
        font-size: 28px;
        margin-bottom: 30px;
    }
    
    .preface-section {
        padding: 25px;
    }
    
    .preface-content {
        font-size: 16px;
    }
    
    .preface-title,
    .award-title {
        font-size: 24px;
    }
    
    
    .detail-section {
        padding: 30px 20px;
    }
    
    .detail-title {
        font-size: 24px;
    }
    
    .detail-content {
        padding: 25px 20px;
    }
    
    .content-image {
        margin-bottom: 15px;
    }
    
    .content-title {
        font-size: 20px;
    }
    
    .detail-content p {
        font-size: 16px;
    }
}