@charset "UTF-8";
/* basic-css */
* {
    margin: 0px;
    padding: 0px;
    text-decoration: none;
}

body, html {
    font-size: 16px;
    font-family: "Microsoft YaHei", "微软雅黑", "黑体", "宋体", Arial, Helvetica, sans-serif, iconfont;
    color: #000;
    overflow: visible;
    min-width: 1280px;
}

img {
    border: 0px;
}

a {
    text-decoration: none;
    color: #404242;
    outline: none;
}

div {
    margin: 0px auto;
}

li, dl, dt, dd {
    list-style-type: none;
}

input, textarea, select, option, em, h1, h2, h3, h4, h4, h6, strong, span, li, dl, dt, td, i, a, button {
    font-family: "Microsoft YaHei", "微软雅黑", "黑体", "宋体", Arial, Helvetica, sans-serif, iconfont
}

i {
    font-style: normal;
}

input {
    outline: none;
}

h1, h2, h3, h4, h5, h6, em {
    font-style: normal;
    font-weight: 400;
}

button {
    cursor: pointer;
    outline: medium;
}

/* 重用自定义样式 */
.f_l {
    float: left !important;
}

.f_r {
    float: right !important;
}

.clear_both {
    clear: both !important;
}

.f_n {
    float: none !important;
}

/* clear */
.no_margin {
    margin: 0px !important;
}

.no_padding {
    padding: 0px !important;
}

.no_border {
    border: 0px !important;
}

.no_bg {
    background: none !important;
}

.no_r_border {
    border-right: 0 !important;
}

/* mouse */
.pointer {
    cursor: pointer;
}

.move {
    cursor: move;
}

/* absolute */
.absolute {
    position: absolute;
}

.relative {
    position: relative;
}

.fixed {
    position: fixed;
}

.static {
    position: static;
}

/* show */
.display {
    display: block !important;
}

.display_inline {
    display: inline-block !important;
}

.hidden {
    display: none !important;
}

/* font */
.text_over {
    overflow: hidden;
    white-space: nowrap;
    text-overflow: ellipsis;
    -o-text-overflow: ellipsis;
    -moz-binding: url('ellipsis.xml#ellipsis');
}

.break {
    word-break: break-all;
    word-wrap: break-word;
}

.no_break {
    word-break: keep-all;
    word-wrap: normal;
}

.text_indent0 {
    text-indent: 0em;
}

.text_indent2 {
    text-indent: 2em;
}

.font-12 {
    font-size: 12px;
}

.font-14 {
    font-size: 14px;
}

.font-16 {
    font-size: 16px;
}

.t_b {
    font-weight: 700;
}

/* loading */
.tab_frame {
    position: relative;
}

.wraper_full {
    position: fixed;
    z-index: 9998;
    top: 0px;
    left: 0px;
    background-color: #ABADB3;
    display: none;
}

.a_link {
    color: #0000EE;
}

.no-copy {
    user-select: none;
    -webkit-user-select: none;
    -moz-user-select: none;
}

.animation {
    transition: 0.5s;
    -moz-transition: 0.5s;
    -webkit-transition: 0.5s;
}

/*flex*/
.flex {
    display: -webkit-box;   /* 老版本语法: Safari, iOS, Android browser, older WebKit browsers. */
    display: -moz-box;      /* 老版本语法: Firefox (buggy) */
    display: -ms-flexbox;   /* 混合版本语法: IE 10 */
    display: -webkit-flex;  /* 新版本语法: Chrome 21+ */
    display: flex;          /* 新版本语法: Opera 12.1, Firefox 22+ */
}

.flex-1 {
    -webkit-box-flex: 1;    /* OLD - iOS 6-, Safari 3.1-6 */
    -moz-box-flex: 1;       /* OLD - Firefox 19- */
    -webkit-flex: 1;        /* Chrome */
    -ms-flex: 1;            /* IE 10 */
    flex: 1;                /* NEW, Spec - Opera 12.1, Firefox 20+ */
}

/*垂直*/
.flex-cCenter {
    -webkit-box-align: center;
    -moz-align-items: center;
    -webkit-align-items: center;
    -ms-align-items: center;
    align-items: center;
}

/*水平*/
.flex-vCenter {
    -webkit-justify-content: center;
    -moz-justify-content: center;
    -moz-box-pack: center;
    -webkit-moz-box-pack: center;
    -ms-justify-content: center;
    justify-content: center;
}

::-webkit-scrollbar {
    width: 8px;
    height: 8px;
    background: transparent;
}

::-webkit-scrollbar-thumb {
    background: rgba(17, 17, 17, 0.5);
}
/*
::selection {
    background: rgba(17, 17, 17, 0.3);
    color: transparent;
}
*/