
        .container {
            max-width: 1190px;
            margin: 0px auto;
            background-color: white;
            border: #ddd solid 1px;
        }

        .article_banner {
            background-color: #e0edff;
            background-image: url(../images/bcd8bbf21f7b2741af9f.png);
            background-position: bottom;
            background-size: 100% auto;
            background-repeat: no-repeat;
        }

        .banner_container {
            max-width: 1190px;
            margin: 0 auto;
            padding: 20px;
            position: relative;
            z-index: 2;
          
        }

        .header1 {
            display: flex;
            align-items: center;
            margin-bottom: 0px;
            flex-wrap: wrap;
            gap: 15px;
        }

        .featured-badge {
            background: linear-gradient(135deg, #64b5f6, #42a5f5);
            color: white;
            padding: 8px 16px;
            border-radius: 20px;
            font-size: 14px;
            display: flex;
            align-items: center;
            gap: 8px;
            box-shadow: 0 2px 8px rgba(100, 181, 246, 0.3);
        }

        .featured-badge::before {
            content: '★';
            font-size: 16px;
        }

        .featured-badge::after {
            content: '●';
            font-size: 12px;
            margin-left: 4px;
        }

        .header1 .name {
            font-size: 2.5rem;
            font-weight: bold;
            color: #333;
            margin-right: 20px;
        }

        .action-buttons {
            display: flex;
            gap: 10px;
            flex-wrap: wrap;
        }

        .btn {
            padding: 8px 16px;
            border: none;
            border-radius: 6px;
            cursor: pointer;
            font-size: 14px;
            display: flex;
            align-items: center;
            gap: 6px;
            transition: all 0.3s ease;
            background: white;
            color: #666;
            box-shadow: 0 2px 4px rgba(0,0,0,0.1);
        }

        .btn:hover {
            transform: translateY(-2px);
            box-shadow: 0 4px 8px rgba(0,0,0,0.15);
        }

        .btn.broadcast::before { content: '🔊'; }
        .btn.edit::before { content: '✏️'; }
        .btn.discuss::before { content: '💬'; }
        .btn.upload::before { content: '📹'; }

        .discuss {
            position: relative;
        }

        .notification {
            position: absolute;
            top: -8px;
            right: -8px;
            background: #f44336;
            color: white;
            border-radius: 50%;
            width: 20px;
            height: 20px;
            display: flex;
            align-items: center;
            justify-content: center;
            font-size: 12px;
            font-weight: bold;
        }

        .description {
            color: #333;
            font-size: 16px;
            margin-bottom: 30px;
            display: flex;
            align-items: center;
            gap: 15px;
            flex-wrap: wrap;
        }

        .expand-link {
            color: #1976d2;
            text-decoration: none;
            font-size: 14px;
        }

        .expand-link:hover {
            text-decoration: underline;
        }

        .video-section {
            border-radius: 12px;
            padding: 0px;
            position: relative;
        }

        .video-carousel {
            position: relative;
            overflow: hidden;
        }

        .video-container {
            display: flex;
            gap: 10px;
            transition: transform 0.3s ease;
        }

        .video-item {
            min-width: 230px; 
            background: #f5f5f5;
            border-radius: 8px;
            overflow: hidden;
            position: relative;
            cursor: pointer;
            transition: transform 0.3s ease;
        }

        .video-item:hover {
            transform: scale(1.05);
        }

        .video-thumbnail {
            width: 100%;
            height: 200px;
            background: linear-gradient(45deg, #e0e0e0, #f0f0f0);
            display: flex;
            align-items: center;
            justify-content: center;
            position: relative;
        }

        .play-button {
            width: 60px;
            height: 60px;
            background: rgba(255,255,255,0.9);
            border-radius: 50%;
            display: flex;
            align-items: center;
            justify-content: center;
            font-size: 24px;
            color: #333;
            box-shadow: 0 4px 12px rgba(0,0,0,0.2);
        }

        .video-overlay {
            position: absolute;
            bottom: 0;
            left: 0;
            right: 0;
            background: linear-gradient(transparent, rgba(0,0,0,0.7));
            color: white;
            padding: 15px;
            font-size: 14px;
            font-weight: 500;
        }

        .video-duration {
            position: absolute;
            bottom: 10px;
            right: 10px;
            background: rgba(0,0,0,0.7);
            color: white;
            padding: 4px 8px;
            border-radius: 4px;
            font-size: 12px;
        }

        .carousel-nav {
            position: absolute;
            top: 50%;
            transform: translateY(-50%);
            background: rgba(100, 181, 246, 0.8);
            color: white;
            border: none;
            width: 40px;
            height: 40px;
            border-radius: 50%;
            cursor: pointer;
            display: flex;
            align-items: center;
            justify-content: center;
            font-size: 18px;
            transition: all 0.3s ease;
            z-index: 3;
        }

        .carousel-nav:hover {
            background: rgba(100, 181, 246, 1);
            transform: translateY(-50%) scale(1.1);
        }

        .carousel-nav.prev {
            left: -20px;
        }

        .carousel-nav.next {
            right: -20px;
        }

        .footer {
            text-align: center;
            margin-top: 40px;
            padding: 20px;
        }

        .logo {
            display: flex;
            align-items: center;
            justify-content: center;
            gap: 10px;
            font-size: 24px;
            font-weight: bold;
            color: #1976d2;
            margin-bottom: 10px;
        }

        .logo .play-icon {
            background: #1976d2;
            color: white;
            width: 30px;
            height: 30px;
            border-radius: 50%;
            display: flex;
            align-items: center;
            justify-content: center;
            font-size: 14px;
        }

        .slogan {
            color: #666;
            font-size: 14px;
        }

        /* Responsive design */
        @media (max-width: 768px) {
            .name {
                font-size: 2rem;
            }
            
            .action-buttons {
                width: 100%;
                justify-content: center;
            }
            
            .video-item {
                min-width: 250px;
            }
            
            .carousel-nav {
               /*  display: none; */
            }
        }

        
.header-banner {
    background: linear-gradient(135deg, #4A90E2, #357ABD);
    color: white;
    padding: 15px 20px;
    display: flex;
    justify-content: space-between;
    align-items: center;
}

.banner-left {
    display: flex;
    align-items: center;
    gap: 10px;
}

.banner-left .icon {
    width: 20px;
    height: 20px;
    background-color: white;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 12px;
}

.banner-right {
    display: flex;
    align-items: center;
    gap: 20px;
}

.interaction-btn {
    display: flex;
    align-items: center;
    gap: 5px;
    cursor: pointer;
    padding: 5px 10px;
    border-radius: 4px;
    transition: background-color 0.3s;
}

.interaction-btn:hover {
    background-color: rgba(255,255,255,0.2);
}

.go-btn {
    background-color: #FF6B35;
    color: white;
    padding: 8px 15px;
    border: none;
    border-radius: 4px;
    cursor: pointer;
    font-size: 14px;
}

.main-content {
    display: flex;
    gap: 30px;
    padding: 20px;
    margin-top: 15px;
    color:#333
}

.content-left {
    flex: 2;
}

.content-right {
    flex: 1;
}

.main-content  .title {
    font-size: 28px;
    font-weight: bold;
    color: #d5010f;
    margin-bottom: 20px;
    border-bottom: 3px solid #d5010f;
    padding-bottom: 10px;
}

.intro {
    font-size: 14px;
    word-wrap: break-word;
    color: #333;
    line-height: 24px;
    zoom: 1;
    clear: both;
    text-indent: 2em;
        font-family: Helvetica Neue,Helvetica,Arial,PingFang SC,Hiragino Sans GB,Microsoft YaHei,WenQuanYi Micro Hei,sans-serif;
   
}

.highlight {
    color: #e74c3c;
    font-weight: bold;
}

.section {
    margin-bottom: 25px;
}

.section-title {
    font-size: 22px;
    color: #000;
    margin-top: 20px;
    margin-bottom: 20px;
    padding-left: 0px;
    font-weight: 400;
}

.section-content {
    font-size: 14px;
    line-height: 1.8;
    text-align: justify;
}

.awards-list {
    list-style: none;
    padding-left: 0;
}

.awards-list li {
    margin-bottom: 8px;
    padding-left: 20px;
    position: relative;
}

.awards-list li:before {
    content: "🏆";
    position: absolute;
    left: 0;
}

.portrait-container {
    text-align: center;
}

.portrait {
    max-width: 260px;
    height: auto;
    margin-bottom: 15px;
    border: #ddd solid 1px;
}

.portrait-caption {
    font-size: 14px;
    color: #7f8c8d;
    font-style: normal;
}

.navigation {
    display: flex;
    gap: 30px;
    margin-top: 30px;
    padding: 20px;
    background-color: #ecf0f1;
    border-radius: 8px;
}

.nav-item {
    flex: 1;
}

.nav-title {
    font-size: 16px;
    font-weight: bold;
    color: #2c3e50;
    margin-bottom: 10px;
}

.nav-link {
    color: #3498db;
    text-decoration: none;
    font-size: 14px;
    display: block;
    margin-bottom: 5px;
}

.nav-link:hover {
    text-decoration: underline;
}

.view-more {
    color: #e74c3c;
    font-weight: bold;
}

@media (max-width: 768px) {

    .container{border:0px}

    .main-content {
        flex-direction: column;
        padding: 20px;
        gap: 10px;
    }
    
    .header-banner {
        flex-direction: column;
        gap: 15px;
        text-align: center;
    }
    
    .banner-right {
        justify-content: center;
    }
    
    .navigation {
        flex-direction: column;
        gap: 20px;
    }
}

.info-grid {
    display: flex;
    flex-wrap: wrap;
    gap: 20px;
    margin-top: 15px;
}

.info-item {
    flex: 0 0 calc(33.333% - 14px);
    display: flex;
    align-items: center;
    padding: 8px 0;
    border-bottom: 1px solid #f0f0f0;
}

.info-label {
    font-weight: bold;
    color: #333;
    margin-right: 8px;
    min-width: 80px;
}

.info-value {
    color: #666;
    flex: 1;
}

@media (max-width: 768px) {
    .info-item {
        flex: 0 0 100%;
    }
}