@charset "utf-8";
/* CSS Document */

* {
    padding: 0;
    margin: 0;
    border: 0;
}

body {
    font-family: "微软雅黑";
    font-size: 14px;
    color: #595c5b;
}

ul li {
    list-style: none;
}

a {
    text-decoration: none;
    color: #828282;
}

a:hover,
a:visited,
a:focus {
    text-decoration: none;
}

a:hover {
    color: #B10C06;
}

p,
ul {
    margin: 0;
}

.clearfix:after {
    content: "";
    display: block;
    height: 0;
    clear: both;
    visibility: hidden;
}

.clearfix {
    width: 100%;
    display: flex;
    justify-content: space-between;
    zoom: 1;
}

.width-hidden {
    display: none;
}

.col-md-3,
.col-sm-3,
.col-xs-12,
.col-md-4,
.col-md-6,
.col-md-12,
.col-sm-6,
.col-xs-12,
.col-sm-12 {
    padding: 0;
}

/*头部*/

.container {
    padding: 0;
}

/*样式开始*/

.header {
    position: fixed;
    left: 0;
    top: 0;
    width: 100%;
    z-index: 999;
    -webkit-transition: all .3s;
    transition: all .3s;
    background: -webkit-linear-gradient(#8b1415, rgba(177, 12, 6, 0.0));
    background: -o-linear-gradient(#8b1415, rgba(177, 12, 6, 0.0));
    background: -moz-linear-gradient(#8b1415, rgba(177, 12, 6, 0.0));
    background: linear-gradient(#8b1415, rgba(177, 12, 6, 0.0));
    background-size: cover !important;
    padding-bottom: 48px;
}

.header-top {
    margin: 0 auto;
    width: 1440px;
    margin-bottom: 12px;
}

.header.on {
    background: rgba(177, 12, 6, 0.85);
    box-shadow: 0 0 10px rgb(103 103 103 / 79%);
    padding-bottom: 0;
}


.header .container {
    width: 100%;
    margin: 0 auto;
    position: relative;
}


/* logo */

.logo {
    display: block;
    width: 98%;
    float: left;
    margin: 15px 0;
    -webkit-transition: all .3s;
    transition: all .3s;
}

.logo img {
    width: 100% !important;
    min-width: 600px;
}

.on .logo {
    margin: 12px 0 10px;
}

.on .logo img {
    width: 90% !important;
    min-width: 400px;
}

.navbar-toggle {
    position: absolute;
    top: 8px;
    right: 0;
    display: none;
    width: 24px;
    height: 19px;
    -webkit-transition: all .3s ease-out 0s;
    -moz-transition: all .3s ease-out 0s;
    -ms-transition: all .3s ease-out 0s;
    -o-transition: all .3s ease-out 0s;
    transition: all .3s ease-out 0s;
    padding: 0;
    margin-right: 10px;
    margin-top: 15px;
    margin-bottom: 0;
}


.navbar-toggle .icon-bar {
    -webkit-transition: all .3s ease-out 0s;
    -moz-transition: all .3s ease-out 0s;
    -ms-transition: all .3s ease-out 0s;
    -o-transition: all .3s ease-out 0s;
    transition: all .3s ease-out 0s;
    background: #fff;
    width: 100%;
    height: 3px;
    border-radius: 0;
}


/* 轮播图 */

.body_home {
    background: #fff;
    height: 100vh;
    overflow: hidden;
}

.body_home .banner {
    height: 100%;
}

.body_home .sliderContainer.fullWidth.clearfix {
    height: 100%;
}

#full-width-sliderx {
    min-width: 100% !important;
    width: auto !important;
    height: 100% !important;
    color: #000;
}

.rsContainer {
    display: flex;
}


/*导航*/

.nav {
    margin: 0 auto;
    width: 1440px;
    position: relative;
}

.nav ul li {
    margin: 0 auto;
    float: left;
    margin-left: 0.5%;
    min-width: 90px;
    position: relative;
    text-align: center;
}


.nav ul li a {
    display: inline-block;
    width: auto;
    font-size: 22px;
    color: #fff;
    font-weight: bold;
    margin: 0 auto;
    padding-bottom: 40px;
    position: relative;
    transition: .36s;
}


.header.on .nav ul li a {
    padding-bottom: 22px;

}


.nav ul li:hover a {
    color: #f3b26e;
}


/* .nav ul li a.dropdown:before {
    content: '';
    position: absolute;
    top: 40px;
    left: 50%;
    transform: translateX(-50%);
    width: 1px;
    height: 0;
    background: #fff;
    transition: all .3s;
} */


.header.on .nav ul li a.dropdown:before {
    top: 36px;
}

/* 
.nav ul li a.dropdown:after {
    content: '';
    position: absolute;
    left: 50%;
    right: 50%;
    bottom: 30px;
    height: 1px;
    background: #fff;
    transition: all .3s;
} */


.header.on .nav ul li a.dropdown:after {
    bottom: 17px;
}


.nav ul li:hover a:after {
    left: 0;
    right: 0;
    transform: scale(1);
}

.nav ul li:hover a:before {
    height: 30px;
    transform: scale(1);
}

.nav ul li .nav_item {
    position: absolute;
    top: 100%;
    background: rgba(255, 255, 255, .95);
    width: 160px;
    left: 50%;
    margin-left: -80px;
    z-index: 10000;
    transform: translateY(20px);
    visibility: hidden;
    filter: alpha(opacity=0);
    -moz-opacity: 0;
    -khtml-opacity: 0;
    opacity: 0;
    transition: .5s;
}

.nav ul li:hover .nav_item {
    filter: alpha(opacity=100);
    -moz-opacity: 1;
    -khtml-opacity: 1;
    opacity: 1;
    visibility: visible;
    transform: translateY(0px);
}

.nav ul li .nav_item li {
    float: none;
    width: 100%;
    text-align: center;
    margin-left: 0;
}

.nav ul li .nav_item li a:before,
.nav ul li .nav_item li a:after {
    display: none;
}

.nav ul li .nav_item li a {
    display: block;
    font-size: 16px;
    color: #666;
    line-height: 1.5;
    padding: 10px 0;
    font-weight: normal;
}


.header.on .nav ul li .nav_item li a {
    padding: 10px 0;
}

.nav ul li .nav_item a:hover {
    color: #fff;
    background: #B10C06;
}





/* 底部链接 */
.bottom-banner {
    width: 100%;
    height: 150px;
    background: -webkit-linear-gradient(to right, #7B0000, #A62C2F, #BE3134);
    background: -o-linear-gradient(to right, #7B0000, #A62C2F, #BE3134);
    background: -moz-linear-gradient(to right, #7B0000, #A62C2F, #BE3134);
    background: linear-gradient(to right, #7B0000, #A62C2F, #BE3134);
    font-size: 14px;
    text-align: center;
    font-family: Roboto;
}

.bottom-banner .box {
    display: flex;
    align-items: center;
    justify-content: space-between;
    margin: 0 auto;
    width: 1440px;
    height: 150px;
    font-size: 19px;
}

.bottom-banner .bottom-logo {
    position: relative;
    width: 800px;
    height: 78px;
}

.bottom-banner .bottom-logo img {
    position: absolute;
    left: 0;
    top: 0;
    z-index: 99;
    width: 1015px;
    height: 90px;
}

.bottom-content {
    margin-right: 100px;
}

.bottom-banner .address {
    display: flex;
    align-items: center;
    line-height: 2;
    color: rgba(255, 255, 255, 1);
    font-size: 16px;
    text-align: left;
}

.bottom-banner .address img {
    margin-right: 12px;
    width: 24px;
    height: 24px;
    padding: 4px;
    text-align: center;
    border: 1px solid rgba(255, 255, 255, 1);
    border-radius: 50%;
}

.top-bc {
    width: 100%;
    height: 502px;
}

.top-bc img {
    width: 100%;
    height: 100%;
}