/**
 * 描    述：		定义常用组件样式
 * 作用范围: 		公共，组件模块
 * 默认包含组件：	表单，表格，按钮，标签页导航，面包屑，分页，分类管理树形菜单
 * 模块搜索关键字： =
 */
/* button */

.btn {
    display: inline-block;
    *display: inline;
    padding: 6px 12px;
    font-size: 14px;
    line-height: 20px;
    color: #fff;
    text-align: center;
    vertical-align: middle;
    cursor: pointer;
    -moz-transition: color .25s linear, background-color .25s linear;
    -webkit-transition: color .25s linear, background-color .25s linear;
    transition: color .25s linear, background-color .25s linear;
}

.btn:hover,
.btn:focus,
.btn:active,
.btn.active,
.btn.disabled,
.btn[disabled] {
    color:#fff;
}

.btn-large {
    padding: 10px 20px;
    font-size: 17.5px;
}

.btn-small {
    padding: 2px 10px;
    font-size: 11.9px;
}

.btn-gray,
.btn-gray:hover {
    background-color: #ccc;
    color: #666;
}

.btn-yellow,
.btn-yellow:hover {
    background-color: #fb4505;
    color: #fff;
}

.btn-blue,
.btn-blue:hover {
    background-color: #0c9dcc;
    color: #fff;
}

.submit-btn {
    padding: 12px 50px;
    font-size: 16px;
}

.mr10 {
    margin-right: 10px;
}

.mt10 {
    margin-top: 10px;
}

.mb10 {
    margin-bottom: 10px;
}

.ml10 {
    margin-left: 10px;
}
/* = 表单
------------------------------------------ */
/* 表单组件 */

select,
textarea,
input[type="text"],
input[type="password"],
input[type="datetime"],
input[type="datetime-local"],
input[type="date"],
input[type="month"],
input[type="time"],
input[type="week"],
input[type="number"],
input[type="email"],
input[type="url"],
input[type="search"],
input[type="tel"],
input[type="color"],
.uneditable-input {
    display: inline-block;
    margin-bottom: 10px;
    font-size: 14px;
    color: #555555;
    vertical-align: middle;
    background: #fff;
}

input,
textarea,
.uneditable-input {
    width: 206px;
}

textarea {
    height: auto;
}

textarea,
input[type="text"],
input[type="password"],
input[type="datetime"],
input[type="datetime-local"],
input[type="date"],
input[type="month"],
input[type="time"],
input[type="week"],
input[type="number"],
input[type="email"],
input[type="url"],
input[type="search"],
input[type="tel"],
input[type="color"],
.uneditable-input {
    background-color: #ffffff;
    border: 1px solid #cccccc;
    -moz-transition: border-color .25s linear, color .25s linear, background-color .25s linear;
    -webkit-transition: border-color .25s linear, color .25s linear, background-color .25s linear;
    transition: border-color .25s linear, color .25s linear, background-color .25s linear;
}

textarea:focus,
input[type="text"]:focus,
input[type="password"]:focus,
input[type="datetime"]:focus,
input[type="datetime-local"]:focus,
input[type="date"]:focus,
input[type="month"]:focus,
input[type="time"]:focus,
input[type="week"]:focus,
input[type="number"]:focus,
input[type="email"]:focus,
input[type="url"]:focus,
input[type="search"]:focus,
input[type="tel"]:focus,
input[type="color"]:focus,
.uneditable-input:focus {
    border-color: #5574cd;
    outline: 0;
    outline: thin dotted \9;
}

input[type="radio"],
input[type="checkbox"] {
    margin: 4px 0 0;
    margin-top: 1px \9;
    *margin-top: 0;
    line-height: normal;
}

input[type="file"],
input[type="image"],
input[type="submit"],
input[type="reset"],
input[type="button"],
input[type="radio"],
input[type="checkbox"] {
    width: auto;
}

select,
input[type="file"] {
    height: 30px;
    /* In IE7, the height of the select element cannot be changed by height, only font-size */
    
    *margin-top: 4px;
    /* For IE7, add top margin to align select with labels */
    
    line-height: 30px;
}

select {
    width: 220px;
    background-color: #ffffff;
    border: 1px solid #cccccc;
}

select[multiple],
select[size] {
    height: auto;
}

select:focus,
input[type="file"]:focus,
input[type="radio"]:focus,
input[type="checkbox"]:focus {
    outline: thin dotted #333;
    outline: 5px auto -webkit-focus-ring-color;
    outline-offset: -2px;
}

.uneditable-input,
.uneditable-textarea {
    color: #999999;
    cursor: not-allowed;
    background-color: #fcfcfc;
    border-color: #cccccc;
    -webkit-box-shadow: inset 0 1px 2px rgba(0, 0, 0, 0.025);
    -moz-box-shadow: inset 0 1px 2px rgba(0, 0, 0, 0.025);
    box-shadow: inset 0 1px 2px rgba(0, 0, 0, 0.025);
}

.uneditable-input {
    overflow: hidden;
    white-space: nowrap;
}

.uneditable-textarea {
    width: auto;
    height: auto;
}

input:-moz-placeholder,
textarea:-moz-placeholder {
    color: #999999;
}

input:-ms-input-placeholder,
textarea:-ms-input-placeholder {
    color: #999999;
}

input::-webkit-input-placeholder,
textarea::-webkit-input-placeholder {
    color: #999999;
}

.radio,
.checkbox {
    min-height: 20px;
    padding-left: 20px;
}

.radio input[type="radio"],
.checkbox input[type="checkbox"] {
    float: left;
    margin-left: -20px;
}

.controls > .radio:first-child,
.controls > .checkbox:first-child {
    padding-top: 5px;
}

.radio.inline,
.checkbox.inline {
    display: inline-block;
    padding-top: 5px;
    margin-bottom: 0;
    vertical-align: middle;
}

.radio.inline + .radio.inline,
.checkbox.inline + .checkbox.inline {
    margin-left: 10px;
}

.text {
    padding: 4px;
    border: 1px solid #ccc;
    background-color: #fff;
    transition: all .3s linear;
}

.textarea textarea {
    padding: 6px;
    border: 1px solid #ccc;
    background-color: #fff;
    transition: all .3s linear;
    display: block;
    min-height: 100px;
    min-width: 300px;
}

.textarea textarea:focus {
    border: 1px solid #5574cd
}

.text {
    width: 220px;
    height: 20px;
    vertical-align: middle;
}

.textarea {
    display: block;
}

.checkbox + .checkbox,
.radio + .radio {
    margin-left: 15px;
}

.checkbox,
.radio {
    display: inline-block;
    height: 20px;
    line-height: 20px;
}

.checkbox input,
.radio input {
    margin-right: 5px;
    *margin-right: 1px;
    vertical-align: -1px;
}

select {
    height: auto;
    line-height: none;
    padding: 7px 10px;
    border: 1px solid #ccc;
}

select[multiple] {
    height: 200px;
}
/* 普通表单 */

.form-center {
    width: 600px;
    margin: 0 auto;
}

.form-horizontal .form-item {
    margin-bottom: 5px;
}

.form-horizontal .item-label {
    display: block;
    margin-right: 5px;
    height: 30px;
    line-height: 30px;
    font-size: 14px;
}

.form-horizontal .item-label .check-tips {
    margin-left: 8px;
    color: #aaa;
    font-weight: normal;
}

.form-horizontal .controls {
    overflow: hidden;
    padding: 5px 5px 5px 0;
    margin-left: 0px;
}

.form-horizontal .check-item {
    margin-right: 10px;
    display: inline
}

.form-horizontal .controls label + label {
    margin-left: 15px;
}

.form-horizontal .controls .check-tips {
    margin-left: 20px;
    color: #999;
}

label.textarea ~ .check-tips {
    margin-left: 0;
}

.form-horizontal .controls .block.check-tips,
.form-horizontal .controls .block.textarea {
    display: block;
    margin-left: 0;
    margin-bottom: 10px;
}
/* 搜索表单 */

.search-form .sleft {
    margin-right: 10px;
    float: left;
    border: 1px solid #ebebeb;
    background-color: #fff;
}

.search-form .drop-down {
    float: left;
    width: 81px;
    height: 28px;
    line-height: 28px;
}

.search-form .sort-txt {
    display: inline-block;
    margin: 0 2px 0 4px;
    padding-left: 6px;
    width: 45px;
    cursor: pointer;
}

.search-form .drop-down ul {
    position: absolute;
    margin-left: -1px;
    background-color: #fff;
    border: 1px solid #ebebeb;
}

.search-form .drop-down ul li {
    border-top: 1px solid #ebebeb;
}

.search-form .drop-down ul li:first-child {
    border-top-width: 0;
}

.search-form .drop-down ul a {
    padding: 0 10px;
    height: 30px;
    line-height: 30px;
    width: 60px;
    color: #404040;
}

.search-form .drop-down ul a:hover {
    background-color: #f0f0f0;
    border: none;
}

.search-form .search-input {
    float: left;
    padding: 2px 4px;
    width: 180px;
    height: 24px;
    line-height: 26px;
    border: 0 none;
    margin-bottom: 0;
}

.search-form .sch-btn {
    float: left;
    margin: 2px 2px 0 0;
    padding: 0 10px;
    height: 26px;
    line-height: 26px;
    vertical-align: middle;
}

.search-form .sch-btn:hover {
    color: #fff;
    text-decoration: none;
    border-bottom: 0 none;
}

.btn-search {
    display: inline-block;
    margin-top: 5px;
    width: 16px;
    height: 16px;
    background: url(../images/bg_icon.png) no-repeat -50px 0;
}
/* 高级搜索 */

.search-form .adv-sch-pannel {
    margin-right: 0;
}

.search-form .adv-sch-pannel .dropdown {
    right: 0;
    left: auto;
    padding: 15px 0 15px 15px;
    white-space: nowrap;
}

.adv-sch-pannel .row {
    display: inline-block;
    *display: inline;
    margin-right: 15px;
}

.adv-sch-pannel label {
    width: 70px;
    display: inline-block;
}

.adv-sch-pannel .row {
    margin-bottom: 6px;
}
/* 表单宽度预设 */

.input-large {
    width: 390px;
}

.input-mid {
    width: 150px;
}

.input-small {
    width: 100px;
}

.input-mini {
    width: 50px;
}

.input-8x {
    width: 400px;
}

.input-7x {
    width: 350px;
}

.input-6x {
    width: 300px;
}

.input-5x {
    width: 250px;
}

.input-4x {
    width: 200px;
}

.input-3x {
    width: 150px;
}

.input-2x {
    width: 100px;
}

.input-x {
    width: 50px;
}

.must {
    margin: 3px;
    color: #f00;
    font-style: normal;
    font-weight: normal;
    vertical-align: middle;
}
/* = 表格（默认有斑马条纹）
------------------------------------------ */

.table-bar {
    height: 40px;
    margin: 0;
    padding: 10px 10px 5px;

}

.data-table .regular-checkbox + label {
    margin: 0;
}

.data-table {
    margin: 0;
     border-top:0px solid #dedfdf;
}

.data-table table {
    width: 100%;
    background: #ddd;
}

.data-table caption {
    height: 30px;
    line-height: 30px;
    font-weight: 700;
}
.data-table thead{
    border-top: 0px solid #dedfdf;
}

.data-table thead th,
.data-table tbody td {
    padding: 15px 10px;
    height: 19px;
    line-height: 19px;
    font-weight: 400;
    word-break: break-all;
    word-wrap: break-word;
}

.data-table thead th {
    text-align: left;
    color: #333;
    padding: 10px;
    background-color: #eaeaea;
}

.data-table tbody tr {
    background-color: #fff;
    color: #686868;
    border-bottom: 1px solid #e1e6eb;
}

.data-table tbody tr:nth-child(even) {

}

.data-table tbody tr:hover {
    background-color: #f5f5f5
}
/* 复选框的列宽 */

.row-selected {
    width: 15px;
}
/* 按钮组 */

.btn-toolbar .btn {
    float: left;
    margin-left: -1px;
    border-radius: 0;
}

.btn-toolbar .btn:first-child {
    border-radius: 3px 0 0 3px;
}

.btn-toolbar .btn:last-of-type {
    border-radius: 0 3px 3px 0;
}
/* 带下拉框的按钮组 */

.btn-group,
.btn-group-click {
    display: inline-block;
    *display: inline;
    position: relative;
    margin-right: 5px;
    vertical-align: middle;
}

.btn-group .btn,
.btn-group-click .btn {
    margin-right: 0;
}

.btn-arrowdown,
.btn-arrowup {
    display: inline-block;
    margin-left: 10px;
    width: 10px;
    height: 5px;
    vertical-align: middle;
    background-image: url(../images/bg_icon.png);
    background-repeat: no-repeat;
}

.btn-arrowdown {
    background-position: 0 -25px;
}

.btn-arrowup {
    background-position: -25px -25px;
}

.btn-group .dropdown,
.btn-group-click .dropdown {
    display: none;
    position: absolute;
    top: 30px;
    left: 0;
    margin-top: 3px;
    min-width: 85px;
    border: 1px solid #ccc;
    background-color: #fff;
}

.btn-group .dropdown a,
.btn-group-click .dropdown a {
    padding: 6px 16px;
    height: 18px;
    line-height: 18px;
    white-space: nowrap;
}

.btn-group .dropdown a:hover,
.btn-group-click .dropdown a:hover {
    background-color: #eee;
}
/* = 标签导航
------------------------------------------ */

.tab-wrap {
    margin: 10px 20px;
}

.tab-nav {
    margin-bottom: 1px;
    background: #fff;
    padding: 0;
      box-shadow: 0 1px 3px rgba(0,0,0,0.05);
      position:fixed;
        width: -moz-calc(100% - 230px);
  width: -webkit-calc(100% - 230px);
  width: calc(100% - 230px);
      /*top:50px;*/
      z-index: 2000;
      height:40px;
}

.tab-nav li {
    margin: 0;
    border-right:1px solid #dedfdf;
    line-height:40px;
    height:40px;
}

.tab-nav li a,
.tab-nav li a:hover {
    padding: 0 20px;
    height: 40px;
    line-height: 40px;
    font-size: 14px;
    color: #666;
    position: relative;
}

.tab-nav .current a,
.tab-nav .current a:hover {
    padding: 0 20px;
    height: 38px;
    line-height: 38px;
    font-size: 14px;
    color: #666;
    position: relative;
}

.tab-nav li a .arrow {
    position: absolute;
    bottom: -6px;
    left: 50%;
    margin-left: -10px;
    display: none
}

.tab-nav .current a .arrow {
    display: none;
    color:#f3f3f3;
}

.tab-nav .current{
     line-height:38px;
    height:38px;
     border-bottom: 2px solid #2772ee !important;
}
.tab-nav .current a,
.tab-nav .current a:hover {
     border-bottom:0px !important;
}

.tab-content {
    padding: 20px 20px;
}

.tab-content .tab-pane {
    display: none;
}

.tab-content .in {
    display: block;
}
/* 二级菜单 */

.sub-tab-nav {
    overflow: hidden;
    zoom: 1
}

.has-sub-nav .sub_tab {
    border: 1px solid #ddd;
    border-top: none;
    height: 30px;
    padding: 10px;
    margin: -15px 0 10px;
}

.sub_tab_content {
    margin-top: 20px;
    float: left;
    width: 100%
}

.sub_tab li {
    float: left;
    margin-right: 10px;
    list-style: none;
}

.sub_tab li a {
    display: block;
    height: 40px;
    line-height: 40px;
    padding: 0 15px;
    background: #eee;
    color: #333;
    position: relative;
    z-index: 10;
}

.sub_tab li a.cur {
    background-color: #015dae;
    color: #fff
}

.sub_tab li a .arrow {
    position: absolute;
    bottom: -6px;
    left: 50%;
    margin-left: -10px;
    display: none
}

.sub_tab li a.cur .arrow {
    display: block
}

.normal_tips {
    background: #f4ffc1;
    padding: 15px;
    color: #da4224;
    word-break: break-all;
    margin: 0;
}

.normal_tips .fa {
    font-size: 20px;
}
/* = 面包屑导航
------------------------------------------ */

.breadcrumb {
    color: #999;
}

.breadcrumb .home {
    display: inline-block;
    text-align: center;
    line-height: 21px;
}

.breadcrumb .division {
    margin: 0 5px;
}
/* = 分页
------------------------------------------ */

.page {
    position:fixed;
    bottom:0px;
    z-index: 1000;
    margin:0px 0px;
    *zoom: 1;
}

.page:before,
.page:after {
    display: table;
    content: "";
}

.page:after {
    clear: both;
}

.page a,
.page span {
    float: left;
    margin-left: -1px;
    padding: 0 16px;
    height: 40px;
    line-height: 40px;
   color: #777;
  background-color: #fff;
  border:1px #e3e5e7 solid;
  cursor:pointer;
  border-width: 0px 1px !important;
}
.page a:hover {
    text-decoration: none;
color: #777!important;
  background-color: #e0e0e0!important;
  border-color: #cdd1d4!important;
}

.page .current {
    background-color: #155ABA;
  border-color: #2772ee;
  color:#fff;
}

.page .next,
.page .prev {
    font-family: "宋体";
    font-weight: bold;
}

.page .rows {
    border-right: 1px solid #CCCCCC;
}
/* = 分类管理树形菜单（目前只支持3级）
------------------------------------------ */

.category {
    margin: 10px 0;
    border-bottom-width: 0;
    background-color: #fff;
    border-right: 1px solid #ddd;
    border-left: 1px solid #ddd;
    margin: 0 0 30px
}

.category .hd {
    font-weight: bold;
    color: #333;
    background-color: #eaeaea;
}

.category .cate-item dt {
    border-bottom: 1px solid #E7E7E7;
    padding: 8px 0;
}

.category dl,
.category dd,
.category input {
    margin: 0;
}

.category .check,
.category .fold,
.category .order,
.category .name {
    float: left;
    height: 40px;
    line-height: 40px;
}

.category .opt {
    float: right;
    width: 120px;
    height: 35px;
    line-height: 35px;
    text-align: center;
}

.opt-btn {
    float: right;
    margin: 5px 10px 0 0;
}

.category .check {
    width: 40px;
    text-align: center;
}

.category .fold {
    width: 50px;
    text-align: center;
}

.category .fold i {
    display: inline-block;
    vertical-align: middle;
    width: 17px;
    height: 17px;
    background-repeat: no-repeat;
}

.category .fold .icon-fold,
.category .fold .icon-unfold {
    cursor: pointer;
    background: url(../images/bg_icon.png) no-repeat;
}

.category .fold .icon-fold {
    background-position: -100px -25px;
}

.category .fold .icon-unfold {
    background-position: -125px -25px;
}

.category .order,
.category .order input {
    text-align: center;
}

.category .order {
    width: 90px;
}

.category .order input {
    margin-bottom: 2px;
    width: 40px;
}

.category .name input {
    margin-bottom: 2px;
}

.category .add-sub-cate {
    margin-left: 10px;
}

.category .add-sub-cate:hover {
    text-decoration: none;
    border-bottom: 0 none;
}

.category .btn-mod {
    margin-left: 15px;
}

.category .root {
    font-weight: bold;
}

.category .tab-sign {
    display: inline-block;
    margin-left: 15px;
    height: 21px;
    vertical-align: middle;
    background-image: url(../images/tab_sign.png);
    background-repeat: no-repeat;
}

.category .name .msg {
    vertical-align: top;
    font-weight: normal;
}

.category .name .error {
    color: #B94A48;
}

.category .name .success {
    color: #468847;
}
/* 顶级分类 */

.category > dl > dt .tab-sign {
    display: none;
}
/* 二级分类 */

.category > dl > dd > dl > dt .tab-sign {
    width: 55px;
    background-position: 0 0;
}

.category > dl > dd > dl:last-child > dt .tab-sign {
    background-position: -55px 0;
}
/* 三级分类 */

.category > dl > dd > dl > dd > dl > dt .tab-sign {
    width: 110px;
    background-position: 0 -30px;
}

.category > dl > dd > dl > dd > dl:last-child > dt .tab-sign {
    background-position: 0 -60px;
}
/* 四级分类 */

.category > dl > dd > dl > dd > dl > dd > dl > dt .tab-sign {
    width: 165px;
    background-position: 0 -30px;
}

.category > dl > dd > dl > dd> dd > dl > dl:last-child > dt .tab-sign {
    background-position: 0 -60px;
}
/* 五级分类 */

.category > dl > dd > dl > dd > dl > dd >dl > dd > dl > dt .tab-sign {
    width: 220px;
    background-position: 0 -30px;
}

.category > dl > dd > dl > dd>dl > dd > dd > dl > dl:last-child > dt .tab-sign {
    background-position: 0 -60px;
}
/* 六级级分类 */

.category > dl > dd > dl > dd >dl > dd > dl > dd >dl > dd > dl > dt .tab-sign {
    width: 275px;
    background-position: 0 -30px;
}

.category > dl > dd >dl > dd > dl > dd>dl > dd > dd > dl > dl:last-child > dt .tab-sign {
    background-position: 0 -60px;
}

.category > dl > dd > dl > dd > dl >dd > dl >dd > dl >dd > dl > dt .add-sub-cate {
    display: none;
}

.category input {
    height: 16px;
}

.icon-add {
    display: inline-block;
    width: 16px;
    height: 16px;
    vertical-align: middle;
    background: url(../images/bg_icon.png) no-repeat 0 0;
}

.add-on {
    width: 20px;
    height: 20px;
    display: inline-block;
    position: relative;
    top: 7px;
    right: 25px;
}

.sort_bottom {
    margin-top: 105px;
}

.sort_option select {
    height: 250px;
    width: 220px;
}

.sort_top {
    margin-bottom: 10px;
}

.sort_top input {
    height: 24px;
    line-height: 26px;
    margin-right: 30px;
    border: 1px solid #ccc;
    padding-left: 5px;
}

.sort_btn button {
    display: block;
    margin-bottom: 15px;
}

.sort_option {
    float: left;
    margin-right: 16px;
}

.sort_confirm {
    float: left;
}
/* 后台内页模块样式
------------------------------------------------- */

.main {
    padding: 20px;
    background-color: #f6f6f6;
}

.main-title {
    padding-bottom: 20px;
    *zoom: 1;
}

.main-title:before,
.main-title:after {
    display: table;
    content: "";
}

.main-title:after {
    clear: both;
}

.main-title h2 {
    float: left;
    font-size: 20px;
    font-weight: 400;
    color: #445566;
}

.main-title .tools {
    float: right;
    margin-top: 5px;
}

.main-title .ca {
    display: inline-block;
    margin: 0 10px;
    width: 5px;
    height: 10px;
    background: url(../images/subnav_current.png) no-repeat center center;
}

.cf:before,
.cf:after {
    display: table;
    content: "";
}

.cf:after {
    clear: both;
}

.cf,
#contents .nav {
    *zoom: 1;
}
/* uploadify插件上传按钮 */

.uploadify-button {
    color: #fff;
    background-color: #27ae60;
}
/* = uploadify上传插件样式
------------------------------------------ */

.uploadrow {
    position: relative;
    z-index: 100;
    width: 120px;
    min-height: 120px;
}

.uploadify-button {
    position: relative;
    text-align: center;
    color: #fff;
    cursor: pointer;
    text-indent: -900px;
    overflow: hidden;
    background: #27ae60 url(../images/add.png) no-repeat center center;
}

.upload_file .uploadify-button {
    background: #eee;
    border: 1px dashed #ddd;
    line-height: 30px;
    text-indent: 0;
    color: #444
}

.uploadify-queue-item {
    position: absolute;
    margin-top: 4px;
    padding: 15px;
    width: 470px;
    border: 1px solid #ccc;
    background-color: #fff;
}

.uploadify-queue-item .cancel {
    float: right;
}

.uploadify-queue-item .cancel a,
.uploadify-queue-item .cancel a:hover {
    font-family: Consolas;
    color: #404040;
    text-decoration: none;
    border-bottom: 0 none;
}

.uploadify-queue-item .fileName {
    color: #2D7200;
}

.uploadify-error {
    background-color: #FDE5DD !important;
}

.uploadify-queue-item.completed {
    background-color: #E5E5E5;
}

.uploadify-progress {
    background-color: #E5E5E5;
    margin-top: 10px;
    width: 100%;
}

.uploadify-progress-bar {
    background-color: #0099FF;
    height: 3px;
    width: 1px;
}

.uploadrow:hover .add-layer {
    display: block;
}

.upload-img-box {
    position: absolute;
    top: 5px;
    left: 0;
}

.upload_file .upload-img-box {
    position: static;
    left: 0;
    top: 0;
    margin-top: 10px;
}

.upload-img-box .upload-pre-item {
    width: 120px;
    max-height: 120px;
    overflow: hidden;
    text-align: center;
    cursor: pointer;
    transition: all .3s linear;
    background-color: #ccc;
}

.upload-img-box .upload-pre-item img {
    vertical-align: top;
}

.upload-img-box .upload-pre-file {
    padding: 0 10px;
    width: 380px;
    height: 35px;
    line-height: 35px;
    overflow: hidden;
    text-overflow: ellipsis;
    white-space: nowrap;
    border: 1px dashed #ccc;
    background-color: #fff;
}
/* 上传图片点击弹出层 */

.upload-img-popup {
    position: fixed;
    z-index: 9999;
    padding: 3px;
    border: 1px solid #c3c3c3;
    background-color: #fff;
    box-shadow: 0 0 4px rgba(0, 0, 0, .5);
}

.upload-img-popup .close-pop {
    position: absolute;
    top: -8px;
    right: -8px;
    width: 17px;
    height: 17px;
    background: url(../images/bg_icon.png) no-repeat -25px 0;
}

.upload-img-popup .close-pop:hover {
    text-decoration: none;
    border-bottom: 0 none;
}

.upload-img-popup img {
    display: block;
}

.upload_icon_all {
    width: 15px;
    height: 15px;
    background: url(../images/attachment_1.png);
    display: inline-block;
    vertical-align: middle;
    margin-right: 5px
}

.fl {
    float: left!important;
}

.fr {
    float: right!important;
}
/* 导航列表 */

#contents .nav {
    content: '';
    border-bottom:1px solid #dedfdf;
    height:40px;
    top:0px;
}

#contents .nav li {
    float: left!important;
}

#contents .nav li a{
    display: block;
    text-decoration: none;
    outline: none;
}
#contents .nav li:hover{
  background-color: rgb(238,238,238);
}

.picurl_btn,
.picurl_btn:hover {
    width: 100px;
    background-color: #F30;
    color: #fff;
}
/* 添加列表 */

.add_list_table {
    background: #ddd;
}

.controls .add_list td {
    padding: 10px 20px;
    position: relative;
    background-color: #f4f4f4;
}

.controls .add_list input {
    margin-bottom: 0;
}

.controls .add_list .upload-img-box {
    top: 0;
}
/* null deal*/

.null_deal {
    margin: 100px auto;
    padding-top: 150px;
    background: url(../images/cry.png) no-repeat center top;
    text-align: center;
    color: #666;
}
/* 图片管理 */

.box_overlay {
    background-color: RGBA(0, 0, 0, 0.3);
    width: 100%;
    height: 100%;
    position: fixed;
    top: 0;
    right: 0;
    left: 0;
    bottom: 0;
}

.trans_overlay {
    width: 100%;
    height: 100%;
    position: fixed;
}

.dialog {
    position: fixed;
    top: 50%;
    left: 50%;
    width: 500px;
    height: 300px;
    margin-left: -200px;
    margin-top: -150px;
    z-index: 9999;
    background-color: #fff;
    box-shadow: 0 2px 5px #999
}

.dialog_head {
    height: 40px;
    width: 100%;
    line-height: 40px;
    background: #090;
    color: #fff;
    position: relative;
}

.dialog_head .dialog_title {
    padding-left: 10px;
    font-size: 14px;
    font-weight: bold;
}

.dialog_head .dialog_close {
    width: 30px;
    height: 30px;
    position: absolute;
    top: 5px;
    right: 10px;
    background: url(../images/close.png) no-repeat;
    cursor: pointer
}

.dialog_content {
    width: 100%;
    position: relative;
}

.image_body {
    height: 400px;
    overflow: hidden;
    zoom: 1
}

.image_footer {
    height: 30px;
    background-color: #eee;
    padding: 10px;
}

.image_nav {
    background-color: #eee;
    height: 30px;
}

.image_nav a {
    background-color: #eee;
    float: left;
    height: 30px;
    line-height: 30px;
    padding: 0 15px;
    color: #666
}

.image_nav a.cur {
    background-color: #fff;
    color: #333
}

.upload_wrap {
    width: 420px;
    height: 100px;
    margin: 50px auto;
}

.upload_wrap .local {
    border: 1px dashed #090;
    padding: 30px 50px;
}

.upload_wrap .web {
    border: 1px dashed #090;
    padding: 30px 50px;
}

.upload_wrap .web input {
    margin: 0;
    width: 300px;
    padding: 5px;
    margin-right: 10px;
}

.upload_wrap .preview {
    overflow: hidden;
    zoom: 1
}

.upload_wrap .preview img {
    width: 150px;
    height: 150px;
    margin: 20px auto;
    display: block;
}

.online_wrap {
    padding: 10px 10px 10px 20px;
    overflow: hidden;
    height: 400px;
}

.online_wrap img {
    float: left;
    margin: 5px;
    width: 84px;
    height: 82px;
    padding: 5px;
    border: 2px solid #ddd;
    cursor: pointer
}

.online_wrap img.select {
    border-color: #0C0
}

.image_page {
    display: block;
    clear: both;
    text-align: center;
    padding-top: 20px;
}

.image_page a {
    background-color: #CCC;
    padding: 2px 8px;
    margin: 10px;
    color: #333
}

.image_page a.cur {
    background-color: #090;
    color: #fff
}

.cate_wrap {
    position: absolute;
    top: 100px;
    left: 0;
    height: 200px;
}

.cate_wrap .cate_list {
    width: 500px;
    height: 200px;
    padding: 20px;
    background: #fff;
    border: 2px solid #090;
    box-shadow: 0 0 5px #ccc;
    display: none
}

.cate_wrap .cate_switch {
    position: absolute;
    top: 50%;
    right: -26px;
    margin-top: -50px;
    width: 16px;
    height: 80px;
    padding: 10px 5px;
    background: #090;
    color: #fff;
    cursor: pointer
}

.cate_wrap .cate_list a {
    margin: 5px 10px;
    float: left;
    display: inline;
    padding: 2px 10px;
    background-color: #eee;
    color: #333
}

.btn-primary {
    color: #fff;
    background-color: #2772ee;
    border-color: #357ebd;
    margin-top: -6px;
    line-height: 14px;
    text-decoration: none;
}

.point_icon{
    position:absolute;
    right:20px;
    top:10px;
      color: #fff;
  background-color: #155abb;
  padding: 5px 8px;
  font-size: 14px;
  border-radius: 3px;
  display: inline;
  line-height: 12px;
  font-weight: 100
}

  .red_point{
  background-color: #F76249;
  color: #fff;
  border-radius: 8px;
  display: inline;
  height: 16px;
  line-height: 16px;
  min-width: 16px;
  text-align: center;
  font-size: 12px;
  padding: 0px 4px;
  vertical-align: super;
  }

  .btn-delete {
    background-color: #fff;
    color:#999;
    border:1px solid #999;
}

.btn-delete>.fa-trash-o {
    line-height: 32px;
    width: 38px;
    text-align: center;
}

.btn-delete:hover,
.btn-delete:focus{
    background-color: #999;
    color:#fff;
}

.helpbutton{
    float:right;
    margin:8px 20px;
    background-image: url('/Public/Home/images/nav-icon/help.png');
    background-size: contain;
    display:inline-block;
    width:25px;
    height: 25px;
    background-repeat: no-repeat;
}
.helpbutton:hover{
  background-image: url('/Public/Home/images/nav-icon/help-hover.png');  
}
