@charset "UTF-8";
/**
 *  @name: HuaTech-layout（全局样式 & 组件）
 *  @version: 1.0
 *  @author: wqg
 *  @date: 2020-10-28
 */

/*---------- Reset CSS ----------*/
html, body, div, span, applet, object, iframe,
h1, h2, h3, h4, h5, h6, p, blockquote, pre,
a, abbr, acronym, address, big, cite, code,
del, dfn, em, img, ins, kbd, q, s, samp,
small, strike, strong, sub, sup, tt, var,
b, u, i, center,
dl, dt, dd, ol, ul, li,
fieldset, form, label, legend,
table, caption, tbody, tfoot, thead, tr, th, td,
article, aside, canvas, details, embed,
figure, figcaption, footer, header, hgroup,
menu, nav, output, ruby, section, summary,
time, mark, audio, video {
    margin: 0;
    padding: 0;
    border: 0;
    font-size: 100%;
    font-weight: normal;
    vertical-align: baseline;
}

body {
    font-family: "Microsoft YaHei", "PingFang SC", Arial, "Source Sans Pro", Helvetica, "Helvetica Neue", sans-serif;
    font-size: 14px;
    color: #333;
    line-height: 24px;
    box-sizing: border-box;
    background: #e8e8e8;
}

ol, ul {
    list-style: none;
}

a {
    text-decoration: none;
}

b,strong {
    font-weight: 700;
}

i,em {
    font-style: italic;
    overflow: hidden;
    white-space: nowrap;
    text-overflow: ellipsis;
}

input,button {
    outline: none;
    font-family: inherit;
}

img {
    display: block;
}

/*---------- 排版 ----------*/
/* 字号 */
.font-36 {font-size: 36px;}
.font-30 {font-size: 30px;}
.font-24 {font-size: 24px;}
.font-18 {font-size: 18px;}
.font-14 {font-size: 14px;}
.font-12 {font-size: 12px;}

/* 标题 */
h1,h2,h3,h4,h5,h6 {
    font-weight: 500;
    color: inherit;
    line-height: 1.2;
}

h1 {font-size: 36px;}
h2 {font-size: 30px;}
h3 {font-size: 24px;}
h4 {font-size: 18px;}
h5 {font-size: 14px;}
h6 {font-size: 12px;}

/* 页面主体 */
p {
    margin: 0 0 10px;
}

/* 文本对齐 */
.text-left {
    text-align: left;
}

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

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

.text-justify {
    text-align: justify;
}

.text-ellipsis {
    overflow: hidden;
    text-overflow: ellipsis;
    white-space: nowrap;
}

/*---------- Layout(栅格) ----------*/
/* Container */
.container {
    position: relative;
    width: 1200px;
    margin: 0 auto;
    padding: 30px;
    -webkit-box-sizing: border-box;
    -moz-box-sizing: border-box;
    box-sizing: border-box;
    background: #fff;
}

.container-fluid {
    position: relative;
    padding: 30px;
    background: #fff;
}

.container:after,
.container-fluid {
    display: block;
    content: "";
    clear: both;
}

.row {
    margin-left: -15px;
    margin-right: -15px;
}

.row:after {
    display: block;
    content: "";
    clear: both;
}

.show-grid {
    margin-bottom: 15px;
}

.col-1, .col-2, .col-3, .col-4, .col-5, .col-6,
.col-7, .col-8, .col-9, .col-10, .col-11, .col-12 {
    float: left;
    padding: 10px 15px;
    box-sizing: border-box;
}

.col-12 {
    width: 100%;
}

.col-11 {
    width: 91.66666667%;
}

.col-10 {
    width: 83.33333333%;
}

.col-9 {
    width: 75%;
}

.col-8 {
    width: 66.66666667%;
}

.col-7 {
    width: 58.33333333%;
}

.col-6 {
    width: 50%;
}

.col-5 {
    width: 41.66666667%;
}

.col-4 {
    width: 33.33333333%;
}

.col-3 {
    width: 25%;
}

.col-2 {
    width: 16.66666667%;
}

.col-1 {
    width: 8.33333333%;
}

/* Float */
.fl {
    float: left;
}

.fr {
    float: right;
}

.clear:after {
    display: block;
    content: "";
    clear: both;
}

/*---------- Table ----------*/
table,
.table,
.table-bordered {
    width: 100%;
    border-spacing: 0;
    border-collapse: collapse;
    box-sizing: border-box;
}

/* 基本表格 */
table caption {
    padding: 8px 0;
}

table th {
    font-weight: 700;
}

table th,
table td {
    padding: 8px;
    text-align: left;
    line-height: 24px;
    box-sizing: border-box;
}

.table th {
    border-bottom: 2px solid #ddd;
}

.table td {
    border-bottom: 1px solid #ddd;
}

/* 条纹状表格 */
.table-striped tr:nth-child(even) {
    background: #f9f9f9;
}

/* 带边框的表格 */
.table-bordered th,
.table-bordered td {
   border: 1px solid #ddd;
}

/* 鼠标悬停 */
.table-hover > tbody > tr:hover {
    background: #f5f5f5;
}

/*---------- Button ----------*/
.btn {
    position: relative;
    display: inline-block;
    padding: 2px 12px;
    margin-top: 5px;
    margin-bottom: 5px;
    border: 1px solid transparent;
    border-radius: 4px;
    box-sizing: border-box;
    font-size: 14px;
    color: #333;
    font-weight: 400;
    text-align: center;
    vertical-align: middle;
    line-height: 24px;
    white-space: nowrap;
    -webkit-user-select: none;
    -moz-user-select: none;
    -ms-user-select: none;
    user-select: none;
    outline: none;
    cursor: pointer;
    -webkit-transition: background-color .3s ease-in-out;
    -moz-transition: background-color .3s ease-in-out;
    -ms-transition: background-color .3s ease-in-out;
    -o-transition: background-color .3s ease-in-out;
    transition: background-color .3s ease-in-out;
}

.btn:hover {
    z-index: 998;
}

.btn:active {
    z-index: 998;
    -webkit-box-shadow: inset 0 3px 5px rgba(0, 0, 0, .125);
    -moz-box-shadow: inset 0 3px 5px rgba(0, 0, 0, .125);
    box-shadow: inset 0 3px 5px rgba(0, 0, 0, .125);
}

/* 默认 */
.btn-default {
    color: #333;
    background-color: #fff;
    border-color: #ccc;
}

.btn-default:hover {
    background-color: #e6e6e6;
    border-color: #adadad;
}

.btn-default:active {
    background-color: #d4d4d4;
    border-color: #adadad;
}

.btn-default.disabled:hover,
.btn-default[disabled]:hover {
    background-color: #fff;
    border-color: #ccc;
}

/* 首选项 */
.btn-primary {
    color: #fff;
    background-color: #007aff;
    border-color: #0574ed;
}

.btn-primary:hover {
    background-color: rgba(0, 122, 255, .8);
    border-color: rgba(5, 116, 237, .8);
}

.btn-primary:active {
    background-color: rgba(0, 122, 255, 1);
    border-color: rgba(5, 116, 237, 1);
}

.btn-primary.disabled:hover,
.btn-primary[disabled]:hover {
    background-color: rgba(0, 122, 255, 1);
    border-color: rgba(5, 116, 237, 1);
}

/* 成功 */
.btn-success {
    color: #fff;
    background-color: #14ce66;
    border-color: #0dbf5b;
}

.btn-success:hover {
    background-color: rgba(20, 206, 102, .8);
    border-color: rgba(13, 191, 91, .8);
}

.btn-success:active {
    background-color: rgba(20, 206, 102, 1);
    border-color: rgba(13, 191, 91, 1);
}

.btn-success.disabled:hover,
.btn-success[disabled]:hover {
    background-color:rgba(20, 206, 102, 1);
    border-color: rgba(13, 191, 91, 1);
}

/* 一般信息 */
.btn-info {
    color: #fff;
    background-color: #4099ff;
    border-color: #2c85ec;
}

.btn-info:hover {
    background-color: rgba(64, 153, 255, .8);
    border-color: rgba(44, 133, 216, .8);
}

.btn-info:active {
    background-color: rgba(64, 153, 255, 1);
    border-color: rgba(44, 133, 216, 1);
}

.btn-info.disabled:hover,
.btn-info[disabled]:hover {
    background-color: rgba(64, 153, 255, 1);
    border-color: rgba(44, 133, 216, 1);
}

/* 警告 */
.btn-warning {
    color: #fff;
    background-color: #f5c200;
    border-color: #e3b404;
}

.btn-warning:hover {
    background-color: rgba(245, 194, 0, .8);
    border-color: rgba(227, 180, 4, .8);
}

.btn-warning:active {
    background-color: rgba(245, 194, 0, 1);
    border-color: rgba(227, 180, 4, 1);
}

.btn-warning.disabled:hover,
.btn-warning[disabled]:hover {
    background-color: rgba(245, 194, 0, 1);
    border-color: rgba(277, 180, 4, 1);
}

/* 危险 */
.btn-danger {
    color: #fff;
    background-color: #ef4f4f;
    border-color: #e94141;
}

.btn-danger:hover {
    background-color: rgba(239, 79 ,79, .8);
    border-color: rgba(233, 65, 65, .8);
}

.btn-danger:active {
    background-color: rgba(239, 79 ,79, 1);
    border-color: rgba(233, 65, 65, 1);
}

.btn-danger.disabled:hover,
.btn-danger[disabled]:hover {
    background-color: rgba(239, 79, 79, 1);
    border-color: rgba(233, 65, 65, 1);
}

/* 链接 */
.btn-link {
    color: #0056b3;
    background-color: transparent;
    border-color: transparent;
}

.btn-link:hover {
    color: #074f9d;
    background-color: transparent;
    text-decoration: underline;
    border-color: transparent;
}

.btn-link.disabled:hover,
.btn-link[disabled]:hover {
    background-color: transparent;
    border-color: transparent;
}

/* 按钮尺寸 */
.btn-lg {
    padding: 5px 16px;
    border-radius: 6px;
}

.btn-sm {
    padding: 0 12px;
    line-height: 22px;
}

/* 禁用状态 */
.btn[disabled] {
    opacity: .65;
    cursor: not-allowed;
    text-decoration: none;
    box-shadow: none;
}

.btn[disabled]:hover {
    opacity: .65;
}

/*-------------------------------------------------- 组件CSS --------------------------------------------------*/

/*---------- 按钮组 ----------*/
/* 基本实例 */
.btn-group {
    position: relative;
    display: inline-block;
    margin-top: 5px;
    margin-bottom: 5px;
    vertical-align: middle;
}

.btn-group > .btn {
    float: left;
    margin: 0;
}

.btn-group > .btn:not(:first-child) {
    margin-left: -1px;
}

.btn-group > .btn:not(:first-child):not(:last-child) {
    border-radius: 0;
}

.btn-group > .btn:first-child:not(:last-child) {
    border-top-right-radius: 0;
    border-bottom-right-radius: 0;
}

.btn-group > .btn:last-child:not(:first-child) {
    border-top-left-radius: 0;
    border-bottom-left-radius: 0;
}

/* 按钮工具栏 */
.btn-toolbar {
    margin-left: -5px;
}

.btn-toolbar:after {
    display: block;
    content: "";
    clear: both;
}

.btn-toolbar .btn-group {
    float: left;
    margin-left: 5px;
}

/* 尺寸 */
.btn-group-lg > .btn {
    padding: 5px 16px;
    border-radius: 6px;
}

.btn-group-sm > .btn {
    padding: 0 12px;
    line-height: 22px;
}

/* 两端对齐排列按钮组 */
.btn-group-justified {
    display: table;
    width: 100%;
    table-layout: fixed;
    border-collapse: separate;
}

.btn-group-justified > .btn {
    float: none;
    display: table-cell;
}

/*---------- 徽章  ----------*/
.badge {
    position: relative;
    top: -1px;
    display: inline-block;
    min-width: 10px;
    padding: 3px 7px;
    font-size: 12px;
    font-weight: 700;
    color: #fff;
    line-height: 1;
    text-align: center;
    vertical-align: middle;
    white-space: nowrap;
    background-color: #999;
    border-radius: 10px;
}

.btn-primary > .badge,
.btn-success > .badge,
.btn-info > .badge,
.btn-warning > .badge,
.btn-danger > .badge {
    background-color: #fff;
}

.btn-primary > .badge {
    color: #007aff;
}

.btn-success > .badge {
    color: #14ce66;
}

.btn-info > .badge {
    color: #4099ff;
}

.btn-warning > .badge {
    color: #f5c200;
}

.btn-danger > .badge {
    color: #ef4f4f;
}

/* 区块标题 */
.section-title {
    position: relative;
    padding-left: 10px;
    margin-bottom: 5px;
}

.section-title:before {
    position: absolute;
    left: 0;
    top: 50%;
    z-index: 1;
    display: block;
    content: "";
    width: 5px;
    height: 20px;
    margin-top: -10px;
    background-color: #007aff;
}