@charset "utf-8";

/*

@名称: base

@功能: 重设浏览器默认样式

*/


/* 防止用户自定义背景颜色对网页的影响，添加让用户可以自定义字体 */

html {
    color: #333;
    -webkit-text-size-adjust: 100%;
    -ms-text-size-adjust: 100%;
}


/* 内外边距通常让各个浏览器样式的表现位置不同 */

body,
div,
dl,
dt,
dd,
ul,
ol,
li,
h1,
h2,
h3,
h4,
h5,
h6,
pre,
code,
form,
fieldset,
legend,
input,
textarea,
p,
blockquote,
th,
td,
hr,
button,
article,
aside,
details,
figcaption,
figure,
footer,
header,
hgroup,
menu,
nav,
section {
    margin: 0;
    padding: 0;
    font-family: 'Microsoft YaHei', '微软雅黑', Arial, Lucida Grande, Tahoma, sans-serif;
    box-sizing: border-box;
    -webkit-box-sizing: border-box;
    -moz-box-sizing: border-box;
    font-size: 14px;
}


/* 重设 HTML5 标签, IE 需要在 js 中 createElement(TAG) */

article,
aside,
details,
figcaption,
figure,
footer,
header,
hgroup,
menu,
nav,
section {
    display: block;
}


/* HTML5 媒体文件跟 img 保持一致 */

audio,
canvas,
video {
    display: inline-block;
    *display: inline;
    *zoom: 1;
}


/* 要注意表单元素并不继承父级 font 的问题 */

input,
select,
textarea {
    font-size: 100%;
    font-family: 'Microsoft YaHei', '微软雅黑', Arial, Lucida Grande, Tahoma, sans-serif;
}


/* 去掉各Table cell 的边距并让其边重合 */

table {
    border-collapse: collapse;
    border-spacing: 0;
}


/* IE bug fixed: th 不继承 text-align*/

th {
    text-align: inherit;
}


/* 去除默认边框 */

fieldset,
img {
    border: 0;
    vertical-align: bottom;
}


/* ie6 7 8(q) bug 显示为行内表现 */

iframe {
    display: block;
}


/* 去掉 firefox 下此元素的边框 */

abbr,
acronym {
    border: 0;
    font-variant: normal;
}


/* 一致的 del 样式 */

del {
    text-decoration: line-through;
}

address,
caption,
cite,
code,
dfn,
em,
th,
var {
    font-style: normal;
    font-weight: 500;
}


/* 去掉列表前的标识, li 会继承 */

ol,
ul {
    list-style: none;
}


/* 对齐是排版最重要的因素, 别让什么都居中 */

caption,
th {
    text-align: left;
}


/* 来自yahoo, 让标题都自定义, 适应多个系统应用 */

h1,
h2,
h3,
h4,
h5,
h6 {
    font-size: 100%;
    font-weight: 500;
}

q:before,
q:after {
    content: '';
}


/* 统一上标和下标 */

sub,
sup {
    font-size: 75%;
    line-height: 0;
    position: relative;
    vertical-align: baseline;
}

sup {
    top: -0.5em;
}

sub {
    bottom: -0.25em;
}

a {
    color: #333;
    box-sizing: border-box;
    -webkit-box-sizing: border-box;
    -moz-box-sizing: border-box;
}

a:focus {
    outline: none;
}

button:active {
    opacity: 0.8;
    filter: alpha(opacity=80);
}


/* 默认不显示下划线，保持页面简洁 */

ins,
a {
    text-decoration: none;
}


/* 清理浮动 */

.fc:after {
    visibility: hidden;
    display: block;
    font-size: 0;
    content: " ";
    clear: both;
    height: 0;
}

.fc {
    zoom: 1;
    /* for IE6 IE7 */
}


/* 隐藏, 通常用来与 JS 配合 */

body .fh {
    display: none !important;
}

body .fs {
    display: block !important;
}


/* 设置内联, 减少浮动带来的bug */

.fl,
.fr {
    display: inline;
}

.fl {
    float: left;
}

.fr {
    float: right;
}


/**

 * 基类

 **/

html,
body {
    height: 100%;
    background-color: #F2F3F2;
}

html.full-layout,
html.full-layout body {
    min-width: 1280px;
    background-color: #EFF1F4;
}

html.iframe-layout,
html.iframe-layout body {
    width: 100%;
    background-color: #FFFFFF;
}

.fs12 {
    font-size: 12px !important;
}

.fs14 {
    font-size: 14px !important;
}

.fs16 {
    font-size: 16px !important;
}

.fs18 {
    font-size: 18px !important;
}

.fs20 {
    font-size: 20px !important;
}

.fw_bold {
    font-weight: bold !important;
}

.fw_normal {
    font-weight: normal !important;
}

.text-left {
    text-align: left !important;
}

.text-center {
    text-align: center !important;
}

.text-right {
    text-align: right !important;
}

.btn {
    border: none;
    outline: none;
    cursor: pointer;
    box-sizing: border-box;
    -webkit-box-sizing: border-box;
    -moz-box-sizing: border-box;
}

.input_ph::-webkit-input-placeholder {
    color: #999;
}

.input_ph::-moz-placeholder {
    color: #999;
}

.input_ph:-moz-placeholder {
    color: #999;
}

.input_ph:-ms-input-placeholder {
    color: #999;
}

.over_1 {
    display: block;
    width: 100%;
    white-space: nowrap;
    overflow: hidden;
    text-overflow: ellipsis;
}

.over_2 {
    overflow: hidden;
    text-overflow: ellipsis;
    display: -webkit-box;
    -webkit-line-clamp: 2;
    -webkit-box-orient: vertical;
}

.over_3 {
    overflow: hidden;
    text-overflow: ellipsis;
    display: -webkit-box;
    -webkit-line-clamp: 3;
    -webkit-box-orient: vertical;
}

.mt10 {
    margin-top: 10px !important;
}

.mr10 {
    margin-right: 10px !important;
}

.mb10 {
    margin-bottom: 10px !important;
}

.ml10 {
    margin-left: 10px !important;
}

.mt20 {
    margin-top: 20px !important;
}

.mr20 {
    margin-right: 20px !important;
}

.mb20 {
    margin-bottom: 20px !important;
}

.ml20 {
    margin-left: 20px !important;
}

.mr0 {
    margin-right: 0 !important;
}

.p20 {
    padding: 20px !important;
}

.ph20 {
    padding: 0 20px !important;
}

.pv20 {
    padding: 20px 0 !important;
}

.pb20 {
    padding-bottom: 20px !important;
}

.no_padding {
    padding: 0 !important;
}

.padding-t-l {
    padding: 0 20px 20px 0 !important;
}

.img {
    max-width: 100%;
    max-height: 100%;
    vertical-align: bottom;
    border: none;
}

.white-box {
    background-color: #FFFFFF;
    border-radius: 6px;
}


/*定位*/

.relative {
    position: relative;
}


/*盒子模型*/

.flex {
    display: flex;
    display: -webkit-flex;
}

.flex-aro {
    display: flex;
    display: -webkit-flex;
    justify-content: space-around;
    align-items: center;
}

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

.flex-bet a {
    margin: 8px;
}

.w1200 {
    width: 1200px;
    margin: 0 auto;
}