/* body style */
body {
    background: url(../images/home/bg.png) 0 0 no-repeat #EDF4F5;
}
/* header style */
header {
    width: 1250px;
    margin: 0 auto 20px;
    z-index: 999;
}
header>.title-bar {
	display:flex;
	align-items:center;
	justify-content:space-around;
    padding: 20px 0;
}
header>.navbar {
    display: flex;
    justify-content: space-around;
    align-items: center;
    text-align: center;
    transition: all .3s ease-in-out;
}
header>.navbar>a {
    width: 160px;
    height: 66px;
    background: url(../images/home/btn-bg.png) 0 0 no-repeat;
    border-style: none;
    cursor: pointer;
    color: #fafafa;
    font-size: 17px;
    font-weight: 800;
    line-height: 66px;
    text-decoration: none;
}
header>.fixedTop {
    position: fixed;
    width: 100%;
    top: 0;
    left: 0;
    background-color: rgba(193, 193, 193, 0.8);
    padding: 10px 0;
    z-index: 999;
    justify-content: center;
}
header>.fixedTop>a {
    background-image: none;
    background-color: #3068BB;
    width: 100px;
    height: 40px;
    font-size: 15px;
    line-height: 40px;
    margin-right: 20px;
}
header>.m-navbar {
    display: none;
    background-color: #1568C4;
    text-align: center;
    font-weight: 800;
    color: #fafafa;
    line-height: 40px;
}
header>.m-navbar>button {
    position: relative;
    float: right;
    width: 25px;
    height: 25px;
    background-color: transparent;
    background-image: url(../images/common/burger-bar.png);
    border: none;
    outline: none;
    top: 8px;
    right: 10px;
}
header>.m-navbar>.m-navList {
    background-color: #263C92;
    height: 0;
    overflow: hidden;
    transition: all .3s ease-in-out;
}
header>.m-navbar>.m-navList-acitve {
    height: 280px;
}
header>.m-navbar>.m-navList>li>a {
    color: #fafafa;
    font-weight: normal;
}
/* content style */
.wrapper{
    width: 1250px;
    margin: 0 auto;
    overflow: hidden;
}
/* footer style */
footer {
    background-color: #263C92;
    text-align: center;
    color: #fafafa;
    min-width: 1250px;
}
footer p {
    max-width: 1000px;
    margin: 0 auto;
    padding: 30px 0;
    line-height: 35px;
}