/* ============================================
   粘性底部 - flexbox 方案
   内容少时 footer 吸附底部，内容多时跟随页面
   ============================================ */
html, body {
    height: 100%;
    margin: 0;
}

body {
    display: flex;
    flex-direction: column;
    min-height: 100vh;
}

.main-content {
    flex: 1 0 auto;
}

/* ============================================
   页脚 (.g-footer)
   ============================================ */
.footer-box {
    width: 100%;
    height: 242px;
    background: #ffffff;
    padding-top: 6px;
    flex-shrink: 0;
}

.footer-box .footer {
    width: 1300px;
    margin: 0 auto;
}

.footer-box .links-box {
    padding: 25px 0;
    border-bottom: 1px solid #e4e4e4;
}

.footer-box .links-list {
    height: 30px;
    line-height: 30px;
    overflow: hidden;
    position: relative
}

.footer-box .links-list a {
    margin-right: 20px;
    color: #9fa0a0;
    white-space: nowrap
}

.footer-box .links-list span {
    float: left;
}

.footer-box .links-list .lbox {
    width: 1120px;
    margin-left: 6px;
    float: left;
    display: inline;
}

.footer-box .links-box .more {
    width: 30px;
    height: 30px;
    position: absolute;
    top: 0;
    right: 0;
}

.footer-box .links-box .morev {
    transform: rotate(180deg);
    -webkit-transform: rotate(180deg);
    -moz-transform: rotate(180deg);
    -ms-transform: rotate(180deg);
}

.footer-box .links-box .links-auto {
    height: auto;
}

.footer-box .coinfo {
    width: 1300px;
    height: auto;
    line-height: 20px;
    padding: 34px 0;
    overflow: hidden;
    color: #797979;
    position: relative;
    margin: 0 auto;
}
.footer-box .coinfo .logo{
    width:150px;
    display:block;
    float: left;
}
.footer-box .coinfo .info{
    float: left;
}
.footer-box .coinfo a {
    color: #797979;
}

.footer-box .coinfo .info {
    margin-left: 30px
}

.footer-box .coinfo .about {
    margin-bottom: 15px
}

.footer-box .coinfo .about a {
    height: 14px;
    line-height: 14px;
    font-size: 14px;
    margin-right: 15px;
}

.footer-box .legal-list {
    position: absolute;
    top: 20px;
    right: 0;
    overflow: hidden
}

.footer-box .legal-list a {
    display: inline-block;
    width: auto;
    line-height: 15px;
    padding: 8px 10px 8px 50px;
    -webkit-border-radius: 23px;
    border-radius: 23px;
    overflow: hidden;
    color: #797979;
    margin-left: 15px;
    margin-bottom: 15px;
    float: right;
    background: #f2f2f2 url(../images/2019s.png) no-repeat
}

.footer-box .legal-list .legal-1 {
    background-position: 10px 6px
}

.footer-box .legal-list .legal-2 {
    background-position: 10px -44px
}

.footer-box .legal-list .legal-3 {
    background-position: 10px -94px
}

.footer-box .legal-list .legal-4 {
    background-position: 10px -144px
}

.footer-box .icon-hot,
.footer-box .icon-new {
    display: inline-block;
    width: 11px;
    height: 11px;
    line-height: 11px;
    overflow: hidden;
}

.footer-box .icon-hot {
    background-position: -117px -169px;
}

.footer-box .icon-new {
    background-position: -117px -190px;
}
