/* 公共样式 */
html,
body {
    width: 100%;
    height: 100%;
}

body {
    min-width: 1200px;
    color: #666;
    box-sizing: border-box;
    overflow-x: auto;
    overflow-y: hidden;
    font-family: "SourceHanSansCN", "Microsoft YaHei";
}

h1,
h2,
h3,
h4,
h5,
h6 {
    margin: 0;
    padding: 0;
}

ul {
    padding: 0;
}

li {
    list-style: none;
}

p {
    margin-bottom: 0;
}

a,
a:hover,
a:focus {
    text-decoration: none;
}

em,
i {
    font-style: normal;
}

textarea {
    border: 1px solid #ccc;
}

.textIndent {
    text-indent: 2em;
}

input[type="text"] {
    padding: 0 5px;
    border: 1px solid #c1c1c1;
}

input:focus {
    border-color: #000;
    outline: none;
}

input.form-control:focus {
    box-shadow: none;
    border-color: #333;
}

.mt-10 {
    margin-top: 10px;
}

.mb-10 {
    margin-bottom: 10px;
}

.mt-20 {
    margin-top: 20px;
}

.mb-20 {
    margin-bottom: 20px;
}

.pt-10 {
    padding-top: 10px;
}

.pt-20 {
    padding-top: 20px;
}

.pb-10 {
    padding-bottom: 10px;
}

.pb-20 {
    padding-bottom: 20px;
}

.bg {
    background-color: #F0F0F0;
}

/* 字体 */
.color {
    color: #f19916;
}

.bold {
    font-weight: 700;
}

/* 文本不可选中 */
.no-user-select {
    user-select: none;
    -moz-user-select: none;
    -webkit-user-select: none;
    -ms-user-select: none;
}

/* bootstrap- modal模态框 */
.modal .modal-title {
    font-weight: 700;
}

.modal-header .close {
    margin: 0;
}

.modal-header .close:focus {
    border: none;
    outline: none;
}

.modal-body {
    overflow-x: hidden;
    overflow-y: auto;
}

.modal-footer {
    text-align: center;
    border: none;
}

.modal-footer .btn {
    padding: 0;
    width: 124px;
    height: 34px;
    line-height: 34px;
}

/* 信息提示tips */
.tips-modal {
    position: fixed;
    left: 50%;
    top: 50%;
    padding: 12px 25px;
    min-width: 100px;
    transform: translate(-50%, -50%);
    line-height: 24px;
    color: #fff;
    background-color: rgba(0, 0, 0, .6);
    border-radius: 2px;
    z-index: 999999;
    display: none;
}

/* 按钮 */
.btn {
    border-radius: 2px;
}

.btn-default {
    background-color: #f4f4f4;
    color: #444;
    border-color: #ddd;
}

.btn-default:hover,
.btn-default:active,
.btn-default.hover {
    background-color: #e7e7e7;
}

.btn:active:focus,
.btn:focus {
    outline: none;
}

.btn-orange {
    color: #fff;
    background-color: #f19916;
    border-color: #f19916;
}

.btn-orange:hover,
.btn-orange:focus,
.btn-orange:active:hover {
    color: #fff;
    background-color: #f4a524;
    border-color: #f4a524;
}

.btn-border-orange,
.btn-border-orange:focus {
    color: #f19916;
    background-color: #fff;
    border-color: #f19916;
}

.btn-red,
.btn-red:hover,
.btn-red:focus,
.btn-red:active {
    color: #fff !important;
    font-size: 16px !important;
    border-color: #ff4001 !important;
    background-color: #ff4001 !important;
}

.btn-orangeRed {
    color: #fff !important;
    border-color: #FF6A00 !important;
    background-color: #FF6A00 !important;
}

.btn-orangeRed:hover,
.btn-orangeRed:focus,
.btn-orangeRed:active {
    color: #fff !important;
    border-color: #F05800 !important;
    background-color: #F05800 !important;
}

.btn-lightblue {
    color: #fff !important;
    border-color: #0ae !important;
    background-color: #0ae !important;
}

.btn-lightblue:hover,
.btn-lightblue:focus,
.btn-lightblue:active {
    color: #fff !important;
    border-color: #0091cb !important;
    background-color: #0091cb !important;
}

.btn-blue {
    color: #fff !important;
    border-color: var(--mainColor) !important;
    background-color: var(--mainColor) !important;
}

.btn-blue:hover,
.btn-blue:focus,
.btn-blue:active {
    color: #fff !important;
    border-color: var(--mainColor) !important;
    background-color: var(--mainColor) !important;
}

.btn-border-blue {
    color: var(--mainColor) !important;
    border-color: var(--mainColor) !important;
    background-color: #fff !important;
}

.btn-border-blue:hover,
.btn-border-blue:focus,
.btn-border-blue:active {
    color: var(--mainColor) !important;
    border-color: var(--mainColor) !important;
    background-color: #fff !important;
}

.btn-darkBlue {
    color: #fff !important;
    border-color: #0f6b9c !important;
    background-color: #0f6b9c !important;
}

.btn-darkBlue:hover,
.btn-darkBlue:focus,
.btn-darkBlue:active {
    color: #fff !important;
    border-color: #0f6b9c !important;
    background-color: #0f6b9c !important;
}

.btn-black,
.btn-black:hover,
.btn-black:focus,
.btn-black:active {
    color: #fff !important;
    border-color: #2D2D2D !important;
    background-color: #2D2D2D !important;
}

.btn-green {
    color: #fff !important;
    border-color: #07C160 !important;
    background-color: #07C160 !important;
}

.btn-green:hover,
.btn-green:active,
.btn-green:focus {
    color: #fff !important;
    border-color: #07C160 !important;
    background-color: #07C160 !important;
}


.btn-disabled,
.btn-disabled:hover,
.btn-disabled:focus,
.btn-disabled:active {
    color: #ccc !important;
    border-color: #ddd !important;
    background-color: #f4f4f4 !important;
    outline: none !important;
    box-shadow: none !important;
    cursor: no-drop !important;
}

/* 版心 */
.container {
    width: 1190px;
    padding: 0;
}

/* 布局 */
.session_box {
    min-width: 1200px;
    width: 100%;
    height: 100%;
    display: flex;
    flex-direction: column;
}

.session_box>#header {
    position: relative;
    z-index: 2222;
}

.session_box>.main {
    flex: 1;
    display: flex;
    flex-direction: row;
    overflow: hidden;
}

.session_box>.main>aside {
    position: relative;
    z-index: 2;
    transition: all 200ms ease;
    overflow: hidden;
}

.session_box>.main>.content {
    flex: 1;
    display: flex;
    flex-direction: column;
    height: 100%;
    overflow: hidden;
    position: relative;
}

.session_box>.main>.content>.task-content {
    flex: 1;
    /* padding-bottom: 10px; */
    overflow-x: hidden;
    overflow-y: auto;
}

.task-content>.sub-container {}

.task-content>.sub-container>#subAside {
    float: left;
}

.task-content>.sub-container>.sub-content {
    overflow: hidden;
}

/* 头部-start */
.common-head {
    margin-bottom: 0;
    background-color: #fff;
    border: none;
    border-bottom: 1px solid #ccc;
    border-radius: 0;
}

.common-head>.container-fluid {
    padding: 0;
    height: 60px;
}

.common-head>.container-fluid .nav-header {
    float: left;
}

.common-head>.container-fluid .head-brand {
    margin: 0 0 0 30px;
    display: block;
    padding: 0;
    height: 60px;
    color: #333;
    line-height: 60px;
    font-size: 24px;
    font-weight: 600;
}

.common-head .head-brand>.logo-img {
    display: inline-block;
    margin-right: 10px;
    width: 31px;
    height: 28px;
    background: url(../img/logo-itmc.png) no-repeat center / 100% 100%;
}

.common-head .head-brand>img.img-logo {
    display: inline-block;
    margin-top: -4px;
}

.common-head .head-brand>span {
    /* vertical-align: middle; */
}

.common-head .nav {
    margin: 0;
    height: 60px;
    line-height: 60px;
}

.common-head .nav>li {
    float: left;
    margin-left: 20px;
    line-height: 60px;
}

.common-head .nav>li>a {
    display: block;
    padding: 0;
    height: 60px;
    color: #333;
    line-height: 60px;
    text-align: center;
}

.common-head .nav>li>a:hover {
    background-color: transparent;
}

.common-head .nav>li.logout>a {
    width: 60px;
    border-left: 2px solid #e9e9e9;
}

.common-head .nav>li.logout>a i {
    font-size: 24px;
}

.common-head .user-center2 {
    display: none;
}

.common-head .user-center {
    margin: 0;
    height: 100%;
    cursor: pointer;
    position: relative;
}

.common-head .time-item {
    display: inline-block;
    float: left;
    font-size: 20px;
    line-height: 60px;
}

.common-head .time-item i {
    font-size: 24px;
    color: #008ae5;
}

.kh-clock {
    text-align: center;
    font-size: 24px;
    margin-top: 10px;
}

.kh-clock .load-img {
    width: 74px;
    height: 65px;
    margin: auto;
    background: url('../img/time.gif') no-repeat center top;
    background-size: cover;
}

.kh-clock .load-img img {
    width: 74px;
}

.common-head .user-center .user-img {
    display: inline-block;
    margin: 10px 16px;
    width: 40px;
    height: 40px;
    border-radius: 50%;
    background-image: url(../img/avatar.png);
    background-repeat: no-repeat;
    background-position: center center;
    background-size: 100% 100%;
    overflow: hidden;
}

.common-head .user-center .drop-menu {
    position: absolute;
    right: 0;
    top: 60px;
    z-index: 22;
    background-color: #fff;
    box-shadow: 0px 0px 15.66px 2.34px rgba(0, 0, 0, 0.2);
    display: none;
}

.common-head .user-center .drop-menu:before {
    content: "";
    position: absolute;
    right: 30px;
    top: -12px;
    border: 6px solid transparent;
    border-bottom-color: #fff;
}

.common-head .user-center:hover .drop-menu {
    display: block;
}

.common-head .user-center .drop-menu li {
    width: 140px;
    height: 50px;
    line-height: 50px;
    border-bottom: 1px solid #ebebeb;
}

.common-head .user-center .drop-menu li.hover:hover {
    background-color: #f6f6f6;
}

.common-head .user-center .drop-menu li a {
    display: block;
    width: 100%;
    height: 100%;
}

.common-head .user-center .drop-menu .left {
    float: left;
    width: 40px;
    height: 100%;
}

.common-head .user-center .user-name .left {
    background: url(../img/user.png) no-repeat center right 10px;
}

.common-head .user-center .logout .left {
    background: url(../img/shutdown02.png) no-repeat center right 10px;
}

.common-head .user-center .drop-menu .right {
    color: #000;
    overflow: hidden;
    text-overflow: ellipsis;
    white-space: nowrap;
}

.common-head .task-related>li>a {
    line-height: 20px;
    border: none;
    outline: none;
    background-color: transparent;
    overflow: hidden;
}

.common-head .task-related li i {
    display: block;
    margin: 10px auto 4px;
    font-size: 20px;
}

.common-head .task-related>li>a img {
    display: block;
    margin: 10px auto 6px;
}

.common-head .task-related>li>a div {
    font-size: 12px;
}

.session_box>.main>.content>.task-title {
    padding: 0 10px;
    height: 50px;
    line-height: 50px;
    font-size: 20px;
    font-weight: 600;
    /* color: #fff;
    background-color: #008ae5; */
}

.session_box>.main>.content>.task-title div {
    max-width: 1190px;
    margin: 0 auto;
    text-align: left;
}

/* 头部-end */

.aside-toggle {
    position: absolute;
    top: 50%;
    left: 0;
    z-index: 222;
    width: 17px;
    height: 61px;
    background: url(../img/icon_arrow.png) no-repeat 0 -60px;
    cursor: pointer;
}

.aside-toggle.active {
    background-position: 0 0;
}

/* 侧边栏-start */
.aside-tb,
.aside-exam,
.aside-elec,
.aside-elec-training {
    display: none;
}

/* 侧边栏end */

/* 任务中心-start */
.task-center .tb-exam,
.task-center .electronic-commerce {
    display: none;
}

/* 任务中心-end */


/* 底部footer.html */
#footer div {
    width: 100%;
    height: 30px;
    color: #333;
    line-height: 30px;
    font-size: 12px;
    text-align: center;
    background-color: #fff;
    border-top: 1px solid #eee;
    box-sizing: border-box;
}

/* 任务详情弹框 */
.task-detail-modal {
    position: fixed;
    width: 700px;
    top: 60px;
    right: 0;
    bottom: 0;
    padding: 0 20px;
    border-top: 1px solid #ddd;
    background-color: #fff;
    box-shadow: 0px 16px 16px 0px rgba(49, 49, 49, 0.22);
    z-index: 9999;
    overflow-x: hidden;
    overflow-y: auto;
    display: none;
}

.task-detail-modal .title {
    text-align: center;
    color: #ff7700;
    font-size: 20px;
    font-weight: bold;
    height: 60px;
    line-height: 60px;
    margin: 0 0 10px;
}

.task-detail-modal .download-link {
    display: none;
    margin-left: 10px;
    color: #337ab7;
    font-size: 11pt;
}

.task-detail-modal .download-link:hover {
    text-decoration: underline;
}

.task-detail-modal p {
    margin-bottom: 10px;
    line-height: 24px;
}

.task-detail-modal .btn-close {
    position: fixed;
    top: 80px;
    right: 40px;
    cursor: pointer;
}


/* form表单-start */
.form-item {
    padding: 20px 0;
    border-bottom: 1px dashed #e5e5e5;
}

.form-item h3 {
    margin: 10px 0;
    font-size: 12px;
    color: #999;
}

.form-item h3 .orange {
    color: #ed6c00;
}

.form-item h3 span:first-child {
    display: inline-block;
    margin-right: 10px;
    width: 100px;
    font-weight: 700;
    font-size: 16px;
    text-align: right;
}

.self-form .form-item:nth-last-child(2) {
    padding-bottom: 0;
    border: none
}

.self-form-group .left-explain {
    float: left;
    width: 100px;
    height: 50px;
    line-height: 50px;
    text-align: right;
}

.self-form-group .left-explain em {
    color: red;
    font-size: 14px;
    font-weight: 700;
}

.self-form-group .right-info {
    padding-left: 10px;
    overflow: hidden;
    position: relative;
}

.self-form-group .right-info .right-info-text {
    height: 50px;
    line-height: 50px;
}

.self-form-group .right-info label {
    margin-right: 10px;
}

.self-form-group .right-radio {
    margin-top: 13px;
}

.self-form-group .right-radio input[type="radio"] {
    margin: 0 4px;
    vertical-align: middle;
}

.self-form-group .right-input .form-control,
.self-form-group .right-input input[type="text"] {
    float: left;
    margin: 10px 0;
    width: 170px;
    height: 30px;
    padding: 0 5px;
    border-radius: 0;
}

.self-form-group .right-select {
    float: left;
    overflow: visible;
}

.self-form-group .right-select .select-box {
    float: left;
    margin: 10px 10px 10px 0;
    width: 170px;
    height: 30px;
    border-radius: 0;
}

.self-form-group .select-box select {
    padding: 0;
    height: 30px;
    line-height: 30px;
    border-radius: 0;
}

.self-form-group textarea {
    padding: 8px 6px;
    width: 360px;
    height: 100px;
    border-color: #ccc;
}

textarea:focus {
    border: 1px solid #000;
    outline: none;
}

.self-form-foot {
    margin: 30px 0;
    padding-left: 200px;
}

.self-form-foot .btn {
    padding: 0 22px;
    height: 34px;
    line-height: 34px;
    /* border-radius: 0; */
}

/* form表单-end */
/* 下拉框 */
.dropdown {
    margin: 10px 0;
    display: inline-block;
}

.dropdown .dropdown-toggle {
    padding-right: 24px;
    width: 100%;
    height: 100%;
    text-align: left;
    background-color: #fff;
    border: 1px solid #c1c1c1;
    overflow: hidden;
}

.dropdown .dropdown-toggle .chose-text {
    display: block;
    width: 100%;
    overflow: hidden;
    text-overflow: ellipsis;
    white-space: nowrap;
}

.dropdown .dropdown-toggle .caret {
    position: absolute;
    top: 50%;
    transform: translateY(-50%);
    right: 10px;
}

.dropdown .dropdown-menu {
    margin: 0;
    padding: 0;
    width: 100%;
    min-width: auto;
    top: calc(100%-1);
    border-radius: 0;
}

.dropdown .dropdown-menu li {
    padding: 0 5px;
    height: 30px;
    line-height: 30px;
    cursor: pointer;
    overflow: hidden;
    text-overflow: ellipsis;
    white-space: nowrap;
}

.dropdown .dropdown-menu li.active,
.dropdown .dropdown-menu li:hover {
    background-color: #f5f5f5;
}


/* subAside.html */
.sub-aside {
    margin-right: 16px;
    width: 187px;
    background: #fff;
    border: 1px solid #E0E0E0;
    position: relative;
    box-shadow: 1px 1px 2px 1px #e3e3e3;
}

.sub-aside .ordered-app {
    padding: 0 14px;
    height: 42px;
    line-height: 42px;
    border-bottom: 1px solid #e0e0e0;
    cursor: pointer;
}

.sub-aside .ordered-app .title {
    font-size: 16px;
    color: #333;
    font-weight: 600;
    -webkit-font-smoothing: antialiased;
}

.sub-aside .iconfont {
    font-family: sellerLayout;
    color: #999;
    font-size: 12px;
    float: right;
}

.sub-aside .category {
    padding-left: 14px;
    padding-top: 14px;
    padding-bottom: 4px;
    border-top: 1px solid #fff;
    border-bottom: 1px solid #fff;
}

.sub-aside .category .category-img {
    width: 18px;
    height: 18px;
    margin-right: 5px;
    float: left;
}

.sub-aside .category .category-img img {
    display: block;
    width: 100%;
    height: 100%;
}

.sub-aside .category .title {
    font-size: 14px;
    color: #333;
    font-weight: 600;
    -webkit-font-smoothing: antialiased;
}

.sub-aside .category .iconfont {
    padding-right: 14px;
}

.sub-aside .list {
    list-style: none;
    margin: 4px 0 0;
    padding: 4px 0;
    overflow: hidden;
}

.sub-aside .list li {
    float: left;
    width: 85px;
    padding-bottom: 6px;
}

.sub-aside .list li a {
    font-size: 12px;
    color: #333;
    text-decoration: none;
}

.sub-aside .category.hover {
    background: #fbfbfb;
    border-bottom: 1px solid #e0e0e0;
}

/* 中间过渡页 */
.adver-text>.remind {
    margin-bottom: 14px;
    padding: 0 16px;
    height: 40px;
    line-height: 39px;
    font-size: 12px;
    color: #000;
    border-bottom: 1px solid #e0e0e0;
    background-color: #fff;
}

.adver-text>.remind .iconfont {
    margin-right: 10px;
    color: #48b6ff;
    font-size: 20px;
    vertical-align: middle;
}

.adver-text .grid-list {
    width: 100%;
    margin-bottom: 14px;
}

.adver-text .grid-list .grid-item {
    float: left;
    width: 50%;
}

.adver-text .grid-list .grid-item-left {
    margin-right: 5px;
    height: 455px;
    background-color: #fff;
}

.adver-text .grid-list .grid-item-right {
    margin-left: 5px;
    height: 455px;
    background-color: #fff;
}

.adver-text .grid-list .grid-item .grid-item-title {
    padding: 0 14px;
    height: 45px;
    color: #000;
    line-height: 45px;
    border-bottom: 1px solid #e0e0e0;
}

.adver-text .real-data {
    padding: 20px 14px;
    border-bottom: 1px solid #e0e0e0;
    overflow: hidden;
}

.adver-text .real-data .pm-icon {
    float: left;
    margin-top: -6px;
    margin-right: 10px;
}

.adver-text .real-data .pm-icon i {
    color: #2A9EFF;
    font-size: 40px;
}

.adver-text .real-data .pm-text {
    float: left;
}

.adver-text .real-data .gray {
    margin-top: 28px;
    color: #999;
    font-size: 12px;
}

.adver-text .real-data .buyer-num i {
    color: #FFBC00;
}

.adver-text .real-data .order-num i {
    color: #FF638F;
}

.adver-text .gb-img img {
    display: block;
    width: 100px;
    margin: 60px auto 0;
}

.adver-text .gi-business p {
    height: 25px;
    line-height: 25px;
    font-size: 12px;
    color: #666;
}

.adver-text .gi-business p.first {
    margin-top: 10px;
    color: #333;
    font-size: 14px;
}

.adver-text .gi-business .gb-link {
    padding: 50px 20px 0;
}

.adver-text .gi-business .gb-link p {
    font-size: 14px;
    color: #333;
}

.adver-text .gi-business .gb-link a {
    display: inline-block;
    width: 80px;
    line-height: 33px;
    font-family: PingFangSC-Regular, Microsoft YaHei !important;
    font-size: 14px;
    color: #008AE5;
}

.adver-text .grid-item-left .group-title {
    font-size: 14px;
    color: #333;
    font-size: 14px;
}

.adver-text .todo-list {
    padding: 15px 0 15px 15px;
}

.adver-text .todo-list .item {
    margin-bottom: 16px;
}

.adver-text .todo-list .item h3 {
    color: #000;
}

.adver-text .todo-list .item .iconfont {
    margin-left: 4px;
    font-size: 12px;
    color: #666;
    ;
}

.adver-text .todo-list .item li {
    margin-top: 8px;
    line-height: 20px;
    float: left;
    padding-right: 10px;
    min-width: 140px;
    color: #6C6C6C;
}

.adver-text .todo-list .item li a {
    color: #666;
    font-size: 12px;
    text-decoration: none;
}

.adver-text .todo-list .item .item-value {
    font-size: 14px;
    color: #008ae5;
}

.adver-text .todo-list .item.service .line {
    clear: both;
    float: none;
    margin-top: 0;
    padding-top: 8px;
}

.adver-text .todo-list .item.service .line a {
    margin: 0 8px;
}

.adver-text .cssTransforms .grid-item-content {
    margin: 0 15px 15px;
}

.adver-text .cssTransforms .next-tabs-bar {
    height: 36px;
    border-bottom: solid 1px #DCDEE3;
}

.adver-text .cssTransforms .next-tabs-bar li {
    float: left;
    padding: 0 12px;
    height: 36px;
    line-height: 36px;
    border-bottom: 2px solid transparent;
}

.adver-text .cssTransforms .next-tabs-bar li.active {
    color: #008ae5;
    border-color: #008ae5;
}

.adver-text .cssTransforms .articles {
    font-size: 12px;
    padding-top: 4px;
}

.adver-text .cssTransforms .articles li {
    margin-top: 6px;
    height: 22px;
    line-height: 22px;
}

.adver-text .cssTransforms .bidu .articles li a {
    text-decoration: none;
    color: #333;
    text-overflow: ellipsis;
    white-space: nowrap;
    overflow: hidden;
    width: 320px;
}

.adver-text .cssTransforms .articles li a span {
    padding-right: 12px;
}

.adver-text .cssTransforms .articles li a span.top {
    color: #ff5000;
}

/* zTree插件修改-start */
.ztree * {
    font-size: 14px;
}

.ztree li {
    line-height: 30px;
}

.ztree li a,
.ztree li a.curSelectedNode {
    padding: 0 6px 0 3px;
    height: 30px;
}

/* zTree插件修改-end */

/* 校验提示 */
.check-text {
    position: absolute;
    display: inline-block;
    height: 22px;
    line-height: 22px;
    color: red;
    display: none;
}

.check-text i {
    vertical-align: middle;
}

.check-text i.icon-ok,
.check-text.ok i.icon-error {
    display: none;
}

.check-text.ok .icon-ok {
    display: block;
}

.check-text.ok .text {
    display: none;
}

.check-text.ok {
    display: block;
    color: #1afa29;
}

.check-text.right {
    top: 12px;
    left: 300px;
}

.check-text.bottom {
    top: auto;
    bottom: -10px;
    left: 10px;
}

/* 加载中 */
.loadModal {
    position: absolute;
    left: 0;
    right: 0;
    top: 60px;
    bottom: 0;
    z-index: 2020;
}

.loadModal .loading-img {
    width: 32px;
    height: 32px;
    position: absolute;
    left: 50%;
    top: 50%;
    transform: translate(-50%, -50%);
    -ms-transform: translate(-50%, -50%);
    -moz-transform: translate(-50%, -50%);
    -webkit-transform: translate(-50%, -50%);
    -o-transform: translate(-50%, -50%);
    background: url(../img/loading-2.gif) no-repeat center;
}

/* 退出系统 */
.logoutModal .modal-body {
    font-size: 16px;
    line-height: 50px;
}

/* 确认提示框 */
.conFirmModal .modal-content {
    overflow: hidden;
}

.conFirmModal .modal-header {
    padding: 0 10px;
    background-color: #F8F8F8;
}

.conFirmModal .modal-title {
    height: 42px;
    line-height: 42px;
    color: #333;
    font-size: 14px;
    font-weight: 400;
}

.conFirmModal .modal-header .close {
    margin-top: 9px;
}

.conFirmModal .modal-body {
    padding: 20px;
}

.conFirmModal .tip-text {
    color: #333;
    font-size: 14px;
}

.conFirmModal .modal-footer {
    padding: 0 0 10px;
}

.conFirmModal .modal-footer .btn {
    width: 80px;
    height: 30px;
    line-height: 30px;
}

/* ueditor-本地保存提示关闭 */
#edui1_message_holder {
    display: none;
}

/* datetimepicker input-图标 */
.datepicker-input {
    position: relative;
}

.datepicker-input .glyphicon-calendar {
    /* position: absolute;
    top: 18px;
    left: 160px;
    font-size: 14px; */
    float: left;
    margin: 18px 0 0 -20px;
    font-size: 14px;
}


.bg-md {
    background-color: #f3f4f7;
    height: 40px;
    line-height: 40px;
    padding: 0 10px;
    color: #333;
    font-size: 16px;
    text-align: left;
}

.bg-md span {
    width: 0;
    height: 16px;
    border-right: 3px solid #333;
    margin-right: 6px;
}

.text-con {
    padding: 10px 40px;
    line-height: 30px;
    color: #333;
    text-align: left;
    overflow-x: auto;
}

.text-con {
    padding: 10px 40px;
    line-height: 30px;
    color: #333;
    text-align: left;
    overflow-x: auto;
}

.text-con img {
    max-width: 100%;
}

.text-con table {
    /* width: 600px !important; */
    width: 100%;
}

.text-con table td {
    border: 1px solid;
    padding-left: 5px;
    min-width: 40px!important;
}



.text-con p {
    line-height: 30px;
    min-width: 80px;
}

/* 修改密码-start */
.modifyPassword {
    padding: 10px 0;
}

.modifyPassword .self-form-group .right-input .form-control {
    width: 90%;
}

/* 修改密码-end */

/* 选择图片弹框 */
.showPicture{
    width:750px;
}
.showPicture ul{
    width:100%;
}
.showPicture li {
    float: left;
    width: 210px;
    padding: 5px;
    height: 160px;
    margin: 5px;
}

.showPicture li img {
    margin: 10px;
    border: 1px solid #ddd;
    width: 100%;
    height: 150px;
}




.action-box {
    position: fixed;
    left: 0;
    right: 0;
    bottom: 0;
    height: 64px;
    background: #fff;
    -ms-flex-pack: center;
    justify-content: center;
    z-index: 9999;
    -webkit-box-shadow: 0 -1px 8px 0 rgb(39 52 120/12%);
    box-shadow: 0 -1px 8px 0 rgb(39 52 120/12%);
    text-align: center;
    line-height: 64px;

}

.action-box .btn-review {
    padding: 0;
    width: 200px;
    height: 42px;
    line-height: 42px;
    background: #ddd;
   border:  1px solid #ddd;
    border-radius: 4px;
    color: #333;
    outline: none;
    font-size: 16px;
}

.action-box .btn-save {
    padding: 0;
    width: 200px;
    height: 42px;
    line-height: 42px;
    background: #3385FF;
    border-radius: 4px;
    color: #FFFFFF;
    border-style: none;
    outline: none;
    font-size: 16px;
}