.tt-main {
    width: 100%;
    height: auto;
    display: flex;
    flex-direction: column;
    align-items: center;
    margin-top: .7813rem;
    margin-bottom: .2604rem;
}

.tt-m-first {
    width: 100%;
    height: auto;
    background-color: #8f070a;
    display: flex;
    align-items: center;
    justify-content: center;
    flex-direction: column;
    margin-bottom: .1563rem;
}

.tt-m-first h1 {
    font-size: .2344rem;
    color: white;
    padding-top: .1042rem;
    font-weight: 700;
}

.tt-m-first h2 {
    font-size: .0938rem;
    color: rgba(255, 255, 255, 0.7);
    padding: .0521rem 0 .1042rem;
    font-weight: 400;
}

.tt-m-first img {
    width: 80%;
    height: 3.125rem;
    object-fit: cover;
    margin-bottom: .1563rem;
    box-shadow: 0 .0208rem .0625rem rgba(0, 0, 0, 0.15);
}

/* 新闻列表区域样式 */
.tt-m-secong {
    width: 80%;
    height: auto;
    min-height: 2.6042rem;
    background-color: #fff;
    padding: .1563rem;
    border-radius: .0417rem;
    box-shadow: 0 .0104rem .0781rem rgba(0, 0, 0, 0.05);
}

.news-list-header {
    border-bottom: .0104rem solid #8f070a;
    padding-bottom: .0521rem;
    margin-bottom: .1302rem;
}

.news-list-header h3 {
    font-size: .125rem;
    color: #333;
    font-weight: 600;
    display: flex;
    align-items: center;
}

.news-list-header h3::before {
    content: "";
    display: inline-block;
    width: .0417rem;
    height: .125rem;
    background-color: #8f070a;
    margin-right: .0521rem;
}

.news-list {
    list-style-type: none;
    padding: 0;
}

.news-item {
    padding: .0938rem .0781rem;
    border-bottom: .0052rem solid #eee;
    display: flex;
    align-items: center;
    transition: all 0.3s ease;
}

.news-item:last-child {
    border-bottom: none;
}

.news-item:hover {
    background-color: #f9f9f9;
    transform: translateX(.026rem);
}

.news-item a {
    flex: 1;
    color: #333;
    font-size: .0833rem;
    line-height: 1.6;
    padding-right: .1042rem;
    position: relative;
}

.news-item a::after {
    content: "";
    position: absolute;
    left: 0;
    bottom: -0.0104rem;
    width: 0;
    height: .0052rem;
    background-color: #8f070a;
    transition: width 0.3s ease;
}

.news-item:hover a::after {
    width: 100%;
}

.news-item:hover a {
    color: #8f070a;
}

.news-date {
    color: #999;
    font-size: .0729rem;
    white-space: nowrap;
    padding-left: .0781rem;
    border-left: .0052rem solid #eee;
}

/* 分页样式 */
.pagination {
    display: flex;
    justify-content: center;
    margin-top: .2083rem;
}

.pagination a {
    display: inline-block;
    padding: .0417rem .0781rem;
    margin: 0 .026rem;
    border: .0052rem solid #ddd;
    border-radius: .0208rem;
    color: #333;
}

.pagination a:hover {
    background-color: #f5f5f5;
    border-color: #8f070a;
    color: #8f070a;
}

.pagination a.active {
    background-color: #8f070a;
    color: white;
    border-color: #8f070a;
}