body {
	-webkit-font-smoothing: antialiased;
	/**这个属性可以使页面上的字体抗锯齿,使用后字体看起来会更清晰。加上之后就顿时感觉页面小清晰了。*/
	padding-top: 51px;
}

body,
button,
input,
select,
textarea,
h1,
h2,
h3,
h4,
h5,
h6 {
	font-family: Microsoft YaHei, '宋体', Tahoma, Helvetica, Arial, "\5b8b\4f53", sans-serif;
}
/**单row中所有的col模块高度相同，以最大值为准*/
.row.equal .equalHeight  {
        margin-bottom: -99999px;
        padding-bottom: 99999px;
}

.row.equal {
        overflow: hidden;
}

.yuejuanNav li.active,.mdNav li.active {
        font-weight:bold;
}
.mdNav li a{
                  color: #3385FF;
}
        .mdNav li.active a {
                color:#333;
        }
                .mdNav li.active a:hover {
                        color:#333;
                }

                /**覆盖复选框源码样式开始*/
[class*="icheck-material"] {
        min-height: 22px;
}

        [class*="icheck-material"] > input:first-child {
                width: 22px;
                height: 22px;
                display: block;
        }

        [class*="icheck-material"] > label {
                min-height: 22px;
                line-height: 22px;
        }

        [class*="icheck-material"] > input:first-child + label::before, [class*="icheck-material"] > input:first-child + input[type="hidden"] + label::before {
                width: 22px;
                height: 22px;
        }
/**覆盖复选框源码样式结束*/

/**form表单中label必填项，添加的*标记*/
.form-group label.required:before {
        content: '*';
        color: #F56C6C;
        margin-right: 4px;   
}

/**红色提示*样式*/
.redTipsStars:before {
        content: '*';
        color: #F56C6C;
        margin-right: 4px;      
}

/*-------滚动条整体样式----*/
.scrollBarBeautify {
        overflow-y:auto;
}
.scrollBarBeautify::-webkit-scrollbar {
        width:3px;
        height:8px;
}
/*滚动条里面小方块样式*/
.scrollBarBeautify::-webkit-scrollbar-thumb {
        border-radius:100px;
        -webkit-box-shadow:inset 0 0 5px rgba(0,0,0,0.2);
        background:#3385FF;
}
/*滚动条里面轨道样式*/
.scrollBarBeautify::-webkit-scrollbar-track {
        -webkit-box-shadow:inset 0 0 5px rgba(0,0,0,0.2);
        border-radius:4px;
        background:rgba(0,0,0,0.1);
}

/**元素横向晃动动画*/
.icon-translateFresh{
	animation: translatefresh 2s infinite linear;
	/* display: inline-block; */		/**不是一定要加，只是为了避免一些奇葩场景要旋转的元素并不是块级元素导致动画不动*/
}
@keyframes translatefresh {
	0%{
		transform: translateX(0px);
	}
	25%{
		transform: translateX(5px);
	}
	50%{
		transform: translateX(0px);
	}
	75%{
		transform: translateX(-5px);
	}
	100%{
		transform: translateX(0px);
	}
}

@media screen and (max-width:1024px){
 #moveDiv {
    position:inherit!important;
    top:auto!important;
    bottom: auto!important;
  }
    .tab-OriginalOrAnswer,.btn-markingOrReview {
        padding: 6px!important;
    }
    .ulToolbar, .scoreDisplayBox {
        margin-left:10px!important;
    }
}
/**兼容IE低版本浏览器中input的placeholder属性*/

.phcolor {
	color: #999;
}

::-moz-placeholder {
	color: #aaa;
}


/**ff*/

::-webkit-input-placeholder {
	color: #aaa;
}


/**chrome,safari*/

:-ms-input-placeholder {
	color: #aaa;
}


/**ie10*/

.box-shadow-none {
	box-shadow: none;
}

.box-shadow-light {
	-moz-box-shadow: 0px 1px 3px rgba(0, 0, 0, .1);
	-webkit-box-shadow: 0px 1px 3px rgba(0, 0, 0, .1);
	box-shadow: 0px 1px 3px rgba(0, 0, 0, .1);
}

.box-shadow-standard {
	-moz-box-shadow: 0px 0px 5px rgba(153,153,153,.35);
	-webkit-box-shadow: 0px 0px 5px rgba(153,153,153,.35);
	box-shadow: 0px 0px 5px rgba(153,153,153,.3);
}

/**wx_自改,自做蓝色块级按钮*/
.btn-standard-pri {
	background: #0099FF;
	border-color: #0099ff;
	color: white;
}

.btn-standard-pri:focus {
	background: #0099FF;
	border-color: #0099ff;
	color: white;
}

.btn-standard-pri:hover {
	background: #0084ff;
	border-color: #0084ff;
	color: white;
}

.btn-standard-pri:active {
	background: #0099FF;
	border-color: #0099ff;
	color: white;
}
/**wx_自改，黄色按钮*/
.btn-yellow {
	background: #f4bc45;
	border-color: #f4bc45;
	color: white;
}

.btn-yellow:focus {
	background: #f4bc45;
	border-color: #f4bc45;
	color: white;
}

.btn-yellow:hover {
	background: #f2b127;
	border-color: #f2b127;
	color: white;
}

.btn-yellow:active {
	background: #f4bc45;
	border-color: #f4bc45;
	color: white;
}
/**wx_自改，橙色按钮*/
.btn-orange {
	background: #f8773c;
	border-color: #f8773c;
	color: white;
}

.btn-orange:focus {
	background: #f8773c;
	border-color: #f8773c;
	color: white;
}

.btn-orange:hover {
	background: #f7621e;
	border-color: #f7621e;
	color: white;
}

.btn-orange:active {
	background: #f8773c;
	border-color: #f8773c;
	color: white;
}
/**wx_自改，绿色按钮*/
.btn-green {
	background: #47d1b9;
	border-color: #47d1b9;
	color: white;
}

.btn-green:focus {
	background: #47d1b9;
	border-color: #47d1b9;
	color: white;
}

.btn-green:hover {
	background: #18b89c;
	border-color: #18b89c;
	color: white;
}

.btn-green:active {
	background: #47d1b9;
	border-color: #47d1b9;
	color: white;
}
/**wx_自改，浅蓝按钮*/
.btn-wathet {
	background: #93bbee;
	border-color: #93bbee;
	color: white;
}

.btn-wathet:focus {
	background: #93bbee;
	border-color: #93bbee;
	color: white;
}

.btn-wathet:hover {
	background: #70a7ec;
	border-color: #70a7ec;
	color: white;
}

.btn-wathet:active {
	background: #93bbee;
	border-color: #93bbee;
	color: white;
}

.btn-standard-red {
	/**wx_自改,自做红色块级按钮*/
	background: #FF4D4D;
	border-color: #FF4D4D;
	color: white;
}

.btn-standard-red:focus {
	background: #FF4D4D;
	border-color: #FF4D4D;
	color: white;
}

.btn-standard-red:hover {
	background: #FF1A1A;
	border-color: #FF1A1A;
	color: white;
}

.btn-standard-red:active {
	background: #FF4D4D;
	border-color: #FF4D4D;
	color: white;
}

.head-por60-70{
	width: 60px;
	height: 70px;
}

/**手势*/
.cur-pointer{
	cursor: pointer;
}
.cur-text{
	cursor:text
}
a.cur-text:hover {
        text-decoration:none;
}

.cur-move {
        cursor: move;
}
.cur-auto {
        cursor: auto;
}

.user-selectNone {                      /**禁止文字点击选中*/
        user-select:none
}

/**块元素*/

.block {
	display: block;
}

.inl-block {
	display: inline-block;
}
.none{
	display: none;
}
.noneImportant {
    display:none!important;
}
.visi-hid {
    visibility: hidden;
}


.bor-radius2 {
	border-radius: 2px;
}
.bor-radius4 {
	border-radius: 4px;
}
.bor-radius10 {
	border-radius: 10px;
}

.bor-bottom-e6e7f1 {
    border-bottom: 1px solid #e6e7f1;
}

.full-wid {
	width: 100%;
}
.wid-auto{
	width: auto;
}
.height-auto{
	height: auto;
}
.overflow-xAuto{
	overflow-x: auto;
}
.overflow-yHidden {
        overflow-y:hidden;
}
.overflow-yInherit {
        overflow-y:inherit;
}

.full-hei {
	height: 100vh;
	/**vh布局可以占据100%高度*/
}
.minWid-50{
	min-width: 50px;
}
.minWid-68{
	min-width: 68px;
}
.minWid-80{
	min-width: 80px;
}

.minWid-90 {
        min-width: 90px;
}

.minWid-100 {
        min-width: 100px;
}
.minWid-120{
	min-width: 120px;
}
.minWid-135{
	min-width: 135px;
}
.minWid-160{
	min-width: 160px;
}
.minWid-180{
	min-width: 180px;
}
.minWid-380{
	min-width: 380px;
}
.max-wid32{
	max-width: 32px;
}
.max-wid40{
	max-width: 40px;
}
.max-wid50{
	max-width: 50px;
}
.max-wid60{
	max-width: 60px;
}
.max-wid140{
	max-width: 140px;
}
.max-wid180{
	max-width: 180px;
}
.max100 {
    max-width:100%;
}
.max-wid475{
	max-width: 475px;
}
.max-widInherit{
    max-width:inherit;
}

/**单个字符无空格过长时自动换行*/
.word-break-all {
        word-wrap:break-word;
        overflow:hidden;
        word-break:break-all;
}

.hei400 {
	height: 400px;
}

.lineHei25{
	line-height: 25px;
}
.lineHei32{
	line-height: 32px;
}
.lineHei34{
	line-height: 34px;
}

.letterSpa2{
	letter-spacing: 2px;
}
.col-white {
	color: white;
}

.col-3 {
	color: #333;
	/**正文的文字颜色*/
}
.col-6 {
	color: #666;
}
.col-7 {
    color: #777;
}
.col-9 {
	color: #999;
	/**注释类的文字颜色*/
}
.col-c{
	color: #ccc;		/**阅卷页面工具栏中字体颜色*/
}
.col-096eb1 {
    color: #096eb1;
}
.col-red {
	color: red;
	/**错误提示颜色*/
}
.hoverRed:hover{
	color: red;			/**鼠标经过变成红色*/
}
.hoverBgE:hover{
	background: #eee;			/**鼠标经过背景色变成eee*/
}
.col-f0b400 {
	color: #f0b400;
	/**异常提示颜色*/
}
.col-faa47d {
        color:#faa47d;                  /**科目管理页面橙色字体*/
}
.col-47d1b9 {
        color:#47d1b9;                  /**科目管理页绿色字体*/
}
.col-93bbee {
        color:#93bbee;                  /**科目管理页蓝色字体*/
}
.col-ff00e4 {
        color:#ff00e4;                  /**科目管理页紫色字体*/
}
.col-3499fd {
        color:#3499fd;                  /**推送题审核页面待选模块边框和蓝色字体的颜色*/
}
.col-ff5722 {
        color:#ff5722;                  /**推送题审核页面已选模块边框和红色字体的颜色*/
}
.col-09f {
	color: #3385FF;
	/**主色调的蓝色（按钮、链接、背景等）*/
}
.col-0C3{
	color: #00CC33;			/**阅卷页面全部满分字体颜色*/
}
.col-ffb800{
	color: #ffb800;			/**阅卷页面异常试卷字体颜色*/
}

.bg-none{
	background: none;
}
.bg-white {
	background: white;
}
.bg-d{
	background: #ddd;		/**联考入口考试列表隔行换色的背景色*/
}
.bg-096eb1 {
    background: #096eb1; /**与导航背景色一样的蓝色*/
}
.bg-e4{
	background: #e4e4e4;		/**联考入口考试列表隔行换色的背景色*/
}
.bg-f2{
	background: #f2f2f2;		/**联考入口普通标记框的背景色*/
}
.bg-f4{
	background: #f4f4f4;		/**疑难处理页面的背景色*/
}
.bg-f0d49e{
	background: #f0d49e;		/**联考入口联考标记框的背景色*/
}
.bg-ffc{
	background: #ffffcc;		/**阅卷、疑难处理页面中小题列表输入框背景黄色*/
}
.bg-656e7c{
	background: #656e7c;		/**阅卷页工具栏背景色*/
}
.bg-09f {
	background: #0099ff;
}
.bg-8cc814 {            /**成功的非模态提示框背景色*/
    background:#8cc814;
}
.bg-red {            /**失败的非模态提示框背景色*/
    background:red;
}
.bg-f0b400 {            /**异常的非模态提示框背景色*/
    background:#f0b400;
}
.bg-0C3{
	background: #00CC33;			/**阅卷页面单题满分字体颜色*/
}
.bg-0C3{
	background: #00CC33;			/**阅卷页面单题满分字体颜色*/
}
.bg-correctOpt {
    background: rgba(9,110,177,0.3);
}

.singleHpLi.active {       /**阅卷页面回评列表中当前点击小题背景色*/
        background:#e6e6e6;
}
.bg-ff4a26 {                /**阅卷页面回评列表中已经进入仲裁的小题背景色*/
        background: #ff4a26;
}

.bg-ffdb26 {               /**阅卷页面已回评背景、复查页面已复查背景*/
        background:#ffdb26;
}

.pos-rel {
	position: relative;
}

.pos-abs {
	position: absolute;
}
.pos-fixed {
	position: fixed;
}

.verCenter-parents {
	/**子div在父div里垂直水平居中*/
	margin: auto;
	top: 0;
	bottom: 0;
	left: 0;
	right: 0;
}
.vert-center { /**适用于单行文字在父元素中垂直居中*/
    top: 50%;
    left: 50%;
    -webkit-transform: translate(-50%,-50%);
    -ms-transform: translate(-50%,-50%);
    transform: translate(-50%,-50%);
}
.ver-top{
	vertical-align: top;
}
.ver-textTop{
	vertical-align: text-top;
}
.ver-middle{
	vertical-align: middle!important;
}

.ver-super {
        vertical-align: super;
}

.ver-textBottom {
        vertical-align: text-bottom;
}
.ver-bottom{
	vertical-align: bottom;
}
.fo10 {
	font-size: 10px;
}
.fo12 {
	font-size: 12px;
}
.fo13{
	font-size: 13px;
}
.fo14 {
	font-size: 14px;
}
.fo16 {
	font-size: 16px;
}
.fo18 {
	font-size: 18px;
}
.fo20 {
	font-size: 20px;
}

.fo22 {
        font-size: 22px;
}

.fo24 {
	font-size: 24px;
}
.fo28 {
	font-size: 28px;
}

.fo-normal{
	font-weight: normal;
}
.fo-bold{
	font-weight: bold;
}

.fo48 {
	font-size: 48px;
}
.mt_3{
	margin-top: -3px;
}
.mt_4{
	margin-top: -4px;
}
.mt0 {
	margin-top: 0;
}
.mt3 {
	margin-top: 3px;
}
.mt5 {
	margin-top: 5px;
}
.mt6 {
	margin-top: 6px;
}
.mt7 {
	margin-top: 7px;
}
.mt8 {
	margin-top: 8px;
}
.mt10 {
	margin-top: 10px;
}
.mt11 {
	margin-top: 11px;
}
.mt12 {
	margin-top: 12px;
}
.mt15 {
	margin-top: 15px;
}
.mt20 {
	margin-top: 20px;
}
.mt25 {
	margin-top: 25px;
}

.mt30 {
        margin-top: 30px;
}

.mt32 {
	margin-top: 32px;
}

.mt40 {
	margin-top: 40px;
}
.mt50 {
	margin-top: 50px;
}

.mb0 {
	margin-bottom: 0;
}
.mb5 {
	margin-bottom: 5px;
}
.mb10 {
	margin-bottom: 10px;
}
.mb15 {
	margin-bottom: 15px;
}
.mb20 {
	margin-bottom: 20px;
}
.mb25 {
	margin-bottom: 25px;
}
.mvt0{
	margin-top: 0;
	margin-bottom: 0;
}
.mvt5{
	margin-top: 5px;
	margin-bottom: 5px;
}
.mvt10{
	margin-top: 10px!important;
	margin-bottom: 10px!important;
}
.mvt20{
	margin-top: 20px;
	margin-bottom: 20px;
}
.mvt50{
	margin-top: 50px;
	margin-bottom: 50px;
}
.ml5{
	margin-left: 5px;
}
.ml15{
	margin-left: 15px;
}
.ml20 {
      margin-left: 20px;
}

.ml25 {
        margin-left: 25px;
}

.ml30 {
        margin-left: 30px;
}

.ml40 {
        margin-left: 40px;
}

.mr2 {
        margin-right: 2px;
}
.mr5{
	margin-right: 5px;
}
.mr10{
	margin-right: 10px;
}
.mr15{
	margin-right: 15px;
}
.mr20{
	margin-right: 20px;
}
.mr25 {
        margin-right: 25px;
}

.mr28 {
        margin-right: 28px;
}

.mr40 {
        margin-right: 40px;
}

.mr80 {
        margin-right: 80px;
}
.mhr5{
	margin-left: 5px;
	margin-right: 5px;
}
.p0{
	padding: 0;
}
.p5{
	padding: 5px;
}
.p15{
	padding: 15px;
}
.pt0{
	padding-top: 0;
}
.pt5{
	padding-top: 5px;
}
.pt6{
	padding-top: 6px;
}
.pt7{
	padding-top: 7px;
}
.pt8{
	padding-top: 8px;
}
.pt10{
	padding-top: 10px;
}
.pt15{
	padding-top: 15px;
}
.pt20{
	padding-top: 20px;
}
.pt30{
	padding-top: 30px;
}
.pb0{
	padding-bottom: 0;
}
.pb5{
	padding-bottom: 5px;
}
.pb10{
	padding-bottom: 10px;
}
.pb30{
	padding-bottom: 30px;
}
.pb120{
	padding-bottom: 120px;
}
.pl0 {
	padding-left: 0;
}
.pl5 {
	padding-left: 5px;
}
.pl12 {
	padding-left: 12px;
}
.pl15 {
	padding-left: 15px;
}
.pl20 {
	padding-left: 20px;
}
.pl30{
	padding-left: 30px;
}
.phr10 {
    padding-left: 10px;
    padding-right: 10px;
}
.pr0{
	padding-right: 0;
}

.pr8 {
        padding-right: 8px;
}

.pr10 {
        padding-right: 10px;
}
.pr15{
	padding-right: 15px;
}
.pr30{
	padding-right: 30px;
}
.pr80{
	padding-right: 80px;
}
.pvt0{
	padding-top: 0;
	padding-bottom: 0;
}
.pvt2{
	padding-top: 2px!important;
	padding-bottom: 2px!important;
}
.pvt5{
	padding-top: 5px;
	padding-bottom: 5px;
}
.pvt6{
	padding-top: 6px;
	padding-bottom: 6px;
}
.pvt7{
	padding-top: 7px;
	padding-bottom: 7px;
}
.pvt10{
	padding-top: 10px;
	padding-bottom: 10px;
}
.pvt15{
	padding-top: 15px;
	padding-bottom: 15px;
}
.pvt20{
	padding-top: 20px;
	padding-bottom: 20px;
}
.pvt25{
	padding-top: 25px;
	padding-bottom: 25px;
}
.phr0{
	padding-left: 0;
	padding-right: 0;
}
.phr5{
	padding-left: 5px;
	padding-right: 5px;
}
.phr12{
	padding-left: 12px;
	padding-right: 12px;
}
.phr15{
	padding-left: 15px;
	padding-right: 15px;
}
.phr25{
	padding-left: 25px;
	padding-right: 25px;
}

.phr32 {
        padding-left: 32px;
        padding-right: 32px;
}

.phr50 {
        padding-left: 50px;
        padding-right: 50px;
}

.border-none {
	border: none;
}
.hover-textDec-none:hover{
	text-decoration: none;
}

.hoverBorderBlue:hover {
        border:1px solid #3499fd;
}
.hoverBorderRed:hover {
        border:1px solid #ff5722;
}
.hoverBgE4f5ff:hover {
        background:#e4f5ff
}
.border-c{
	border: 1px solid #ccc;
}
.border-d{
	border: 1px solid #ddd;
}
.border-f0b400{
	border: 1px solid #f0b400!important;
	/**黄色边框*/
}
.border-eb{
	border: 1px solid #ebebeb;
	/**网站border标准*/
}
.border-3499fd{
	border: 1px solid #3499fd;
}
.border-ff5722{
	border: 1px solid #ff5722;
}
.border-bot-c {
	border-bottom: 1px solid #ccc;
}
.border-left-c {
	border-left: 1px solid #ccc;
}

.border-left-sign {
        border-left: 4px solid #3385FF;
}

.border-bot-eb {
	border-bottom: 1px solid #ebebeb;
	/**网站border标准*/
}
.border-bot-09f {
	border-bottom: 1px solid #0099ff;
	/**网站border蓝色边框*/
}
.border-bot-red {
	border-bottom: 2px solid red;
	/**阅卷页面得分底边框*/
}

.form-control.border-none:focus {
	/**对于框架样式的输入框，默认获取焦点时会有border/boxshadow的变化，取消掉*/
	outline: none;
	box-shadow: none;
}

.form-control:focus {
	border-color: #0099ff;
}


/**非模态提示框样式*/
.prompt-box,.prompt-box-1,.prompt-box-2,.impSuc {
    position:fixed;
    width: 300px;
    text-align:center;
    padding:5px 0;
	top: 51px;
	left: 50%;
	margin-left: -150px;
	border-radius: 4px;
    z-index:1200
}
/**遮罩层*/
.over {
    width: 100%;
    height: 100%;
    opacity: 0.5; /*设置背景色透明度,1为完全不透明,IE需要使用filter:alpha(opacity=50);*/
    filter: alpha(opacity=50);
    display: none;
    position: absolute;
    top: 0;
    left: 0;
    z-index: 10000;
    background: #000;
}
.box-originalOrAns .div_img {
        position: relative;
        overflow:auto;
        width: 490px;
        height: 350px;
        color:red;
        font-size:30px;
        padding: 5px;
        text-align: center;
        font-family:'Microsoft YaHei';
    }

        .box-originalOrAns .div_img img {
            display: block;
            position: absolute;
            max-width:475px;
            z-index: 0;
            opacity: 0;
        }

            .box-originalOrAns .div_img img.active {
                z-index: 1;
                opacity: 1;
            }
    .box-originalOrAns .div_number {
        text-align:center;
        margin:10px 0;
    }
        .box-originalOrAns .div_number span {
            cursor:pointer;
            display:inline-block;
            width:20px;
            height:20px;
            margin:0 10px;
            text-align:center;
            line-height:20px;
            color: #428bca;
            background-color: #fff;
            border: 1px solid #ddd;
        }
            .box-originalOrAns .div_number span:hover, .box-originalOrAns .div_number span:focus {
                color: #2a6496;
                background-color: #eee;
            }
            .box-originalOrAns .div_number span.active {
                color: #fff;
                cursor: default;
                background-color: #428bca;
                border-color: #428bca;
            }

/**表格固定表头*/
table.fixedHead tbody {
    display: block;
    max-height: 400px;
    overflow-y: scroll;
}

table.fixedHead thead,table.fixedHead tbody tr {
    display: table;
    width: 100%;
    table-layout: fixed;
}

table.fixedHead thead {
    width: calc( 100% - 1em);
}


/**从科目列表跳转到下级所有页面中科目列表公共样式*/
ul,li{
	margin:0;
	padding:0;
	list-style: none;
}
.subject-wrap{
	color:#343434;
	width:100%;
	height:40px;
	padding:5px 0;
	border-bottom:2px solid #eaf7fe;
}
.subject-wrap .big-name{
	width:125px;
	height:30px;
	line-height: 30px;
}
.subject-wrap .subject-tab{
	width:675px;
	height:33px;
	overflow: hidden;
	border-right: 1px solid #e6e6e6;
}
.subject-wrap .subject-tab ul{
	width:10000px;
	position: absolute;
	top:0;
	left:0;
}
.subject-tab .item{
	width:94px;
	height:30px;
	line-height: 30px;
	text-align: center;
	border-left:1px solid #e6e6e6;
}
.subject-tab .item a{
	color:#343434;
	display: inline-block;
	height:33px;
}
.subject-tab .item.active a,
.subject-tab .item a:hover{
	color:#009aff;
	border-bottom:4px solid #009aff;
	text-decoration: none;
}
.subject-bd .line-icon{
	width:125px;
	text-align: center;
}
.subject-bd .line-wrap span{
	display: inline-block;
	border-left:1px dotted #d9d9d9;
	height:90px;
}
.subject-bd .review-wrap{
	color:#7a7a7a;
	width:873px;
	
	border-bottom: 1px solid #e7e7e7;
	min-height: 50px;
}
.subject-bd .review-list{
	width:675px;
	min-height: 50px;
	padding:10px 0 10px 20px;
}
.subject-bd .review-action{
	width:197px;
        padding-top:10px;
        border-left: 1px solid #e7e7e7;
	/*padding-left: 20px;*/
}
.subject-bd .review-wrap .item-info{
	height:25px;
	line-height: 25px;
}
.subject-bd .color-blue{
	color:#009aff;
}
.add-subject-wrap{
	color:#009aff;
	font-weight: bold;
	/*width:197px;*/
	height:40px;
	line-height: 40px;
	border-bottom:2px solid #eaf7fe;
}
.control-wrap{
	position: absolute;
	top:10px;
	right:20px;
}
.control-hd{
	cursor: pointer;
	color:#009aff;
	padding:3px 5px;
	border:1px solid #e7e7e7;
	background:#fff;
}
.control-hd img{
	margin-top:-3px;
	margin-right:5px;
}
.right-icon{
	cursor: pointer;
	position: absolute;
	top:5px;
	left:783px;
	width:17px;
	height:30px;
}
.left-icon{
	position: absolute;
	cursor: pointer;
	top:5px;
	left:100px;
	width:17px;
	height:30px;
}

/**选项卡自做样式*/
.navTab li {
        float:left;
        background: url(/Content/img/bg/navTab-dafault.png) no-repeat 0 0;
	background-size:contain;
        color:#09f;
        height:28px;
        line-height:28px;
        width:104px;
        text-align:center;
        cursor:pointer;
}
.navTab li.active {
      background-size:contain;
        color:#fff;
        background: url(/Content/img/bg/navTab-active.png) no-repeat 0 0;
        cursor:inherit
}

 @media only screen and (max-width: 970px) {
        .md-hidden {
                display:none;
        }
}

.pdf_box {
	position: fixed;
	bottom: 100px;
	right: 10px;
}
