@charset "utf-8";

body * {
    box-sizing: border-box;
    flex-shrink: 0;
}

body,
html {
    background: #fff;
    /*火狐下隐藏滚动条*/
    overflow:-moz-scrollbars-none;
    font-size: 0.832vw;
    margin: 0;
    padding: 0;
}

ul,
ol,
li {
    list-style: none;
    margin: 0;
    padding: 0;
}

a {
    text-decoration: none;
    color: inherit;
    cursor: pointer;
}

h1,
h2,
h3,
h4,
h5,
h6 {
    font-weight: normal;
}

p{
    margin: 0;
    padding: 0
}

button {
    border: none;
    outline: none;
    cursor: pointer;
}

.fl {
    float: left;
}

.fr {
    float: right;
}

.clear:after {
    content: "";
    display: block;
    height: 0;
    clear: both;
    visibility: hidden;
}

.clear {
    *zoom: 1;
}

button,
input {
    outline: none;
}

::-webkit-scrollbar {
    width: 0;
    height: 0
}

::-webkit-scrollbar-track {
    background-color: transparent;
    -webkit-border-radius: 2em;
    -moz-border-radius: 2em;
    border-radius: 2em;
}

::-webkit-scrollbar-thumb {
    background-color: transparent;
    -webkit-border-radius: 2em;
    -moz-border-radius: 2em;
    border-radius: 2em
}

button {
    margin: 0;
    padding: 0;
    border: 1px solid transparent;
    outline: none;
    background-color: transparent;
}

button:active {
    opacity: 0.6;
}

.ml-120{
    margin-left: 6.24vw;
}

.mt-20{
    margin-top: 1.85vh;
}

.mt-36{
    margin-top: 3.33vh;
}
.mb-30{
    margin-bottom: 1.56vw;
}
.mt-19{
    margin-top: 0.998vw;
}

.bg-gray{
    background: #F7F8FA!important;
}

.color-red{
    color: #D60000;
}
.color-blue{
    color: #1470CC;
}

.flex-col {
    display: flex;
    flex-direction: column;
}
.flex-row {
    display: flex;
    flex-direction: row;
}
.justify-start {
    display: flex;
    justify-content: flex-start;
}
.justify-center {
    display: flex;
    justify-content: center;
}

.justify-end {
    display: flex;
    justify-content: flex-end;
}
.justify-evenly {
    display: flex;
    justify-content: space-evenly;
}
.justify-around {
    display: flex;
    justify-content: space-around;
}
.justify-between {
    display: flex;
    justify-content: space-between;
}
.align-start {
    display: flex;
    align-items: flex-start;
}
.align-center {
    display: flex;
    align-items: center;
}
.align-end {
    display: flex;
    align-items: flex-end;
}
.ellipsis{
    overflow: hidden;
    text-overflow: ellipsis;
    white-space: nowrap;
}
.ellipsis-clamp2{
    overflow: hidden;
    text-overflow: ellipsis;
    display: -webkit-box;
    -webkit-line-clamp: 2;
    -webkit-box-orient: vertical;
}
.show{display: block!important;}

/* 顶部信息 */
.header{
    background-color: #32080A;
    width: 100vw;
    /*height: 3.12vw;*/
    height: 60px;
    padding: 0 13.54vw;
    box-sizing: border-box;
}

.header_info,.header_txt{
    /*height: 1.05vw;*/
    overflow-wrap: break-word;
    color: rgba(255, 255, 255, 0.9);
    font-size: 24px;
    white-space: nowrap;
    /*line-height: 3.12vw;*/
    line-height: 60px;
    display: block;
}

.header_info {
    /*width: 6.2vw;*/
    text-align: left;
}

.header_txt {
    /*width: 32.61vw;*/
    text-align: right;
}

/* 顶部导航 */
.nav{
    width: 100%;
    height: 4.68vw;
    padding: 1.352vw 13.54vw;
    box-sizing: border-box;
}
.nav-act-red{
    background: transparent;
    color: rgba(255, 255, 255, 0.8)
}
.nav-act{
    background: #fff;
    color: #8A9199
}
.nav-act-red .logo,.nav-act .logo-h{
    height: 1.872vw;
    display: block;
}
.nav-act-red .logo-h,.nav-act .logo{
    height: 1.872vw;
    display: none;
}

.menu a{
    height: 3.33vh;
    text-decoration: none;
    font-size: 1.04vw;
    margin: 0.06vw 0 0 4.16vw;
    cursor: pointer;
    position: relative;
}

.nav-act-red .menu a:hover{
    color: #fff;
}

.nav-act-red .menu a:hover:before{
    content: "〇";
    color: transparent;
    position: absolute;
    top: 1.56vw;
    left: calc(50% - 0.234vw);
    border-radius: 50%;
    width: 0.468vw;
    height: 0.468vw;
    border: 1px solid #fff;
}

.nav-act-red .menu-active{
    color: #fff!important;
}

.nav-act-red .menu-active:before{
    content: "〇";
    color: transparent;
    position: absolute;
    top: 1.56vw;
    left: calc(50% - 0.234vw);
    border-radius: 50%;
    width: 0.468vw;
    height: 0.468vw;
    border: 1px solid #fff;
}

.menu5{
    padding-bottom: 3.12vw;
}

.menu5-arrow{
    width: 8px;
    height: 8px;
    margin: 0.32vw 0 0 0.38vw;
    border-left: 1px solid #C2B5B6;
    border-top: 1px solid #C2B5B6;
    transform: rotate(225deg);
}

.nav-act .menu5-act{
    color:#D60000!important;
}

.nav-act .menu5-act .menu5-arrow{
    border-left: 1px solid #D60000;
    border-top: 1px solid #D60000;
    margin: 0.64vw 0 0 0.38vw;
    transform: rotate(45deg);
    transition: all 0.3s;
}

/* 产品动态下拉框 */
.menu-more{
    width: 100vw;
    height: 22.88vw;
    background: #fff;
    font-size: 0.836vw;
    position: absolute;
    padding: 0 13.54vw;
    box-sizing: border-box;
    top:7.8vw;
    z-index: 999;
    display: none;
}
.menu-more .hot-product{
    height: 0.832vw;
    margin: 1.456vw 0 1.82vw 0;
}
.menu-more .hot-product li{
    color: #5C6166;
    float: left;
    margin-right: 0.52vw;
}
.menu-more li:nth-child(n + 2){
    cursor: pointer;
}
.menu-more .product-box li{
    color: #8A9199;
    margin-bottom: 0.832vw;
}
.menu-more .product-box .title{
    color: #D60000;
    font-weight: bold;
    font-size: 1.04vw;
}
.menu-more a{
    text-decoration: none;
    position: relative;
    display: inline-block;
}
.menu-more a:hover{
    color: #D60000;
}
.menu-more a::before{
    content: "";
    display: block;
    position: absolute;
    height: 1px;
    background: #D60000;
    width: 0;
    left:auto;
    right:0;
    bottom:-2px;
    transition:all 0.5s;
}
.menu-more a:hover::before{
    width: 100%;
    left:0;
    right:auto;
}

/* 副标题 */
.content-title{
    text-align: center;
}
.content-info1{
    font-size: 2.6vw;
    color: #EBEEF5;
}
.content-info2{
    font-size: 2.496vw;
    color:#2E3033;
    font-weight: bold;
    margin-top: -2.4vw;
}
.tagging-line{
    width: 2.6vw;
    height: 6px;
    background: #D60000;
    margin: 0 auto;
}


/* 底部 */
.footer{
    /*height: 16.64vw;*/
    width: 100vw;
    background: #292C33;
    box-sizing: border-box;
    padding: 0 13.54vw;
    color: #7f8085;
    font-size: 0.728vw;
}

.foot-info{
    width: 100%;
    margin-top: 3.12vw;
}

.foot-info .title{
    font-size: 1.04vw;
    color: #fff!important;
}

.width-178{
    width: 8.256vw;
}

.foot-split{
    width: 1px;
    height: 4.16vw;
    margin-top: 3.8vw;
    background: #515459;
}

.foot-info1 a{
    text-decoration: none;
    position: relative;
    display: inline-block;
}
.foot-info1 a:hover{
    color: #fff;
}
.foot-info1 a::before{
    content: "";
    display: block;
    position: absolute;
    height: 1px;
    background: #fff;
    width: 0;
    left:auto;
    right:0;
    bottom:-2px;
    transition:all 0.5s;
}
.foot-info1 a:hover::before{
    width: 100%;
    left:0;
    right:auto;
}

.copy-right{
    margin: 3.4vw 0 2.08vw;
    text-align: center;
}


/*aside侧边栏*/
.aside{
    border: 1px solid #e3e4e6;
    border-radius: 4px;
    position: fixed;
    right: 1.04vw;
    top: 50%;
    transform: translateY(-50%);
    background: #ffffff;
    z-index: 2;
}
.aside-list{
    border-top:1px solid #e3e4e6;
    padding: 0.832vw 0.624vw 0;
    text-align: center;
    cursor: pointer;
    position: relative
}
.aside span{
    font-size: 14px;
    font-family: PF;
    font-weight: 500;
    color: #8A9199;
    line-height: 1.782vw;
}
.aside-list:hover{
    background: #E40001;
    border-radius: 4px;
}
.aside-list:hover span{
    color: #ffffff;
}
.aside-list:hover .icon-wx{
    background: url("../image/weixin-h.png") 0 0 no-repeat;
    background-size: 100% 100%;
}
.aside-list:hover .icon-phone{
    background: url("../image/tell-h.png") 0 0 no-repeat;
    background-size: 100% 100%;
}
.aside-list:hover .icon-top{
    background: url("../image/to-top-h.png") 0 0 no-repeat;
    background-size: 100% 100%;
}
.aside-list:nth-child(1){
    border-top: none;
}
.aside-list:nth-child(1):hover .QR-code-box{
    display: block;
}
.aside-list:nth-child(2):hover .phone-box{
    display: block;
}
.icon-wx{
    height: 1.248vw;
    width: 1.508vw;
    background: url("../image/weixin.png") 0 0 no-repeat;
    background-size: 100% 100%;
    margin: 0 auto;
}
.icon-phone{
    height: 1.248vw;
    width: 1.248vw;
    background: url("../image/tell.png") 0 0 no-repeat;
    background-size: 100% 100%;
    margin: 0 auto;
}
.icon-top{
    height: 1.248vw;
    width: 1.144vw;
    background: url("../image/to-top.png") 0 0 no-repeat;
    background-size: 100% 100%;
    margin: 0 auto;
}

/*二维码*/
.QR-code-box{
    display: none;
    position: absolute;
    top: -1vw;
    right: calc(1.5vw + 66px);
    width: max-content;
    padding: 0.624vw;
    background: #FFFFFF;
    border: 1px solid #E3E4E6;
    box-shadow: 2px 3px 12px 0 rgba(122, 133, 153, 0.1);
    border-radius: 4px;
}

.QR-code{
    width: 4.992vw;
    height: 4.992vw;
    background: url("../image/QR-code.png") 0 0 no-repeat;
    background-size: 100% 100%;
}
.phone-box{
    display: none;
    position: absolute;
    top: 0.182vw;
    right: calc(1.5vw + 66px);
    width: max-content;
    background: #FFFFFF;
    border: 1px solid #E3E4E6;
    box-shadow: 2px 3px 12px 0 rgba(122, 133, 153, 0.1);
    border-radius: 4px;
    padding: 0.624vw;
    font-size: 0.862vw;
    font-family: PF;
    font-weight: 500;
    color: #5C6166;
}

/*三角箭头*/
.triangle{
    position: absolute;
    right: -6px;
    top: 50%;
    transform: translateY(-50%);
    width: 0;
    height: 0;
    border-top: 6px solid transparent;
    border-bottom: 6px solid transparent;
    border-left: 6px solid #fffdfd;
    z-index: 2;
}
.triangle-border{
    position: absolute;
    right: -7px;
    top: 50%;
    transform: translateY(-50%);
    width: 0;
    height: 0;
    border-top: 7px solid transparent;
    border-bottom: 7px solid transparent;
    border-left: 7px solid #E3E4E6;
}



/*--container--*/
.container{
    max-height: 50vw;
    background: #FFFFFF;
    padding:3.12vw 13.52vw 5.46vw 22.828vw ;
}
.container .content_s{
    max-height: 40.82vw;
    display: flex;
}

/*tab选项卡*/
.contents-left{
    width: 6.293vw;
    height: 26.416vw;
    border-right: 2px solid #E8EAED;
    margin-right: 2.6vw;
}
.contents-left ul{
    margin-top: 0.8vw;
}
.contents-left ul li{
    font-size: 1.04vw;
    margin-bottom: 0.35vw;
    position: relative;
    right: -2px;
    height: 2.704vw;
    padding-right: 2.08vw;
    display: flex;
    justify-content: flex-end;
    align-items: center;
}

/*tabs激活状态*/
.tabs{
    font-family: PF;
    font-weight: 500;
    color: #8A9199;
}
.tabs:hover,.tabs-active{
    font-weight: bold !important;
    color: #D60000 !important;
}
.tabs a::before{
    height: 0;
}
.tabs-active a::before{
    height: 100%;
}
.tabs-active a::before,.tabs a::before{
    content: "";
    display: block;
    position: absolute;
    background: #D60000;
    width: 2px;
    top: 0;
    bottom: 0;
    right: 0;
    transition: all 0.5s;
}
.tabs a:hover::before{
    height: 100%;
    top:0;
    bottom:auto;
}

/*头部title*/
.content-title-info1 {
    height: 1.872vw;
    width: 54.56vw;
    margin: 1.3vw 0;
    border-bottom: 1px solid #F0F2F5;
}
.tab-con-title{
    font-size: 1.04vw;
    line-height: 1.56vw;
    font-family: PF;
    font-weight: bold;
    color: #000000;
    float: left;
    margin-right: 0.52vw;
}
.eg-text{
    font-size: 0.728vw;
    font-family: PF;
    font-weight: 400;
    color: #B8C2CC;
    line-height: 1.976vw;
}
.link-text{
    font-size: 0.832vw;
    font-family: PF;
    font-weight: 500;
    color: #3D85CC !important;
    line-height: 1.664vw;
}

/*内容列表*/
.list-cont{
    width: calc(33.33% - 1.56vw);
    height: 11.5vw;
    background: #FFFFFF;
    border: 1px solid #E3E4E6;
    border-radius: 4px;
    margin: 0 0.78vw 1.563vw 0.78vw;
}
.cons-title{
    margin: 1.508vw 0 0 1.196vw;
    height: 7.38vw;
}
.cons-title-text{
    display: flex;
    justify-content: space-between;
}
.cons-title-text p{
    font-size: 1.04vw;
    font-family: PF;
    font-weight: bold;
    color: #2E3033;
    line-height: 1.352vw;
}
.content-bottom{
    height: 2.444vw;
    background: #F7F8FA;
    border-radius: 0 0 0.156vw 0.156vw;
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 0 1.04vw;
}
.content-bottom span{
    font-size: 0.832vw;
    font-family: PF;
    font-weight: 500;
    color: #8A9199;
}
.content-bottom div{
    width: 1.56vw;
    height: 0.416vw;
    background: url("../image/arrow-left.png") 0 0 no-repeat;
    background-size: 100% 100%;
}
.over-hide{
    display: -webkit-box;
    -webkit-box-orient: vertical;
    -webkit-line-clamp: 2;
    overflow: hidden;
}
