@charset "utf-8";

/* CSS Document */
body {
    margin: 0;
    padding: 0;
    font-size: 14px;
    font-family: "Microsoft Yahei";
    background-color: #f6f6f6;
}

/* 主题颜色 */
:root {
    --themeColor: #FF6E00;
    --themeColor_9: rgba(254, 122, 0, 0.9);
    --themeColor_7: rgba(254, 122, 0, 0.7);
    --themeColor_3: rgba(224, 208, 192, 0.3);
    --themeColor_1: rgba(254, 122, 0, 0.1);

    /* 公用背景 */
    --bgColor: #f8f8f8;
    /* 公用禁用按钮颜色 */
    --btnBgColor_sisable: #cecece;

    /* 字体颜色 */
    /* 主颜色 */
    --fontColor_main: #303133;
    --fontColor: #909399;
    /* 副标题 */
    --fontColor_subtitle: #b6b6b6;
    /* 描述 */
    --fontColor_desc: #999;
    /* 默认颜色 */
    --fontolor_default: rgba(0, 0, 0, 1);

    /* 线颜色 */
    --lineColor_shallow: #ededef;
    --lineColor_dark: #ccc;

    /* 常用蓝色 */
    --commonBlue: rgba(22, 132, 252, 1);
    --commonBlue_7: rgba(22, 132, 252, 0.7);

    /* 通用绿色 */
    --commonGreen: rgba(66, 185, 131, 1);

    /* 通用红色 */
    --commonRed: rgba(255, 0, 0, 1);
    --common_Red: #f56c6c;
    /* 字体大小 */
    --fontSize: 14px;
}

/* 清除输入框内阴影 */
input,
select,
textarea {
    border: 0;
    /* -webkit-appearance: none;
    appearance: none;
    -moz-user-select: text;
    -webkit-user-select: text; */
}

/* 禁用长按页面时的弹出菜单(iOS下有效) ,img和a标签都要加 */
img,
a {
    -webkit-touch-callout: none;
}
a,
a:active,
a:hover {
    text-decoration: none;
}

/* 去掉点击链接和文本框对象时默认的灰色半透明覆盖层(iOS)或者虚框(Android) */
a,
button,
input,
textarea {
    -webkit-tap-highlight-color: rgba(0, 0, 0, 0);
}

div,
form,
img,
ul,
ol,
li,
dl,
dt,
dd,
p
 {
    margin: 0;
    padding: 0;
    border: 0;
    font-weight: normal;
}

ul,
li {
    list-style-type: none;
}

img {
    vertical-align: middle;
    border: 0;
    margin: 0;
    padding: 0;
}

button {
    vertical-align: middle;
    cursor: pointer;
}

input txt,
button {
    vertical-align: middle;
    border: none;
}

a,
a:link {
    color: #333333;
    text-decoration: none;
    transition: all 0.3s linear;
}

a:hover {
    color: #333333;
    text-decoration: none;
}

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

.clearfix {
    zoom: 1;
}

.lft {
    float: left;
}

.rgt {
    float: right;
}

.fl {
    float: left;
}

.fr {
    float: right;
}

.clear {
    clear: both;
}

.show {
    display: block;
}

.hide {
    display: none;
}

em,
i,
b {
    font-style: normal;
}

.center {
    width: 1200px;
    margin: 0 auto;
}
.m-auto{
    margin: 0 auto;
}
.flex {
    display: flex;
}
.flex-1 {
    flex: 1;
}
.flex-d-row{
    flex-direction: row;
}
.flex-d-column{
    flex-direction: column;
}
.justify-content {
    justify-content: center;
}
.align-items {
    align-items: center;
}
.wrap {
    flex-wrap: wrap;
}

.space-around {
    justify-content: space-around;
}
.space-between {
    justify-content: space-between;
}
.m-5 {
    margin: 5px;
}
.m-10 {
    margin: 10px;
}
.m-15 {
    margin: 15px;
}
.m-20 {
    margin: 20px;
}
.m-l-5 {
    margin-left: 5px;
}
.m-l-10 {
    margin-left: 10px;
}
.m-l-15 {
    margin-left: 15px;
}
.m-l-20 {
    margin-left: 20px;
}
.m-l-25 {
    margin-left: 25px;
}
.m-l-30 {
    margin-left: 30px;
}
.m-r-5 {
    margin-right: 5px;
}
.m-r-10 {
    margin-right: 10px;
}
.m-r-15 {
    margin-right: 15px;
}
.m-r-20 {
    margin-right: 20px;
}
.m-r-30 {
    margin-right: 30px;
}
.m-t-5 {
    margin-top: 5px;
}
.m-t-10 {
    margin-top: 10px;
}
.m-t-15 {
    margin-top: 15px;
}
.m-t-20 {
    margin-top: 20px;
}
.m-t-30 {
    margin-top: 30px;
}
.m-b-5 {
    margin-bottom: 5px;
}
.m-b-8 {
    margin-bottom: 8px;
}
.m-b-10 {
    margin-bottom: 10px;
}
.m-b-15 {
    margin-bottom: 15px;
}
.m-b-13 {
    margin-bottom: 13px;
}
.m-b-20 {
    margin-bottom: 20px;
}

.p-5 {
    padding: 5px;
}
.p-10 {
    padding: 10px;
}
.p-15 {
    padding: 15px;
}
.p-20 {
    padding: 20px;
}
.p-30 {
    padding: 30px;
}
.p-40 {
    padding: 40px;
}
.p-l-10 {
    padding-left: 10px;
}
.p-l-15 {
    padding-left: 15px;
}
.p-l-20 {
    padding-left: 20px;
}
.p-r-10 {
    padding-right: 10px;
}
.p-r-15 {
    padding-right: 15px;
}
.p-r-20 {
    padding-right: 20px;
}
.p-t-10 {
    padding-top: 10px;
}
.p-t-15 {
    padding-top: 15px;
}
.p-t-20 {
    padding-top: 20px;
}
.p-b-5 {
    padding-bottom: 5px;
}
.p-b-10 {
    padding-bottom: 10px;
}
.p-b-15 {
    padding-bottom: 15px;
}
.p-b-20 {
    padding-bottom: 20px;
}

.border-box {
    box-sizing: border-box;
}

.container{
    width: 1400px;
}
.t-center{
    text-align: center;
}
.relative{
    position: relative;
}
.absolute{
    position: absolute;
}
.w-100{
    width: 100%;
}
.h-100{
    height: 100%;
}
.fff{
    color: #fff;
}
.f-12{
    font-size: 12px;
}
.f-14{
    font-size: 14px;
}
.f-16{
    font-size: 16px;
}
.f-18{
    font-size: 18px;
}
.f-20{
    font-size: 20px;
}
.cursor{
    cursor: pointer;
}

/* 谷歌 */
input::-webkit-outer-spin-button,
input::-webkit-inner-spin-button {
    -webkit-appearance: none;
    appearance: none; 
    margin: 0; 
}

input{
    -moz-appearance:textfield;
}
.f-500{
    font-weight: 500;
}
.f-400{
    font-weight: 400;
}
.t-overflow{
    overflow: hidden;
    text-overflow: ellipsis;
    white-space: nowrap;
}
.w-1000{
    width: 1000px;
}
footer a {
    color: #FFf !important;
}