/*css 初始化 */
html,
body,
ul,
li,
ol,
dl,
dd,
dt,
p,
span,
div,
h1,
h2,
h3,
h4,
h5,
h6,
form,
fieldset,
legend,
img {
    margin: 0;
    padding: 0;
	line-height: 1;
}

fieldset,
img,
input,
button {
    /*fieldset组合表单中的相关元素*/
    border: none;
    padding: 0;
    margin: 0;
    outline-style: none;
}

ul,
ol {
    list-style: none;
    /*清除列表风格*/
}

input {
    padding-top: 0;
    padding-bottom: 0;
    font-family: "Source Han Sans-CN", "PingFangSC-Regular","Consolas","monospace","Microsoft Yahei";
}

select,
input {
    vertical-align: middle;
}

select,
input,
textarea {
    font-size: 12px;
    margin: 0;
}

textarea {
    resize: none;
}

/*防止多行文本框拖动*/
img {
    border: 0;
    vertical-align: middle;
}

/*  去掉图片低测默认的3像素空白缝隙*/
table {
    border-collapse: collapse;
    /*合并外边线*/
}


body {
    font-size: 12px/150%;
    font-family: "Source Han Sans-CN", "PingFangSC-Regular","Consolas","monospace","Microsoft Yahei";
    color: #232323;
    background: #f9f9f9;
}

.clearfix:before,
.clearfix:after {
    content: "";
    display: table;
}

.clearfix:after {
    clear: both;
}

.clearfix {
    *zoom: 1;
    /*IE/7/6*/
}

a {
    color: #232323;
    text-decoration: none;
}

a:hover {
    /* color: #000; */
}

h1,
h2,
h3,
h4,
h5,
h6 {
    text-decoration: none;
    font-weight: normal;
    font-size: 100%;
}

s,
i,
em {
    font-style: normal;
    text-decoration: none;
}

.col-red {
    color: #000 !important;
}

/* 横向滚动 */
.scorll_x {
    white-space: nowrap;
    overflow-x: scroll;
}

/* 纵向滚动 */
.scorll_y {
    overflow-y: scroll;
    box-sizing: border-box;
}

.scorll_x::-webkit-scrollbar,
.scorll_y::-webkit-scrollbar {
    width: 0rpx;
    height: 0rpx;
    color: transparent;
}

/*公共类*/
.w {
    /*版心 提取 */
    width: 1200px;
    margin: 0 auto;
}

body,
html {
    width: 100%;
    height: 100%;
}

div {
    box-sizing: border-box;
}

.h_100 {
    height: 100%;
}

.w_100 {
    width: 100%;
}

.wh_100 {
    width: 100%;
    height: 100%;
}

.fl {
    float: left;
}

.fr {
    float: right;
}

.al {
    text-align: left;
}

.ac {
    text-align: center;
}

.ar {
    text-align: right;
}

.hide {
    display: none !important;
}

.absolute {
    position: absolute;
}

.relative {
    position: relative;
}

.fixed {
    position: fixed;
}

.absolute_c {
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
}

.absolute_c_0 {
    position: absolute;
    top: 50%;
    left: 0;
    transform: translateY(-50%);
}

.absolute_0_c {
    position: absolute;
    left: 50%;
    transform: translateX(-50%);
}

.flex {
    display: flex;
}

.flex_column {
    display: flex;
    flex-flow: column;
}

.flex_column_c {
    display: flex;
    flex-flow: column;
    align-items: center;
}

.flex_column_cc {
    display: flex;
    flex-flow: column;
    align-items: center;
    justify-content: center;
}

.flex_c {
    display: flex;
    align-items: center;
}

.flex_c_c {
    display: flex;
    align-items: center;
    justify-content: center;
}

.flex_c_b {
    display: flex;
    align-items: center;
    justify-content: space-between;
}

.flex_column_c_b {
    display: flex;
    flex-flow: column;
    align-items: center;
    justify-content: space-between;
}

.flex_column_b {
    display: flex;
    flex-flow: column;
    justify-content: space-between;
}

.flex_b {
    display: flex;
    justify-content: space-between;
}

.flex_w {
    display: flex;
    flex-wrap: wrap;
}

/* 文字溢出 一行 */
.line_clamp_1 {
    overflow: hidden;
    text-overflow: ellipsis;
    white-space: nowrap;
    display: block;
}

/* 文字溢出 两行 */
.line_clamp_2 {
    overflow: hidden;
    text-overflow: ellipsis;
    display: -webkit-box;
    -webkit-line-clamp: 2;
    -webkit-box-orient: vertical;
}

/* 文字溢出 三行 */
.line_clamp_3 {
    overflow: hidden;
    text-overflow: ellipsis;
    display: -webkit-box;
    -webkit-line-clamp: 3;
    -webkit-box-orient: vertical;
}

/* 中黑体 */
.Medium {
    font-family: "PingFangSC-Medium","NotoSansCJK-Medium";
}

/* 常规体 */
.Regular {
    font-family: "PingFangSC-Regular","NotoSansCJK-Regular";
}

/* 中粗体 */
.Semibold {
    font-family: "PingFangSC-Semibold","NotoSansCJK-Bold";
}

/* 极细体 */
.Ultralight {
    font-family: "PingFangSC-Ultralight","NotoSansCJK-DemiLight";
}

/* 细体 */
.Light {
    font-family: "PingFangSC-Light","NotoSansCJK-Light";
}

/* 纤细体 */
.Thin {
    font-family: "PingFangSC-Thin","NotoSansCJK-Thin",
}

.inline_block {
    display: inline-block;
}

.border_box {
    box-sizing: border-box;
}
.container {
	width: 100%;
	height: 100%;
}


