@charset "utf-8";


.head-page .product_item>a span{
    color: #E62129;
}
.head-page .product_item>a:after {
    transform: scale(1);
    opacity: 1;
}
.product_nav{
    justify-content: space-evenly;
}
.product_nav .link{
    font-weight: 600;
}
.product_nav .link::after{
    content: "";
    display: block;
    width: 0;
    height: 3px;
    background: #E62129;
    transition: all .4s;
    margin-top: 10px;
}
.product_nav .link:hover,.product_nav .link.active{
    color: #333;
}
.product_nav .link:hover::after,.product_nav .link.active::after{
    width: 100%;
}
.product_lists .list{
    height: 332px;
    background: #F5F5F5;
    width: 48.8%;
    margin-right: 2.4%;
    margin-bottom: 30px;
    padding: 35px 40px;
    box-sizing: border-box;
}
.product_lists .list:nth-child(2n){
    margin-right: 0;
}
.product_lists .list .texts{
    width: calc(100% - 200px);
    padding-right: 8%;
    box-sizing: border-box;
}
.product_lists .list .img{
    width: 200px;
    display: flex;
    align-items: center;
    justify-content: center;
}
.product_lists .list .img img{
    max-width: 100%;
}
.product_lists .list .tit{
    font-size: 22px;
    transition: all .4s;
    white-space: nowrap;
    overflow: hidden;
    text-overflow: clip;
}
.product_lists .list .items_lines {
    margin: 18px 0 28px;
    height: 132px;
}
.product_lists .list .items_lines .item{
    display: inline-block;
    max-width: 48%;
    margin-right: 4%;
    padding: 3px 0;
    box-sizing: border-box;
    border-bottom: 1px solid #999;
    margin-bottom: 13px;
    white-space: nowrap;
    overflow: hidden;
    text-overflow: ellipsis;
    transition: all .4s
}
/* .product_lists .list .items_lines .item:nth-child(2n){
    margin-right: 0;
} */
.product_lists .list .see_more{
    width: 130px;
    height: 45px;
    background: #E62129;
    display: flex;
    align-items: center;
    justify-content: center;
    color: #fff;
    transition: all .4s;
}

/* 产品列表：Ajax 加载中 */
.product_list #lists_layer.pl-list-loading {
    opacity: 0.55;
    pointer-events: none;
    transition: opacity 0.2s ease;
}

/* 产品列表 （分类区；一级 module-btn-l1，偶数级 Tab，奇数级面板按钮，交替） */
.product_list .module-product-filter {
    width: 100%;
    margin-bottom: 28px;
    padding: 18px 22px 22px;
    background: #ffffff;
    border-radius: 8px;
    box-shadow: 0 2px 12px rgba(0, 0, 0, 0.06);
    box-sizing: border-box;
}
.product_list .module-product-filter[data-nav-mode="list"] .module-level-container {
    display: block !important;
}
.product_list .module-product-filter[data-nav-mode="list"] .module-panel-container {
    display: block !important;
}
.product_list .module-product-filter .module-level-1 {
    display: block;
    padding-bottom: 25px;
    margin-bottom: 0;
    box-shadow: none;
    position: relative;
    z-index: 10;
}
.product_list .module-product-filter .module-row {
    display: flex;
    justify-content: center;
    flex-wrap: wrap;
}
.product_list .module-product-filter a.module-btn-l1 {
    margin: 5px 8px;
    padding: 10px 25px;
    font-size: 16px;
    color: #555;
    background: #f8f8f8;
    border: 1px solid #e5e5e5;
    border-radius: 6px;
    cursor: pointer;
    transition: all 0.3s;
    text-decoration: none;
    box-sizing: border-box;
}
.product_list .module-product-filter a.module-btn-l1:hover {
    color: #ee312a;
    border-color: #ee312a;
    background: #fff;
}
.product_list .module-product-filter a.module-btn-l1.active {
    background: #ee312a;
    color: #fff;
    border-color: #ee312a;
}
/* 偶数级（2、4、6…）：Tab，全部共用同一套 class */
.product_list .module-product-filter .module-tab-wrapper {
    margin-top: 15px;
    width: 100%;
}
.product_list .module-product-filter #pl_cat_nav_sub > .module-tab-wrapper:first-child {
    margin-top: 0;
}
.product_list .module-product-filter .module-tab-row {
    display: flex;
    justify-content: center;
    position: relative;
    flex-wrap: wrap;
}
.product_list .module-product-filter .module-tab-row::after {
    content: "";
    position: absolute;
    bottom: 0;
    left: 0;
    width: 100%;
    height: 1px;
    background: #eee;
    z-index: 1;
}
.product_list .module-product-filter a.module-tab-item {
    padding: 12px 25px;
    color: #666;
    background: #fcfcfc;
    border: 1px solid #eee;
    margin-left: -1px;
    /* 勿用 margin-bottom: -1px：会把格子底边上移 1px，与 .module-tab-row::after 全宽底边不齐 */
    cursor: pointer;
    position: relative;
    z-index: 2;
    min-width: 130px;
    text-align: center;
    text-decoration: none;
    box-sizing: border-box;
}
.product_list .module-product-filter a.module-tab-item:hover {
    color: #ee312a;
}
.product_list .module-product-filter a.module-tab-item.active {
    background: #fff;
    color: #ee312a;
    font-weight: bold;
    border-bottom: 1px solid #fff;
    z-index: 3;
}
/* 奇数级（3、5、7…，不含一级）：面板内离散按钮，共用 module-btn-sub */
.product_list .module-product-filter .module-panel-container {
    width: 100%;
    padding: 20px 0;
    box-sizing: border-box;
}
.product_list .module-product-filter a.module-btn-sub {
    margin: 5px;
    padding: 8px 20px;
    font-size: 13px;
    color: #666;
    background: #fff;
    border: 1px solid #e0e0e0;
    border-radius: 4px;
    cursor: pointer;
    text-decoration: none;
    box-sizing: border-box;
    display: inline-block;
}
.product_list .module-product-filter a.module-btn-sub:hover {
    border-color: #ccc;
    color: #333;
}
.product_list .module-product-filter a.module-btn-sub.active {
    border-color: #ee312a;
    color: #ee312a;
}
@media screen and (max-width: 1200px) {
    .product_list .module-product-filter a.module-btn-l1{
        font-size: 15px;
    }
}
@media screen and (max-width: 1024px) {
    .product_list .module-product-filter a.module-btn-l1{
        font-size: 14px;
        padding: 10px 20px;
    }
    .product_list .module-product-filter a.module-tab-item{
        font-size: 13px;
        min-width: 25%;
        padding: 12px 10px;
    }
}
@media screen and (max-width: 767px) {
    .product_list .module-product-filter {
        padding: 20px 10px;
    }
    .product_list .module-product-filter a.module-btn-l1 {
        flex: 1 1 40%;
        margin: 4px;
        padding: 12px 5px;
        text-align: center;
    }
    .product_list .module-product-filter a.module-tab-item {
        flex: 1 1 50%;
        min-width: auto;
        padding: 15px 5px;
    }
    .product_list .module-product-filter a.module-btn-sub {
        flex: 1 1 30%;
        padding: 8px 5px;
        font-size: 12px;
        text-align: center;
    }
    .product_list .module-product-filter .module-level-1 {
        padding-bottom: 15px;
        margin-bottom: 0;
    }
}
@media screen and (max-width: 375px) {
    .product_list .module-product-filter a.module-btn-sub {
        flex: 1 1 45%;
    }
}

.nav_case_one {
    border-bottom: 1px solid #CCCCCC;
}
.nav_case_one .item {
    margin-right: 65px;
    padding: 20px 0;
    box-sizing: border-box;
}
.nav_case_one .item:last-child {
    margin-right: 0;
}
.nav_case_one .item:hover {
    color: #E62129;
}
.nav_case_one .item.active {
    color: #E62129;
}
.nav_case_two {
    margin-top: 20px;
}
.nav_case_two .item {
    margin-right: 66px;
    padding: 10px 0;
    border-bottom: 1px solid transparent;
    line-height: 1;
    margin-bottom: 10px;
    transition: all .4s;
}
.nav_case_two .item:hover {
    color: #E62129;
    border-bottom: 1px solid #E62129;
}
.nav_case_two .item.active {
    color: #E62129;
    border-bottom: 1px solid #E62129;
}
.nav_case_two .item:last-child {
    margin-right: 0;
}
.pro_lists {
    background: #F5F5F5;
}
.pro_lists_contents .list {
    width: 23.38%;
    margin-right: 2.16%;
    display: flex;
    flex-direction: column;
    align-items: center;
    margin-bottom: 40px;
    box-sizing: border-box;
    transition: all .4s;
    overflow: hidden;
    position: relative;
    background: #FFFFFF;
    box-shadow: 0px 0px 7px 2px rgba(3, 12, 26, 0.06);
}
.pro_lists_contents .list:nth-child(4n) {
    margin-right: 0;
}
.pro_lists_contents .img {
    display: flex;
    align-items: center;
    justify-content: center;
    height: 252px;
    width: 100%;
    padding: 15px;
    box-sizing: border-box;
}
.pro_lists_contents .img img {
    transition: all .4s;
    max-height: 100%;
    display: block;
}
.pro_lists_contents .text {
    padding: 20px;
    box-sizing: border-box;
    width: 100%;
    text-align: center;
    position: relative;
    border-top: 1px solid #EEE;
}
.pro_lists_contents .tit {
    transition: all .4s;
    white-space: nowrap;
    overflow: hidden;
    text-overflow: ellipsis;
    box-sizing: border-box;
    position: relative;
}
.pro_lists_contents .list::after {
    content: "";
    display: block;
    width: 100%;
    height: 3px;
    background: #E62129;
    position: absolute;
    bottom: 0;
    left: 0;
    transition: all .4s;
    transform: scale(0);
}
.watch_more {
    width: 100%;
    display: flex;
    align-items: center;
    justify-content: center;
    transition: all .4s;
    background: red;
    max-width: 83px;
    margin: 15px auto 0;
    padding: 2px 3px;
    box-sizing: border-box;
}
.watch_more::after {
    content: "";
    display: block;
    width: 5px;
    height: 9px;
    background: url(../img/watch_more.png) no-repeat center/cover;
    transition: all .4s;
    margin-left: 5px;
}

.product_lists .list:hover .tit{
    color: #E62129;
}
.product_lists .list:hover .see_more {
    transform: translateX(6px);
}
.product_lists .list .items_lines .item:hover{
    color: #E62129;
    transform: translateX(2px);
}
.pro_lists_contents .list:hover .img img {
    transform: scale(1.08);
}
.pro_lists_contents .list:hover .tit {
    color: #E62129;
}
.pro_lists_contents .list:hover::after {
    transform: scale(1);
}

.product_show01 .Swiper_box {
    width: 49.3%;
}
.Swiper_box .swiper-container {
    border: 1px solid #e3e3e3;
}
.Swiper_box .swiper-slide {
    height: 549px;
    display: flex;
    align-items: center;
    justify-content: center;
    padding: 25px;
    box-sizing: border-box;
}
.Swiper_box .swiper-slide img {
    display: block;
    max-width: 100%;
    max-height: 100%;
}
.Swiper_box .swiper-pagination{
    bottom: 40px;
}
.Swiper_box .swiper-pagination-bullet{
    width: 12px;
    height: 12px;
    background: #214C8F;
    border-radius: 50%;
    opacity: 0.2;
    margin: 0 6px!important;
}
.Swiper_box .swiper-button-next, .Swiper_box .swiper-button-prev{
    width: 32px;
    height: 32px;
    border: 2px solid rgba(230, 33, 41, .6);
    border-radius: 50%;
    background: #fce8e9;
}
.Swiper_box .swiper-button-next::after, .Swiper_box .swiper-button-prev::after{
    font-size: 14px;
    color: rgba(230, 33, 41, .6);
}
.Swiper_box .swiper-button-prev{
    left: 42px;
}
.Swiper_box .swiper-button-next{
    right: 42px;
}
.Swiper_box .swiper-pagination-bullet-active{
    background: #E62129;
    opacity: 1;
}
.Swiper_box .swiper-button-next:hover, .Swiper_box .swiper-button-prev:hover{
    border: 2px solid rgba(230, 33, 41, 1);
    border-radius: 50%;
    background: #E62129;
}
.Swiper_box .swiper-button-next:hover::after, .Swiper_box .swiper-button-prev:hover::after{
    color: #fff;
}

.product_show01 .contents {
    width: 45%;
}
.product_show01 .contents .title {
    border-bottom: 1px solid #E1E1E1;
    padding-bottom: 22px;
    box-sizing: border-box;
    margin-bottom: 22px;
    color: #E62129;
    font-weight: 600;
    position: relative;
}
.product_show01 .contents .con p {
    padding-bottom: 10px;
}
.product_show01 .contents .con p:last-child {
    padding-bottom: 0;
}
.download_now{
    width: 164px;
    height: 46px;
    border-radius: 6px;
    display: flex;
    align-items: center;
    justify-content: space-between;
    margin-top: 60px;
    transition: all .4s;
    padding: 0 20px;
    box-sizing: border-box;
    background: #E62129;
}
.download_now::after{
    content: "";
    display: block;
    width: 21px;
    height: 21px;
}
.download_now::after{
    background: url(../img/icon_down.svg) no-repeat center/cover;
}

.product_show02 .nav{
    background: #F7F7F7;
}
.product_show02 .item{
    height: 90px;
    display: flex;
    align-items: center;
    margin-right: 75px;
    position: relative;
    cursor: pointer;
    transition: all .4s;
}
.product_show02 .item::after{
    content: "";
    display: block;
    height: 2px;
    background: #E62129;
    width: 100%;
    position: absolute;
    bottom: 0;
    left: 0;
    transform: scale(0);
    transition: all .4s;
}
.product_show02 .item.active{
    color: #E62129;
}
.product_show02 .item.active::after{
    transform: scale(1);
}
.product_show02 .list {
    display: none;
    max-width: 100%;
}
.product_show02 .list.active {
    display: block;
}
.product_show02 .list p {
    padding: 5px 0;
}
.product_show02 .list p:first-child {
    padding-top: 0;
}
.product_show02 .list p:last-child {
    padding-bottom: 0;
}
.product_show02 .list table {
    width: 100%;
    border-collapse: collapse;
}
.product_show02 .list table, .product_show02 .list th, .product_show02 .list td {
  border: 1px solid #E1E1E1;
  padding: 5px;
  text-align: center;
}
.product_show03 {
    background: #F8F8F8;
}

@media only screen and (min-width: 960px) {
    .download_now:hover {
        color: #fff;
        transform: translateX(5px);
    }
}
@media only screen and (max-width: 1366px) {
    .pro_lists_contents .img{
        height: 223px;
    }
}
@media only screen and (max-width: 1280px) {
    .pro_lists_contents .img {
        height:210px;
    }
}
@media only screen and (max-width: 1270px) {
    .product_lists .list .texts{
        padding-right: 3%;
    }
}
@media only screen and (max-width: 1200px) {
    .product_lists .list .img {
        width: 170px;
    }
    .product_lists .list .texts {
        width: calc(100% - 170px);
    }
    .product_lists .list .tit{
        font-size: 20px;
    }
    .pro_lists_contents .img{
        height: 196px;
    }
    .Swiper_box .swiper-slide{
        height: 530px;
    }
    .product_show02 .item {
        height: 80px;
    }
}
@media only screen and (max-width: 1101px) {
    .product_lists .list{
        padding: 35px 30px;
    }
}
@media only screen and (max-width: 1080px) {
    .product_lists .list .tit{
        font-size: 18px;
    }
    .Swiper_box .swiper-slide{
        height: 470px;
    }
    .product_show02 .item {
        height: 70px;
    }
    .pro_lists_contents .img{
        height: 181px;
    }
}
@media only screen and (max-width: 1023px) {
    .product_lists .list .texts {
        width: calc(100% - 150px);
        padding-right: 0;
    }
    .product_lists .list .img {
        width: 150px;
    }
}
@media only screen and (max-width: 960px) {
    .product_lists .list .img {
        width: 140px;
    }
    .product_lists .list .texts {
        width: calc(100% - 140px);
    }
    .product_lists .list .see_more {
        width: 115px;
        height: 40px;
    }
    .product_lists .list {
        padding: 30px 25px;
        height: 316px;
    }
    .pro_lists_contents .img{
        height: 162px;
    }
    .Swiper_box .swiper-slide {
        height: 433px;
    }
    .product_show02 .item {
        height: 65px;
    }
}
@media only screen and (max-width: 885px) {
    .product_lists .list .items_lines .item {
        margin-bottom: 5px;
    }
    .product_lists .list .see_more {
        width: 105px;
        height: 40px;
    }
}
@media only screen and (max-width: 825px) {
    .product_lists .list{
        margin-right: 0;
    }
}
@media only screen and (max-width: 768px) {
    .product_lists .list {
        padding: 25px 15px;
        height: auto;
        width: 100%;
        flex-direction: column-reverse;
        margin-bottom: 15px;
    }
    .product_lists .list .texts {
        width: 100%;
        padding-right: 0;
        margin-top: 20px;
    }
    .product_lists .list .img{
        width: 50%;
        margin: 0 auto;
    }
    .product_lists .list:last-child{
        margin-bottom: 0;
    }
    .product_lists .list .items_lines {
        margin: 10px 0 15px;
        height: auto;
    }
    .product_lists .list .see_more{
        margin: 0 auto;
    }
    .product_lists .list .items_lines .item{
        margin-bottom: 5px;
    }
    .product_nav .link {
        margin-right: 15px;
        margin: 6px 20px 6px 0;
    }
    .product_nav .link::after{
        margin-top: 5px;
    }
    .product_lists {
        margin-top: 15px;
    }
    .nav_case_one{
        justify-content: center;
    }
    .nav_case_one .item {
        margin-right: 15px;
        padding: 10px 0;
    }
    .nav_case_two .item {
        margin-right: 20px;
        padding: 5px 0;
    }
    .pro_lists_contents .list {
        width: 100%;
        margin-right: 0;
        margin-bottom: 15px;
    }
    .pro_lists_contents .list:last-child{
        margin-bottom: 0;
    }
    .pro_lists_contents .img {
        height: 266px;
    }
    .pro_lists_contents {
        margin-top: 20px;
    }
    .product_show01 .Swiper_box {
        width: 100%;
    }
    .product_show01 .contents {
        width: 100%;
        margin-top: 25px;
    }
    .Swiper_box .swiper-slide {
        height: 330px;
        padding: 15px;
    }
    .Swiper_box .swiper-button-prev {
        left: 15px;
    }
    .Swiper_box .swiper-button-next {
        right: 15px;
    }
    .download_now {
        width: 136px;
        height: 44px;
        padding: 0 15px;
        margin: 20px auto 0;
    }
    .Swiper_box .swiper-pagination {
        bottom: 10px;
    }
    .product_show01 .contents .title{
        margin-bottom: 15px;
        padding-bottom: 15px;
    }
    .product_show02 .list.active {
        overflow-x: auto;
    }
    .product_show02 .list table, .product_show02 .list th, .product_show02 .list td{
        width: max-content;
    }
}