* {
    margin: 0;
    padding: 0;
    word-break: break-all;
    box-sizing: border-box;
}

html {
    min-width: 1300px;
}

ul>li {
    list-style: none;
}

/* 引入新的字体库标题字体 */
@font-face {
    font-family: "YouSheBiaoTiHei";
    src: url("./YouSheBiaoTiHei-2.ttf") format("truetype");
    font-weight: normal;
    font-style: normal;
}

@font-face {
    font-family: "AlibabaPuHuiTi";
    src: url("./Alibaba-PuHuiTi-H.ttf") format("truetype");
    font-weight: normal;
    font-style: normal;
}

@font-face {
    font-family: "DINPro";
    src: url("./DINPro-Bold.otf") format("truetype");
    font-weight: normal;
    font-style: normal;
}

@font-face {
    font-family: "PingFangSC";
    src: url("./PingFangSC-Regular.ttf") format("truetype");
    font-weight: normal;
    font-style: normal;
}

.flexRowBox {
    display: flex;
    flex-direction: row;
}

.flexColumnBox {
    display: flex;
    flex-direction: column;
}

a {
    text-decoration: none;
    color: inherit;
}

/* 隐藏超出两行的文字 */
.hiddenNews2clamp {
    display: -webkit-box;
    line-clamp: 2;
    -webkit-line-clamp: 2;
    -webkit-box-orient: vertical;
    overflow: hidden;
}

/* 搜索框 */
.searchBox {
    width: 234px;
    height: 30px;
}

.searchBox .searchInput {
    flex: 1;
    height: 100%;
    border: none;
    outline: none;
    background: #F9FBFF;
    border-radius: 15px 0 0 15px;
    border: 1px solid #E6E8EF;
    padding-left: 17px;
    font-family: PingFangSC;
    font-size: 14px;
}

.searchIconBox {
    width: 40px;
    height: 100%;
    background-color: #8C1A10;
    border-radius: 0 15px 15px 0;
    justify-content: center;
    align-items: center;
    cursor: pointer;
}

.searchIconBox:hover {
    background-color: #ce2113;
}

.searchIconBox>input[type="image"] {
    width: 100%;
    height: 100%;
    object-fit: scale-down;
}

/* logo */
.logo {
    width: 510px;
    height: 62px;
}

/* 头部 */
body>header {
    position: relative;
    background-color: #FFFFFF;
    width: 1200px;
    height: 100px;
    margin: 0 auto;
    align-items: center;
    justify-content: space-between;
    background-image: url('../img/header-bg.png');
    background-size: auto 100%;
    background-repeat: no-repeat;
    background-position: 346px 0px;
}


/* 导航 */
body>nav {
    height: 50px;
    line-height: 50px;
    background-color: #8C1A10;
    color: #FFFFFF;
    font-size: 16px;
    font-family: PingFangSC;
}

body>nav>ul {
    width: 1200px;
    margin: 0 auto;
    justify-content: space-between;
}

body>nav>ul>li a,
body>nav>ul>li .subNav li a
{
    width: 100%;
    height: 100%;
    display: block;
    padding: 0 10px;
}

body>nav>ul>li a:hover {
    background-color: #ce2113;
}

body>nav>ul>li .subNav {
    display: none;
    position: relative;
    z-index: 1;
    width: 100%;
    color: #FFFFFF;
    background-color: #ce2113;
}

body>nav>ul>li:hover .subNav {
    display: block;
}

body>nav>ul>li .subNav li {
    height: 50px;
    line-height: 50px;
}

body>nav>ul>li .subNav li a:hover {
    background-color: #FFFFFF;
    color: #ce2113
}

body>main .mainImgContainer {
    height: 456px;
}

body>main .mainImgContainer img {
    width: 100%;
    height: 100%;
    display: block;
}

.news-detail-container {
    width: 1200px;
    margin: 0 auto;
    margin-top: 50px;
}


/* 板块标题 */
.title-container {
    justify-content: space-between;
    align-items: center;
    border-bottom: 1px solid #E6E8EF;
    padding-bottom: 12px;
}

.title-box {
    align-items: center;
    gap: 16px;
    font-family: PingFangSC;
    font-weight: 600;
    font-size: 24px;
    color: #171717;
}

.title-box .tag {
    width: 4px;
    height: 26px;
    background: #8C1A10;
}


/* 当前位置 */
.now-position {
    align-items: center;
    gap: 15px;
    font-family: PingFangSC;
    font-weight: 600;
    font-size: 16px;
    color: #8C1A10;
}

.now-position img {
    width: 14px;
    height: 12px;
}

/* 新闻内容 */
.news-detail {
    margin-top: 20px;
    margin-bottom: 50px;
}

.news-title {
    font-family: PingFangSC;
    font-weight: 600;
    font-size: 24px;
    color: #171717;
    text-align: center;
    margin-bottom: 10px;
}

.news-info {
    width: 100%;
    font-size: 14px;
    color: #868686;
    font-family: PingFangSC;
    gap: 10px;
    justify-content: center;
    padding-bottom: 20px;
    border-bottom: 1px solid #E6E8EF;
    margin-bottom: 35px;
}

.news-file {
    margin: 20px 0;
    font-family: PingFangSC;
}

.news-file li a {
    text-decoration: underline;
    color: blue;
}

.news-file li a:hover {
    color: #ce2113;
}

.prev-news,
.next-news {
    font-size: 18px;
    color: #171717;
    font-family: PingFangSC;
    font-weight: 600;
    margin-bottom: 18px;
}
.prev-news a:hover,
.next-news a:hover {
    color: #ce2113;
}


/* 页脚 */
footer {
    border-top: 6px solid #8C1A10;
    height: 170px;
    background: #232A39;
}

.footerBox {
    width: 1200px;
    height: 100%;
    margin: 0 auto;
    align-items: center;
}

.footerLogoBox {
    flex: 1;
    height: 100%;
    align-items: center;
}

.footerLogo {
    width: 484px;
    height: 62px;
}

.footerContent {
    flex: 1;
    padding-left: 45px;
    margin-left: 55px;
    border-left: 2px solid #5A6377;
    font-size: 12px;
    font-family: PingFangSC;
    color: #919191;
}