/* 初始化代码,单独文件 */

body,
div,
span,
p,
a,
input,
img,
ul,
li,
h1,
h2,
h3,
h4,
h5,
strong,
em,
del,
ins,
i,
dl,
dt,
dd {
    margin: 0;
    padding: 0;
}

li {
    list-style: none;
}

a {
    text-decoration: none;
    color: #000;
}

img {
    border: none;
    vertical-align: middle;
}

input {
    border: none;
    outline: none;
}

h1,
h2,
h3,
h4,
h5 {
    font-weight: normal; 'Source Han Serif'
}

i {
    font-style: normal;
}

body {
    font-family: 'Source Han Serif'
}

.clearfix::after {
    content: ".";
    display: block;
    clear: both;
    height: 0;
    visibility: hidden;
}

.clearfix {
    *zoom: 1;
}

.w {
    width: 1200px;
    margin: 0 auto;
}

/* 公共代码 */

/* 导航栏部分 */
.navigationBox {
    width: 100%;
    height: 60px;
    display: flex;
    justify-content: center;
    align-items: Center;
    border-bottom: 1px solid #bdbdbd;
}

.navigationBox li {
    font-size: 16px;
    color: #222222;
    line-height: 18px;
    height: 18px;
    float: left;
    width: 8em;
    text-align: center;
    cursor: pointer;
}

/* 选中的加这个样式 */
.navigationBox .liClcik {
    color: #fff;
    background-color: #465c91;
    border-radius: 24px;
    padding: 9px 14px;
}

.bjBox {
    height: 200px;
    width: 100%;
    background-size: 100%;
    position: relative;
    background-position: center;
    background-size: cover;
}

.bjBox .bjTitle {
    position: absolute;
    text-align: center;
    left: 50%;
    top: 50%;
    font-size: 40px;
    color: #fff;
    transform: translate(-50%, -50%);
}

/* 副导航栏部分 */
.subsidiaryBox {
    width: 100%;
    height: 75px;
    display: flex;
    justify-content: center;
    align-items: Center;
    background: #f8f8f8;
    border-bottom: 1px solid #bdbdbd;
    min-width: 1430px;
}

.subsidiaryBox li {
    font-size: 16px;
    color: #222222;
    line-height: 18px;
    height: 18px;
    float: left;
    width: 11em;
    text-align: center;

}

.subsidiaryBox li a {
    padding: 9px 14px;
}

.subsidiaryBox li a.active {
    border-bottom: 2px solid #465b8e;
}
.subsidiaryTilte-Class {
    padding: 9px 14px;
    background-color: #465c91;
    border-radius: 24px;
    color: #ffff;
}

.fixed {
    margin-top: 0;
    position: fixed;
    width: 100%;
    z-index: 1111;
    top: 0;

}

.msgBox {
    text-align: center;
    position: fixed;
    top: -5%;
    width: 100%;
    font-size: 20px;
    transition: all .5s ease;
    opacity: 0;
}

.msg1 {
    width: 20%;
    padding: 20px 0;
    color: #67c23a;
    border: 1px solid #67c23a;
    background: #f0f9eb;
    border-radius: 4px;
    display: inline-block;
    display: none;
}

.msg2 {
    width: 20%;
    padding: 20px 0;
    color: #f56c6c;
    border: 1px solid #f56c6c;
    background: #fef0f0;
    border-radius: 4px;
    display: inline-block;
    display: none;
}

.msg3 {
    width: 20%;
    padding: 20px 0;
    color: #e6a23c;
    border: 1px solid #fdf6ec;
    background: #faecd8;
    border-radius: 4px;
    display: inline-block;
    display: none;
}

/* 定位锚点 */
.target-fix {
    overflow: hidden;
    position: relative;
    height: 0;
    top:-50px;
}
.userHide{
    display: none;
}