﻿
.page-center {
    width: 1200px;
    margin: 0 auto;
}
blockquote, body, button, dd, div, dl, dt, form, h1, h2, h3, h4, h5, h6, input, li, ol, p, pre, td, textarea, th, ul {
    margin: 0;
    padding: 0;
    -webkit-tap-highlight-color: rgba(0,0,0,0)
}

a:active, a:hover {
    outline: 0
}

img {
    display: inline-block;
    border: none;
    vertical-align: middle
}

li {
    list-style: none
}

table {
    border-collapse: collapse;
    border-spacing: 0
}
a {
    color: #333;
    text-decoration: none
}
/* 显示 */
.show {
    display: block;
}
/* 隐藏 */
.hide {
    display: none;
}
/* 清楚浮动 */
.clear::after {
    content: '';
    display: block;
    clear: both;
}
/* 禁用 */
.disabled {
    cursor: pointer;
    /* pointer-events: none; */
}
/* 必填 */
.required {
    color: #ff6b6b;
}
/* 单行文本超出显示省略号：必须设置宽度 */
.one-line {
    display: block;
    overflow: hidden;
    text-overflow: ellipsis;
    white-space: nowrap;
}
/* 多行文本超出显示省略号：必须设置高度 */
.many-line {
    display: -webkit-box;
    word-break: break-all;
    -webkit-box-orient: vertical;
    /* 默认显示两行 */
    -webkit-line-clamp: 2;
    overflow: hidden;
    text-overflow: ellipsis;
}
/* 水平flex居中 */
.row-center {
    display: flex;
    flex-direction: row;
    justify-content: center;
    align-items: center;
}
/* 垂直flex居中 */
.column-center {
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: center;
}

/* 内容区样式 */
.layout-main {
    margin-top: 70px;
}
.sbai-main {
    padding-top: 111px;
}
.sbai-hot-list-fix {
    position: fixed;
    top: 181px;
    z-index: 10;
}
