* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

body {
    font-family: "PingFang SC", "Microsoft YaHei", "Helvetica Neue", Arial, sans-serif;
    background-color: #f5f5f5;
    color: #333;
    line-height: 1.6;
}

.wrapper {
    width: 1480px;
    margin: 0 auto;
    background-color: #fff;
    box-shadow: 0 4px 30px rgba(0, 0, 0, 0.1);
    min-height: 100vh;
}

.header-top {
    background: linear-gradient(135deg, #c00 0%, #a00 100%);
    height: 40px;
    line-height: 40px;
    color: #fff;
    font-size: 14px;
    position: relative;
    z-index: 100;
}

.header-top .container {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 0 35px;
}

.header-top-left {
    display: flex;
    align-items: center;
}

.header-top-left .logo {
    font-size: 26px;
    font-weight: 800;
    margin-right: 40px;
    letter-spacing: 3px;
    text-shadow: 0 2px 4px rgba(0, 0, 0, 0.2);
}

.header-top-left .hot-line {
    font-weight: bold;
    margin-right: 30px;
    padding: 4px 16px;
    background-color: rgba(255, 255, 255, 0.25);
    border-radius: 20px;
    animation: pulse 2s infinite;
}

@keyframes pulse {
    0%, 100% { box-shadow: 0 0 0 0 rgba(255, 255, 255, 0.4); }
    50% { box-shadow: 0 0 0 8px rgba(255, 255, 255, 0); }
}

.header-top-right {
    display: flex;
    align-items: center;
}

.header-top-right a {
    color: rgba(255, 255, 255, 0.9);
    text-decoration: none;
    margin-left: 28px;
    font-size: 13px;
    transition: color 0.25s ease;
}

.header-top-right a:hover {
    color: #fff;
    text-decoration: underline;
}

.nav-main {
    background-color: #fff;
    border-bottom: 4px solid #c00;
    padding: 15px 35px;
    position: sticky;
    top: 0;
    z-index: 99;
    box-shadow: 0 2px 10px rgba(0, 0, 0, 0.05);
}

.nav-main .container {
    display: flex;
    align-items: center;
    justify-content: space-between;
}

.nav-categories {
    display: flex;
    align-items: center;
}

.nav-categories a {
    text-decoration: none;
    color: #333;
    font-size: 16px;
    padding: 10px 24px;
    margin-right: 5px;
    font-weight: 600;
    border-radius: 6px;
    transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
    position: relative;
}

.nav-categories a::after {
    content: "";
    position: absolute;
    bottom: -4px;
    left: 50%;
    transform: translateX(-50%);
    width: 0;
    height: 3px;
    background-color: #c00;
    transition: width 0.3s ease;
}

.nav-categories a:hover,
.nav-categories a.active {
    background-color: #c00;
    color: #fff;
    transform: translateY(-2px);
    box-shadow: 0 4px 12px rgba(192, 0, 0, 0.3);
}

.nav-categories a:hover::after,
.nav-categories a.active::after {
    width: 0;
}

.search-box {
    display: flex;
    align-items: center;
}

.search-box input {
    width: 320px;
    height: 42px;
    padding: 0 20px;
    border: 2px solid #e8e8e8;
    border-radius: 25px 0 0 25px;
    font-size: 14px;
    outline: none;
    transition: all 0.3s ease;
}

.search-box input:focus {
    border-color: #c00;
    box-shadow: 0 0 0 3px rgba(192, 0, 0, 0.1);
}

.search-box button {
    height: 42px;
    width: 90px;
    background: linear-gradient(135deg, #c00 0%, #a00 100%);
    color: #fff;
    border: none;
    border-radius: 0 25px 25px 0;
    cursor: pointer;
    font-size: 14px;
    font-weight: 600;
    transition: all 0.3s ease;
}

.search-box button:hover {
    transform: scale(1.02);
    box-shadow: 0 4px 15px rgba(192, 0, 0, 0.4);
}

.breaking-news {
    background-color: #fff;
    padding: 12px 35px;
    border-bottom: 1px solid #f0f0f0;
    overflow: hidden;
}

.breaking-news .container {
    display: flex;
    align-items: center;
}

.breaking-news-label {
    background: linear-gradient(135deg, #c00 0%, #a00 100%);
    color: #fff;
    padding: 5px 16px;
    font-size: 13px;
    font-weight: bold;
    margin-right: 25px;
    border-radius: 4px;
    flex-shrink: 0;
    box-shadow: 0 2px 8px rgba(192, 0, 0, 0.3);
}

.breaking-news-content {
    flex: 1;
    overflow: hidden;
}

.breaking-news-content ul {
    list-style: none;
    display: flex;
    animation: marquee 30s linear infinite;
}

.breaking-news-content ul:hover {
    animation-play-state: paused;
}

.breaking-news-content li {
    white-space: nowrap;
    padding-right: 50px;
}

.breaking-news-content li a {
    color: #333;
    text-decoration: none;
    font-size: 14px;
    transition: color 0.25s ease;
}

.breaking-news-content li a:hover {
    color: #c00;
    font-weight: 500;
}

@keyframes marquee {
    0% { transform: translateX(0); }
    100% { transform: translateX(-50%); }
}

.main-content {
    padding: 30px 35px;
    display: grid;
    grid-template-columns: 68% 32%;
    gap: 30px;
}

.main-left {
    display: flex;
    flex-direction: column;
    gap: 28px;
}

.section-title {
    font-size: 21px;
    font-weight: 700;
    color: #1a1a1a;
    margin-bottom: 22px;
    padding-left: 15px;
    border-left: 6px solid #c00;
    display: flex;
    align-items: center;
    position: relative;
}

.section-title::after {
    content: "";
    position: absolute;
    left: 0;
    top: 50%;
    transform: translateY(-50%);
    width: 3px;
    height: 24px;
    background-color: #e8e8e8;
}

.section-title span {
    font-size: 12px;
    color: #999;
    font-weight: normal;
    margin-left: 18px;
    letter-spacing: 2px;
}

.headline-section {
    background-color: #fff;
    padding: 25px;
    border-radius: 12px;
    box-shadow: 0 4px 20px rgba(0, 0, 0, 0.06);
}

.headline-main {
    display: grid;
    grid-template-columns: 62% 38%;
    gap: 22px;
}

.headline-main-left {
    position: relative;
    overflow: hidden;
    border-radius: 10px;
    height: 340px;
}

.headline-main-left img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform 0.6s cubic-bezier(0.4, 0, 0.2, 1);
}

.headline-main-left:hover img {
    transform: scale(1.08);
}

.headline-main-left .headline-overlay {
    position: absolute;
    bottom: 0;
    left: 0;
    right: 0;
    background: linear-gradient(to top, rgba(0, 0, 0, 0.9), rgba(0, 0, 0, 0.5), transparent);
    padding: 50px 30px 30px;
    color: #fff;
}

.headline-main-left .headline-overlay h2 {
    font-size: 28px;
    margin-bottom: 15px;
    font-weight: 700;
    line-height: 1.45;
    text-shadow: 0 2px 4px rgba(0, 0, 0, 0.3);
}

.headline-main-left .headline-overlay p {
    font-size: 15px;
    opacity: 0.9;
    line-height: 1.7;
    display: -webkit-box;
    -webkit-line-clamp: 2;
    -webkit-box-orient: vertical;
    overflow: hidden;
}

.headline-main-left .headline-overlay .headline-tag {
    display: inline-block;
    background-color: #c00;
    padding: 5px 14px;
    font-size: 12px;
    font-weight: bold;
    border-radius: 4px;
    margin-bottom: 12px;
    box-shadow: 0 2px 8px rgba(192, 0, 0, 0.4);
}

.headline-main-right {
    display: flex;
    flex-direction: column;
    justify-content: space-between;
}

.headline-item {
    display: flex;
    gap: 15px;
    padding: 12px 0;
    border-bottom: 1px dotted #e5e5e5;
    transition: all 0.3s ease;
    border-radius: 8px;
}

.headline-item:hover {
    background-color: #fafafa;
    padding-left: 10px;
    transform: translateX(5px);
}

.headline-item:last-child {
    border-bottom: none;
}

.headline-item img {
    width: 145px;
    height: 100px;
    object-fit: cover;
    border-radius: 7px;
    flex-shrink: 0;
    transition: transform 0.3s ease;
}

.headline-item:hover img {
    transform: scale(1.05);
}

.headline-item-content {
    flex: 1;
    display: flex;
    flex-direction: column;
    justify-content: space-between;
}

.headline-item-content h3 {
    font-size: 16px;
    font-weight: 600;
    color: #333;
    line-height: 1.5;
    display: -webkit-box;
    -webkit-line-clamp: 2;
    -webkit-box-orient: vertical;
    overflow: hidden;
    transition: color 0.25s ease;
}

.headline-item-content h3:hover {
    color: #c00;
}

.headline-item-content span {
    font-size: 13px;
    color: #999;
}

.news-list-section {
    background-color: #fff;
    padding: 25px;
    border-radius: 12px;
    box-shadow: 0 4px 20px rgba(0, 0, 0, 0.06);
}

.news-list {
    list-style: none;
}

.news-list li {
    padding: 18px 0;
    border-bottom: 1px dotted #e5e5e5;
    display: flex;
    align-items: center;
    transition: all 0.3s ease;
    border-radius: 8px;
}

.news-list li:hover {
    padding-left: 12px;
    background-color: #fafafa;
}

.news-list li:last-child {
    border-bottom: none;
}

.news-list li .news-rank {
    width: 32px;
    height: 32px;
    background-color: #f0f0f0;
    color: #666;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 15px;
    font-weight: 700;
    margin-right: 18px;
    border-radius: 6px;
    flex-shrink: 0;
    transition: all 0.3s ease;
}

.news-list li:nth-child(1) .news-rank,
.news-list li:nth-child(2) .news-rank,
.news-list li:nth-child(3) .news-rank {
    background: linear-gradient(135deg, #c00 0%, #a00 100%);
    color: #fff;
    box-shadow: 0 3px 10px rgba(192, 0, 0, 0.3);
}

.news-list li:hover .news-rank {
    transform: scale(1.1);
}

.news-list li a {
    flex: 1;
    text-decoration: none;
    color: #333;
    font-size: 16px;
    line-height: 1.6;
    display: -webkit-box;
    -webkit-line-clamp: 2;
    -webkit-box-orient: vertical;
    overflow: hidden;
    transition: color 0.25s ease;
}

.news-list li a:hover {
    color: #c00;
}

.news-list li .news-time {
    font-size: 13px;
    color: #999;
    margin-left: 18px;
    flex-shrink: 0;
}

.sub-news-section {
    display: grid;
    grid-template-columns: 50% 50%;
    gap: 25px;
}

.sub-news {
    background-color: #fff;
    padding: 22px;
    border-radius: 12px;
    box-shadow: 0 4px 20px rgba(0, 0, 0, 0.06);
}

.sub-news .section-title {
    font-size: 18px;
    margin-bottom: 20px;
}

.sub-news ul {
    list-style: none;
}

.sub-news ul li {
    padding: 14px 0;
    border-bottom: 1px dotted #e5e5e5;
    position: relative;
    padding-left: 15px;
    transition: all 0.3s ease;
}

.sub-news ul li:hover {
    padding-left: 22px;
}

.sub-news ul li::before {
    content: "";
    position: absolute;
    left: 0;
    top: 50%;
    transform: translateY(-50%);
    width: 5px;
    height: 5px;
    background-color: #c00;
    border-radius: 50%;
    transition: all 0.3s ease;
}

.sub-news ul li:hover::before {
    width: 8px;
    height: 8px;
    box-shadow: 0 0 0 3px rgba(192, 0, 0, 0.2);
}

.sub-news ul li:last-child {
    border-bottom: none;
}

.sub-news ul li a {
    text-decoration: none;
    color: #333;
    font-size: 15px;
    line-height: 1.55;
    display: block;
    overflow: hidden;
    white-space: nowrap;
    text-overflow: ellipsis;
    transition: color 0.25s ease;
}

.sub-news ul li a:hover {
    color: #c00;
}

.multi-section {
    background-color: #fff;
    padding: 25px;
    border-radius: 12px;
    box-shadow: 0 4px 20px rgba(0, 0, 0, 0.06);
}

.multi-section-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 22px;
}

.multi-item {
    position: relative;
    overflow: hidden;
    border-radius: 10px;
    height: 180px;
}

.multi-item img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform 0.4s cubic-bezier(0.4, 0, 0.2, 1);
}

.multi-item:hover img {
    transform: scale(1.1);
}

.multi-item .multi-overlay {
    position: absolute;
    bottom: 0;
    left: 0;
    right: 0;
    background: linear-gradient(to top, rgba(0, 0, 0, 0.85), rgba(0, 0, 0, 0.3), transparent);
    padding: 25px 18px 18px;
    color: #fff;
}

.multi-item .multi-overlay h4 {
    font-size: 15px;
    font-weight: 600;
    line-height: 1.6;
    display: -webkit-box;
    -webkit-line-clamp: 2;
    -webkit-box-orient: vertical;
    overflow: hidden;
    text-shadow: 0 1px 2px rgba(0, 0, 0, 0.3);
}

.video-banner-section {
    background-color: #fff;
    padding: 25px;
    border-radius: 12px;
    box-shadow: 0 4px 20px rgba(0, 0, 0, 0.06);
}

.video-banner {
    position: relative;
    height: 200px;
    border-radius: 10px;
    overflow: hidden;
}

.video-banner img {
    width: 100%;
    height: 100%;
    object-fit: cover;
}

.video-banner .video-overlay {
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: linear-gradient(to right, rgba(192, 0, 0, 0.9), rgba(192, 0, 0, 0.5), transparent);
    display: flex;
    flex-direction: column;
    justify-content: center;
    padding-left: 40px;
}

.video-banner .video-overlay h3 {
    font-size: 24px;
    font-weight: 700;
    color: #fff;
    margin-bottom: 10px;
    text-shadow: 0 2px 4px rgba(0, 0, 0, 0.3);
}

.video-banner .video-overlay p {
    font-size: 14px;
    color: rgba(255, 255, 255, 0.9);
    margin-bottom: 15px;
}

.video-banner .play-btn {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    background-color: #fff;
    color: #c00;
    padding: 12px 28px;
    border-radius: 25px;
    font-weight: 600;
    text-decoration: none;
    transition: all 0.3s ease;
    width: fit-content;
}

.video-banner .play-btn:hover {
    transform: scale(1.05);
    box-shadow: 0 4px 15px rgba(0, 0, 0, 0.2);
}

.main-right {
    display: flex;
    flex-direction: column;
    gap: 25px;
}

.sidebar-box {
    background-color: #fff;
    padding: 22px;
    border-radius: 12px;
    box-shadow: 0 4px 20px rgba(0, 0, 0, 0.06);
}

.sidebar-title {
    font-size: 18px;
    font-weight: 700;
    color: #1a1a1a;
    margin-bottom: 20px;
    padding-bottom: 15px;
    border-bottom: 2px solid #f0f0f0;
    display: flex;
    align-items: center;
    position: relative;
}

.sidebar-title::before {
    content: "";
    width: 6px;
    height: 20px;
    background: linear-gradient(135deg, #c00 0%, #a00 100%);
    margin-right: 12px;
    border-radius: 3px;
}

.sidebar-title::after {
    content: "";
    position: absolute;
    bottom: -2px;
    left: 18px;
    width: 40px;
    height: 2px;
    background-color: #c00;
}

.hot-search-list {
    list-style: none;
}

.hot-search-list li {
    display: flex;
    align-items: center;
    padding: 12px 0;
    border-bottom: 1px dotted #e5e5e5;
    transition: all 0.3s ease;
}

.hot-search-list li:hover {
    padding-left: 8px;
    background-color: #fafafa;
    border-radius: 6px;
}

.hot-search-list li:last-child {
    border-bottom: none;
}

.hot-search-list li .search-rank {
    width: 26px;
    height: 26px;
    background-color: #f5f5f5;
    color: #999;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 13px;
    font-weight: 700;
    margin-right: 14px;
    border-radius: 4px;
    flex-shrink: 0;
    transition: all 0.3s ease;
}

.hot-search-list li:nth-child(1) .search-rank,
.hot-search-list li:nth-child(2) .search-rank,
.hot-search-list li:nth-child(3) .search-rank {
    background: linear-gradient(135deg, #c00 0%, #a00 100%);
    color: #fff;
    box-shadow: 0 2px 8px rgba(192, 0, 0, 0.3);
}

.hot-search-list li:hover .search-rank {
    transform: scale(1.1);
}

.hot-search-list li a {
    flex: 1;
    text-decoration: none;
    color: #333;
    font-size: 15px;
    overflow: hidden;
    white-space: nowrap;
    text-overflow: ellipsis;
    transition: color 0.25s ease;
}

.hot-search-list li a:hover {
    color: #c00;
}

.hot-search-list li .search-hot {
    background-color: #ffe4e4;
    color: #c00;
    font-size: 11px;
    font-weight: bold;
    padding: 3px 8px;
    border-radius: 3px;
    margin-left: 10px;
}

.weather-box {
    background: linear-gradient(135deg, #2c3e50 0%, #1a252f 100%);
    color: #fff;
    padding: 30px;
    border-radius: 12px;
    text-align: center;
    box-shadow: 0 8px 30px rgba(44, 62, 80, 0.4);
}

.weather-box .city {
    font-size: 20px;
    margin-bottom: 15px;
    font-weight: 600;
    opacity: 0.9;
}

.weather-box .temp {
    font-size: 60px;
    font-weight: 300;
    margin-bottom: 10px;
    letter-spacing: -2px;
}

.weather-box .desc {
    font-size: 16px;
    opacity: 0.85;
    margin-bottom: 20px;
}

.weather-box .info {
    font-size: 13px;
    opacity: 0.7;
    display: flex;
    justify-content: center;
    gap: 20px;
}

.ad-box {
    border-radius: 12px;
    overflow: hidden;
    box-shadow: 0 4px 20px rgba(0, 0, 0, 0.06);
}

.ad-box img {
    width: 100%;
    transition: transform 0.4s ease;
}

.ad-box:hover img {
    transform: scale(1.03);
}

.photo-gallery {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 15px;
}

.photo-item {
    position: relative;
    overflow: hidden;
    border-radius: 10px;
    height: 130px;
}

.photo-item img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform 0.4s cubic-bezier(0.4, 0, 0.2, 1);
}

.photo-item:hover img {
    transform: scale(1.12);
}

.photo-item .photo-title {
    position: absolute;
    bottom: 0;
    left: 0;
    right: 0;
    background: linear-gradient(to top, rgba(0, 0, 0, 0.85), transparent);
    padding: 20px 12px 12px;
    color: #fff;
    font-size: 13px;
    line-height: 1.5;
    text-shadow: 0 1px 2px rgba(0, 0, 0, 0.3);
}

.video-section {
    display: flex;
    flex-direction: column;
    gap: 18px;
}

.video-item {
    display: flex;
    gap: 15px;
    padding: 12px 0;
    border-bottom: 1px dotted #e5e5e5;
    transition: all 0.3s ease;
}

.video-item:last-child {
    border-bottom: none;
}

.video-item:hover {
    padding-left: 8px;
    background-color: #fafafa;
    border-radius: 8px;
}

.video-item img {
    width: 130px;
    height: 80px;
    object-fit: cover;
    border-radius: 8px;
    flex-shrink: 0;
    transition: transform 0.3s ease;
}

.video-item:hover img {
    transform: scale(1.05);
}

.video-item-content {
    flex: 1;
    display: flex;
    flex-direction: column;
    justify-content: space-between;
}

.video-item-content h4 {
    font-size: 15px;
    font-weight: 600;
    color: #333;
    line-height: 1.5;
    display: -webkit-box;
    -webkit-line-clamp: 2;
    -webkit-box-orient: vertical;
    overflow: hidden;
    transition: color 0.25s ease;
}

.video-item-content h4:hover {
    color: #c00;
}

.video-item-content span {
    font-size: 13px;
    color: #999;
}

.subscribe-box {
    background: linear-gradient(135deg, #fff 0%, #fafafa 100%);
    border: 1px solid #e8e8e8;
    padding: 25px;
}

.subscribe-box p {
    font-size: 15px;
    color: #666;
    margin-bottom: 20px;
    line-height: 1.7;
    text-align: center;
}

.subscribe-box .subscribe-form {
    display: flex;
}

.subscribe-box input {
    flex: 1;
    height: 45px;
    padding: 0 20px;
    border: 2px solid #e0e0e0;
    border-radius: 8px 0 0 8px;
    font-size: 14px;
    outline: none;
    transition: all 0.3s ease;
}

.subscribe-box input:focus {
    border-color: #c00;
    box-shadow: 0 0 0 3px rgba(192, 0, 0, 0.1);
}

.subscribe-box button {
    height: 45px;
    width: 100px;
    background: linear-gradient(135deg, #c00 0%, #a00 100%);
    color: #fff;
    border: none;
    border-radius: 0 8px 8px 0;
    cursor: pointer;
    font-size: 14px;
    font-weight: 600;
    transition: all 0.3s ease;
}

.subscribe-box button:hover {
    transform: scale(1.02);
    box-shadow: 0 4px 15px rgba(192, 0, 0, 0.4);
}

.quick-links-box {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 12px;
}

.quick-link-item {
    display: flex;
    flex-direction: column;
    align-items: center;
    padding: 15px 10px;
    background-color: #f8f9fa;
    border-radius: 10px;
    transition: all 0.3s ease;
    cursor: pointer;
}

.quick-link-item:hover {
    background-color: #fff;
    transform: translateY(-3px);
    box-shadow: 0 4px 15px rgba(0, 0, 0, 0.1);
}

.quick-link-item .icon {
    width: 40px;
    height: 40px;
    background: linear-gradient(135deg, #c00 0%, #a00 100%);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    color: #fff;
    font-size: 18px;
    font-weight: bold;
    margin-bottom: 8px;
}

.quick-link-item span {
    font-size: 12px;
    color: #666;
}

.footer {
    background: linear-gradient(135deg, #1a1a2e 0%, #16213e 100%);
    color: #999;
    padding: 50px 35px;
    margin-top: 35px;
}

.footer .container {
    display: grid;
    grid-template-columns: repeat(5, 1fr);
    gap: 40px;
}

.footer-column h4 {
    color: #fff;
    font-size: 17px;
    margin-bottom: 25px;
    font-weight: 600;
    position: relative;
    padding-bottom: 10px;
}

.footer-column h4::after {
    content: "";
    position: absolute;
    bottom: 0;
    left: 0;
    width: 30px;
    height: 2px;
    background-color: #c00;
}

.footer-column ul {
    list-style: none;
}

.footer-column ul li {
    margin-bottom: 14px;
}

.footer-column ul li a {
    color: #999;
    text-decoration: none;
    font-size: 14px;
    transition: all 0.3s ease;
    display: flex;
    align-items: center;
    gap: 6px;
}

.footer-column ul li a:hover {
    color: #fff;
    padding-left: 5px;
}

.footer-bottom {
    text-align: center;
    padding-top: 30px;
    margin-top: 30px;
    border-top: 1px solid #2c3e50;
    font-size: 13px;
    color: #666;
}

.news-detail-header {
    padding: 30px 35px;
    border-bottom: 1px solid #eee;
    background-color: #fff;
}

.news-detail-header h1 {
    font-size: 32px;
    font-weight: 700;
    color: #1a1a1a;
    margin-bottom: 20px;
    line-height: 1.45;
}

.news-detail-meta {
    display: flex;
    align-items: center;
    gap: 25px;
    font-size: 14px;
    color: #999;
}

.news-detail-meta .author {
    color: #c00;
    font-weight: 500;
}

.news-detail-content {
    padding: 35px;
    font-size: 17px;
    line-height: 1.9;
    color: #333;
    background-color: #fff;
}

.news-detail-content p {
    margin-bottom: 22px;
    text-indent: 2em;
}

.news-detail-content img {
    max-width: 100%;
    height: auto;
    border-radius: 10px;
    margin: 25px 0;
    box-shadow: 0 4px 20px rgba(0, 0, 0, 0.1);
}

.news-detail-content h2 {
    font-size: 22px;
    font-weight: 700;
    margin: 30px 0 18px;
    color: #1a1a1a;
    padding-left: 15px;
    border-left: 5px solid #c00;
}

.news-detail-content h3 {
    font-size: 19px;
    font-weight: 600;
    margin: 25px 0 15px;
    color: #333;
}

.news-detail-content blockquote {
    margin: 20px 0;
    padding: 15px 25px;
    background-color: #f9f9f9;
    border-left: 4px solid #c00;
    border-radius: 0 6px 6px 0;
    font-style: italic;
    color: #666;
}

.news-detail-related {
    padding: 30px 35px;
    border-top: 1px solid #eee;
    background-color: #fff;
}

.news-detail-related h3 {
    font-size: 20px;
    font-weight: 700;
    margin-bottom: 22px;
    padding-left: 15px;
    border-left: 5px solid #c00;
    color: #1a1a1a;
}

.news-detail-related ul {
    list-style: none;
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 18px;
}

.news-detail-related li {
    padding: 15px 0;
    border-bottom: 1px dotted #e5e5e5;
    transition: all 0.3s ease;
}

.news-detail-related li:hover {
    padding-left: 10px;
    background-color: #fafafa;
    border-radius: 6px;
}

.news-detail-related li:last-child,
.news-detail-related li:nth-last-child(2) {
    border-bottom: none;
}

.news-detail-related li a {
    text-decoration: none;
    color: #333;
    font-size: 16px;
    line-height: 1.6;
    display: -webkit-box;
    -webkit-line-clamp: 2;
    -webkit-box-orient: vertical;
    overflow: hidden;
    transition: color 0.25s ease;
}

.news-detail-related li a:hover {
    color: #c00;
}

.comment-section {
    padding: 30px 35px;
    background-color: #fff;
    border-top: 1px solid #eee;
}

.comment-section h3 {
    font-size: 20px;
    font-weight: 700;
    margin-bottom: 25px;
    padding-left: 15px;
    border-left: 5px solid #c00;
    color: #1a1a1a;
}

.comment-form {
    display: flex;
    flex-direction: column;
    gap: 15px;
    margin-bottom: 35px;
}

.comment-form textarea {
    width: 100%;
    height: 120px;
    padding: 15px;
    border: 2px solid #e8e8e8;
    border-radius: 10px;
    font-size: 15px;
    outline: none;
    resize: none;
    transition: all 0.3s ease;
}

.comment-form textarea:focus {
    border-color: #c00;
    box-shadow: 0 0 0 3px rgba(192, 0, 0, 0.1);
}

.comment-form button {
    align-self: flex-end;
    padding: 12px 35px;
    background: linear-gradient(135deg, #c00 0%, #a00 100%);
    color: #fff;
    border: none;
    border-radius: 25px;
    font-size: 15px;
    font-weight: 600;
    cursor: pointer;
    transition: all 0.3s ease;
}

.comment-form button:hover {
    transform: scale(1.05);
    box-shadow: 0 4px 15px rgba(192, 0, 0, 0.4);
}

.comment-list {
    list-style: none;
}

.comment-item {
    padding: 20px 0;
    border-bottom: 1px solid #eee;
    display: flex;
    gap: 15px;
}

.comment-item:last-child {
    border-bottom: none;
}

.comment-avatar {
    width: 50px;
    height: 50px;
    background: linear-gradient(135deg, #c00 0%, #a00 100%);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    color: #fff;
    font-weight: bold;
    font-size: 18px;
    flex-shrink: 0;
}

.comment-content {
    flex: 1;
}

.comment-author {
    display: flex;
    align-items: center;
    gap: 10px;
    margin-bottom: 10px;
}

.comment-author span {
    font-weight: 600;
    color: #333;
}

.comment-author time {
    font-size: 13px;
    color: #999;
}

.comment-text {
    font-size: 15px;
    color: #555;
    line-height: 1.7;
}

@media (max-width: 1480px) {
    .wrapper {
        width: 100%;
        margin: 0;
    }
}

@media (max-width: 1200px) {
    .main-content {
        grid-template-columns: 65% 35%;
    }
    
    .headline-main {
        grid-template-columns: 60% 40%;
    }
    
    .multi-section-grid {
        grid-template-columns: repeat(2, 1fr);
    }
}

@media (max-width: 1024px) {
    .main-content {
        grid-template-columns: 100%;
    }
    
    .headline-main {
        grid-template-columns: 100%;
    }
    
    .headline-main-left {
        height: 280px;
    }
    
    .sub-news-section {
        grid-template-columns: 100%;
    }
    
    .multi-section-grid {
        grid-template-columns: repeat(3, 1fr);
    }
    
    .footer .container {
        grid-template-columns: repeat(3, 1fr);
    }
}

@media (max-width: 768px) {
    .header-top-left .hot-line {
        display: none;
    }
    
    .header-top-right a:not(:last-child) {
        display: none;
    }
    
    .nav-categories {
        flex-wrap: wrap;
    }
    
    .nav-categories a {
        padding: 8px 15px;
        font-size: 14px;
    }
    
    .search-box input {
        width: 200px;
    }
    
    .multi-section-grid {
        grid-template-columns: repeat(2, 1fr);
    }
    
    .footer .container {
        grid-template-columns: repeat(2, 1fr);
    }
    
    .news-detail-header h1 {
        font-size: 24px;
    }
}

@media (max-width: 480px) {
    .header-top .container,
    .nav-main .container {
        padding: 0 15px;
    }
    
    .breaking-news {
        padding: 10px 15px;
    }
    
    .main-content {
        padding: 15px;
    }
    
    .headline-main-left {
        height: 220px;
    }
    
    .headline-main-left .headline-overlay h2 {
        font-size: 20px;
    }
    
    .multi-section-grid {
        grid-template-columns: 100%;
    }
    
    .footer .container {
        grid-template-columns: 100%;
    }
    
    .news-detail-related ul {
        grid-template-columns: 100%;
    }
    
    .quick-links-box {
        grid-template-columns: repeat(2, 1fr);
    }
}