body {
    margin: 0 auto;
    color: #000;
    font-family: MicrosoftYaHeiLight;
	font-weight: normal;
	font-stretch: normal;
	line-height: 2rem;
	letter-spacing: 0rem;
}

/* 导航部分css设置 */
.nav{
    margin-top: 31px;
    margin-bottom: 31px;
}
.navbar-default {
    border-color: #fff;
    background-color: #fff;
    /* margin-top: 15px; */
}

.navbar-right {
    margin-top: 20px;
    font-size: 16px;
}

.navbar-default .navbar-nav>li>a:hover,
.navbar-default .navbar-nav>.active>a:hover,
.navbar-default .navbar-nav>.active>a {
    background-color: #4082f4;
    border-radius: 13px;
    color: #fff;
}

.navbar-default .navbar-nav>li>a {
    color: #000;
}

/* 各部分标题下划线样式设置 */
.text-with-hr {
    text-align: center;
    position: relative;
    z-index: 2;
}

/*
横线，并通过z-index：-1将or附近的横线遮盖住
*/
.text-with-hr:before {
    position: absolute;
    content: '';
    top: 20px;
    left: 0px;
    width: 100%;
    border-bottom: 1px solid #d4d4d4;
    z-index: -1;
}

.text-with-hr span {
    width: 32%;
    display: inline-block;
    background: white;
    color: #3a3a3a;
    height: 50px;
    font-size: 3rem;
    line-height: 33px;
}
.text-with-hr .splitLineLeft{
    margin-top: -7px;
    margin-right: -4px;
}
.text-with-hr .splitLineRight{
    margin-top: -7px;
    margin-left: -4px;
}
/* 网站底部 */
.foot {
    text-align: center;
    margin-top: -30px;
    background-color: #000;
    color: #fff;
}
.foot a{
    color: #fff
}
.foot a:hover{
    text-decoration: none;
    color:#4082f4
}