/*--------------
===页面通用样式设置===
---------------*/
body, p, span, h1, h2, h3, h4, h5, h6, button {
    margin: 0;
    padding: 0;
}

ul, li {
    list-style: none;
    margin: 0;
    padding: 0;
}

i {
    font-style: normal;
}

* {
    -webkit-box-sizing: border-box;
    -moz-box-sizing: border-box;
    box-sizing: border-box;
}

body {
    font-family: "Microsoft YaHei";
    font-size: 15px;
}

a {
    text-decoration: none;
    font-family: "Microsoft YaHei";
    padding: 0;
    margin: 0;
}

a:hover {
    color: #1A58B0;
    text-decoration: none;
}

a.com:link, a.com:visited, a.com:active {
    text-decoration: none;
    font-family: "Microsoft YaHei";
    color: #333333;
    font-size: 14px;
}

a.com:hover {
    color: #111111;
    text-decoration: none;
}

a.title:link, a.title:visited, a.title:active {
    display: inline-block;
    width: 120px;
    height: 35px;
    border-radius: 18px;
    text-decoration: none;
    font-family: "Microsoft YaHei";
    color: #fff;
    font-size: 16px;
}

a.title:hover {
    color: #fff;
    background-color: #188ffa;
    text-decoration: none;
}

a.appendix:link, a.appendix:visited, a.appendix:active {
    text-decoration: none;
    font-family: "Microsoft YaHei";
    color: #1A58B0;
    font-size: 14px;
}

a.appendix:hover {
    color: #1A58B0;
}

/* ==========
   工具样式
   ========== */
.center-block {
    display: block;
    margin-right: auto;
    margin-left: auto;
}

.pull-right {
    float: right !important;
}

.pull-left {
    float: left !important;
}

.text-right {
    text-align: right !important;
}

.text-left {
    text-align: left !important;
}

.text-center {
    text-align: center !important;
}

.hide {
    display: none !important;
}

.show {
    display: block !important;
}

.invisible {
    visibility: hidden;
}

.text-hide {
    font: 0/0 a;
    color: transparent;
    text-shadow: none;
    background-color: transparent;
    border: 0;
}

.clearfix:before,
.clearfix:after {
    content: " ";
    display: table;
}

.clearfix:after {
    clear: both;
}

.margin10 {
    margin-top: 10px;
}

.margin20 {
    margin-top: 20px;
}

.hr_10 {
    box-sizing: content-box;
    height: 10px;
    overflow: visible;
}

/*===============首页==================*/
.wrap{
    background-color: #f5f5f5;
}
.head img{
    display: block;
}
.container{
    width: 1000px;
    margin: 0 auto;
}

.yjs-nav{
    width: 1050px;
    overflow: hidden;
    margin-top: 25px;
}
.yjs-nav li{
    width: 235px;
    height: 50px;
    line-height: 50px;
    font-size: 18px;
    text-align: center;
    float: left;
    margin-right: 20px;
    background-color: #cdcdcd;
}
.yjs-nav li a{
    display: block;
    position: relative;
    color: #333;

}
.yjs-nav li a::before{
    content: "";
    display: none;
    position: absolute;
    top: 34px;
    left: 109px;
    border: 8px solid #0579CC;
    border-bottom-color: #fff;
    transition: all .3s ease;
    -webkit-transition: all .3s ease;
}
.yjs-nav li a.active{
    background-color: #0579CC;
    color: #fff;
}
.yjs-nav li a.active::before{
    display: block;
    transition: all .3s ease;
    -webkit-transition: all .3s ease;
}
.yjs-box{
    margin-top: 25px;
    background-color: #fff;
    padding: 15px;
}
.yjs-box li{
    line-height: 40px;
    font-size: 16px;
    text-indent: 7px;
}
.yjs-box li a{
    display: block;
    color: #555;
    transition: all .3s ease;
    -webkit-transition: all .3s ease;
}
.yjs-box li a:hover{
    background-color: #cae8fe;
    color: #0579CC;
}
.yjs-box li span{
    float: right;
    width: 100px;
    color: #767676;
    text-indent: 0;
    text-align: center;
}
.line{
    border-bottom: 1px dotted #ccc;
    height: 16px;
    margin-bottom: 12px;
}
.more{
    text-align: right;
}
.yjs-box li.more a{
    display: inline-block;
    width: 120px;
    text-align: center;
    border:1px solid #0579CC;
}
.yjs-box li.more a:hover{
    background-color: #0579CC;
    color:#fff;
}