* {
    margin: 0;
    padding: 0;
}
body, th, td, button, input, select, textarea {
    font-family: "Microsoft Yahei", "Hiragino Sans GB", "Helvetica Neue", Helvetica, tahoma, arial, Verdana, sans-serif, "WenQuanYi Micro Hei", "\5B8B\4F53";
    font-size: 14px;
    color: #333; /*-webkit-font-smoothing: antialiased;-moz-osx-font-smoothing:grayscale*/
}
body {
    line-height: 1.6;
    overflow-y: scroll;
}
ul, ol, li {
    list-style: none;
}
img {
    border: 0;
    vertical-align: middle;
}
a {
    text-decoration: none;
    color: #333;
}

a:hover {
    color: orangered;
}

.current > a {
    color: orangered;
}

div {
    display: block;
}

/** 主体内容样式*/
.content-center {
    display: flex;
    width: 96%;
    margin: 0 auto;
    margin-top: 10px;
}

/**
 * 内容右侧样式
 */
.content-right {
    flex: 1;
    height: auto;
    background: #fff;
    border: 1px solid #ddd;
    /*margin-top: -1px;*/
    padding-bottom: 10px;
    margin-left: 16px;
    overflow-x: auto;
}

/**
 * 右侧内容标题样式
 */
.content_title {
    background-color: #f7f7f7;
    height: 40px;
    margin-bottom: 10px;
    border-bottom: 1px solid #ddd;
    color: #333;
    font-weight: bold;
}

.content_title > i {
    font-size: 15px !important;
    line-height: 40px;
    margin-left: 20px;
    height: 25px;
    border-left: 4px solid #d0021b;
    font-style: normal;
}

/**
 *  搜索操作样式
 */
.layout_bx {
    /* 	margin-top: 50px; */
}

/** 按钮样式*/
.layout_bx > input {
    border: none;
    outline: none;
    width: 85px;
    height: 30px;
    background-color: white;
    border: 1px solid #3bb4f2;
    color: #3bb4f2;
    cursor: pointer;
    border-radius: 4px;
    font-size: 15px;
    float: right;
    margin-right: 10px;
    margin-bottom: 1px;
}

.layout_bx > input:hover {
    color: #fff;
    background-color: #3bb4f2;
}

/** 搜索样式*/
.search {
    width: 500px;
    height: auto;
    float: right;
    margin-right: 22px;
    margin-bottom: 5px;
}

.search > .tx_search {
    margin-bottom: 5px;
}

.search > .tx_search > input {
    width: 100px;
    height: 30px;
    float: right;
    margin-right: 5px;
    font-family: 'ArialMT', 'Arial';
    font-weight: 400;
    font-style: normal;
    font-size: 13px;
    text-decoration: none;
    color: #000000;
    text-align: left;
    border: none;
    outline: none;
    border: 1px solid #ccc;
}

.search > .bt_search {
    width: 90px;
    float: right;
}

/** 搜索按钮样式*/
.search > .bt_search > input {
    border: none;
    outline: none;
    width: 75px;
    height: 30px;
    cursor: pointer;
    border-radius: 5px;
    font-size: 15px;
    color: #333;
    background-color: white;
    border-color: #efefef;
    border: 1px solid #ddd;
}

.search > .bt_search:hover > input {
    background: #cf0000;
    color: #fff;
}

input.error {
    background-color: #fbe2e2;
    border: #cf0000 1px solid !important;
    color: red;
    /*font-size: 15px;*/
    /*font-family: "楷体";*/
}

input, textarea {
    border-radius: 3px;
}

input[type='text'], textarea {
    border: solid 1px #ddd;
}

/*审核按钮样式*/
.audit {
    width: 600px;
    height: 40px;
}

/** 审核状态按钮样式*/
.audit > input {
    width: 80px;
    height: 32px;
    text-align: center;
    border-radius: 3px;
    border: none;
    outline: none;
    float: left;
    margin-left: 2px;
    margin-top: 5px;
    background-color: white;
    margin-top: 5px;
    cursor: pointer;
}

/** 审核状态按钮当前状态样式*/
.audit > .active {
    background: #cf0000;
    color: #fff;
    border-radius: 3px;
}

/**
 * 弹框样式
 */
.alert {
    display: none;
}

.mask {
    position: fixed;
    width: 100%;
    height: 100%;
    top: 0;
    left: 0;
    background-color: #333;
    opacity: 0.4;
    border-radius: 0 !important;
}

.alert_main {
    position: fixed;
    top: 50%;
    left: 50%;
    width: 225px;
    height: auto;
    border-radius: 10px;
    box-shadow: rgb(85, 85, 85) 0px 2px 8px;
    background-color: rgb(255, 255, 255);
    padding: 15px 0px;
    text-align: center;
    margin: -150px 0px 0px -110px;
    border: 1px solid rgb(0, 0, 0);
}

.alert_main > .alert_hint > span {
    text-align: center;
    margin-top: 10px;
    font-size: 18px;
    font-weight: 400;
}

.alert_main > .alert_text > span {
    margin-top: 11px;
    font-size: 14px;
    color: #333;
    word-break: normal;
    width: auto;
    display: block;
    white-space: pre-wrap;
    word-wrap: break-word;
    overflow: hidden;
}

.alert_main > .alert_choose {
    /*position: absolute;*/
    top: 0;
    left: 0;
    text-align: center;
}

/** 弹框*/
.alert_main > .alert_choose > .alert_yes {
    position: relative;
    left: 65px;
    top: 30px;
    border-radius: 10px;
    /* 	background-color: #ddd; */
    border: 1px solid #ddd;
    font-size: 14px;
    width: 100px;
    height: 30px;
    line-height: 30px;
    color: #d0021b;
    cursor: default;
}

.alert_main > .alert_choose > .alert_yes:hover {
    color: white;
    background-color: #d0021b;
}

/** 弹框选择按钮公共样式*/
.alert_main > .alert_choose > .alert_n, .alert_y {
    width: 113px;
    height: 22px;
    display: inline-block;
    padding: 8px 0px;
    color: #d0021b;
    cursor: default;
}

/** 弹框选择否按钮样式*/
.alert_main > .alert_choose > .alert_n {
    position: relative;
    /*left: -56px;*/
    /*top: 118px;*/
    left: -55px;
    top: 53px;
    border-radius: 0px 0px 0px 10px;
    background-color: #f7f7f7;
    color: #6B6B6B;
    font-size: 14px;
}

.alert_main > .alert_choose > .alert_n:hover {
    color: white;
    background-color: #d0021b;
}

/** 弹框选择是按钮样式*/
.alert_main > .alert_choose > .alert_y {
    position: relative;
    /*left: 56px;*/
    /*top: 80px;*/
    left: 56px;
    top: 15px;
    border-radius: 0px 0px 10px 0px;
    background-color: #ddd;
    color: #6B6B6B;
    font-size: 14px;
}

.alert_main > .alert_choose > .alert_y:hover {
    color: white;
    background-color: #d0021b;
}

h1{
    line-height: 30px!important;
    margin-left: 50px!important;
    font-weight: bold!important;
}

.txt1{
    border-color: #E9E9E9!important;
}
.txt2{
    border-color: #E9E9E9!important;
}
.txt3{
    border-color: #E9E9E9!important;
}
.txt4{
    border-color: #E9E9E9!important;
}
.txt5{
    border-color: #E9E9E9!important;
}
.txt6{
    border-color: #E9E9E9!important;
}


.txt5 textarea{
    border: 1px solid #E9E9E9!important;
    border-radius: 0px!important;
}
.txt5 .comment{
    border: 1px solid #E9E9E9!important;
    border-radius: 0px!important;
}
.remark{
    border: 1px solid #E9E9E9!important;
    border-radius: 0px!important;
}
td{
    word-wrap: break-word;
    word-break: break-all;
}
input{
    outline:none;
}
button{
    outline:none;
}
#hide_show_bottom{
    cursor: pointer;
}
.mr-10{
    margin-right: 10px;
}
.mr-20{
    margin-right: 20px;
}
.ml-10{
    margin-left: 10px;
}
.ml-20{
    margin-left: 20px;
}
.mt-10{
    margin-top: 10px;
}
.mt-20{
    margin-top: 20px;
}
.mb-10{
    margin-bottom: 10px;
}
.mb-20{
    margin-bottom: 20px;
}
.w200{
    width: 200px;
}
.a-blue{
    color: #169BD5;
    cursor: pointer;
}
.va-b{
    vertical-align: baseline !important;
}

.content-box{
    padding: 20px 20px;
}

.w-200{
    width: 200px !important;
}
.primary-color{
    color: #C0392B !important;
}
.primary-bg-color{
    background-color: #C0392B !important;
}

.primary-btn{
    background-color: #C0392B !important;
    color: white!important;
    border-color: #C0392B!important;
}
.back_list{
    float: right;
    margin-right: 20px;
    line-height: 40px;
    color: #00A0FF;
    font-weight: normal;
    font-size: 12px;
}