* {
    -webkit-box-sizing: border-box;
    -moz-box-sizing: border-box;
    box-sizing: border-box;
    font-family: '微软雅黑';
}

*:before,
*:after {
    -webkit-box-sizing: border-box;
    -moz-box-sizing: border-box;
    box-sizing: border-box;
}

xmp {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

html {
    font-family: sans-serif;
    -ms-text-size-adjust: 100%;
    -webkit-text-size-adjust: 100%;
}

body {
    margin: 0;
    color: #4a596d;
    font-size: 14px;
}

p {
    margin: 0;
}

button {
    cursor: pointer;
}

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

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

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

/*修改提示文字的颜色*/
input::-webkit-input-placeholder,
textarea::-webkit-input-placeholder { /* WebKit browsers */
    color: #b8c4ce;
    font-size: 14px;
    -webkit-user-select: none;
    -moz-user-select: none;
    -ms-user-select: none;
    user-select: none;
}

input:-moz-placeholder,
textarea:-moz-placeholder { /* Mozilla Firefox 4 to 18 */
    color: #b8c4ce;
    font-size: 14px;
    -webkit-user-select: none;
    -moz-user-select: none;
    -ms-user-select: none;
    user-select: none;
}

input::-moz-placeholder,
textarea::-moz-placeholder { /* Mozilla Firefox 19+ */
    color: #b8c4ce;
    font-size: 14px;
    -webkit-user-select: none;
    -moz-user-select: none;
    -ms-user-select: none;
    user-select: none;
}

input:-ms-input-placeholder,
textarea::-moz-placeholder { /* Internet Explorer 10+ */
    color: #b8c4ce;
    font-size: 14px;
    -webkit-user-select: none;
    -moz-user-select: none;
    -ms-user-select: none;
    user-select: none;
}

textarea {
    resize: none
}

a {
    cursor: pointer;
    text-decoration: none;
    background: transparent;
    transition: color .25s;
}

ul {
    list-style-type: none;
    padding: 0;
    margin: 0;
}

h1, h2, h3, h4, h5, h6, .h1, .h2, .h3, .h4, .h5, .h6 {
    font-family: inherit;
    font-weight: 500;
    line-height: 1.1;
    color: inherit;
}

h4, .h4, h5, .h5, h6, .h6 {
    margin-top: 10px;
    margin-bottom: 10px;
}

hr {
    -webkit-box-sizing: content-box;
    -moz-box-sizing: content-box;
    box-sizing: content-box;
    height: 0;
    margin-top: 20px;
    margin-bottom: 20px;
    border: 0;
    border-top: 1px solid #eeeeee;
}

img {
    vertical-align: middle;
}

/*
* @autor sunze
* @date 2017/5/11
* @param 浮动和清除浮动
*/
.f-rt {
    float: right;
}

.f-lf {
    float: left;
}

.clear:before {
    content: '';
    display: block;
    font-size: 0;
    visibility: hidden;
    height: 0;
    clear: both;
}

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

.clear {
    zoom: 1;
}

/*
* @autor sunze
* @date 2017/5/16
* @param 基础字体、按钮样式
*/
.c-font {
    font-family: '微软雅黑';
    color: rgb(74, 89, 109);
    font-size: 14px;
}

.c-btn {
    display: inline-block;
    font-family: '微软雅黑';
    font-size: 14px;
    color: #fff;
    padding: 13px 25px;
    background-color: #2d9dff;
    cursor: pointer;
}

/*
* @autor sunze
* @date 2017/5/16
* @param 表格超出出现滚动条
*/
.dc-table-box {
    overflow-x: auto;
    overflow-y: auto;
}

.dc-down-box {
    margin-top: 30px;
}

/*commonend*/

/*alert*/
.tcj_tipbg {
    width: 100%;
    height: 100%;
    position: fixed;
    top: 0px;
    left: 0px;
    background: black;
    opacity: 0.6;
    z-index: 2600;
}

.tcj_tipcontent {
    width: 434px;
    min-height: 172px;
    border-radius: 3px;
    background: white;
    position: fixed;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    -webkit-transform: translate(-50%, -50%);
    -ms-transform: translate(-50%, -50%);
    -moz-transform: translate(-50%, -50%);
    -o-transform: translate(-50%, -50%);
    z-index: 2601;
    text-align: center;
    padding: 24px 28px;
}

.dc-content-innerbox {
    display: table;
    content: '';
    position: relative;
}

.alert-title {
    float: left;
    text-align: left;
    font-size: 16px;
    color: #333;
    width: 348px;
    word-break: break-all;
}

.alert-content {
    width: 380px;
    margin: 32px auto 0;
    font-size: 14px;
    color: #4a596d;
    clear: both;
    text-align: left;
    word-break: break-all;
    line-height: 30px;
}

.alert-close {
    float: right;
    line-height: 16px;
    font-size: 32px;
    color: #ccc;
}

.tcj_tipbtn {
    padding-top: 32px;
}

.tcj_tipbtn button {
    float: right;
    margin-left: 14px;
    outline: none;
}

.default {
    font-size: 12px;
    color: #fff;
    text-align: center;
    border: none;
    cursor: pointer;
    background: #27a3ff;
    padding: 0;
    width: 84px;
    border-radius: 2px;
    height: 34px;
    line-height: 34px;
}

.default:hover {
    background: #0285ff;
}

.cancel {
    font-size: 12px;
    text-align: center;
    cursor: pointer;
    padding: 0;
    width: 84px;
    border-radius: 2px;
    height: 34px;
    line-height: 34px;
    background: #fff;
    color: #444343;
    border: 1px solid #bdc1cb;
}

.tcj_tipremove {
    cursor: pointer;
}

.dc-common-problem-blank {
    width: 100%;
    margin: 0 auto;
    color: #a1a7c0;
    text-align: center;
    font-size: 16px;
    padding-top: 30px;
    padding-left: 0;
}

.dc-common-problem-blank p {
    margin-top: 10px;
}

/*面包屑*/
.ivu-breadcrumb {
    color: #9499b3;
    font-size: 12px;
    margin: 0 0 20px;
    padding-top: 15px;
}

.ivu-breadcrumb a {
    color: #9499b3;
}

.ivu-breadcrumb > span:last-child {
    color: #9499b3;
}

.ivu-breadcrumb a:hover {
    color: #27a3ff;
}

.ivu-breadcrumb-item-separator {
    margin: 0 4px;
    color: #9499b3;
}

.ivu-dropdown-menu.drop-down-menu {
    max-height: 200px;
    overflow-y: auto;
}

.ivu-select-dropdown {
    margin: 7px 0;
}

.ivu-input {
    height: 34px;
    border: 1px solid #bdc1cb;
    color: #4a596d;
    font-size: 14px;
    border-radius: 0;
}

.ivu-radio-group {
    line-height: 34px;

}

.ivu-radio-wrapper {
    font-size: 14px;
    color: #41486b;
    float: left;
}

.ivu-radio-inner {
    border: 1px solid #9aa1ab;
}

.ivu-radio {
    margin-right: 6px;
}

.ivu-input:focus {
    box-shadow: none;
    border-color: #3aa3ff;

}

.ivu-checkbox-wrapper.only-checkbox .ivu-checkbox + span {
    display: none
}

.ivu-checkbox-wrapper {
    font-size: 14px;
}

.wangEditor-txt ul {
    list-style: disc;
}

.wangEditor-txt ol {
    list-style: decimal;
}

/*::-webkit-scrollbar {*/
/*    width: 6px;*/
/*    height: 6px;*/
/*    background-color: #F5F5F5;*/
/*}*/

/*::-webkit-scrollbar-track {*/
/*    -webkit-box-shadow: inset 0 0 2px rgba(58, 56, 56, 0.3);*/
/*    background-color: #FFF;*/
/*}*/

/*::-webkit-scrollbar-thumb {*/
/*    border-radius: 12px;*/
/*//-webkit-box-shadow: inset 0 0 6px rgb(180, 174, 174);*/
/*    background-color: #cecece;*/
/*}*/
