html,body,ol,ul,h1,h2,h3,h4,h5,h6,p,th,td,dl,dd,form,fieldset,legend,input,textarea,select{margin:0;padding:0}
a,a:active,a:link{text-decoration:none;color: #333;}
a:hover{text-decoration:none}
em{font-style:normal}
li{list-style:none}
img{border:0;vertical-align:middle}
table{border-collapse:collapse;border-spacing:0}
p{word-wrap:break-word}

::-webkit-scrollbar{width:0px}

html{
    width:100%;
    height:100%;
}
body {
    width:100%;
    height: 100%;
    overflow-x: hidden;
    margin: 0 auto;
    position: relative;
    box-sizing: border-box;
    -webkit-text-size-adjust:100%;
    font-family: 'STHeiti', 'Microsoft YaHei', Helvetica, Arial, sans-serif;
    color:#333;
    letter-spacing: 1px;
}
p,a{
    font-size: 14px;
}


.btn{
    background-color:white;
    border:none;
    border-radius: 3px;
    padding: 6px 8px;
}
input,textarea{
    border: none;
    padding: 5px 10px;
    border-radius: 3px;
}
.container{
    width: 1160px;
    min-height: 100%;
    box-sizing: border-box;
    font-size: 14px;
    margin: 0 auto;
}

.hide{
    display: none;
}


/*fix 头部 */
.head_fix{
    position: fixed;
    top:0;
    width:1160px;
    height: 55px;
    z-index: 99999;
    background: #f30;
}
.bodycontent {
    margin-top: 55px;
    padding-top: 10px;

}

/*header css*/
.header{
    width: 100%;
    height:66px;
    display: flex;
    justify-content: space-between;
    align-items: center;
    box-sizing: border-box;
    padding: 5px 20px;
    overflow: hidden;
    background-color: #000000;
    color: white;
    position: relative;
}
.header>.logo{
    height: 100%;
    box-sizing: border-box;
    padding:5px;
}
.header>.logo>img{
    width:auto;
    height: 100%;
}
.header>.menu{
    flex:1;
    height: 100%;
    padding: 0px 10px;
}
.header>.menu ul{
    width:100%;
    height: 100%;
    box-sizing: border-box;
    display: flex;
    justify-content: center;
    align-items: center;
}
.header>.menu>ul>li{
    position: relative;
}
.header>.menu ul>li>a{
    display: inline-block;
    color: white;
    padding: 10px 20px;
    font-size: 16px;
    position: relative;
    z-index: 1;
}
.header>.menu ul>li>.slect-triangle{
    position: absolute;
    z-index: 2;
    bottom: -7px;
    left: 43%;
    display: block;
    height: 0;
    width: 0;
    border-left: 9px solid transparent;
    border-right: 9px solid transparent;
    border-bottom: 11px solid white;
    opacity: 0;
}
.header>.menu ul>li.active>a{
    color: #df0554;
}
.header>.menu ul>li.active>.slect-triangle{
    opacity:1;
}
.header>.menu>ul>li:hover a{
    color: #df0554;
}
.header>.menu>ul>li:hover span{
    color: #df0554;

    animation: menu-active 0.1s;
    -moz-animation: menu-active 0.1s;
    -webkit-animation: menu-active 0.1s;
    -o-animation: menu-active 0.1s;
    opacity: 1;
}

@keyframes menu-active
{
    0%   {opacity: 1}
}

@-moz-keyframes menu-active /* Firefox */
{
    0%   {opacity: 1}
}

@-webkit-keyframes menu-active /* Safari 和 Chrome */
{
    0%   {opacity: 1}
}

@-o-keyframes menu-active /* Opera */
{
    0%   {opacity: 1}
}

.header>.search{

}
.header>.search>form{
    display: flex;
    align-items: center;
    height: 100%;
}
.header>.search>form>.search-text{
    width:150px;
    height: 30px;
}
.header>.search>form>.search-text>input{
    width: 100%;
    height:100%;
    border-top-right-radius: 0px;
    border-bottom-right-radius: 0px;
}
.header>.search>form>.search-btn{
    height: 30px;
}
.header>.search>form>.search-btn>.btn{
    height:100%;
    min-width: 40px;
    border-top-left-radius: 0px;
    border-bottom-left-radius: 0px;
    cursor: pointer;
    background-color: #df0554;
}
.header>.search>form>.search-btn>.btn>img{
    height:100%;
}



/*footer*/
.footer{
    margin-top: 30px;
    background-color: #000000;
}
.footer>.menu{
    display: flex;
    align-items: center;
    border-top:1px solid #393A3C;
    border-bottom:1px solid #393A3C;
    padding:10px;
}
.footer>.menu>a{
    padding: 0px 15px;
    color: white;
    font-size: 14px;
    border-right: 1px solid white;
}
.footer>.menu>a:hover{
    color: #df0554;
}
.footer>.menu>a:first-child{
    padding-left:0 ;
}
.footer>.menu>a:last-child{
    border-right: none;
}
.footer>.info{
    padding: 20px 15px 50px;
    display: flex;
    justify-content: space-between;
    align-items: center;
}
.footer>.info>.text{

}
.footer>.info>.text>p{
    color: #999;
    padding: 7px 0px;
    letter-spacing: 0;
    position: relative;
}
.footer>.info>.text>p>.beiantubiao {
    width: 19px;
    position: relative;
    top: -3px;
    margin-left: 10px;
}
.footer>.info>.logo{

}
.footer>.info>.logo>img{

}