﻿body {
    margin: 0;
    padding: 0;
}

a {
    text-decoration: none;
    cursor: pointer;
}

.container {
    width: 100%;
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: center;
    position: relative;
}

/* 头部banner */

.header {
    width: 100%;
    display: flex;
    justify-content: center;
    overflow: hidden;
    position: relative;
}

.header img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    object-position: top;
}

.content {
    width: 100%;
    height: auto;
    display: flex;
    justify-content: center;
    align-items: flex-start;
    background-image: url(../img/backgroundImg.jpg);
    background-size: cover;
    position: relative;
}

.contentContainer {
    width: 1400px;
    height: auto;
}

/* 新闻资讯 */

.newsColumn {
    width: 100%;
    height: 450px;
    display: flex;
    margin: 100px 0;
}

.slideImg {
    width: 50%;
    height: 100%;
    display: flex;
    flex-direction: column;
    position: relative;
}

.slideImg > img:first-child,
.slideImg > img:last-child {
    width: 20px;
    height: 20px;
    align-self: flex-end;
}

.slideImg ul {
    flex: 1;
    list-style: none;
    padding: 0;
    margin: 0;
    position: relative;
    overflow: hidden;
}

.slideImg li {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    opacity: 0;
    transition: opacity 0.5s ease-in-out;
}

.slideImg li.active {
    opacity: 1;
}

.slideImg img {
    width: 100%;
    height: 100%;
    object-fit: cover;
}

.slidePagination {
    position: absolute;
    bottom: 0;
    right: 0;
    height: 48px;
    width: 100%;
    background-image: url(../img/slideImgPaginationBackgroundImg.png);
    background-size: cover;
    background-position: center;
    display: flex;
    align-items: center;
    justify-content: flex-end;
    padding: 0 20px;
    gap: 10px;
}

.paginationItem {
    width: 10px;
    height: 10px;
    border-radius: 10px;
    background-color: white;
    transition: width 0.3s ease;
    cursor: pointer;
}

.paginationItem.active {
    width: 20px;
    border-radius: 10px;
}

.textList {
    width: 50%;
    height: 100%;
    border-top: 1px solid #CD3729;
    border-right: 1px solid #CD3729;
    border-bottom: 1px solid #CD3729;
    background: #FFF;
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: center;
}

.textList ul {
    list-style: none;
    padding: 0;
    margin: 0;
}

.textList li {
    width: 640px;
    height: 70px;
    display: flex;
    flex-direction: column;
    justify-content: center;
}

.textList li a {
    color: #333333;
    font-size: 22px;
    font-weight: 400;
}

.textListInfo {
    display: flex;
    align-items: center;
    margin-bottom: 10px;
}

.textListInfo img {
    margin-right: 18px;
}

.splitLine {
    display: flex;
    align-items: center;
    width: 100%;
}

.leftSplitLine,
.rightSplitLine {
    width: 20px;
    height: 3px;
    background: #FFD7D3;
}

.centerSplitLine {
    flex: 1;
    height: 1px;
    background: #FFD7D3;
    margin: 0;
}

.textList .more {
    text-align: right;
    width: 640px;
    margin-top: 14px;
    margin-left: 10px;
}

.textList .more a {
    color: #cd3729;
    font-size: 16px;
    font-weight: 400;
}

/* 访谈栏目 */

.interviewColumn {
    margin: 100px 0;
}

.interviewTitle {
    display: flex;
    align-items: center;
    justify-content: center;
}

.leftImg,
.rightImg {
    line-height: 108px;
    flex: 0 0 auto;
    display: flex;
    justify-content: center;
}

.info {
    margin: 0 40px;
}

.interviewContent {
    display: flex;
    flex-wrap: wrap;
    justify-content: space-between;
    margin-top: 60px;
}

.interviewContent::after {
    content: '';
    flex: auto;
    min-width: calc(50% - 10px);
}

.interviewItem {
    display: flex;
    align-items: flex-start;
    background-color: #FFF;
    border-radius: 8px;
    width: calc(50% - 10px);
    margin-bottom: 20px;
}

.interviewItemContent {
    display: flex;
    align-items: center;
    padding: 20px;
    width: calc(100% - 10px);
}

.interviewItemLine {
    width: 8px;
    height: 110px;
    background-color: #CD3729;
}

.interviewItemImg {
    margin-right: 20px;
    flex: 0 0 auto;
}

.interviewItemImg img {
    width: 80px;
    height: 80px;
    border-radius: 50%;
    object-fit: cover;
}

.interviewItemInfo {
    flex: 1;
    display: flex;
    flex-direction: column;
    justify-content: center;
}

.interviewItemName {
    margin-bottom: 10px;
}

.interviewItemName a {
    font-weight: bold;
    color: #333333;
    font-size: 20px;
}

.interviewItemDesc {
    margin: 0;
}

.interviewItemDesc a {
    color: #666666;
    font-size: 16px;
    font-weight: 400;
}

/* 现场直击 */

.implementColumn {
    margin: 100px 0;
}

.implementColumn .more {
    text-align: right;
    width: 100%;
    margin-top: 14px;
    margin-left: 10px;
}

.implementColumn .more a {
    color: #cd3729;
    font-size: 16px;
    font-weight: 400;
}

.implementTitle {
    display: flex;
    align-items: center;
    justify-content: center;
}

.implementContent {
    display: flex;
    flex-wrap: wrap;
    justify-content: space-between;
    margin-top: 60px;
}

.implementContent::after {
    content: '';
    flex: auto;
    min-width: calc(50% - 10px);
}

.implementItem {
    width: calc(50% - 10px);
    height: 70px;
    margin-bottom: 20px;
}

.implementInfo {
    height: 100%;
    display: flex;
    align-items: center;
    margin-bottom: 10px;
}

.implementInfo img {
    margin-right: 18px;
}

.implementInfo a {
    color: #333333;
    font-size: 22px;
    font-weight: 400;
}

/* 底部foot */

.footer {
    width: 100%;
    height: 349px;
    background-image: url(../img/foot1.jpg);
    background-size: cover;
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: center;
    color: #ffffff;
    text-align: center;
    font-size: 16px;
    font-weight: 400;
    line-height: 24px;
}