body{
    font-size: 14px;
}
.inner {
    width: 100%;
}


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

.header {
    background: rgba(91, 12, 16, .9);
    height: 60px;
    width: 100%;
    padding: 0 12px;
    display: flex;
    align-items: center;
    box-shadow: 0 1px 10px 0 rgba(0, 0, 0, .1);
    position: fixed;
    top: 0;
    left: 0;
    z-index: 20;
}

.header .logo {
    width: 100%;
}

.header .logo img {
    height: 36px;
}

.nav {
    position: fixed;
    top: 60px;
    bottom: 0;
    left: 0;
    right: 0;
    z-index: 19;
    background: #fff;
    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 .ap {
    display: block;
    padding: 0 12px;
    height: 56px;
    line-height: 56px;
    font-size: 16px;
}

.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 .as {
    display: block;
}

.nav li.active .ap {
    color: #d6012f;
}

.nav li .as {
    display: none;
}

.nav li .as .type-products {
    width: 100%;
}

.nav li .as .products {
    display: none;
}

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

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

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

.header .search i,
.header .fold i {
    height: 50px;
    width: 50px;
    display: block;
    line-height: 50px;
    text-align: center;
    font-size: 32px;
    color: #fff;
}

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

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

.header .lang {
    height: 36px;
    border-radius: 5px;
    position: relative;
    display: flex;
    white-space: nowrap;
    align-items: center;
    cursor: pointer;
    padding-left: 12px;
}

.header .lang i {
    font-size: 20px;
}

.home-banner {
    width: 100%;
    height: 60vw;
    background-color: #fff;
    position: relative;
}

.home-banner .swiper-button-next,
.home-banner .swiper-button-prev {
    display: none;
}

.home-banner .swiper-slide {
    background-size: cover;
    background-repeat: no-repeat;
    background-position: center;
    height: 60vw;
}



.home-title{
    padding: 24px 0;
    text-align: center;
}
.home-title:after{
    content: ' ';
    height: 9px;
    width: 100%;
    display: block;
    background-image: url("../images/home-title-bg.png");
    background-size: auto 9px;
    background-repeat: no-repeat;
    background-position: center;
}
.home-title .en{
    font-size: 14px;
    font-family: num,sans-serif;
    font-weight: 600;
    color: #555;
    display: block;
    line-height: 1;
}
.home-title .zh{
    font-size: 24px;
    font-weight: 700;
    display: block;
    color: #cc000a;
}
.home-title.white .en,
.home-title.white .zh{
    color: #fff;
}

.home-plate{
    width: 100%;
    padding: 24px;
    background-size: cover;
    background-position: center;
    background-repeat: no-repeat;
}
.home-plate.white{
    background: #fff;
}

.home-intro p{
    padding: 6px 0;
}
.home-intro img{
    max-width: 100%;
    height: auto;
}
.home-product{
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 24px;
}
.home-product a{
    display: block;
    border-radius: 5px;
    overflow: hidden;
}
.home-product a img{
    width: 100%;
    height: 120px;
    object-fit: cover;
}
.home-product a span{
    display: block;
    text-align: center;
    line-height: 48px;
    background: #fff;
}
.home-news {

}

.home-news a {
    display: flex;
    margin: 12px 0;
    width: 100%;
    border: 1px solid #e6e6e6;
    border-radius: 5px;
    transition: all .3s;
    padding: 12px;
    background: #fff;
}

.home-news a .thumb {
    width: 100px;
    height: 100px;
    border-radius: 5px;
    overflow: hidden;
    flex-shrink: 0;
}

.home-news a img {
    width: 100px;
    height: 100px;
    object-fit: cover;
    transition: all .5s;
}

.home-news a .text {
    padding-left: 12px;
    width: 100%;
    overflow: hidden;
}

.home-news a .text .title {

    display: -webkit-box;
    -webkit-box-orient: vertical;
    -webkit-line-clamp: 1;
    overflow: hidden;
    font-size: 16px;
}

.home-news a .text .detail {
    display: flex;
    color: #999;
    padding-top: 6px;
    align-items: center;
    font-size: 14px;
}

.home-news a .text .detail span{
    font-weight: normal;
    padding-right: 24px;
}

.home-news a .text p{
    display: -webkit-box;
    -webkit-box-orient: vertical;
    -webkit-line-clamp: 2;
    overflow: hidden;
    height: 50px;
    line-height: 25px;
    font-size: 14px;
    margin-top: 6px;
    color: #666;
}
.home-news a:hover img {
    transform: scale(1.2);
}


.banner{
    height: 300px;
    background-size: cover;
    background-position: bottom;
    min-width: 1248px;
    color: #fff;
    line-height: 1.8;
    display: flex;
    padding-top: 80px;
    align-items: center;
    justify-content: center;
    font-size: 36px;
}

.more{
    background: #cc000a;
    color: #fff;
    width: 120px;
    height: 32px;
    line-height: 32px;
    text-align: center;
    display: block;
    font-size: 14px;
    margin: 24px auto 0;
}

.sub-banner{
    background-size: cover;
    background-repeat: no-repeat;
    background-position: center;
    height: 160px;
}


.home-honor .swiper-container {
    width: calc(100vw - 48px);
    perspective: calc(100vw - 48px);
}

.home-honor .swiper-slide {
    background-size: cover;
    transform-style: preserve-3d;
}

.home-honor .swiper-slide img {
    width: 100%;
}

.footer {
    background: #444;
    padding: 24px;
}

.footer-end {
}

.footer-end .end-item .logo {
    padding-bottom: 20px;
    height: 60px;
}

.footer-end .end-item .qrcode {
    width: 80px;
    border-radius: 3px;
}


.footer-end .end-item a {
    color: rgba(255, 255, 255, .8);
}

.footer-end .end-item a:hover {
    color: #fff;
}

.footer-end .end-item p {
    color: rgba(255, 255, 255, .8);
    font-size: 14px;
    line-height: 25px;
}


.row-left{
    background: #fff;
    border-bottom: 1px solid #f0f0f0;
    padding: 12px;
}
.row-title{
    display: none;
}

.row-left .row-nav {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 12px;
}

.row-left .row-nav a {
    line-height: 30px;
    border: 1px solid #f0f0f0;
    text-align: center;
    background: #f8f8f8;
    color: #333;
    border-radius: 5px;
    padding: 0 24px;
    display: inline-block;
}


.row-left .row-nav a.active {
    background: #cc000a;
    color: #fff;
    border: 1px solid #cc000a;
}

.album-list{
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 12px;
}
.album-list a{
    display: block;
    border-radius: 5px;
    overflow: hidden;
}
.album-list a img{
    width: 100%;
    height: 200px;
}
.album-list a span{
    display: block;
    text-align: center;
    line-height: 48px;
    background: #fff;
}

.row-content{
    padding: 12px;
    background: #fff;
}
.row-content img{
    max-width: 100%;
    height: auto;
}

.article-list {
    background: #fff;
    overflow: hidden;
}

.article-list li {
    overflow: hidden;
    display: flex;
    padding: 24px 0;
    border-bottom: 1px solid #f0f0f0;
}

.article-list li:nth-child(1) {
    padding-top: 0;
}

.article-list li:last-child {
    border-bottom: none;
}

.article-list li .img {
    width: 160px;
    height: 120px;
    overflow: hidden;
    border-radius: 5px;
    flex-shrink: 0;
}

.article-list li .img img {
    width: 160px;
    height: 120px;
    transition: all 1s;
    object-fit: cover;
}

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

.article-list li:hover a b {
    color: #ff5065;
}

.article-list li .text {
    width: 100%;
    padding-left: 24px;
}

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

.article-list li .text p {
    display: -webkit-box;
    -webkit-line-clamp: 2; /* 璁剧疆涓�2琛� */
    -webkit-box-orient: vertical;
    overflow: hidden;
    text-overflow: ellipsis;
    color: #666;
    padding: 0;
}
.article-list li .text p .action{
    height: 32px;
    width: 120px;
    border-radius: 3px;
    color: #fff;
    display: inline-block;
    font-size: 16px;
    line-height: 32px;
    text-align: center;
    margin-right: 24px;
}
.article-list li .text p .action:nth-child(1){
    background: #093160;
}
.article-list li .text p .action:nth-child(2){
    background: #ff6600;
}
.article-list li .text p .action:hover{
    opacity: .8;
}
.article-list li .text span {
    display: flex;
    align-items: center;
    color: #555;
    font-size: 14px;
    line-height: 24px;
    padding-bottom: 12px;
}

.article-list li .text span .iconfont {
    font-size: 20px;
}
.article-list li .text span.passed{
    color: #00c261;
}
.article-list li .text span .iconfont:nth-child(2) {
    padding-left: 24px;
}

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

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

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

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