@charset "utf-8";
.flex{
    display: flex;
    flex-wrap: wrap;
    justify-content: space-between;
    align-items: center;
}
.img{
    position: relative;
    width: 100%;
    overflow: hidden;
}
.img p{
    width: 100%;
    height: 100%;
    position: absolute;
    left: 0;
    top: 0;
    background-position: center;
    background-size: cover;
    background-repeat: no-repeat;
    transition: all 0.3s;
}
a:hover .img p{
    transform: scale(1.08);
}
header{
    width: 100%;
    height: auto;
    box-sizing: border-box;
    z-index: 999;
    animation: 0.8s ease .3s 1 normal backwards running fadeInDown;
    background: url(../img/topBg.png) no-repeat center;
    background-size: cover;
}
header .logo a,header .logo img{
    display: block;
    width: auto;
    height: auto;
}
header .w1400{
    padding: 0.5rem 0;
    position: relative;
}
header .img{
    width: auto;
    height: 100%;
    position: absolute;
    right: 0px;
    bottom: 0;
}
header .img img{
    display: block;
    width: auto;
    height: auto;
    max-height: 100%;
}
nav {
    width: 100%;
    height: auto;
    background: #9b2b2e;
    animation: 0.8s ease .3s 1 normal backwards running fadeInUp;
}
nav ul.clearfix>li{
    float: left;
    position: relative;
    margin-right: 0.42rem;
}
nav ul.clearfix>li:last-of-type{
    margin-right: 0;
}
nav ul.clearfix>li>a{
    display: block;
    font-size: 0.2rem;
    font-weight: bold;
    line-height: 0.6rem;
    letter-spacing: 0em;
    color: #ffffff;
    white-space: nowrap;
    text-align: center;
    padding: 0 0.1rem;
}
nav ul.clearfix>li>a:hover{
    color: #fcc551;
}
nav ul>li ol .tri {
    position: absolute;
    top: auto;
    right: auto;
    bottom: 100%;
    left: 0%;
    z-index: 1;
    width: 100%;
    height: 10px;
    overflow: hidden;
}
nav ul>li ol .tri::after {
    display: block;
    content: "";
    box-sizing: border-box;
    width: 0.24rem;
    height: 0.24rem;
    margin: 0 auto;
    background: #ffffff;
    -webkit-transform: translate(0px, 0.06rem) rotate(45deg);
    -moz-transform: translate(0px, 0.06rem) rotate(45deg);
    -ms-transform: translate(0px, 0.06rem) rotate(45deg);
    -o-transform: translate(0px, 0.06rem) rotate(45deg);
    transform: translate(0px, 0.06rem) rotate(45deg);
    box-shadow: 0 0 3px 0 rgba(0, 0, 0, 0.3);
}
nav ul.clearfix>li ol{
    display: none;
    position: absolute;
    width: 130%;
    height: auto;
    z-index: 99;
    left: -15%;
    top: 100%;
    box-shadow: 0 0px 0.07rem 0px rgba(0, 0, 0, 0.15);
    -webkit-box-shadow: 0 0px 0.07rem 0px rgba(0, 0, 0, 0.15);
    -moz-box-shadow:  0 0px 0.07rem 0px rgba(0, 0, 0, 0.15);
    background: #fff;
    box-sizing: border-box;
    padding: 0.1rem 0;
}
nav ul.clearfix>li:hover ol {
    display: block;
    animation: flipInY .8s;
    -ms-animation: flipInY .8s;
}
nav ul.clearfix>li ol li a{
    display: block;
    width: 100%;
    font-size: 0.16rem;
    color: #333;
    text-align: center;
    line-height: 0.26rem;
    padding: 0.1rem 0.05rem;
    box-sizing: border-box;
}
nav ul.clearfix>li ol li a:hover{
    color: #9b2b2e;
    font-weight:bold;
}
.searchSub{
    width: 2.06rem;
    height: 0.34rem;
    position: relative;
    border-radius: 0.17rem;
    overflow: hidden;
    margin-top: 0.13rem;
    background: #fff;
}
.searchSub .text{
    display: block;
    float: left;
    width: calc(100% - 0.3rem);
    height: 0.34rem;
    background: transparent;
    border: none;
    font-size: 0.15rem;
    line-height: 0.34rem;
    color: #333;
    padding: 0 0.1rem;
    box-sizing: border-box;
}
.searchSub .submit{
    display: block;
    float: left;
    width: 0.34rem;
    height: 0.34rem;
    background: transparent url(../img/search.png) no-repeat left center;
    border: none;
    box-sizing: border-box;
    position: absolute;
    right: 0;
    top: 0;
}
footer{
    background: #8c0000;
    padding: 0.3rem 0 0.1rem;
}
.footSub {
    width: calc(100% - 1.9rem);
}
.footSub .yqlj{
    display: flex;
    flex-wrap: wrap;
    justify-content: flex-start;
    align-items: center;
    padding-bottom: 0.2rem;
    margin-bottom: 0.2rem;
    border-bottom: 1px solid rgba(255, 255, 255, 0.2);
}
.footSub .yqlj h2{
    font-size: 0.18rem;
    line-height: 0.3rem;
    color: #fff;
    font-weight: bold;
}
.footSub .yqlj a{
    display: block;
    font-size: 0.16rem;
    line-height: 0.3rem;
    color: #fff;
    margin-left: 0.35rem;
}
.footSub .yqlj a:hover{
    color: #fcc551;
}
.footSub .bq{
    font-size: 0.15rem;
    line-height: 0.26rem;
    color: #fff;
}
.code p img{
    display: block;
    width: 0.9rem;
    height: auto;
}
.code p span{
    display: block;
    font-size: 0.15rem;
    line-height: 1;
    margin-top: 0.1rem;
    color: #fff;
    text-align: center;
}
/* 移动端导航 */
.header_m{
    display: none;
}