.tops{
    height: 80px;
    width: 100%;
    background: #002260;
    position: fixed;
    top: 0;
}
body{
    background: #f8fafb;
    padding-top: 70px;
}
.main_wrap{
    margin: 70px 0;
}
.main{
    background: #fff;
    box-shadow: 0px 2px 10px rgba(54, 97, 174, 0.1);
    border-radius: 8px;
    padding: 40px;
}
.main .title{
    font-size: 30px;
    font-weight: bold;
    margin-bottom: 13px;
}
.address{
    color: #666;
    font-size: 14px;
}
.subTitle{
    margin: 40px 0 8px;
    font-weight: bold;
}
.text{
    color: #666;
    font-size: 14px;
    line-height: 32px;
}
.post{
    margin-top: 50px;
    color: #0042af;
}
p strong{
	margin-top: 10px;
	color: #222;
	display: inline-block;
	text-indent: 0;
}
@media screen and (max-width:700px){
    .tops{
        display:none;
    }
    .main_wrap{
        padding: 0;
        margin: 0;
    }
    body{
        padding-top: 50px;
    }
    .main .title{
        font-size: 20px;
    }
}