/* 全局样式 */
html,
body {
    background-color: #F6F7FA !important;
}

/* 英雄区样式 */
#hero {
    position: relative;
    color: white;
    background: linear-gradient(124deg, #0B1319 0%, #262C31 56%, #101B24 100%);
}

#hero>#bg {
    display: none;
}

#hero>#bg_mobile {
    width: 100%;
    object-fit: cover;
    display: block;
}

.hero-content {
    position: absolute;
    top: 115px;
    left: 0;
    padding: 0 16px;
}

.hero-title {
    margin-bottom: 18px;
    font-weight: 500;
    font-size: 32px;
    color: #FFFFFF;
    line-height: 45px;
}

.hero-desc {
    font-weight: 400;
    font-size: 12px;
    color: #FFFFFF;
    line-height: 17px;
}

.news-list {
    padding: 16px;
    display: flex;
    flex-direction: column;
    gap: 15px;
}

.news-item {
    display: flex;
    align-items: stretch;
    padding: 0px 11px;
    border-radius: 10px;
    background-color: white;
    overflow: hidden;
}

.news-item .left {
    width: 117px !important;
    padding: 8px 0;
}

.news-item .left>img {
    width: 117px !important;
    object-fit: cover;
    height: 85px;
    border-radius: 8px 0 0 8px;
}

.news-content {
    margin-left: -15px;
    padding: 12px 15px;
    padding-right: 0;
    border-radius: 10px;
    border: 1px solid;
    border-image: linear-gradient(90deg, rgba(255, 255, 255, 1), rgba(255, 255, 255, 0)) 1 1;
    background: rgba(255, 255, 255, .6);
    backdrop-filter: blur(8px);
    /* 背景模糊效果 */
    flex: 1;
    overflow: hidden;
}
.news-content>.img{
    width: 100%;
}

.news-content>h3 {
    font-weight: 400;
    font-size: 12px;
    color: #333333;
    line-height: 17px;
    margin-bottom: 3px;
    white-space: nowrap;
    overflow: hidden;
    width: 100%;
    text-overflow: ellipsis;
}

.news-content>p {
    font-weight: 400;
    font-size: 10px;
    color: #666666;
    line-height: 14px;
    margin-bottom: 11px;

    display: -webkit-box;
    -webkit-line-clamp: 2;
    /* number of lines to show */
    -webkit-box-orient: vertical;
    overflow: hidden;
    text-overflow: ellipsis;
    /* Fallback for non-WebKit browsers */
}

.news-content>.date {
    font-weight: 400;
    font-size: 12px;
    color: #999999;
    line-height: 12px;
    gap: 6px;
}


.news-content>.date>img {
    width: 11px !important;
    height: 11px !important;
}



/* 新闻列表区域 */
.news-list-section {
    padding: 12px 16px;
    display: flex;
    justify-content: space-between;
}

.news-list-section>.detail {
    width: 100%;
}

.news-list-section>.detail>h1 {
    font-weight: 400;
    font-size: 16px;
    color: #3D3D3D;
    line-height: 24px;
}

.news-list-section>.detail>h2 {
    display: flex;
    align-items: center;
    gap: 7px;
    font-weight: 400;
    font-size: 12px;
    color: #999999;
    line-height: 17px;
    margin-top: 6px;
    margin-bottom: 17px;
}

.news-list-section>.detail>.news-img {
    width: 100%;
    text-align: center;
    margin-bottom: 9px;
}

.news-list-section>.detail>.news-img>img {
    width: 100%;
}



/* 分页区域 */
.pagination {
    display: flex;
    text-align: center;
    margin: 15px 0;
    margin-top: 35px;
    justify-content: center;
    align-items: center;

    font-weight: 400;
    font-size: 12px;
    color: #3D3D3D;
    line-height: 17px;
}

.pagination a {
    min-width: 24px;
    height: 24px;
    font-size: 12px;
    text-decoration: none;
    color: #3D3D3D;
    background-color: white;
    margin: 0 5px;
    padding: 4px;
    border-radius: 4px;
    transition: all 0.3s;
    display: none;
}

.pagination a:hover:not(.active) {
    border-color: #2563eb;
    color: #2563eb;
}

.pagination .active {
    background-color: #2563eb;
    color: #fff;
    border-color: #2563eb;
}

.pagination .prev {
    display: block;
}

.pagination .next {
    display: block;
}

.pagination .show {
    display: block;
}

#contact {
    display: none;
}

.wechat-qr {
    display: none;
}

