@charset "UTF-8";

.cv-btn-error {
    position: absolute;
    top: 8px;
    left: calc(50% - 60px);
    height: 20px !important;
    width: 150px !important;
    background-color: rgba(235, 125, 117, 1) !important;
    font-size: 12px !important;
    line-height: 14px !important;
    box-shadow: 0 4px 16px rgba(235, 125, 117, 1) !important;
}

.cv-btn-error:hover {
    box-shadow: 0 8px 16px rgba(235, 125, 117, 0.5) !important;
}

.cvStageNamesf {
    word-break: break-all;
}

#courseBtn {
    height: 50px;
    word-break: break-all;
    white-space: normal;
    font-size: 16px;
    margin-top: 60px;
    box-shadow: 0 2px 6px #2048B1;
}


/**
  输入框警告样式
**/

.cv-danger>input {
    border: 1px solid rgba(226, 64, 52, 1) !important;
}


/**
  按钮样式
**/

.cv-btn {
    display: inline-block;
    margin-bottom: 0;
    margin-left: 4px;
    font-weight: normal;
    text-align: center;
    vertical-align: middle;
    -ms-touch-action: manipulation;
    touch-action: manipulation;
    cursor: pointer;
    border: 1px solid transparent;
    white-space: nowrap;
    outline: none !important;
    padding: 2px;
    font-size: 12px;
    height: 20px;
    border-radius: 8px;
    -webkit-user-select: none;
    -moz-user-select: none;
    -ms-user-select: none;
    user-select: none;
    background-color: #2048B1;
    box-shadow: 0 4px 16px rgba(32, 72, 177, 0.4);
    color: #fff;
    -webkit-transition: all;
    transition: all;
    -webkit-transition-duration: 300ms;
    transition-duration: 300ms;
}

.cv-btn:hover,
.cv-btn:focus {
    text-decoration: none;
    box-shadow: 0 8px 16px rgba(4, 122, 220, 0.5);
    background-color: #047ADC;
}

.cv-btn.cv-disabled,
.cv-btn[disabled] {
    cursor: default;
    opacity: 0.2;
    box-shadow: none;
    background-color: #2048B1;
}

.cv-btn.cv-ghost {
    color: #047ADC;
    background-color: #fff;
    border-color: #2048b1;
}

.cv-btn.cv-ghost:hover,
.cv-btn.cv-ghost:focus {
    box-shadow: 0 8px 16px rgba(4, 122, 220, 0.5);
    background-color: #fff;
}

.cv-btn.cv-ghost.cv-disabled,
.cv-btn.cv-ghost[disabled] {
    opacity: 0.2;
    background-color: #fff;
}

.cv-btn.cv-tag {
    cursor: default;
    border-radius: 4px;
    background-color: rgba(102, 204, 204, 0.6);
    padding: 0 8px;
    box-shadow: none !important;
}


/**
  单选和多选按钮
**/

.cv-checkbox>label {
    position: relative;
    cursor: pointer;
}

.cv-checkbox>label>input {
    position: relative;
    width: 16px;
    height: 16px;
    opacity: 0;
    margin-right: 2px;
}

.cv-checkbox>label>input:checked+.cv-checkbox-helper {
    background-color: #60be29;
}

.cv-checkbox>label>input:checked+.cv-checkbox-helper:after {
    -webkit-transform: scale(1) rotate(-50deg);
    -ms-transform: scale(1) rotate(-50deg);
    transform: scale(1) rotate(-50deg);
    opacity: 1;
}

.cv-checkbox>label>input:checked+.cv-checkbox-helper:before {
    opacity: 0;
}

.cv-checkbox>label>div {
    display: inline-block;
}

.cv-checkbox.cv-active {
    background-color: #60be29;
}

.cv-checkbox.cv-active:after {
    -webkit-transform: scale(1) rotate(-50deg);
    -ms-transform: scale(1) rotate(-50deg);
    transform: scale(1) rotate(-50deg);
    opacity: 1;
}

.cv-checkbox.cv-active:before {
    opacity: 0;
}

.cv-checkbox-helper {
    position: absolute;
    width: 16px;
    height: 16px;
    top: -2px;
    left: 0;
    border-radius: 4px;
}

.cv-checkbox-helper:before,
.cv-checkbox-helper:after {
    content: "";
    -webkit-transition: all;
    transition: all;
    -webkit-transition-duration: 250ms;
    transition-duration: 250ms;
    -webkit-backface-visibility: hidden;
    backface-visibility: hidden;
}

.cv-checkbox-helper:before {
    position: absolute;
    top: 0;
    left: 0;
    border-radius: 4px;
    width: 16px;
    height: 16px;
    background-color: #fff;
    border: 1px solid #d8dcf0;
}

.cv-checkbox-helper:after {
    position: absolute;
    opacity: 0;
    -webkit-transform: scale(0) rotate(80deg);
    -ms-transform: scale(0) rotate(80deg);
    transform: scale(0) rotate(80deg);
    width: 13px;
    height: 7px;
    border-bottom: 2px solid #fff;
    border-left: 2px solid #fff;
    border-bottom-left-radius: 2px;
    left: 2px;
    top: 4px;
}


/**
  公共样式
**/

body {
    background-color: #eef3fa;
}

body>.main {
    position: relative;
    width: 1152px;
    margin: 0 auto;
    background-color: #fff;
}

body>.main>article {
    padding: 0 32px;
}

.cv-clearfix {
    clear: both;
}

.cv-clearfix:after {
    content: "";
    display: table;
    clear: both;
}

.cv-clearfix-child:after {
    content: "";
    display: table;
    clear: both;
}

.cv-pull-left {
    float: left;
}

.cv-pull-right {
    float: right;
}

.cv-absolute {
    position: absolute !important;
}

h2 {
    font-size: 24px;
}

h3 {
    font-size: 20px;
    font-weight: normal;
}

h5 {
    font-size: 18px;
    font-weight: normal;
}


/**
 下边距系列
**/

.cv-mb-4 {
    margin-bottom: 4px !important;
}

.cv-mb-8 {
    margin-bottom: 8px !important;
}

.cv-mb-16 {
    margin-bottom: 16px !important;
}

.cv-mb-38 {
    margin-bottom: 38px !important;
}

.cv-mb-56 {
    margin-bottom: 56px !important;
}

.cv-mt-16 {
    margin-top: 16px;
}

.cv-pb-38 {
    padding-bottom: 38px;
}

.cv-caption-text {
    font-size: 12px;
    color: #bbb;
}

.cv-color-caption-white {
    color: rgba(255, 255, 255, 0.3) !important;
}

.cv-search-no-more {
    position: relative;
    width: 145px;
    height: 80px;
    font-size: 12px;
    color: #bbb;
    margin: 0 auto;
    padding: 33px 0;
    text-align: center;
}

.cv-search-no-more:before,
.cv-search-no-more:after {
    content: "";
    position: absolute;
    top: 40px;
    width: 32px;
    height: 1px;
    background-color: #bbb;
}

.cv-search-no-more:before {
    left: 0;
}

.cv-search-no-more:after {
    right: 0;
}

.cv-bg-color-primary {
    background-color: #2655c8;
}

.cv-color-danger {
    color: #FF7B7B;
}

.cv-warning-block {
    position: relative;
    background-color: #fff7eb;
    border: 1px solid #ffeacc;
    border-radius: 2px;
    display: inline-block;
    padding: 10px 16px;
}


/**
  页面脚部
**/

.cv-page-footer {
    position: relative;
    width: 100%;
    height: 200px;
    color: #fff;
    font-size: 16px;
    text-align: center;
    padding: 40px 0;
}

.cv-page-footer>img {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
}

.cv-page-footer>div {
    position: relative;
    margin-bottom: 8px;
    z-index: 100;
    word-wrap: break-word;
    word-break: break-all;
}

.cv-page-footer>.cv-copyright {
    font-size: 12px;
}


/**
  页面头部
**/

.cv-page-header {
    position: relative;
    width: 100%;
    height: 60px;
    color: #fff;
    padding: 8px 32px;
    z-index: 100;
}

.cv-page-header>img {
    float: left;
    width: 202px;
    height: 38px;
}

.cv-page-header>nav {
    position: relative;
    float: right;
    font-size: 14px;
    margin-top: 12px;
}

.cv-page-header>nav>span {
    cursor: pointer;
    margin-left: 32px;
}


/**
  浏览器一些默认样式属性重置
**/

html,
body,
div,
iframe,
img,
i,
ul,
li,
nav,
h2,
h3,
h5,
input,
article,
aside,
footer,
header,
section {
    margin: 0;
    padding: 0;
    border: 0;
}

article,
aside,
footer,
header,
nav,
section {
    display: block;
}


/* Handle box-sizing while better addressing child elements:
   http://css-tricks.com/inheriting-box-sizing-probably-slightly-better-best-practice/ */

html {
    box-sizing: border-box;
}

*,
*:before,
*:after {
    box-sizing: inherit;
}


/* we use a lot of ULs that aren't bulleted.
	you'll have to restore the bullets within content,
	which is fine because they're probably customized anyway */

ul {
    list-style: none;
}

a {
    margin: 0;
    padding: 0;
    font-size: 100%;
    vertical-align: baseline;
    background: transparent;
    outline: none;
    color: #047ADC;
    text-decoration: none;
}

input,
select,
img {
    vertical-align: middle;
}

img {
    border: none;
}

section {
    position: relative;
}

:-ms-input-placeholder {
    color: #ddd;
}

input {
    font-family: inherit;
}

body {
    font-family: "Microsoft YaHei", "Arial-normal", "open sans", "Helvetica Neue", Helvetica, Arial, sans-serif;
    font-size: 12px;
    color: #3F4752;
}


/**
  用户信息
**/

.cv-user {
    position: relative;
    width: 300px;
    height: 440px;
    background-color: #fff;
    float: right;
    padding: 24px;
    color: #444;
    border-radius: 8px;
}

.cv-user .cv-btn {
    width: 100%;
    height: 40px;
    font-size: 14px;
}

.cv-user-info-img {
    border: 1px solid #d8dcf0;
    padding: 1px;
    border-radius: 8px;
    margin-right: 8px;
    float: left;
}

.cv-user-info-img>img {
    width: 56px;
    height: 76px;
    border-radius: 8px;
}

.cv-user-info-option {
    float: left;
    width: calc(100% - 68px);
    padding: 10px 0;
}

.cv-user-info-option>h5 {
    font-size: 16px;
    font-weight: bold;
}

.cv-credit-chart {
    position: relative;
    width: 152px;
    height: 152px;
    margin: 0 auto;
}

.cv-credit-chart>div {
    position: absolute;
    top: 0;
    left: 0;
    width: inherit;
    height: inherit;
    font-size: 20px;
    padding-top: 70px;
    text-align: center;
    z-index: 100;
}

.cv-credit-info {
    text-align: center;
}

.cv-credit-info>div {
    width: 33.33%;
    float: left;
    border-right: 1px solid #cadcfe;
}

.cv-credit-info>div:last-child {
    border: none;
}

.cv-credit-info>div>div {
    margin-bottom: 6px;
}

.cv-credit-num {
    font-size: 20px;
}

.cv-credit-caption {
    color: #999;
}

.cv-credit-color {
    width: 24px;
    height: 4px;
    margin: 0 auto;
    border-radius: 4px;
}

.cv-credit-color.cv-all {
    background-color: #e6f1fd;
}

.cv-credit-color.cv-complete {
    background-color: #3c66ce;
}

.cv-credit-color.cv-not {
    background-color: #66cccc;
}

.cv-user-my-plan>.cv-btn {
    width: 120px;
}


/**
  首页顶部的蓝色区域
**/

.cv-banner {
    position: relative;
    height: 560px;
    color: #fff;
    padding-top: 76px !important;
}

.cv-banner>section {
    position: relative;
}

.cv-banner-bg {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    z-index: 0;
}

.cv-banner-bg>img {
    width: 100%;
    height: 100%;
}

.cv-banner-bg>div {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background-color: rgba(38, 85, 200, 0.9);
}


/**
  倒计时模块
**/

.cv-countDown {
    width: 450px;
    margin: 74px 0 0 24px;
    float: left;
}

.cv-countDown>h2 {
    margin-bottom: 32px;
}

.cv-countDown-start-text {
    float: left;
    line-height: 72px;
    font-size: 14px;
    margin-right: 8px;
}

.cv-countDown-option {
    position: relative;
    float: left;
    width: 50%;
    text-align: center;
}

.cv-countDown-option span {
    color: rgba(255, 255, 255, 0.5);
}


/**
  登陆模块
**/

.cv-login {
    position: relative;
    width: 300px;
    height: 440px;
    background-color: #fff;
    float: right;
    padding: 38px 24px 0 24px;
    color: #444;
    border-radius: 8px;
}

.cv-login>h5 {
    margin-bottom: 48px;
}

.cv-login>div {
    position: relative;
    margin-bottom: 12px;
}

.cv-login>div>img {
    position: absolute;
    top: 6px;
    left: 8px;
    width: 16px;
    height: 16px;
}

.cv-login>div.cv-verification-code>input {
    width: 160px;
    padding-left: 4px;
}

.cv-login>div.cv-verification-code>img {
    top: 0;
    left: inherit;
    right: 0;
    width: 80px;
    height: 28px;
}

.cv-login input {
    width: 100%;
    border-radius: 8px;
    height: 28px;
    border: 1px solid #d8dcf0;
    padding: 0 4px 0 38px;
    outline: none;
}

.cv-login>.cv-btns{
	position: absolute;
	left: 24px;
	top: 14px;
	width: calc(100% - 48px);
}

.cv-login>.cv-btns>.cv-btn,
.cv-login>.cv-btn {
    width: 100%;
    height: 40px;
    line-height: 36px;
    border-radius: 40px;
    font-size: 16px;
    margin-top: 16px;
    margin-bottom: 12px;
    box-shadow: 0 2px 6px #2048B1;
    margin-left: 0px;
}
.cv-login>.cv-btns>.cv-btn.cv-btn-error{
	position: static;
	width: auto !important;
    padding: 0 10px;
  	max-width: 100%;
  	margin: 0 auto;
  	overflow: hidden;
  	text-overflow: ellipsis;
}

/**
  首页下的4个模块的公共样式
**/

.cv-modules {
    border-left: 1px solid #cadcfe;
    border-right: 1px solid #cadcfe;
}

.cv-modules>section {
    position: relative;
    width: 512px;
    height: 524px;
    padding: 36px 0;
}

.cv-modules>section:before,
.cv-modules>section:after {
    content: "";
    position: absolute;
    top: 36px;
    right: 0;
}

.cv-modules>section:before {
    width: 120px;
    height: 120px;
    border-top: 1px solid #cadcfe;
    border-right: 1px solid #cadcfe;
}

.cv-modules>section:after {
    top: 92px;
    right: -21px;
    width: 156px;
    height: 1px;
    background-color: #cadcfe;
    -webkit-transform: rotate(315deg);
    -ms-transform: rotate(315deg);
    transform: rotate(315deg);
}

.cv-modules>section>header>h3 {
    font-weight: bold;
    margin-bottom: 6px;
}

.cv-modules>section>header>span {
    color: #bbb;
}

.cv-service-manual>div>a>div {
    position: relative;
    top: 174px;
    color: #599DEA;
    font-size: 28px;
    font-weight: bold;
    z-index: 100;
}

.cv-service-manual>div>a>div>div {
    line-height: 40px;
}

.cv-service-manual>div>a>img {
    position: absolute;
    bottom: 36px;
    left: 0;
    width: 506px;
    height: 295px;
}


/**
  通知公告和常见问题
**/

.cv-notification-list,
.cv-problem-list {
    position: relative;
    font-size: 16px;
}

.cv-notification-list>div,
.cv-problem-list>div {
    position: relative;
    margin-bottom: 8px;
}

.cv-notification-list>div>a,
.cv-problem-list>div>a {
    position: relative;
    width: 100%;
    display: block;
    color: #444;
    overflow: hidden;
    text-overflow: ellipsis;
    white-space: nowrap;
}

.cv-notification-list>div>a:hover,
.cv-problem-list>div>a:hover {
    color: #047ADC;
}

.cv-notification-list>div>span,
.cv-problem-list>div>span {
    font-size: 12px;
    color: #bbb;
}

.cv-problem-list>div {
    margin-bottom: 16px;
}

.cv-problem-list>div>a {
    padding-bottom: 8px;
    margin-bottom: 16px;
}

.cv-problem-list>div>a:after {
    content: "";
    position: absolute;
    left: 0;
    bottom: 0;
    width: 32px;
    height: 1px;
    background-color: #047ADC;
}


/**
  咨询方式
**/

.cv-consulting {
    position: relative;
    color: #fff;
    font-size: 14px;
}

.cv-consulting>img {
    position: absolute;
    top: 0;
    left: 0;
    width: 479px;
    height: 280px;
    z-index: 1;
}

.cv-consulting>h3,
.cv-consulting>div {
    position: absolute;
    z-index: 100;
}

.cv-consulting>h3 {
    top: 36px;
    left: 24px;
    font-weight: bold;
}

.cv-consulting-phone {
    top: 120px;
    left: 80px;
}

.cv-consulting-other {
    top: 180px;
    left: 80px;
}

.cvNoStartFlag>.cv-no-start {
    display: block;
}

.cvNoStartFlag>.cv-stage-axis,
.cvNoStartFlag>.cv-countDown {
    display: none;
}

.cv-no-start {
    position: relative;
    float: left;
    padding: 40px 60px;
    display: none;
}

.cv-no-start>img {
    width: 316px;
    height: 360px;
    float: left;
}

.cv-no-start>.cv-content {
    position: relative;
    font-size: 20px;
    float: left;
    padding-top: 48px;
    margin-left: -18px;
}

.cv-no-start>.cv-content>img {
    width: 54px;
    height: 36px;
    position: absolute;
    opacity: 0.4;
}

.cv-no-start>.cv-content>.cv-quotation-down {
    -webkit-transform: rotate(180deg);
    -ms-transform: rotate(180deg);
    transform: rotate(180deg);
    right: 0;
    bottom: -18px;
}

.cv-no-start>.cv-content>div {
    padding-top: 12px;
}

.cv-no-start>.cv-content>div>.cv-first {
    margin-left: 68px;
}

.cv-no-start>.cv-content>div>.cv-last {
    margin-left: 48px;
}


/**
  阶段时间轴
**/

.cv-stage-cont {
    height: 480px;
    width: 260px;
    position: relative;
}

.cv-stage-axis {
    position: absolute;
    top: 50%;
    left: 50%;
    -webkit-transform: translateX(-50%) translateY(-50%);
    -moz-transform: translateX(-50%) translateY(-50%);
    -ms-transform: translateX(-50%) translateY(-50%);
    transform: translateX(-50%) translateY(-50%);
    font-size: 14px;
    color: rgba(255, 255, 255, 0.3);
    height: auto;
    width: 100%;
}

.cv-stage-axis>.cv-block {
    position: relative;
}

.cv-stage-axis>.cv-block:last-child>.cv-row:last-child {
    display: none;
}

.cv-stage-axis>.cv-block.cv-active {
    color: #fff;
}

.cv-stage-axis>.cv-block.cv-active>.cv-row>.cv-cycle:before {
    content: "";
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    border: 1px solid #fff;
    border-radius: 100%;
}

.cv-stage-axis>.cv-block.cv-active>.cv-row>.cv-cycle:after {
    top: 6px;
    left: 6px;
    width: 12px;
    height: 12px;
    background-color: #fff;
}

.cv-stage-axis>.cv-block.cv-active>.cv-row>.cv-line:after {
    border-color: #fff;
}

.cv-stage-axis>.cv-block.cv-end>.cv-row:last-child {
    display: none;
}

.cv-stage-axis .cv-row {
    position: relative;
}

.cv-stage-axis .cv-row>div {
    float: left;
    min-height: 1px;
}

.cv-stage-axis .cv-row:after {
    content: "";
    display: table;
    clear: both;
}

.cv-stage-axis .cv-row>.cv-left {
    text-align: right;
    width: 124px;
    padding-top: 4px;
    word-break: break-all;
}

.cv-stage-axis .cv-row>.cv-right {
    text-align: left;
    width: 86px;
    padding-top: 5px;
    font-size: 12px;
}

.cv-stage-axis .cv-row>.cv-cycle,
.cv-stage-axis .cv-row>.cv-line,
.cv-stage-axis .cv-row>.cv-line-dotted {
    position: relative;
    width: 24px;
    height: 24px;
    margin-right: 12px;
}

.cv-stage-axis .cv-row>.cv-cycle:after {
    content: "";
    position: absolute;
    top: 6px;
    left: 6px;
    width: 12px;
    height: 12px;
    background-color: rgba(255, 255, 255, 0.3);
    border-radius: 100%;
    display: block;
    z-index: 10;
}

.cv-stage-axis .cv-row>.cv-line,
.cv-stage-axis .cv-row>.cv-line-dotted {
    height: 52px;
}

.cv-stage-axis .cv-row>.cv-line:after,
.cv-stage-axis .cv-row>.cv-line-dotted:after {
    content: "";
    position: absolute;
    top: -6px;
    left: 11.5px;
    width: 1px;
    height: calc(100% + 12px);
    border-left: 1px solid rgba(255, 255, 255, 0.3);
}

.cv-stage-axis .cv-row>.cv-line-dotted {
    height: 10px;
}

.cv-stage-axis .cv-row>.cv-line-dotted:after {
    border-left: 1px solid transparent;
    background: rgba(255, 255, 255, 0.3);
    background: -webkit-linear-gradient(rgba(255, 255, 255, 0.3), rgba(255, 255, 255, 0.3)) padding-box, -webkit-repeating-linear-gradient(135deg, rgba(255, 255, 255, 0.3) 0, rgba(255, 255, 255, 0.3) 25%, transparent 0, transparent 50%) 0/1px 4px;
    background: linear-gradient(rgba(255, 255, 255, 0.3), rgba(255, 255, 255, 0.3)) padding-box, repeating-linear-gradient(-45deg, rgba(255, 255, 255, 0.3) 0, rgba(255, 255, 255, 0.3) 25%, transparent 0, transparent 50%) 0/1px 4px;
}


/**
  alert对话框
**/

.cv-dialog {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    z-index: 9999;
}

.cv-dialog>div {
    position: absolute;
    top: calc(50% - 124px);
    left: calc(50% - 184px);
    width: 368px;
    height: 248px;
    text-align: center;
    border-radius: 16px;
    overflow: hidden;
    box-shadow: 0 4px 16px rgba(32, 72, 177, 0.4);
}

.cv-dialog>div>.cv-body {
    color: #fff;
    padding-top: 42px;
    height: 200px;
    background: #ff9800;
    background: -webkit-linear-gradient(300deg, #ff9800 0%, #ff9800 0%, #ffb952 100%, #ffb952 100%);
    background: linear-gradient(150deg, #ff9800 0%, #ff9800 0%, #ffb952 100%, #ffb952 100%);
}

.cv-dialog.cv-success>div>.cv-body {
    background: green;
}

.cv-dialog.cv-danger>div>.cv-body {
    background: #990000;
}

.cv-dialog>div>.cv-body>img {
    width: 60px;
    height: 60px;
}

.cv-dialog>div>.cv-body>h2 {
    font-size: 20px;
}

.cv-dialog>div>.cv-foot {
    background-color: #fff;
    font-size: 0;
}

.cv-dialog>div>.cv-foot>div {
    display: inline-block;
    width: 50%;
    height: 48px;
    line-height: 48px;
    font-size: 16px;
    cursor: pointer;
}

.cv-dialog>div>.cv-foot>.cv-sure {
    color: #FF9800;
}

.cv-dialog>div>.cv-foot>.cv-sure:hover {
    background-color: #fff7eb;
}

.cv-dialog>div>.cv-foot>.cv-cancel:hover {
    background-color: #eef7fe;
}

.cv-dropdown-dialog {
    position: absolute;
    width: 160px;
    /*height: 148px;*/
    background-color: #fff;
    box-shadow: 0 2px 8px rgba(0, 0, 0, 0.3);
    z-index: 9999;
}

.cv-dropdown-dialog>div {
    padding: 0 16px;
    cursor: pointer;
    height: 30px;
    line-height: 30px;
}

.cv-dropdown-dialog>div:hover {
    background-color: #e8e8e8;
}

.cv-dropdown-dialog>div[disabled] {
    cursor: default;
    background-color: transparent;
    color: #bbbbbb;
}

.djdm {
    width: 150px;
    height: 40px;
    padding: 0 20px;
    position: fixed;
    bottom: 10px;
    right: 10px;
    box-shadow: 0 0 4px rgba(0, 0, 0, 0.5);
    background-color: #eef3fa;
    z-index: 9999;
    transition: all 1s;
    overflow: hidden;
}

.djdm .title {
    height: 40px;
    text-align: right;
}

.djdm .title div {
    line-height: 40px;
    font-size: 16px;
    font-weight: bold;
    cursor: pointer;
}

.djdm .colorRed {
    color: #E24034;
}

.djdm .dmkg .btns {
    margin-top: 20px;
}

.djdm .dmkg .btns .srdm {
    padding: 5px 20px;
    height: 25px;
}

.djdm .dmnr {
    display: none;
    position: absolute;
    top: 40px;
    left: 0;
    width: 100%;
    height: calc(100% - 40px);
    padding: 0 20px;
}

.djdm .dmnr textarea {
    resize: none;
    width: 100%;
    height: 100px;
}

.djdm .dmnr .btns {
    margin-top: 10px;
}

.djdm .dmnr .btns button {
    padding: 5px 20px;
    height: 25px;
}

.djdm .dmnr .btns .qx {
    background: transparent;
    color: #000;
}

.electiveBatch-list-table{
	width: 100%;
	border-left: 1px solid #ccc;
    border-top: 1px solid #ccc;
}

.electiveBatch-list-table td,
.electiveBatch-list-table th{
    border-right: 1px solid #ccc;
    border-bottom: 1px solid #ccc;
    padding: 4px 10px;
    text-align: left;
}

.electiveBatch-list-table .cv-electiveBatch-operate{
	width: 10%;
	text-align: center;
}

.electiveBatch-list-table .cv-electiveBatch-name,
.electiveBatch-list-table .cv-electiveBatch-cause{
	width: 45%;
}

.qhlc-btn{
	position: fixed;
	right: 0;
	top: 40%;
    background-color: #047ADC;
    box-shadow: 0 2px 6px #2048B1;
    padding: 4px 10px;
    color: #fff;
    font-size: 16px;
    width: 35px;
    border-radius: 10px 0 0 10px;
    display: none;
    cursor: pointer;
}

.jqx-window #buttons .bh-btn{
	display: inline-block;
    margin-bottom: 0;
    margin-left: 4px;
    font-weight: 400;
    text-align: center;
    -ms-touch-action: manipulation;
    touch-action: manipulation;
    background-image: none;
    border: 1px solid transparent;
    padding: 6px 8px;
    font-size: 14px;
    line-height: 20px;
    border-radius: 1px;
    min-width: 80px;
    -webkit-user-select: none;
    -moz-user-select: none;
    user-select: none;
    box-shadow: 0 1px 4px rgba(0,0,0,.32);
    -webkit-transition: all;
    transition: all;
    -webkit-transition-duration: .3s;
    transition-duration: .3s;
    cursor: pointer;
}

.bh-btn-primary.bh-active, 
.bh-btn-primary.bh-focus, 
.bh-btn-primary:active, 
.bh-btn-primary:focus, 
.bh-btn-primary:hover{
   	color: #fff;
    background-color: #00BBD9;
}
.bh-btn-primary{
	color: #fff;
    background-color: #00BBD9;
    border: none;
}
.bh-btn-default.bh-active, 
.bh-btn-default.bh-focus, 
.bh-btn-default:active, 
.bh-btn-default:focus, 
.bh-btn-default:hover{
	color: #333;
    background-color: #fff;
    border-color: none;
}

.bh-btn-default {
    color: #333;
    background-color: #fff;
    border: none;
    padding: 6px 8px;
}

.jqx-window #buttons .bh-pull-right{
	float: right;
}

.cv-hide{
	display: none;
}
.cv-show{
	display: block;
}
.electiveBatchXznr {
	text-align: center;
	margin-top: 10px;
}
.electiveBatchXznr .xznr-title{
	font-size: 18px;
    color: #3F4752;
    font-weight: bold;
}
.electiveBatchXznr .xznr-content{
	margin: 20px;
	overflow: auto;
	white-space: pre-wrap;
}
.electiveBatchXznr .tyxz{
	margin-top: 5px;
}
.electiveBatchXznr .tyxz label{
	cursor: pointer;
}

