.header{
    background-color: #FFFFFF;
    height: 115px;
}
.header-container{
    width: 1200px;
    margin: 0 auto;
    height: 100%;
    display: flex;
    align-items: center;
    justify-content: space-between;
    box-sizing: border-box;
}
.header-container .header-left{
}
.header-container .header-right{
    display: flex;
    align-items: center;
    box-sizing: border-box;
    position: relative;
}
.header-container .header-right img{
    position: absolute;
    left: 12px;
}
.header-container .header-right input{
    width: 360px;
    padding: 0 75px 0 33px;
    margin: 0;
    height: 38px;
    line-height: 38px;
    border: 1px solid #DDDDDD;
    border-radius: 50px;
}
.header-container .header-right input:focus{
    outline: none;
    border: 1px solid #D3323C;
}
.header-container .header-right .header-right-btn{
    position: absolute;
    background-color: #D3323C;
    border-radius: 50px;
    right: 0;
    width: 75px;
    line-height: 38px;
    color: #FFFFFF;
    text-align: center;
    height: 100%;
    cursor: pointer;
}