* {
    padding: 0;
    margin: 0;
    box-sizing: border-box;
}
a {
    text-decoration: none;
    color: #333;
}
a:focus, a:hover {
    text-decoration: none !important;
}
.header::before,.header::after {
    content: '';
    clear: both;
    display: table;
}
/* nav */
.header {
    max-width: 1200px;
    position: relative;
    margin: 0 auto;
    font-size: 20px;
    color: #333;
}

.logo {
    width: 60px;
    position: absolute;
    top: 50%;
    transform: translateY(-50%);
    -webkit-transform: translateY(-50%);
}

.header ul {
    padding: 40px 0px;
    float: right;
    list-style: none;
}
.header ul li {
    float: left;
    margin-left: 55px;
}
.active {
    color: #88cf90;
    border-bottom: 2px solid #88cf90;
}
/*bottom*/
.bottom {
    width: 100%;
    background: url('../imgs/bottom_bg.jpg');
    color: #fff;
    font-size: 16px;
    line-height: 50px;
    overflow: hidden;    
}
.bottom p {
    margin: 0;
    line-height: 2;
}
.bottom-box {
    margin: 60px 360px;
}
.bottom-box a {
    color: #fff;
    margin-left: 20px;
}
.xuke {
    width: 60px;
    margin-left: 38px;
}
.beian {
    width: 18px;
}
.leftM {
    margin-left: 72px;
}
.links {
    display: flex;
}
a:focus, a:hover {
    text-decoration: underline;
}
.hit-info.hit-info-title {
    margin-top: 10px;
    font-size: 12px;
    overflow: hidden;/*超出部分隐藏*/
    white-space: nowrap;/*不换行*/
    text-overflow:ellipsis;/*超出部分文字以...显示*/
    position: relative;
    padding-left: 18px;
}
.hit-info-title::before {
    content: '';
    position: absolute;
    left: 6px;
    top: 50%;
    transform: translateY(-50%);
    width: 5px;
    height: 5px;
    border-radius: 50%;
    background-color: black;
  }