*{margin:0;padding:0;-webkit-box-sizing: border-box;box-sizing: border-box; -webkit-touch-callout: none; -webkit-text-size-adjust: none;-webkit-tap-highlight-color:rgba(0,0,0,0);}
h1,h2,h3,h4,h5,h6{ font-weight:normal; font-size:100%;}
body{font:14px/1.5 PingFang SC, Arial, Helvetica, sans-serif;color:#333;-webkit-font-smoothing:antialiased} 
article,aside,details,figcaption,figure,footer,header,hgroup,menu,nav,section{display:block}
input,textarea,select,button{margin:0;padding:0;outline:0;-webkit-appearance:none;-webkit-tap-highlight-color:transparent;font:14px/1.5 PingFang SC, Arial, Helvetica, sans-serif;}
a,a:active,a:hover,a:link,a:visited{color:#333;text-decoration:none;-webkit-tap-highlight-color:transparent}
table{border-collapse:separate;border-spacing:0}
ol,ul{list-style:none}
hr{margin:0;padding:0;border:0;color:#000;background-color:#000;height:1px}
img{border:0px;}
::-webkit-scrollbar {display: none;}
input[type=search]::-webkit-search-cancel-button{-webkit-appearance: none;}

.noSelect{-moz-user-select:-moz-none;-moz-user-select:none;-o-user-select:none;-khtml-user-select:none;-webkit-user-select:none;-ms-user-select:none;user-select:none}

.clearfix{overflow:hidden;zoom:1;}
.clear{clear:both;height:0;font-size:0;line-height:0;overflow:hidden}

.word{overflow:hidden;white-space:nowrap;text-overflow:ellipsis}
.words{display:-webkit-box;display:box;overflow:hidden;text-overflow:ellipsis;word-break:break-all;-webkit-box-orient:vertical;-webkit-line-clamp:2}

.xcenter{display: -webkit-box;display: -moz-box;display: -ms-flexbox;display: box;-webkit-box-pack: center;-moz-box-pack: center;box-pack: center;}
.ycenter{display: -webkit-box;display: -moz-box;display: -ms-flexbox;display: box;-moz-box-align: center;-webkit-box-align: center;box-align: center;}
.verbox{-moz-box-orient: vertical;-webkit-box-orient: vertical;box-orient: vertical;}
.horibox{-moz-box-orient: horizontal;-webkit-box-orient: horizontal;box-orient: horizontal;}

.border1px:after{content: '';position: absolute;top: 0;left: 0;width: 200%;height: 200%;-webkit-transform: scale(0.5);-webkit-transform-origin: left top;transform: scale(0.5);transform-origin: left top; box-sizing: border-box;z-index: -1;background: transparent;}

input::-o-input-placeholder{
    color:#d3d3d3;
}
input::-ms-input-placeholder{
    color:#d3d3d3;
}
input::-moz-input-placeholder{
    color:#d3d3d3;
}
input::-webkit-input-placeholder{
    color:#d3d3d3;
}
input::input-placeholder{
    color:#d3d3d3;
}
textarea::-o-input-placeholder{
    color:#d3d3d3;
}
textarea::-ms-input-placeholder{
    color:#d3d3d3;
}
textarea::-moz-input-placeholder{
    color:#d3d3d3;
}
textarea::-webkit-input-placeholder{
    color:#d3d3d3;
}
textarea::input-placeholder{
    color:#d3d3d3;
}

.fl{float:left;}
.fr{float:right;}

.none{display:none;}
.hidden{visibility:hidden;}

/*单行文本省略号*/
.word{
	overflow: hidden;
	white-space: nowrap;
	text-overflow: ellipsis;
}
.words2 {
	display: -webkit-box;
	display: box;
	overflow: hidden;
	text-overflow: ellipsis;
	word-break: break-all;
	-webkit-box-orient: vertical;
	-webkit-line-clamp: 2;
}
/*多行文本省略号*/
.words3 {
	display: -webkit-box;
	display: box;
	overflow: hidden;
	text-overflow: ellipsis;
	word-break: break-all;
	-webkit-box-orient: vertical;
	-webkit-line-clamp: 3;
}

/*垂直居中,容器设置宽高*/
.ycenter {
	align-items: center;
	display: -webkit-flex;
}
/*水平居中,容器设置宽高*/
.xcenter {
	justify-content: center;
	display: -webkit-flex;
}

/*box布局水平垂直居中*/
.xycenterbox{
	display: -webkit-box;
	display: -moz-box;
	display: -ms-flexbox;
	-moz-box-align: center;
	-webkit-box-align: center;
	-moz-box-pack: center;
	-webkit-box-pack: center;
}
/*box布局水平居中*/
.xcenterbox{
	display: -webkit-box;
	display: -moz-box;
	display: -ms-flexbox;
	-moz-box-pack: center;
	-webkit-box-pack: center;
}
/*box布局垂直居中*/
.ycenterbox{
	display: -webkit-box;
	display: -moz-box;
	display: -ms-flexbox;
	-moz-box-align: center;
	-webkit-box-align: center;
}

/*区域分割*/
.line {
	width: 100%;
	height: 0.5rem;
	background-color: rgb(245, 246, 248);
}

/*0.5px底边框*/
.bottomLine{
	background: -webkit-linear-gradient(top,transparent 40%,#ebebeb 60%) center bottom no-repeat;
	background: -moz-linear-gradient(top, transparent 40%, #ebebeb 60%) center bottom no-repeat;
	background: -ms-linear-gradient(top, transparent 40%, #ebebeb 60%) center bottom no-repeat;
	background-size: 100% 1px;
}

/*加载更多动画*/
.pullUp {
	height: 40px;
	line-height: 40px;
	font-size: 14px;
	text-align: center;
	color: #b3b3b3;
}
.pullUp .pullUpIcon {
	display: inline-block;
	vertical-align: top;
	width: 16px;
	height: 16px;
	margin: 12px 9px 0 0;
	background: none no-repeat;
	background-size: contain;
	-webkit-transform: rotate(0deg) translateZ(0);
	-webkit-transition-duration: 0ms;
	-webkit-animation-name: loading;
	-webkit-animation-duration: 2s;
	-webkit-animation-iteration-count: infinite;
	-webkit-animation-timing-function: linear;
}
@-webkit-keyframes loading {
	from {
		-webkit-transform: rotate(0deg) translateZ(0);
	}
	to {
		-webkit-transform: rotate(360deg) translateZ(0);
	}
}


@media screen and (min-width: 212px){html{font-size:28.4px}}
@media screen and (min-width: 319px){html{font-size:42.67px}}
@media screen and (min-width: 359px){html{font-size:48px}}
@media screen and (min-width: 374px){html{font-size:50px}}
@media screen and (min-width: 383px){html{font-size:51.2px}}
@media screen and (min-width: 399px){html{font-size:53.2px}}
@media screen and (min-width: 414px){html{font-size:55.2px}}
@media screen and (min-width: 423px){html{font-size:56.53px}}
@media screen and (min-width: 479px){html{font-size:64px}}
@media screen and (min-width: 539px){html{font-size:72px}}
@media screen and (min-width: 639px){html{font-size:85.33px}}
@media only screen and (min-width: 750px){.wrapMax{width:640px;margin:0 auto}}

html,body{
	width: 100%;
	height: 100%;
}
::-webkit-scrollbar{
	width: 8px;
}
.words6 {
	display: -webkit-box;
	display: box;
	overflow: hidden;
	text-overflow: ellipsis;
	word-break: break-all;
	-webkit-box-orient: vertical;
	-webkit-line-clamp: 6;
}
.words9 {
	display: -webkit-box;
	display: box;
	overflow: hidden;
	text-overflow: ellipsis;
	word-break: break-all;
	-webkit-box-orient: vertical;
	-webkit-line-clamp: 9;
}
.words12 {
	display: -webkit-box;
	display: box;
	overflow: hidden;
	text-overflow: ellipsis;
	word-break: break-all;
	-webkit-box-orient: vertical;
	-webkit-line-clamp: 12;
}
.selectBox{
	height: .88rem;
	text-align: center;
}
.selectWeek{
	font-size: 0.32rem;
	line-height: .88rem;
	color: #fff;
	height: 100%;
	background-color:#44e2bf;
	text-align:left;
	padding: 0 .3rem;
}
.selectWeek span{
	display:inline-block;  
	height:.88rem;
	line-height:.88rem;
	vertical-align:middle;
}
.selectWeek img{
	display:inline-block;  
	width: .25rem;
	height: .13rem; 
	margin-left:.1rem;
	vertical-align:middle;
}
.selectList{
	position: absolute;
	z-index: 99;
	width: 100%;
	height: 100%;
	background-color: rgba(0,0,0,0.5);
}
.selectList ul{
	width: 100%;
	padding: .2rem .1rem;
	position: relative;
	background-color: #fff;
	overflow: hidden;
}
.selectList li{
	float: left;
	width: 25%;
	text-align: center;
	color: #7ba9da;
	padding: 0.1rem 0.08rem;
}
.selectList li p{
	height:.9rem;
	line-height: .4rem;
	padding:.1rem 0;
	background-color:#f5f6f8;
	-moz-border-radius: .1rem;
	-webkit-border-radius: .1rem;
	border-radius: .1rem;
	-moz-box-shadow: 0 0 .1rem rgba(245, 246, 248, 0.5);
	-webkit-box-shadow: 0 0 .1rem rgba(245, 246, 248, 0.5);
	box-shadow: 0 0 .1rem rgba(245, 246, 248, 0.5);
	-moz-box-shadow:0 0 .1rem rgba(222,230,228,.5);
	-webkit-box-shadow:0 0 .1rem rgba(222,230,228,.5);
	box-shadow:0 0 .1rem rgba(222,230,228,.5);
	color: #333;
	font-size: .3rem;
}
.selectList li p.active{
	background-color:#3ed9b7;
	-moz-box-shadow: 0 0 .1rem rgba(62, 217, 183, 0.7);
	-webkit-box-shadow: 0 0 .1rem rgba(62, 217, 183, 0.7);
	box-shadow: 0 0 .1rem rgba(62, 217, 183, 0.7);
	color:#fff;
}
.selectList li p span{
	display:block;
	color:#999;
	font-size: .24rem;
	line-height: .3rem;
	white-space: nowrap;
	text-align: center;
}
.selectList li p.active span{
	color:#fff;
}

table{
	width: 100%;
	height: calc(100% - .88rem);
	border-collapse: collapse;
	table-layout: fixed;
}
tbody{
	height: calc(100% - 1.06rem);
}
thead tr th{
	width: 12.5%;
	height: 1.06rem;
	text-align: center; 
	border: solid 1px rgb(241,241,241);
	background-color: rgb(249, 249, 249);
}
td{
	width: 12.5%;
	height: 1.08rem;
	text-align: center; 
	border-top: solid 1px rgba(235,235,235,.8);
	border-left: solid 1px rgba(235,235,235,.8);
}

/*头部颜色*/
th:first-child span:last-child{
	color: #00377a;
	font-size: .3rem;
}
th span:first-child{
	color: #c5c5c5;
	font-size: .24rem;
	line-height: .3rem;
}
th span:last-child{
	color: #666666;
	font-size: .3rem;
	font-weight: normal;
}
.col0{
	color: #666666;
	background-color: rgb(249, 249, 249);
	font-size: .3rem;
}
td[rowspan]{
	-moz-border-radius: 0.1rem;
	color: white;
	font-size: .24rem;
	/*padding: 0.1rem;*/
}
td[rowspan] p{
	text-align: left;
	line-height:.32rem;
	overflow: hidden;
	text-overflow: ellipsis;
	margin: 0 auto;
}
.col1[rowspan]{
	background-color: rgb(254,204,84);
}

.col2[rowspan]{
	background-color: rgb(81,171,220);
}
.col3[rowspan]{
	background-color: rgb(143,199,94);
}
.col4[rowspan]{
	background-color: rgb(183,146,202);
}
.col5[rowspan]{
	background-color: rgb(242,109,68);
}
.col6[rowspan]{
	background-color: rgb(81,220,195);
}
.col7[rowspan]{
	background-color: rgb(235,81,135);
}

tr th{
	border-top: none;
}
tr td:first-child,tr th:first-child{
	border-left: none;
}
tr td:last-child,tr th:last-child{
	border-right: none;
}
tr:last-child td{
	border-bottom: none;
}

td span:first-child,th span:first-child{
	display: block;
}

.popBox{
	position: absolute;
	top:0;
	left: 0;
	z-index: 99;
	width: 100%;
	height: 100%;
	background-color: rgba(0,0,0,0.5);
}
.courseDetail{
	position: relative;
	width:5.4rem;
	top:  calc(50% - 2.8rem);
	left: calc(50% - 2.7rem);
	background-color: white; 
	box-shadow: 0 0px .1rem #E5E5E5;  
	-moz-border-radius: 0.25rem;
	-webkit-border-radius: 0.25rem;
	border-radius: 0.25rem;
	overflow:hidden;
	
}
.courseDetail li{ 
	font-size: .26rem;
	line-height: .42rem;
	text-align: left;
	padding: .36rem .5rem;
	position:relative;
	overflow: hidden;
}
.courseDetail li:nth-child(odd){
	background-color: #fff;
}
.courseDetail li:nth-child(even){
	background-color: #f5f6f8;
}
.courseDetail li em{
	display:inline-block;
	width:2rem;
	height:.84rem;
	line-height: .84rem;
	text-align: center;
	font-size: .48rem;
	font-style: normal;
	border:1px solid #3ed9b7;
	color:#3ed9b7;
	white-space: nowrap;
	-moz-border-radius: 0.42rem;
	-webkit-border-radius: 0.42rem;
	border-radius: 0.42rem;
	margin-left: -.5rem;
	margin-top: -.21rem;
	-webkit-transform: scale(.5, .5);
	   -moz-transform: scale(.5, .5);
	    -ms-transform: scale(.5, .5);
	     -o-transform: scale(.5, .5);
	        transform: scale(.5, .5);
}
.courseDetail li h3{
	font-size: .28rem;
	color:#333;
	font-weight: 600;
}
.courseDetail li p{
	font-size: .26rem;
	color:#999;
}
.courseDetail li span{
	display:block;
	font-size: .26rem;
	color:#333;
}
.courseDetail li i{
	font-style: normal;
	color:#3ed9b7;
}
.courseDetail li span.ceng{
	display:block;
	width:.88rem;
	height:.88rem;
	padding-top: .3rem;
	padding-right: .3rem;
	line-height: .7rem;
	font-size: .28rem;
	text-align: center;
	background: #fcb52a;
	color:#fff;
	moz-border-radius: 50%;
    -webkit-border-radius: 50%;
    border-radius: 50%;
    -moz-box-shadow: 0 .07rem .07rem rgba(0,0,0,.0);
    -webkit-box-shadow: 0 .07rem 0.07rem rgba(0,0,0,.0);
    box-shadow: 0 .07rem 0.07rem rgba(0,0,0,.0);
	position:absolute;
	right:-.4rem;
	top:-.4rem;
	z-index: 1;
}


/*20190325 add*/ 
.selectWeek img{ 
    margin-top: .1rem;
}
.floatdiv{
	width:20%;
	height:.88rem;
	position:absolute;
	right:0rem;
	top:0;
	background: #44e2bf;
}
.floatdiv a{ 
	width:.48rem;
	height:.88rem;	
	text-align:center;
	vertical-align:middle;
	margin-left:.3rem;
	display: -ms-flex;
	display: -webkit-flex;
	display: flex;
    align-items: center;
	justify-content: center;
    float: left;
}
.floatdiv a.morebtn img{
	width:.39rem;
	height:.08rem;
	margin:0;
}
.floatdiv a.closedbtn img{
	width:.34rem;
	height:.34rem;
	margin:0;
}
.table thead tr th{
	border:none;
    background-color:#44e2bf;
	position:relative;
}
.table th span:first-child{
	color: rgba(255,255,255,.6);
    font-size: .24rem; 
	font-weight:normal;
}
.table th span:last-child{
	color:#fff;
	line-height: .5rem;
    height: .5rem;
    display: block;
}
.table thead tr th.today span{
	color:#fff;
	position:relative;
	z-index:1;
}
.table thead tr th.today::after{
	display:block;
	content:"";
	width:.48rem;
	height:.48rem;
	background:#fff;
	-moz-border-radius:50%;
	-webkit-border-radius:50%;
	border-radius:50%;
	position:absolute;
	left:50%;
	bottom:.14rem;
	margin-left:-.24rem;
	z-index:0;
}
.table th.today span:last-child{
	color:#3ed9b7;
}

.table tr td{
	min-height: .5rem;
	height:auto;
	padding:.1rem .05rem;
	/*padding-bottom:.1rem;
	padding:.1rem .05rem;*/
	padding-left: .02rem;
}
.table tr td:first-child{
	background-color:#fff;
	font-size:.28rem;
	color:#111615;
	font-weight:500;
	line-height: .3rem;
	opacity: 0.7;
} 
.table tr td:first-child span{
	color:rgb(22 26 25);
} 
.table tr td[rowspan]{
	background:none;
}
.table tr td .tdbox{
	color:#fff;
	padding: .05rem .05rem;
	-moz-border-radius: 0.1rem;
    -webkit-border-radius: 0.1rem;
    border-radius: 0.1rem;
	position: relative;
    overflow: hidden;
    z-index: 2;
	/*height:100%;*/
	height:auto;
	/* 20230213解决合并单元格时，课程数量少，上下空隙过大 */
	flex: 1;
}
.table tr td .tdbox a{
	display:block;
	color:#fff;
}
/* 20230213解决合并单元格时，课程数量少，上下空隙过大 */
.table tr td .tdbox-wrap{
	display: flex;
	flex-direction: column;
	height: 100%;
	justify-content: center;
}

.table tr:nth-child(6n+1) td .tdbox1,.table tr:nth-child(6n+2) td .tdbox2,.table tr:nth-child(6n+3) td .tdbox3,.table tr:nth-child(6n+4) td .tdbox4,.table tr:nth-child(6n+5) td .tdbox5,.table tr:nth-child(6n+6) td .tdbox6{
	background: #feb82d;
	background: -moz-linear-gradient(top, #feb82d 0%, #ffd56e 100%);
    background: -webkit-gradient(linear, left top, right bottom, color-stop(0%,#feb82d), color-stop(100%,#ffd56e));
    background: -webkit-linear-gradient(top, #feb82d 0%,#ffd56e 100%);
    background: -o-linear-gradient(top, #feb82d 0%,#ffd56e 100%);
    background: -ms-linear-gradient(top, #feb82d 0%,#ffd56e 100%);
    background: linear-gradient(to top, #feb82d 0%,#ffd56e 100%);
	-moz-box-shadow:0 0 .1rem rgba(254,199,89,.5);
	-webkit-box-shadow:0 0 .1rem rgba(254,199,89,.5);
	box-shadow:0 0 .1rem rgba(254,199,89,.5);
}
.table tr:nth-child(6n+1) td .tdbox2,.table tr:nth-child(6n+2) td .tdbox3,.table tr:nth-child(6n+3) td .tdbox4,.table tr:nth-child(6n+4) td .tdbox5,.table tr:nth-child(6n+5) td .tdbox6,.table tr:nth-child(6n+6) td .tdbox1{
	background: #42cbfe;
	background: -moz-linear-gradient(top, #42cbfe 0%, #5ec7fb 100%);
    background: -webkit-gradient(linear, left top, right bottom, color-stop(0%,#42cbfe), color-stop(100%,#5ec7fb));
    background: -webkit-linear-gradient(top, #42cbfe 0%,#5ec7fb 100%);
    background: -o-linear-gradient(top, #42cbfe 0%,#5ec7fb 100%);
    background: -ms-linear-gradient(top, #42cbfe 0%,#5ec7fb 100%);
    background: linear-gradient(to top, #42cbfe 0%,#5ec7fb 100%);
	-moz-box-shadow:0 0 .1rem rgba(132,231,255,.5);
	-webkit-box-shadow:0 0 .1rem rgba(132,231,255,.5);
	box-shadow:0 0 .1rem rgba(132,231,255,.5);
}
.table tr:nth-child(6n+1) td .tdbox3,.table tr:nth-child(6n+2) td .tdbox4,.table tr:nth-child(6n+3) td .tdbox5,.table tr:nth-child(6n+4) td .tdbox6,.table tr:nth-child(6n+5) td .tdbox1,.table tr:nth-child(6n+6) td .tdbox2{
	background: #3ed9b7;
	background: -moz-linear-gradient(top, #3ed9b7 0%, #46e6c3 100%);
    background: -webkit-gradient(linear, left top, right bottom, color-stop(0%,#3ed9b7), color-stop(100%,#46e6c3));
    background: -webkit-linear-gradient(top, #3ed9b7 0%,#46e6c3 100%);
    background: -o-linear-gradient(top, #3ed9b7 0%,#46e6c3 100%);
    background: -ms-linear-gradient(top, #3ed9b7 0%,#46e6c3 100%);
    background: linear-gradient(to top, #3ed9b7 0%,#46e6c3 100%);
	-moz-box-shadow:0 0 .1rem rgba(98,243,210,.5);
	-webkit-box-shadow:0 0 .1rem rgba(98,243,210,.5);
	box-shadow:0 0 .1rem rgba(98,243,210,.5);
}
.table tr:nth-child(6n+1) td .tdbox4,.table tr:nth-child(6n+2) td .tdbox5,.table tr:nth-child(6n+3) td .tdbox6,.table tr:nth-child(6n+4) td .tdbox1,.table tr:nth-child(6n+5) td .tdbox2,.table tr:nth-child(6n+6) td .tdbox3{
	background: #fb3669;
	background: linear-gradient(to top, #fb3669 0%,#fe617e 100%);
	background: -moz-linear-gradient(top, #fb3669 0%, #fe617e 100%);
    background: -webkit-gradient(linear, left top, right bottom, color-stop(0%,#fb3669), color-stop(100%,#fe617e));
    background: -webkit-linear-gradient(top, #fb3669 0%,#fe617e 100%);
    background: -o-linear-gradient(top, #fb3669 0%,#fe617e 100%);
    background: -ms-linear-gradient(top, #fb3669 0%,#fe617e 100%);
    background: linear-gradient(to top, #fb3669 0%,#fe617e 100%);
	-moz-box-shadow:0 0 .1rem rgba(252,95,136,.5);
	-webkit-box-shadow:0 0 .1rem rgba(252,95,136,.5);
	box-shadow:0 0 .1rem rgba(252,95,136,.5);
}
.table tr:nth-child(6n+1) td .tdbox5,.table tr:nth-child(6n+2) td .tdbox6,.table tr:nth-child(6n+3) td .tdbox1,.table tr:nth-child(6n+4) td .tdbox2,.table tr:nth-child(6n+5) td .tdbox3,.table tr:nth-child(6n+6) td .tdbox4{
	background: #b172f8;
	background: -moz-linear-gradient(top, #b172f8 0%, #bd88fe 100%);
    background: -webkit-gradient(linear, left top, right bottom, color-stop(0%,#b172f8), color-stop(100%,#bd88fe));
    background: -webkit-linear-gradient(top, #b172f8 0%,#bd88fe 100%);
    background: -o-linear-gradient(top, #b172f8 0%,#bd88fe 100%);
    background: -ms-linear-gradient(top, #b172f8 0%,#bd88fe 100%);
    background: linear-gradient(to top, #b172f8 0%,#bd88fe 100%);
	-moz-box-shadow:0 0 .1rem rgba(169,142,149,.5);
	-webkit-box-shadow:0 0 .1rem rgba(169,142,149,.5);
	box-shadow:0 0 .1rem rgba(169,142,149,.5);
}
.table tr:nth-child(6n+1) td .tdbox6,.table tr:nth-child(6n+2) td .tdbox1,.table tr:nth-child(6n+3) td .tdbox2,.table tr:nth-child(6n+4) td .tdbox3,.table tr:nth-child(6n+5) td .tdbox4,.table tr:nth-child(6n+6) td .tdbox5{
	background: rgb(242,109,68);;
	background: -moz-linear-gradient(top, rgb(242,109,68) 0%, rgb(242,125,68) 100%);
	background: -webkit-gradient(linear, left top, right bottom, color-stop(0%,rgb(242,109,68)), color-stop(100%,rgb(242,125,68)));
	background: -webkit-linear-gradient(top, rgb(242,109,68) 0%,rgb(242,125,68) 100%);
	background: -o-linear-gradient(top, rgb(242,109,68) 0%,rgb(242,125,68) 100%);
	background: -ms-linear-gradient(top, rgb(242,109,68) 0%,rgb(242,125,68) 100%);
	background: linear-gradient(to top, rgb(242,109,68) 0%,rgb(242,125,68) 100%);
	-moz-box-shadow:0 0 .1rem rgba(242,109,68,.5);
	-webkit-box-shadow:0 0 .1rem rgba(242,109,68,.5);
	box-shadow:0 0 .1rem rgba(242,109,68,.5);
}
.table tr td .tdbox7{
	background: rgb(143,199,94);
	background: -moz-linear-gradient(top, rgb(143,199,94) 0%, rgb(143,220,94) 100%);
	background: -webkit-gradient(linear, left top, right bottom, color-stop(0%,rgb(143,199,94)), color-stop(100%,rgb(143,220,94)));
	background: -webkit-linear-gradient(top, rgb(143,199,94) 0%,rgb(143,220,94) 100%);
	background: -o-linear-gradient(top, rgb(143,199,94) 0%,rgb(143,220,94) 100%);
	background: -ms-linear-gradient(top, rgb(143,199,94) 0%,rgb(143,220,94) 100%);
	background: linear-gradient(to top, rgb(143,199,94) 0%,rgb(143,220,94) 100%);
	-moz-box-shadow:0 0 .1rem rgba(143,199,94,.5);
	-webkit-box-shadow:0 0 .1rem rgba(143,199,94,.5);
	box-shadow:0 0 .1rem rgba(143,199,94,.5);
}
.table tr td .tdbox8 {
	background: rgb(183,146,202);
	background: -moz-linear-gradient(top,rgb(183,146,202) 0%, rgb(200,146,202) 100%);
	background: -webkit-gradient(linear, left top, right bottom, color-stop(0%,rgb(183,146,202)), color-stop(100%,rgb(200,146,202)));
	background: -webkit-linear-gradient(top, rgb(183,146,202) 0%,rgb(200,146,202) 100%);
	background: -o-linear-gradient(top, rgb(183,146,202) 0%,rgb(200,146,202) 100%);
	background: -ms-linear-gradient(top, rgb(183,146,202) 0%,rgb(200,146,202) 100%);
	background: linear-gradient(to top, rgb(183,146,202) 0%,rgb(200,146,202) 100%);
	-moz-box-shadow:0 0 .1rem rgba(183,146,202,.5);
	-webkit-box-shadow:0 0 .1rem rgba(183,146,202,.5);
	box-shadow:0 0 .1rem rgba(183,146,202,.5);
}

.table tr td .log{
	background: #9F999D !important;
	background: -moz-linear-gradient(top, #9F999D 0%, #9F999D 100%) !important;
	background: -webkit-gradient(linear, left top, right bottom, color-stop(0%,#9F999D), color-stop(100%,#9F999D)) !important;
	background: -webkit-linear-gradient(top, #9F999D 0%,#9F999D 100%) !important;
	background: -o-linear-gradient(top, #9F999D 0%,#9F999D 100%) !important;
	background: -ms-linear-gradient(top, #9F999D 0%,#9F999D 100%) !important;
	background: linear-gradient(to top, #9F999D 0%,#9F999D 100%) !important;
	-moz-box-shadow:0 0 .1rem rgba(159,153,157,.5) !important;
	-webkit-box-shadow:0 0 .1rem rgba(159,153,157,.5) !important;
	box-shadow:0 0 .1rem rgba(159,153,157,.5) !important;
}

.table tr td .tdbox p{
	line-height: .32rem;
}
.table tr td .tdbox em{
	display:block;
	font-style:normal;
	background:#fcb52a;
	color:#fff;
	-moz-box-shadow:0 .07rem .07rem rgba(0,0,0,.2);
	-webkit-box-shadow:0 .07rem .07rem rgba(0,0,0,.2);
	box-shadow:0 .07rem .07rem rgba(0,0,0,.2);
	moz-border-radius:50%;
	-webkit-border-radius:50%;
	border-radius:50%;
	position:absolute;
}
.table tr td .tdbox em.ceng{
	width:.48rem;
	height:.48rem;
	left:-.2rem;
	top:-.2rem;
	font-size:.18rem;
	padding-top:.2rem;
	padding-left:.2rem;
	line-height:.3rem;
}
.table tr td .tdbox em.num{
	width:.48rem;
	height:.48rem;
	right:-.22rem;
	bottom:-.22rem;
	font-size:.22rem;
	padding-bottom:.2rem;
	padding-right:.2rem;
	line-height:.36rem;
	z-index: 2;
	-moz-box-shadow:-.03rem -.03rem .07rem rgba(0,0,0,.2);
	-webkit-box-shadow:-.03rem -.03rem .07rem rgba(0,0,0,.2);
	box-shadow:-.03rem -.03rem .07rem rgba(0,0,0,.2);
}
.table tr td .tdbox em.num::after{
	width:.88rem;
	height:.88rem;
	display:block;
	content:"";
	position:absolute;
	left: -75%;
    top: -75%;
}
.table tr td .addbtn{
	display:block;
	opacity: 0;
	width:100%;
	height:100%; 
	moz-border-radius:.1rem;
	-webkit-border-radius:.1rem;
	border-radius:.1rem;
	-moz-box-shadow:0 0 .1rem rgba(222,230,228,.5);
	-webkit-box-shadow:0 0 .1rem rgba(222,230,228,.5);
	box-shadow:0 0 .1rem rgba(222,230,228,.5);
	background:url(../images/addicon.png) center no-repeat #fff;
	-o-background-size:.37rem auto;
	-ms-background-size:.37rem auto;
	-moz-background-size:.37rem auto;
	-webkit-background-size:.37rem auto;
	background-size:.37rem auto;
}
.table tr td .showa{
	opacity: 1;
}
/*more*/
.morebox{
	width:100%;
	height:100%;
	background:rgba(0,0,0,.5);
	position:absolute;
	left:0;
	top:0;
	z-index: 99;
	display:-moz-flex;
	display:-webkit-flex;
	display:flex;
	flex-direction: column;
	justify-content: flex-end;
	display:none;
}
.morebox .morelist{
	padding: .2rem .3rem;
	overflow:hidden;
}
.morebox .morelist ul{
	width:100%;
	background:#fff;
	overflow:hidden;
	-moz-border-radius: .25rem;
	-webkit-border-radius: .25rem;
	border-radius: .25rem;
	-moz-box-shadow: 0 0 .1rem rgba(202, 208, 207, 0.45);
	-webkit-box-shadow: 0 0 .1rem rgba(202, 208, 207, 0.45);
	box-shadow: 0 0 .1rem rgba(202, 208, 207, 0.45);
}
.morebox .morelist li{
	width:100%;
	height:.96rem;
	line-height: .96rem;
	text-align: center;
	color:#333;
	font-size: .3rem;
}
.morebox .morelist li a{
	display:block;
	width:100%;
	line-height: .96rem;
} 
.morebox .cancelbtn{
	display:block;
	margin-top:.24rem;
	width:100%;
	height:.96rem;
	line-height: .96rem;
	text-align: center;
	color:#333;
	font-size: .3rem;
	background:#fff;
	-moz-border-radius: .25rem;
	-webkit-border-radius: .25rem;
	border-radius: .25rem;
	-moz-box-shadow: 0 0 .1rem rgba(202, 208, 207, 0.45);
	-webkit-box-shadow: 0 0 .1rem rgba(202, 208, 207, 0.45);
	box-shadow: 0 0 .1rem rgba(202, 208, 207, 0.45);
}
html,body{
	width:100%;
	height:100%;
}
.mianbox{
	width:100%;
	height:100%;
	position:absolute;
	left:0;
	top:0;
	overflow-y:auto;
} 
.words6{
	height:1.92rem;
}
.words3{
	height:.96rem;
}

.bodybg{
	width:100%;
	height:100%;
	position:fixed;
	left:0;
	top:0;
	z-index:0;
	opacity:.3;
	filter:Alpha(opacity=30);
}
.bodybg img{
	width:100%;
	height:100%;
}
.mianbox{
	z-index:2;
}
.bodybg{
	-ms-display: flex;
	-moz-display: flex;
	-webkit-display: flex;
	display: flex;
    align-items: center;
    justify-content: center;
}
.bodybg img{
	width:auto;
	height:auto;
}
/*20221018 add pc端样式*/
@media screen and (min-width: 750px) {
	.selectBox {
		height: 25px
	}
	/*.selectWeek {*/
	/*	background-color: #2AA0F5;*/
	/*}*/
	/*.floatdiv {*/
	/*	background: #2AA0F5;*/
	/*}*/
	/*.table thead tr th {*/
	/*	background-color: #2AA0F5;*/
	/*}*/
	/*.table th.today span:last-child {*/
	/*	color: #2AA0F5;*/
	/*}*/
	/*调整头部高度*/
	thead tr th {
		height: auto;
	}
	.table thead tr th {
		padding-bottom: 10px;
	}
	.floatdiv a {
		height: auto;
	}
	.selectWeek span {
		display: inline-block;
		height: auto;
		line-height: inherit;
		margin-top: -5px;
	}
	.floatdiv {
		padding-top: 10px;
		height: 25px;
	}
	/*调整头部高度 end*/
	table {
		height: calc(100% - 25px);
	}
	.selectWeek {
		font-size: 15px;
		padding-top: 10px;
		height: 25px;
		line-height: 15px !important;
	}
	.selectWeek img {
		width: 12px;
		height: 8px;
		margin: 0 0.1rem 0 0.1rem;
	}
	.table th span:first-child {
		font-size: 13px;
		height: 13px;
		line-height: 13px;
		margin-bottom: 5px;
		margin-top: 20px;
	}
	.table th span:last-child {
		font-size: 15px;
		height: 25px;
		line-height: 25px;
	}
	.table thead tr th.today::after {
		display: block;
		content: "";
		width: 25px;
		height: 25px;
		background: #fff;
		-moz-border-radius: 50%;
		-webkit-border-radius: 50%;
		border-radius: 50%;
		position: absolute;
		left: 57%;
		bottom: 10px;
		margin-left: -0.24rem;
		z-index: 0;
	}
	.table tr td:first-child {
		font-size: 13px;
	}
	.table tr td .tdbox p {
		line-height: 1.25;
		font-size: 14px;
	}
	.table tr td .tdbox {
		height: auto;
	}
	/*.words6 {*/
	/*	height: auto;*/
	/*}*/
	.table tr td {
		height: auto;
	}
	.selectList li {
		width: 20% !important;
	}
	.selectList li p {
		height: auto;
		line-height: 1.25 !important;
		font-size: 14px;
	}
	.selectList li p span {
		font-size: 13px;
		line-height: 1.25 !important;
	}
	.morebox .morelist ul {
		float: left;
		width: 48%;
		margin-right: 4%;
	}
	.morebox .morelist li {
		height: 40px;
		line-height: 40px;
		font-size: 15px;
	}
	.morebox .morelist li a {
		display: block;
		width: 100%;
		line-height: 40px;
	}
	.morebox .cancelbtn {
		float: left;
		display: block;
		width: 48%;
		height: 40px;
		line-height: 40px;
		margin-top: 0;
		font-size: 15px;
	}
}
























.jskbHeader {
  position: relative;
  z-index: 101;
}
.emptyBox {  
  background: #fff;
  width: 100%;
  /* 头部高度0.88 表头高度 1.06 */
  height: 100%;
  position: fixed;
  top: 0;
  left: 0;
  right: 0;
  z-index: 100;
  font-size: 0.32rem;
  text-align: center;
  color: #999;
}
.emptyBox .emptyImg {
  width: 3.2rem;
  height: auto;
  margin: 3.6rem auto 0;
}
.emptyBox .emptyTxt {
  margin-top: 0.2rem;
}
.table tr td[rowspan]{
	height: 1.08rem;
}


:root { color-scheme: light; }
html { font-size: 50px; }
body {
  margin: 0;
  background: #2d3333;
  font-family: Arial, "PingFang SC", "Microsoft YaHei", sans-serif;
  overflow: hidden;
}
a { text-decoration: none; }
.phone-shell {
  width: 100%;
  max-width: 430px;
  height: 100vh;
  margin: 0 auto;
  background: #fff;
  position: relative;
  overflow: hidden;
  box-shadow: 0 0 0 1px rgba(0,0,0,.04);
}
.mianbox {
  position: relative;
  height: 100vh !important;
  overflow-y: auto;
  -webkit-overflow-scrolling: touch;
  background: #fff;
}
.selectWeek {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: .12rem;
  box-sizing: border-box;
  background-color: #44e2bf;
}
.selectWeek .left-title,
.selectWeek .right-title {
  display: flex;
  align-items: center;
  min-width: 0;
}
.selectWeek .left-title { gap: .08rem; }
.selectWeek .right-title {
  gap: .12rem;
  justify-content: flex-end;
  cursor: pointer;
  -webkit-tap-highlight-color: transparent;
}
.selectWeek .right-title::after {
  content: "";
  width: 0;
  height: 0;
  border-left: .08rem solid transparent;
  border-right: .08rem solid transparent;
  border-top: .1rem solid rgba(255,255,255,.9);
}
.selectWeek span { height: auto; line-height: normal; }
#xnxqtext, #zctext { font-weight: 600; }
.semester, .schedule { opacity: .9; }
.week-select { top: .88rem; }
.week-select[hidden] { display: none; }
.week-select ul { box-sizing: border-box; }
.week-select li p { cursor: pointer; }
.week-panel { display: none; }
.week-panel.active { display: block; }
.table {
  width: 100%;
  table-layout: fixed;
  border-collapse: collapse;
  background: #fff;
}
.table thead tr th,
.table tr#tablebt th {
  border: none;
  background-color: #44e2bf;
  position: relative;
  height: .9rem;
}
.table tr#tablebt th span:first-child {
  color: rgba(255,255,255,.68);
  font-size: .24rem;
  font-weight: normal;
  display: block;
  height: .32rem;
  line-height: .32rem;
}
.table tr#tablebt th span:last-child {
  color: #fff;
  line-height: .42rem;
  height: .42rem;
  display: block;
  font-size: .3rem;
}
.table tr#tablebt th.today span {
  color: #fff;
  position: relative;
  z-index: 1;
}
.table tr#tablebt th.today::after {
  display: block;
  content: "";
  width: .48rem;
  height: .48rem;
  background: #fff;
  border-radius: 50%;
  position: absolute;
  left: 50%;
  bottom: .14rem;
  margin-left: -.24rem;
  z-index: 0;
}
.table tr#tablebt th.today span:last-child { color: #3ed9b7; }
.table tr td {
  border: 1px solid rgba(235,238,240,.95);
  font-size: .22rem;
  vertical-align: middle;
}
.table tr td:first-child {
  width: .48rem;
  text-align: center;
}
.table tr td .tdbox p {
  font-size: .2rem;
  line-height: .3rem;
  word-break: break-all;
}
.table tr td .tdbox {
  min-height: .92rem;
  box-sizing: border-box;
}
.table tr td[rowspan="2"] .tdbox { min-height: 2.02rem; }
.table tr td[rowspan="4"] .tdbox { min-height: 4.24rem; }
.table tr td .tdbox-wrap { min-height: 100%; }
.table tr td .tdbox span[style*="background: red"] {
  display: inline-block;
  color: #fff;
  font-size: .18rem;
  line-height: .28rem;
  padding: 0 .05rem;
  border-radius: .04rem;
  margin: 0 0 .04rem 0 !important;
}
#bztbody td { height: .9rem; }
.course-mask {
  position: fixed;
  inset: 0;
  background: rgba(0,0,0,.42);
  z-index: 1000;
  display: none;
  align-items: flex-end;
  justify-content: center;
}
.course-mask.open { display: flex; }
.course-sheet {
  width: min(100%, 430px);
  background: #fff;
  border-radius: .28rem .28rem 0 0;
  padding: .34rem .34rem .42rem;
  box-sizing: border-box;
  box-shadow: 0 -.12rem .3rem rgba(0,0,0,.15);
}
.course-sheet h2 {
  font-size: .34rem;
  line-height: .46rem;
  color: #1f2a2a;
  font-weight: 700;
  margin: 0 0 .24rem;
}
.course-sheet p {
  font-size: .28rem;
  line-height: .46rem;
  color: #596463;
  margin: 0;
}
.course-sheet strong { color: #202827; font-weight: 600; }
.course-sheet button {
  width: 100%;
  height: .78rem;
  margin-top: .28rem;
  border: 0;
  border-radius: .14rem;
  background: #44e2bf;
  color: white;
  font-size: .3rem;
  font-weight: 700;
}
@media (max-width: 360px) {
  html { font-size: 46px; }
  .table tr td .tdbox p { font-size: .19rem; line-height: .28rem; }
}
