*{
    padding:0;
    margin:0;
    font-family: '宋体' !important;
    font-size:1rem;
}
ul,ol,menu{
    list-style-type: none;
}
a{
    text-decoration: none;
    color:#000;
}
img{
    border:none;
}
.row{
    display:flex;
    flex-wrap: nowrap;
    flex-direction: row;
    justify-content: center;
}

.rowstart{
    display:flex;
    flex-wrap: nowrap;
    flex-direction: row;
    justify-content: flex-start;
}
.rowbetween{
    display:flex;
    flex-wrap: nowrap;
    flex-direction: row;
    justify-content: space-between;
}
.rowend{
    display:flex;
    flex-wrap: nowrap;
    flex-direction: row;
    justify-content:flex-end;
    /*margin-left: -95px;*/
}
.rowaround{
    display:flex;
    flex-wrap: nowrap;
    flex-direction: row;
    justify-content:space-around;
}
.column{
    display:flex;
    flex-wrap: nowrap;
    flex-direction: column;
    justify-content: center;
}
.columnstart{
    display:flex;
    flex-direction: column;
    flex-wrap: nowrap;
    justify-content: flex-start;
}
.ele{
    overflow: hidden;
    white-space: nowrap;
    text-overflow: ellipsis;
}
/* header   begin */
.header{
    padding-top:1%;
    align-items: center;
    background:url(../imgs/bg.jpg) top left no-repeat;
    background-size:100% 100%;
}
.logo img{
      /* width:100%; */
      height:auto;
}
.searchs{
    border:1px solid #b5b5b5;
    border-radius: 1rem;  
    height: 2rem;
    line-height: 2rem; 
    background-color:#fff;
    padding:1% 1% 1% 4%;
}
.searchs-inputs{
    border:0;
    background:transparent;
    outline:none;
    /* padding:1% 1% 1% 4%; */
    box-sizing: border-box;
    color:#b5b5b5;
}
.searchs-submits{
    border:0;
    /* background:#005cb7; */
    outline:none;
    /* color:#fff;
    border-radius:1rem; */
    padding:1%;
    box-sizing: border-box;
    background:url('../imgs/search.png') center no-repeat;
    background-size:100% 100%;
    width:2rem;
    height:2rem;
   
}
.nav{
    /*background:#eee;*/
    margin-top:1%;
    border-top:1px solid #000;
}
.navdiv{    
    flex-grow: 1;
    position: relative;
    align-items: center;
}
.navdiva{
   font-size:1rem;
   padding:6% 0%; 
   flex-grow: 1; 
}
/* .navdiv{
    border-left:1px solid #fff;
}
.navdiv:last-child{
    border-right:1px solid #fff;
} */
.navdiva:hover,.nav-hover .navdiva>a{
    border-bottom: 1px solid #C01818;
}
.navdivlist{
    position: absolute;
    z-index: 1000;
    top:100%;
    flex-grow: 1; 
    display: none;
    width: 200%
}
.navdivlist a{
    flex-grow: 1; 
    background-color:#C01818;
    border-top:1px solid #fff;
    padding:10% 0;
    color:#fff;
}

