@import url(../iconfont/iconfont.css);
@import url(junzhuoyingshi.css);
@import url(jquery.fancybox.min.css);
@import url(swiper.min.css);
@import url(video.css);

body {
    color: #555a64;
    font: 14px/1.5 Arial, 'PingFang SC', 'Microsoft YaHei', sans-serif;
}

a {
    color: #2c3038;
    text-decoration: none;
}

p {
    margin-bottom: 0;
}

.h1,
.h2,
.h3,
.h4,
.h5,
.h6,
h1,
h2,
h3,
h4,
h5,
h6 {
    color: #2c3038;
}

a:hover {
    text-decoration: none;
}

.border-radius {
    border-radius: 4px;
}

.showlineone {
    display: -webkit-box;
    -webkit-box-orient: vertical;
    -webkit-line-clamp: 1;
    overflow: hidden;
}

.showlinetwo {
    display: -webkit-box;
    -webkit-box-orient: vertical;
    -webkit-line-clamp: 2;
    overflow: hidden;
}

.showoneltwo {
    display: -webkit-box;
    -webkit-box-orient: vertical;
    -webkit-line-clamp: 1;
    overflow: hidden;
}

@media (min-width:768px) {
    .showoneltwo {
        -webkit-line-clamp: 2;
    }
}

ol,
ul,
li {
    list-style: none;
    margin: 0;
    padding: 0;
}

.navigation {
    text-align: center;
    margin-bottom: 40px;
    color: #fff;
    overflow: hidden;
}

.navigation_title {
    padding: 0 25px;
    position: relative;
    color: #fff;
    display: inline-block;
}

.navigation .navigation_title::after {
    content: '';
    max-width: 110px;
    width: 100%;
    height: 1px;
    background-color: #b70005;
    position: absolute;
    z-index: -1;
    top: 50%;
    left: 100%;
    transform: translateY(-50%);
}

.navigation .navigation_title::before {
    content: '';
    max-width: 110px;
    width: 100%;
    height: 1px;
    background-color: #b70005;
    position: absolute;
    z-index: -1;
    top: 50%;
    right: 100%;
    transform: translateY(-50%);
}

.navigation .navigation_title.white::before,
.navigation .navigation_title.white::after {
    background-color: #fff;
}

.navigation_href a {
    display: block;
    padding: 10px 30px;
    border-radius: 5px;
    overflow: hidden;
    background-color: #b70005;
    color: #fff;
}

.navigation_href a:hover {
    background-color: #fff;
    color: #b70005;
    transition: .3s;
}

.color-white {
    color: white;
}

.color-black {
    color: black;
}

.section {
    padding: 50px 0;
    position: relative;
}

.mb-10 {
    margin-bottom: 10px;
}

.mb-30 {
    margin-bottom: 30px;
}

.mt-10 {
    margin-top: 10px;
}

.w-full {
    width: 100%;
}

.h-full {
    height: 100%;
}

.container {
    position: relative;
    z-index: 1;
}

.block {
    display: block;
}

.inline-block {
    display: inline-block;
}

.flex {
    display: flex;
}

.justify-center {
    justify-content: center;
}

.text-center {
    text-align: center;
}

.mx-auto {
    margin: 0 auto;
}

.relative {
    position: relative;
}

.overflow-hidden {
    overflow: hidden;
}

.z-1 {
    z-index: 1;
}

.z-2 {
    z-index: 2;
}

.z-3 {
    z-index: 3;
}

.z-5 {
    z-index: 5;
}

.z-10 {
    z-index: 10;
}

.z-50 {
    z-index: 50;
}

.pointer-auto {
    pointer-events: auto;
}

.size-14 {
    font-size: 14px;
}

.fs-16,
.size-16 {
    font-size: 16px;
}

.bg-b70005 {
    background-color: #b70005;
}
.bg-black{
    background-color: black;
}





.header {
    height: 71px;
}

.header,
.header_inner {
    background: #000000;
}

.header .header_inner {
    position: fixed;
    top: 0;
    left: 0;
    right: 0;
    z-index: 10;
}

.header .header_row {
    display: flex;
    padding: 8px 0;
    justify-content: space-between;
}

.header .header_row .logo {
    max-width: 190px;
}

.header .header_nav {
    display: flex;
    height: 100%;
    justify-self: center;
    align-items: center;
    color: #d6d6d6;
}
.header .header_nav li{
    position: relative;
    height: 100%;
}
.header .header_nav a {
    display: flex;
    font-size: 16px;
    height: 100%;
    justify-content: center;
    align-items: center;
    padding: 0 15px;
    color: #d6d6d6;
}
.header .header_nav>li:last-child>a{
    padding-right: 0;
}

.header .header_nav a.active,
.header .header_nav a:hover {
    color: #ff0000;
}
.header .header_nav .header_nav_child{
    position: absolute;
    top: 100%;
    left: 50%;
    display: none;
    transform: translateX(-50%);
    background-color: #f5f5f5;
    min-width: 150px;
    border-radius: 4px;
}
.header .header_nav .header_nav_child .iconfont{
    position: absolute;
    font-size: 20px;
    top: -12px;
    left: 45px;
    z-index: 0;
    line-height: normal;
    color: #f5f5f5;
}
.header .header_nav .header_nav_child a{
    display: block;
    font-size: 15px;
    color: #000;
    padding: 8px 10px;
    border-radius: 5px;
    text-align: center;
}
.header .header_nav .header_nav_child a.active,
.header .header_nav .header_nav_child a:hover{
    background-color: #e8e8e8;
}
.header .header_nav li:hover .header_nava{
    color: #ff0000;
}
.header .header_nav li:hover .header_nav_child{
    display: block;
    transition: .3s;
}
.header .header_navswitch{
    background-color: initial;
    border:0;
    height: 100%;
    padding: 0 10px;
    margin: 0;
    display: flex;
    justify-content: center;
    align-items: center;
}
.header .header_navswitch .iconfont{
    font-size: 26px;
    color: #fff;
}
.header_mobilenav{
    position: fixed;
    top: 0;
    left: 0;
    display: none;
    right: 0;
    bottom: 0;
    z-index: 999;
}
.header_mobilenav::before{
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background-color: rgba(0, 0, 0, 0.4);
    z-index: 0;
}
.header_mobilenav .header_mobilenav_inner{
    max-width: 320px;
    min-width: 320px;
    position: relative;
    z-index: 1;
    padding: 25px;
    height: 100%;
    background-color: #000;
}
.header_mobilenav .header_mobilenav_inner .logo{
    max-width: 210px;
    margin-bottom: 25px;
}
.header_mobilenav .header_mobilenav_inner ul>li{
    border-bottom: 1px solid #a9a9a9;
}
.header_mobilenav .header_mobilenav_inner ul>li a{
    display: block;
    color: #a9a9a9;
    padding: 12px 15px;
    border-bottom: 1px solid #323232;
}
.header_mobilenav .header_mobilenav_inner ul>li a.active{
    color: #ff0000;
}
.header_mobilenav .header_mobilenav_inner ul>li .iconfont{
    position: absolute;
    right: 0;
    top: 0;
    color: #a9a9a9;
    bottom: 0;
    font-size: 14px;
    padding: 0 15px;
    cursor: pointer;
    display: flex;
    align-items: center;
    justify-content: center;
}
.header_mobilenav .header_mobilenav_inner ol{
    display: none;
}
.header_mobilenav .header_mobilenav_inner ol li a{
    padding: 10px 20px;
}
.header_mobilenav .header_mobilenav_close{
    position: absolute;
    top: 20px;
    right: 20px;
    font-size: 24px;
    cursor: pointer;
    color: #b6b6b6;
}

#videoindex {
    display: block;
    pointer-events: none;
}

#videoindex::-webkit-media-controls-fullscreen-button,
#videoindex::-webkit-media-controls-play-button,
#videoindex::-webkit-media-controls-timeline,
#videoindex::-webkit-media-controls-current-time-display,
#videoindex::-webkit-media-controls-time-remaining-display,
#videoindex::-webkit-media-controls-mute-button,
#videoindex::-webkit-media-controls-toggle-closed-captions-button,
#videoindex::-webkit-media-controls-volume-slider,
#videoindex::-webkit-media-controls-enclosure {
    display: none !important;
}

.quantity {
    padding: 50px 0;
    background-color: #b70005;
    color: #fff;
    text-align: center;
}

.quantity .quantity_item {
    position: relative;
}

.quantity .quantity_item:first-child::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    bottom: 0;
    width: 0.5px;
    background-color: #b70005;
}

.quantity .quantity_item::after {
    content: '';
    position: absolute;
    top: 0;
    right: 0;
    bottom: 0;
    width: 0.5px;
    background-color: #b70005;
}

.quantity .quantity_item h3 {
    font-size: 16px;
    letter-spacing: 2px;
    color: #fff;
    width: 100%;
    display: flex;
    justify-content: center;
    margin-bottom: 25px;
    align-items: end;
    text-align: center;
}

.quantity .quantity_item h3 span {
    font-size: 50px;
    font-weight: bold;
    line-height: 38px;
}

.section-bg {
    position: relative;
    background-repeat: no-repeat;
    background-color: rgba(0, 0, 0, 0.6);
    background-size: cover;
}

.section-bg::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    z-index: 0;
    background-color: rgba(0, 0, 0, 0.6);
}

.case .case_item {
    margin-bottom: 30px;
}

.domain .domain_video_item .domain_video_item_img,
.case .case_item .case_item_img {
    border-radius: 4px;
    overflow: hidden;
    position: relative;
}

.domain .domain_video_item .domain_video_item_title,
.case .case_item .case_item_title {
    margin-top: 8px;
}

.domain .domain_video_item .domain_video_item_title h3,
.domain .domain_video_item .domain_video_item_title h3 a,
.case .case_item .case_item_title h3,
.case .case_item .case_item_title h3 a {
    font-size: 14px;
    margin: 0;
    color: #a9a9a9;
}
.domain .domain_video_item .domain_video_item_title h3 a:hover,
.case .case_item .case_item_title h3 a:hover {
    color: #fff;
}
.domain .domain_video_item .domain_video_item_video,
.case .case_item .case_item_video {
    position: absolute;
    top: 50%;
    z-index: 1;
    left: 50%;
    transform: translate(-50%, -50%);
}
.domain .domain_video_item .domain_video_item_video .iconfont,
.case .case_item .case_item_video .iconfont {
    display: flex;
    justify-content: center;
    align-items: center;
    width: 50px;
    height: 50px;
    font-size: 50px;
    line-height: normal;
    color: #fff;
}

.partner {
    padding: 80px 0;
    background-color: #b70005;
}

.partner .partner_item {
    border-radius: 4px;
    margin-bottom: 30px;
    overflow: hidden;
}
@media(max-width:750px){
    .partner .partner_item{
        margin-bottom: 15px;
    }
}
.about {
    padding: 90px 0 60px;
}

.about .about_inner {
    width: 100%;
    min-height: 100%;
    background-color: #000000;
    border-radius: 4px;
    overflow: hidden;
    padding: 15px;
}

.about .about_inner .about_inner_title {
    margin-bottom: 15px;
}

.about .about_inner .about_inner_title h3 {
    color: #fff;
    margin-bottom: 0;
}

.about .about_inner .about_inner_title p {
    color: #ff0000;
}

.about .about_inner .about_inner_txt p {
    text-indent: 0rem!important;
    color: #b6b6b6;
    margin-bottom: 10px;
}
@media(max-width:750px){
    .about {
        padding: 45px 0 30px;
    }

}

.slide .slide_scene {
    position: absolute;
    z-index: 0;
    width: 100%;
    height: 100%;
}

.slide .slide_scene .slide_scene_innner {
    position: absolute;
    top: 50%;
    z-index: 0;
    left: 50%;
    transform: translate(-50%, -50%);
    width: 120%;
    height: 120%;
}

.slide .slide_scene .slide_scene_innner::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    z-index: 1;
    right: 0;
    bottom: 0;
    background-color: rgba(0, 0, 0, 0.6);
}

.slide .slide_scene .slide_scene_img {
    background-repeat: no-repeat;
    background-color: rgba(0, 0, 0, 0.6);
    background-size: cover;
}

.slide .slide_row {
    display: flex !important;
    padding: 160px 15px;
    justify-content: center;
    align-items: center;
    text-align: center;
    color: #fff;
}

@media(max-width:750px){
    .slide .slide_row{
        padding: 40px 15px;
    }
}
.slide .slide_row .slide_block h3 {
    font-size: 48px;
    color: #fff;
    margin-bottom: 30px;
}

.slide .slide_row .slide_block p {
    font-size: 16px;
    color: #fff;
    margin-bottom: 45px;
}

.news .news_item {
    display: flex;
    align-items: center;
    margin-bottom: 30px;
    color: #fff;
}

.news .news_item .news_item_img {
    flex: 0 0 22%;
    margin-right: 25px;
}

.news .news_item .news_item_txt {
    flex: 1 1 auto;
}

.news .news_item .news_item_txt h5 a {
    font-size: 18px;
    color: #fff;
    margin-bottom: 15px;
}
.news .news_item .news_item_txt h5 a:hover{
    color: #c74a59;
}

.news .news_item .news_item_txt h6 {
    font-size: 16px;
    color: #a9a9a9;
    margin-bottom: 10px;
}

.news .news_item .news_item_txt p {
    color: #a9a9a9;
}

@media (max-width:768px) {
    .slide .slide_row .slide_block h3{
        font-size: 24px;
        margin-bottom: 10px;
    }
    .slide .slide_row .slide_block p{
        margin-bottom: 15px;
        font-size: 14px;
    }
    .news .news_item{
        margin-bottom: 15px;
    }
    .news .news_item .news_item_img {
        flex: 0 0 110px;
        margin-right: 15px;
        margin-bottom: 0;
    }
    .news .news_item .news_item_txt h5 a{
        -webkit-line-clamp: 2;
        font-size: 16px;
        margin-bottom: 0;
    }
    .news .news_item .news_item_txt h6{
        margin-bottom: 0;
    }
}

.footer {
    color: #fff;
    padding-top: 40px;
    background-color: #3c3a3a;
}

.footer h2 {
    color: #fff;
    margin-bottom: 20px;
    font-weight: bold;
}
.footer .footer_code {
    display: flex;
    justify-content: space-around;
}

.footer .footer_code .footer_code_item {
    width: 35%;
    text-align: center;
}

.footer .footer_statement {
    background-color: #000000;
    padding: 8px 0;
    text-align: center;
    color: #fff;
    font-size: 14px;
}
.tel{
    display: none;
    position: fixed;
    bottom: 0;
    left: 0;
    right: 0;
    z-index: 999;
    background-color: #b70005;
}
.tel a{
    display: block;
    padding: 15px 0;
    text-align: center;
    color: #fff;
    font-size: 18px;
}
@media(max-width:768px){
    .footer{
        text-align: center;
    }
    .tel{
        display: block;
    }
    .footer .footer_code{
        justify-content: center;
    }
    .footer .footer_code .footer_code_item{
        width: 18%;
        margin:0 10px;
    }
    .footer h2{
        font-size: 20px;
    }
    .footer ul{
        font-size: 14px;
    }
    .footer .footer_statement{
        min-height: 50px;
    }
    .footer .footer_statement p{
        display: none;
    }
}

.footer .footer_statement a {
    color: #fff;
}

.catnav {
    padding: 120px 0;
}
@media(max-width:768px){
    .catnav{
        padding: 60px 0;
    }
    .catnav h3{
        font-size: 18px;
    }
    .catnav p{
        font-size: 12px;
    }
}
.join_inner {
    border-bottom: 1px solid #c30d23;
}

.join_inner_block {
    display: none;
}
.join_inner_block  h5,
.join_inner_title{
    color: #fff;
}
.join_inner_con,
.join_inner_con p{
    color: #cacaca;
}
.join_inner h4 {
    cursor: pointer;
}

.join_inner.active h4 {
    color: #fff;
    background-image: -webkit-linear-gradient(162deg, #be0017 0%, #cd031c 29%, #c40015 49%, #870000 75%, #9c0505 100%);
    background-image: -o-linear-gradient(162deg, #be0017 0%, #cd031c 29%, #c40015 49%, #870000 75%, #9c0505 100%);
    background-image: linear-gradient(-72deg, #be0017 0%, #cd031c 29%, #c40015 49%, #870000 75%, #9c0505 100%)
}

.join_inner p {
    margin-bottom: 0px;
}

.join_inner_btn {
    display: flex;
}

.join_inner_btn a {
    display: block;
    padding: 10px 30px;
    border: 1px solid #b70005;
    border-radius: 5px;
    overflow: hidden;
    background-color: #b70005;
    color: #fff;
}

.join_inner_btn a:hover {
    background-color: #fff;
    color: #b70005;
    border: 1px solid #b70005;
}

.pagination .pages>li {
    display: inline-block;
    width: 36px;
    height: 36px;
    font-size: 14px;
    font-weight: 500;
    margin: 0 4px;
    line-height: 34px;
    text-align: center;
}

.pagination .pages>li>a {
    display: flex;
    justify-content: center;
    align-items: center;
    width: 36px;
    height: 36px;
    -webkit-transition: all .3s;
    -o-transition: all .3s;
    transition: all .3s;
    border: 1px solid transparent;
    border-radius: 4px;
    border: 1px solid #606975;
    color: #606975;
    line-height: 34px;
    text-decoration: none;
}
.pagination .pages>li>a:hover,
.pagination .pages>li.active>a {
    border-color: #b70005;
    background-color:#b70005;
    color: #fff;
}
.domain .domain_flow_wire{
    position: absolute;
    top: 50%;
    left: 0;
    width: 100%;
    right: 0;
    height: 1px;
    background-color: #fff;
    transform: translateY(-50%);
}
.domain .domain_video {
    padding: 80px 0px;
}
.domain .domain_item .iconfont{
    font-size: 50px;
}
.domain .domain_video_title{
    position: absolute;
    bottom: 0;
    z-index: 5;
    left: 0;
    right: 0;
    padding: 5px 10px;
    background-color: rgba(0, 0, 0, 0.7);
}
.domain .domain_flow_item{
    text-align: center;
    position: relative;
}
.domain .domain_flow_item .iconfont{
    font-size: 40px;
    color: #fff;
}
.domain .domain_flow_item p{
    color: #a9a9a9;
}
.domain .domain_flow_itemtop{
    padding-bottom: 15px;
}
.domain .domain_flow_itemtop::after{
    content: '';
    position: absolute;
    display: block;
    background-color: #fff;
    width: 8px;
    height: 8px;
    left: 50%;
    bottom: -4px;
    transform: translateX(-50%);
    border-radius: 50%;
}
.domain .domain_flow_itembottom{
    padding-top: 15px;
}
.domain .domain_flow_itembottom::after{
    content: '';
    position: absolute;
    display: block;
    background-color: #fff;
    width: 8px;
    height: 8px;
    left: 50%;
    top: -4px;
    transform: translateX(-50%);
    border-radius: 50%;
}
.domain .domain_content{
    max-width: 750px;
    margin: 0 auto;
}
@media (max-width:768px) {
    .domain .domain_title>h3{
        font-size: 20px;
        margin-bottom: 5px;
    }
    .domain .domain_content{
        font-size: 12px;
    }
    .domain .domain_flow_itemtop,
    .domain .domain_flow_itembottom{
        padding-top: 0;
        padding-bottom: 0;
    }
    .domain .domain_flow_itemtop::after,
    .domain .domain_flow_itembottom::after{
        display: none;
    }
    .domain .domain_flow_item .iconfont,
    .domain .domain_item .iconfont{
        font-size: 28px;
    }
    .domain .domain_flow_item p,
    .domain .domain_item p{
        font-size: 12px;
    }
    .domain_flow .navigation_title{
        font-size: 20px;
    }
    .domain_flow p{
        font-size: 14px;
    }
    .domain_flow .navigation{
        margin-bottom: 15px;
    }
}

.article .article_content img{
    display: block;
    max-width: 100%;
    margin: 5px auto!important;
    border-radius: 5px;
}
.article .article_content .article_content_video{
    max-width: 800px;
    width: 100%;
    border-radius: 4px;
    overflow: hidden;
    margin: 0 auto;
}

.contact .contact_txt{
    color: #b6b6b6;
    font-size: 16px;
}