body{
    min-width: 1272px;
    padding-top: 80px;
}
.inner {
    width: 100%;
    max-width: 1208px;
    margin: auto;
    padding: 0 24px;
    position: relative;
}

.inner.flex {
    display: flex;
}

.inner.item-center {
    align-items: center;
}

.inner.space-between {
    justify-content: space-between;
}

.header {
    height: 80px;
    width: 100%;
    background:#fff;
    box-shadow: 0 1px 5px rgba(0, 0, 0, .1);
    position: fixed;
    top: 0;
    left: 0;
    z-index: 20;
    transition: all .2s;
}


.header .inner {
    transition: all .2s;
}


.header .logo {
    width: 311px;
    height: 45px;
    flex-shrink: 0;
    display: block;
    background-image: url("../images/logo.png?v=f");
    background-size: 311px 45px;
    background-repeat: no-repeat;

}


.nav {
    display: flex;
}

.nav li {
    padding: 0 16px;
    position: relative;
    display: flex;
    align-items: center;
}

.nav li .parent {
    line-height: 80px;
    display: block;
    font-size: 16px;
    overflow: hidden;
    white-space: nowrap;
    text-overflow: ellipsis;
    font-weight: 500;
}


.nav li i {
    font-size: 20px;
    transition: all .5s;
}

.nav li:hover i {
    color: #c41230;
    transform: rotateX(180deg);
}
.header .fold{
    display: none;
}
.nav li .children {
    position: absolute;
    background: rgba(255, 255, 255, .9);
    border-top: 5px solid #c41230;
    padding: 12px 24px;
    border-radius: 5px;
    box-shadow: 0 1px 10px 0 rgba(0, 0, 0, .1);
    animation-name: animate-dropdown;
    animation-duration: 0.3s;
    animation-fill-mode: both;
    display: none;
    top: 76px;
    left: 12px;
    z-index: 99;
}

.nav li .children:before {
    position: absolute;
    content: '';
    border-bottom: 8px solid #c41230;
    border-right: 8px solid transparent;
    border-left: 8px solid transparent;
    top: -11px;
    left: 24px;
}


.nav li .children a {
    white-space: nowrap;
    line-height: 2.4;
    display: block;
}

.nav li:hover .parent {
    color: #c41230;
    animation-name: animate-flop;
    animation-duration: 0.2s;
    animation-fill-mode: both;
}


.nav li:hover .children {
    display: block;
}



.sub-nav{
    height: 80px;
    border-bottom: 1px solid #f0f0f0;
    background: #fff;
}
.sub-nav a{
    display: block;
    font-size: 20px;
    line-height: 79px;
    margin-right: 48px;
    position: relative;
}
.sub-nav a.active{
    color: #c41230;
    font-weight: bold;
}
.sub-nav a.active:after{
    content: ' ';
    height: 3px;
    width: 100%;
    background: #c41230;
    position: absolute;
    left: 0;
    right: 0;
    bottom: 0;
}

.page-content{
    padding: 24px 0;
    min-height: 50vh;
}
.page-content p{
    padding: 12px 0;
}
.page-content img{
    max-width: 100%;
    height: auto;
}
.page-content h1,
.page-content h2{
    color: #c41230;
}
.page-content video{
    width: 100%;
    border-radius: 5px;
}
.list-one {
    background: #fff;
    overflow: hidden;
}

.list-one li {
    overflow: hidden;
    display: flex;
    padding: 24px;
    border: 1px solid #f0f0f0;
    border-radius: 5px;
}
.list-one li:not(:nth-child(1)){
    margin-top: 24px;
}
.list-one li .img {
    width: 240px;
    height: 135px;
    overflow: hidden;
    border-radius: 5px;
    margin-right: 24px;
}

.list-one li .img img {
    width: 240px;
    height: 135px;
    transition: all 1s;
    object-fit: cover;
}

.list-one li:hover .img img {
    transform: scale(1.1);
}

.list-one li:hover a b {
    color: #c41230;
}

.list-one li .text {
    width: 100%;
}

.list-one li .text b {
    display: block;
    height: 24px;
    line-height: 24px;
    font-size: 20px;
    overflow: hidden;
    font-weight: normal;
    margin-bottom: 12px;
    color: #333;
}

.list-one li .text p {
    display: -webkit-box;
    -webkit-line-clamp: 2;
    -webkit-box-orient: vertical;
    overflow: hidden;
    text-overflow: ellipsis;
    color: #666;
    padding: 0;
}
.list-one li .text span {
    display: flex;
    align-items: center;
    color: #555;
    font-size: 14px;
    line-height: 24px;
    padding-bottom: 12px;
}

.list-one li .text span .iconfont {
    font-size: 20px;
}

.list-one li .text span .iconfont:nth-child(2) {
    padding-left: 24px;
}

.list-two{
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 24px;
}
.list-two a{
    display: block;
    border: 1px solid #f0f0f0;
    border-radius: 5px;
    transition: all .5s;
}
.list-two a:hover{
    box-shadow: 0 6px 12px rgba(0, 0, 0, .1);
    transform: translate3d(0, -6px, 0);
}
.list-two a b{
    display: block;
    border-bottom: 1px solid #f0f0f0;
    padding: 12px 24px;
    font-size: 18px;
    background: #f8f8f8;
    color: #c41230;
}
.list-two a span{
    color: #666;
    display: block;
    display: -webkit-box;
    -webkit-line-clamp: 3;
    -webkit-box-orient: vertical;
    text-overflow: ellipsis;
    overflow: hidden;
    margin: 12px 24px;
    line-height: 2;
    font-size: 16px;
}
.paging {
    display: flex;
    padding-top: 24px;
    justify-content: center;
    align-items: center;
}

.paging a, .paging span {
    border: #f0f0f0 1px solid;
    padding: 6px 12px;
    margin: 0 6px;
    background: #fafafa;
    display: block;
    border-radius: 5px;
    min-width: 36px;
    text-align: center;
    font-size: 14px;
}

.paging a:hover {
    background: #fff;
}

.paging a.current, .paging .current {
    background: #c41230;
    color: #fff;
    border: #c41230 1px solid;
}

.paging span {
    margin: 0 6px;
    display: block;
}


.text-list li {
    display: flex;
    border-bottom: 1px dotted #f0f0f0;
    line-height: 48px;
    width: 100%;

}

.list-three {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 24px;
}

.list-three a {
    width: 100%;
    margin: 0 0 24px 0;
    display: block;
}

.list-three a img {
    width: 100%;
    height: 75%;
    object-fit: cover;
    border-radius: 5px;
}


.list-three a span {
    display: block;
    font-size: 16px;
    height: 36px;
    line-height: 36px;
    white-space: nowrap;
    overflow: hidden;
    text-overflow: ellipsis;
    text-align: center;
}


.article-detail-title {
    font-size: 24px;
    line-height: 1.2;
    padding: 24px 0;
    font-weight: bold;
    text-align: center;
}

.article-detail-info {
    border-top: 1px dotted #f0f0f0;
    display: flex;
    align-items: center;
    color: #555;
    padding:  24px 0;
    font-size: 14px;
    line-height: 24px;
    justify-content: center;
}

.article-detail-info .iconfont {
    font-size: 16px;
}

.article-detail-info .iconfont:nth-child(2) {
    padding-left: 24px;
}

.banner{
    height: 400px;
    background-size: cover;
    background-position: center;
    background-repeat: no-repeat;
    padding-top: 200px;
    color: #fff;
}
.banner h3{
    font-weight: 400;
    font-size: 36px;
}
.home-swiper{
    width: 100%;
}