/**
 *
 * 底部樣弝
 *
 * @author liangjilin@addcn.com
 * @time   2019/03/04
 */

/* 爲了保證 footer 一直在頁面底部 */
body {
	min-height: 100vh;
    box-sizing: border-box;
    padding-bottom: 166px;
	position: relative;
}

#newFooter {
    width: 100%;
    background: #323342;
    color: #666;
    margin-top: 30px;
    position: absolute;
    bottom: 0;
}

#newFooter .ellipsis {
    display: block;
    max-width: 100%;
    overflow: hidden;
    text-overflow: ellipsis;
    white-space: nowrap;
}

#newFooter .footnav {
    width: 1200px;
    margin: 0 auto;
    padding: 15px 0;
    text-align: center;
    font-size: 12px;
}

#newFooter .footnav .border {
    border-bottom: 1px solid #5c5d69;
}

#newFooter .footnav .grouplink {
    color: #999;
    line-height: 24px;
    padding-bottom: 5px;
    padding-top: 5px;
}

#newFooter .footnav .grouplink a {
    display: inline-block;
    padding: 0 3px;
    color: #ababb4;
    font-size: 13px;
}

#newFooter .footnav .grouplink a:link,
#newFooter .footnav .grouplink a:visited {
    text-decoration: none;
}

#newFooter .footnav .grouplink a:after {
    padding-left: 8px;
    content: '|';
    color: #5c5d69;
}

#newFooter .footnav .grouplink a:nth-last-of-type(1):after {
    content: "";
}

#newFooter .footnav .grouplink a.noline:after {
    content: '';
}

#newFooter .footnav .grouplink a:hover {
    text-decoration: none;
    color: #f60;
}
