body{
    padding-top: 60px;
}
.inner {
    width: 100%;
}

.inner.flex {
    display: flex;
}

.inner.item-center {
    align-items: center;
}
.inner.space-between{
    justify-content: space-between;
}

.header {
    height: 60px;
    width: 100%;
    background-color: #fff;
    box-shadow: 0 1px 5px rgba(0, 0, 0, .1);
    position: fixed;
    top: 0;
    left: 0;
    z-index: 20;
    transition: all .2s;
    display: flex;
    align-items: center;
    padding: 0 12px;
}

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


}

.nav {
    position: fixed;
    top: 60px;
    bottom: 0;
    left: 0;
    right: 0;
    background: #fff;
    z-index: 19;
    box-shadow: 0 1px 10px 0 rgba(0, 0, 0, .1);
    display: none;
    animation-name: animate-dropup;
    animation-duration: 0.2s;
    animation-fill-mode: both;
}

.nav.active {
    display: block;
}

.nav li {
    display: block;
    border-bottom: 1px solid #f0f0f0;
    position: relative;
}

.nav li .parent {
    display: block;
    padding: 0 12px;
    height: 56px;
    line-height: 56px;
    font-size: 16px;
    font-weight: bold;
}

.nav li .iconfont {
    position: absolute;
    width: 56px;
    height: 56px;
    line-height: 56px;
    text-align: center;
    top: 0;
    right: 0;
    font-size: 24px;
    transition: all .3s;
    pointer-events: none;
}

.nav li.active .iconfont {
    transform: rotateX(180deg);
    color: #d6012f;
}

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

.nav li.active .parent {
    color: #c41230;
}

.nav li .children {
    display: none;
}


.nav li .children a {
    display: flex;
    align-items: center;
    margin: 0 0 0 44px;
    line-height: 50px;
    border-top: 1px solid #f0f0f0;
    color: #666;
}

.nav li .children a:before {
    content: '';
    width: 6px;
    height: 6px;
    border-radius: 50%;
    background: #c41230;
    margin-right: 12px;
}

.nav li .iconfont {
    position: absolute;
    width: 56px;
    height: 56px;
    line-height: 56px;
    text-align: center;
    top: 0;
    right: 0;
    font-size: 24px;
    transition: all .3s;
    pointer-events: none;
}

.nav li.active .iconfont {
    transform: rotateX(180deg);
    color: #c41230;
}

.header .fold {
    height: 50px;
    width: 50px;
    display: block;
    line-height: 50px;
}

.header .fold i {
    height: 50px;
    width: 50px;
    display: block;
    line-height: 50px;
    text-align: center;
    font-size: 24px;
}

.header .fold i:after {
    content: '\e975';
}

.header .fold.active i:after {
    content: '\e904';
}

.language a.active {
    color: #fff !important;
    background: #c41230;
    border-radius: 20px;
    line-height: 20px;
    height: 20px;
    padding: 0 8px;
    cursor: default;
}

.banner{
    height: 80vw;
    background-size: cover;
    background-position: center;
    background-repeat: no-repeat;
    color: #fff;
    padding: 50vw 52px 0 12px;
}



.sub-nav{
    border-bottom: 1px solid #f0f0f0;
    background: #fff;
}
.sub-nav .inner.flex{
    display: block;
    white-space: nowrap;
    overflow-x: auto;
    padding: 8px;
    -webkit-overflow-scrolling: touch;
    scrollbar-width: none; /* Firefox */
    -ms-overflow-style: none; /* IE 10+ */
    text-align: center;
}

.sub-nav .inner.flex::-webkit-scrollbar {
    display: none; /* Chrome, Safari, Edge */
}
.sub-nav a{
    display: inline-block;
    font-size: 14px;
    background: #f5f5f5;
    padding: 6px 12px;
    border-radius: 50px;
    margin: 4px;
}
.sub-nav a.active{
    color: #fff;
    background: #c41230;
}

.page-content{
    padding: 12px;
    font-size: 14px;
}

.page-content p{
    padding: 6px 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: 12px;
    border: 1px solid #f0f0f0;
    border-radius: 5px;
}
.list-one li:not(:nth-child(1)){
    margin-top: 12px;
}
.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: -webkit-box;
    -webkit-line-clamp: 2;
    -webkit-box-orient: vertical;
    overflow: hidden;
    text-overflow: ellipsis;
    font-size: 16px;
    padding: 0;
    margin-bottom: 12px;
}

.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 a{
    display: block;
    border: 1px solid #f0f0f0;
    border-radius: 5px;
    transition: all .5s;
    margin: 12px 0;
}

.list-two a b{
    display: block;
    border-bottom: 1px solid #f0f0f0;
    padding: 12px ;
    font-size: 16px;
    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: 6px 12px;
    line-height: 2;
    font-size: 14px;
}

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

.list-three a {
    width: 100%;
    margin: 0 0 12px 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;
}
.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;
}



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

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

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

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

.section-title .cn {
    font-size: 24px;
}

.about-container {
    flex-direction: column;
}

.about-left h3 {
    font-size: 24px;
}

.about-left h4 {
    font-size: 18px;
}

.about-right {
    width: 100%;
    flex-direction: column;
}

.about-card.red {
    border-radius: 5px 5px 0 0;
    border-bottom-left-radius: 0;
}

.about-card.white-card {
    border-radius: 0 0 5px 5px;
    border-top-right-radius: 0;
}

.about-card .year {
    font-size: 40px;
}

.stat-info .number {
    font-size: 28px;
}

.products-grid {
    grid-template-columns: 1fr;
}

.product-card {
    height: 220px;
}

.news-container {
    grid-template-columns: 1fr;
}

.news-main {
    grid-column: span 1;
}

.contact-container {
    grid-template-columns: 1fr 1fr;
}
.footer{
    padding:20px;
}

.footer-nav  {
    display: none;
}
.footer-bottom{
    border-top: none;
    padding-top: 0;
}
.home-swiper{
    width: 100%;
}