body,html{
    width: 100%;
    height: 100%;
    color: #333;
    background-color: #fafafa;
    font-size: 16px;
    min-width: 1200px;
}
*{
    margin: 0;
    padding: 0;
    font-family: '微软雅黑';
    box-sizing: border-box;
}
a{
    color: inherit;
    text-decoration: none;
    cursor: pointer;
}
a.hoverstyle:hover{
    color: #1e67ca!important;
    text-decoration: underline;
}
ul,li{
    list-style:none
}
li{
    cursor: pointer;
}
.auto{
    width: 1200px;
    margin: 0 auto;
}
i{
    font-style:inherit
}
b{
    font-weight: normal;
}
input{
    outline: none;
}
img{
    border: none;
}
.hidden{
    display: none!important;
}
/* header部分 */
.logoBox{
    display: flex;
    align-items: center;
    justify-content: space-between;
    padding: 20px 0;
}
.logoBox>img:nth-of-type(1){
    width: 460px;
}
.logoBox>img:nth-of-type(2){
    width: 380px;
}
header>.barBox{
    width: 100%;
    background-color: #1e67ca;
    color: #fff;
    padding: 20px 0;
    display: flex;
    align-items: center;
}
header>.barBox>.lineBox{
    display: flex;
    align-items: center;
    justify-content: space-between;
}
header>.barBox>.lineBox span{
    padding-right: 55px;
    box-sizing: border-box;
}
header>.barBox i{
    font-size: 18px!important;
    margin-right: 3px;    
    position: relative;
    top: 1px;
}
header>.barBox .searchAllBox{
    display: flex;
    align-items: center;
}
header>.barBox .searchAllBox td:nth-of-type(1) input{
    background-color: transparent;
    outline: none;
    border: 1px solid #fff;
    color: #fff;
    padding: 6px 10px;
    border-radius: 4px 0 0 4px;
    width: 200px!important;
    height: 34px;
}
header>.barBox .searchAllBox td:nth-of-type(1) input::placeholder{
    color: #fff;
}
header>.barBox .searchAllBox td:nth-of-type(2) input{
    font-size: 15px!important;
    background-color: #ffa11b;
    border-radius: 0 4px 4px 0;
    display: flex;
    align-items: center;
    justify-content: center;
    padding: 6px 6px;
    box-sizing: border-box;
    cursor: pointer;
    outline: none;
    background-size: 100% 100%;  
    width: 88px;
    height: 35px;
    background-size: 108% 108%;
    border: none;
    background-position-x: 62%;
    background-position-y: 50%;
    border-radius: 0;
}
/* footer部分 */
footer{
    background-color: #333;
    color: #fff;
    display: flex;
    flex-direction: column;
    align-items: center;
    font-size: 14px;
    padding: 30px 20px;
    min-width: 1200px;
}
footer>div{
    display: flex;
    border-bottom: 1px solid #999;
    padding-bottom: 10px;
    margin-bottom: 10px;
}
footer>div a{
    padding: 0 14px;
}
footer>div a:hover{
    text-decoration: underline;
}
footer p{
    color: #999;
}
footer p span{
    margin: 0 6px;
}
footer>div>div span:hover {
    border-bottom: 1px solid #fff!important;
}
footer>div>div:nth-last-of-type(1) select{
    width: 100px;
    background-color: #333;
    color: #fff;
    border: none;
    outline: none;
    cursor: pointer;
}
footer>div>div:nth-last-of-type(1) select:hover {
    text-decoration: underline;
}