.main-content {
    position: relative;
    width: 100%;
    min-height: 100vh;
    background-color: rgba(9, 18, 29, 1);
}

.news-bg-container {
    width: 100%;
    height: 321px;
    position: absolute;
    top: 0;
    left: 0;
    z-index: 1;
}

.news-bg-shadow {
    position: absolute;
    left: 0;
    bottom: 0;
    width: 100%;
    height: 100px;
    background: linear-gradient(to top, rgba(9, 18, 29, 1), rgba(9, 18, 29, 0.7), transparent);
    z-index: 2;
    pointer-events: none;
}

.news-bg {
    width: 100%;
    height: 100%;
    display: block;
    box-shadow: 0 30px 30px rgba(9, 18, 29, 0.8) inset;
}

.news-title-img {
    display: block;
    width: 234px;
    height: 44px;
}

.news-title {
    width: 100%;
    height: 321px;
    display: flex;
    justify-content: center;
    align-items: center;
    position: relative;
    z-index: 998;
}

.news-body {
    position: relative;
    z-index: 3;
    width: 1200px;
    margin: -20px auto 0 auto;
    display: flex;
    padding-bottom: 20px;
}

/* 文章详情视图样式 */
.news-article-detail {
    width:93%;
    padding: 0 20px 20px 20px;
    background-color: rgba(30, 40, 53, 1);
    border-radius: 4px;
    color: #fff;
}

.news-article-detail-header {
    margin-bottom: 20px;
}

.back-btn {
    padding: 8px 16px;
    background-color: #1a1a1a;
    color: #fff;
    border: none;
    border-radius: 4px;
    cursor: pointer;
    font-size: 14px;
    transition: background-color 0.3s;
}

.back-btn:hover {
    background-color: #333;
}

.news-article-detail-content {
    line-height: 1.8;
}

.news-article-detail-title {
    font-size: 28px;
    font-weight: bold;
    color: #fff;
    margin-bottom: 16px;
    line-height: 41px;
}

.news-article-detail-meta {
    font-size: 14px;
    color: #666;
    margin-bottom: 24px;
    padding-bottom: 16px;
    border-bottom: 1px solid #eee;
}

.news-article-detail-meta span {
    margin-right: 24px;
}

.news-article-detail-text {
    font-size: 16px;
    color: rgba(121, 141, 163, 1);
}

.news-article-detail-text img {
    max-width: 100%;
    height: auto;
}

.news-article-detail-text p {
    margin-bottom: 16px;
}

/* 列表项点击效果 */
.news-article-item,
.news-article-titles-item {
    cursor: pointer;
    transition: all 0.3s ease;
}

.news-article-item:hover {
    transform: translateY(-2px);
    box-shadow: 0 4px 12px rgba(0, 0, 0, 0.1);
}

.news-article-titles-item:hover {
    transform: translateX(5px);
    color: #ff6b6b;
}

.news-left {
    width: 70%;
    display: flex;
    flex-direction: column;
    gap: 20px;
}

.news-right {
    width: 30%;
    display: flex;
    flex-direction: column;
    gap: 20px;
}

.news-search {
    background-color: rgba(30, 40, 53, 1);
    border-radius: 10px;
    padding: 10px 15px;
    display: flex;
    gap: 10px;
    height: 66px;
    box-sizing: border-box;
}

.news-search input {
    flex: 1;
    padding: 0;
    background-color: rgba(30, 40, 53, 1);
    border: none;
    border-radius: 10px;
    color: #FFFFFF;
    font-size: 14px;
    height: 100%;
}

.news-search input:focus {
    outline: none;
    box-shadow: none;
}

.news-search-btn {
    width: 28px;
    height: 28px;
    cursor: pointer;
    margin-right: 16px;
    align-self: center;
}

.news-download {
    border-radius: 16px;
    background-image: url('../img/news-download-bg.png');
    background-size: 100% 100%;
    border: 1px solid rgba(255, 255, 255, 0.08);
    padding: 20px;
}

.news-download-logo {
    width: 180px;
    height: 58px;
    margin-bottom: 14px;
}

.news-download-title {
    color: #1CCD9C;
    font-size: 18px;
    font-weight: bold;
    margin-bottom: 10px;
}

.news-download-items {
    display: flex;
    justify-content: space-between;
    gap: 10px;
    margin-bottom: 28px;
}

.news-download-item {
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 8px;
    flex: 1;
}

.news-download-item-icon {
    width: 40px;
    height: 40px;
}

.news-download-item-text {
    color: #FFFFFF;
    font-size: 14px;
    text-align: center;
}

.news-download-desc {
    color: #FFFFFFCC;
    font-size: 14px;
    margin-bottom: 20px;
}

.news-download-btn {
    width: 100%;
    height: 40px;
    background-image: url('../img/news-download-btn.png');
    background-size: cover;
    background-position: center;
    background-repeat: no-repeat;
    color: #131319;
    font-size: 18px;
    font-weight: bold;
    text-align: center;
    line-height: 32px;
    cursor: pointer;
}

.news-download-btn:hover {
    transform: scale(1.05);
}

.news-articles {
    border-radius: 4px;
    padding: 0 20px 20px 20px;
}

.news-articles-title {
    color: #1CCD9C;
    font-size: 18px;
    font-weight: bold;
    margin-bottom: 20px;
    display: flex;
    align-items: center;
    gap: 10px;
}

.news-articles-title::before {
    content: "";
    width: 4px;
    height: 20px;
    background-color: #1CCD9C;
    border-radius: 2px;
}

.news-article-list {
    display: flex;
    flex-direction: column;
    gap: 15px;
}

.news-article-item {
    display: flex;
    gap: 15px;
    padding: 15px;
    background-color: rgba(30, 40, 53, 1);
    border-radius: 4px;
    cursor: pointer;
    transition: all 0.3s ease;
}

.news-article-item:hover {
    /* background-color: #2A2A36; */
    transform: translateY(-2px);
}

.news-article-img {
    width: 154px;
    height: 154px;
    border-radius: 4px;
    object-fit: cover;
}

.news-article-content {
    flex: 1;
    display: flex;
    flex-direction: column;
    justify-content: space-between;
    overflow: hidden;
}

.news-article-title {
    color: #FFFFFF;
    font-size: 22px;
    font-weight: 700;
    margin-bottom: 0px;
    white-space: nowrap;
    overflow: hidden;
    text-overflow: ellipsis;
}

.news-article-desc {
    color: rgba(121, 141, 163, 1);
    font-size: 14px;
    line-height: 1.4;
    margin-bottom: 6px;
    display: -webkit-box;
    -webkit-line-clamp: 2;
    -webkit-box-orient: vertical;
    overflow: hidden;
    text-overflow: ellipsis;
}

.news-article-meta {
    color: rgba(121, 141, 163, 1);
    font-size: 12px;
    display: flex;
    justify-content: flex-start;
    align-items: center;
    gap: 24px;
}

.news-article-time {
    width: 20px;
    height: 20px;
    margin-right: 1px;
}

.news-article-more {
    width: 72px;
    height: 16px;
    transition: opacity 0.3s ease;
}

.news-article-item:hover .news-article-more {
    animation: slideInFromLeft 0.5s ease forwards;
    opacity: 0;
}

@keyframes slideInFromLeft {
    0% {
        opacity: 0;
        transform: translateX(-20px);
    }

    50% {
        opacity: 0;
    }

    100% {
        opacity: 1;
        transform: translateX(0);
    }
}

.news-strategies {
    background-color: #131319;
    border-radius: 4px;
    padding: 20px;
}

.news-strategies-title {
    color: #1CCD9C;
    font-size: 18px;
    font-weight: bold;
    margin-bottom: 20px;
    display: flex;
    align-items: center;
    gap: 10px;
}

.news-strategies-title::before {
    content: "";
    width: 4px;
    height: 20px;
    background-color: #1CCD9C;
    border-radius: 2px;
}

.news-strategies-list {
    display: flex;
    flex-direction: column;
    gap: 10px;
}

.news-strategies-item {
    color: #FFFFFFCC;
    font-size: 14px;
    line-height: 1.6;
    cursor: pointer;
    transition: all 0.3s ease;
    padding: 5px 0;
    border-bottom: 1px solid #1E1E28;
}

.news-strategies-item:last-child {
    border-bottom: none;
}

.news-strategies-item:hover {
    color: #1CCD9C;
    padding-left: 5px;
}

/* 文章标题列表样式 */
.news-article-titles {
    border-radius: 16px;
    padding: 20px;
    position: relative;
    background-color: rgba(30, 40, 53, 1);
}

.news-article-slider {
    width: 100%;
}

.news-article-titles-title {
    color: #FFFFFF;
    font-size: 18px;
    font-weight: bold;
    margin-bottom: 20px;
    display: flex;
    align-items: center;
    gap: 10px;
}

/* .news-article-titles-title::before {
    content: "";
    width: 4px;
    height: 20px;
    background-color: #1CCD9C;
    border-radius: 2px;
} */

.news-article-titles-list {
    display: flex;
    flex-direction: column;
    gap: 10px;
    overflow: hidden;
}

.news-article-titles-item {
    color: #FFFFFFCC;
    font-size: 14px;
    line-height: 1.6;
    cursor: pointer;
    transition: all 0.3s ease;
    padding: 5px 0;
    /* border-bottom: 1px solid #1E1E28; */
    white-space: nowrap;
    overflow: hidden;
    text-overflow: ellipsis;
}

.news-article-titles-item:last-child {
    border-bottom: none;
}

.news-article-titles-item:hover {
		color: #1CCD9C;
		margin-left: 5px;
	}

	/* 无数据提示样式 */
	.news-no-data {
		width: 100%;
		padding: 60px 0;
		text-align: center;
		color: rgba(121, 141, 163, 1);
		font-size: 16px;
		background-color: rgba(30, 40, 53, 1);
		border-radius: 4px;
	}

	/* 分页样式 - 模仿Element Plus的el-pagination */
	.news-pagination {
		display: flex;
		justify-content: center;
		align-items: center;
		gap: 4px;
		margin-top: 20px;
		padding: 20px;
		background-color: rgba(30, 40, 53, 1);
		border-radius: 4px;
	}

	.news-pagination button {
		min-width: 32px;
		height: 32px;
		padding: 0 11px;
		border: 1px solid rgba(121, 141, 163, 0.3);
		background-color: rgba(30, 40, 53, 1);
		color: rgba(121, 141, 163, 1);
		font-size: 14px;
		border-radius: 4px;
		cursor: pointer;
		transition: all 0.3s ease;
	}

	.news-pagination button:hover:not(:disabled) {
		border-color: #1CCD9C;
		color: #1CCD9C;
		background-color: rgba(28, 205, 156, 0.1);
	}

	.news-pagination button:disabled {
		border-color: rgba(121, 141, 163, 0.2);
		color: rgba(121, 141, 163, 0.3);
		cursor: not-allowed;
	}

	.news-pagination span {
		min-width: 32px;
		height: 32px;
		padding: 0 11px;
		display: flex;
		justify-content: center;
		align-items: center;
		color: rgba(121, 141, 163, 1);
		font-size: 14px;
		border-radius: 4px;
		cursor: pointer;
		transition: all 0.3s ease;
	}

	.news-pagination span:hover:not(.active) {
		background-color: rgba(121, 141, 163, 0.1);
	}

	.news-pagination span.active {
		color: #fff;
		background-color: #1CCD9C;
		border-color: #1CCD9C;
	}

	.news-pagination span.disabled {
		cursor: not-allowed;
		color: rgba(121, 141, 163, 0.5);
		background-color: transparent;
		border-color: transparent;
	}

	.news-pagination span.disabled:hover {
		background-color: transparent;
	}