@charset "utf-8";

* {
    margin: 0 0;
    padding: 0 0;
    list-style-type: none;
    text-decoration: none;
    box-sizing: border-box;
    outline: none;
}

html {
    width: 100%;
    height: 100%;
}


body {
    width: 100%;
    height: 100%;
    font-size: 1em;
    background: linear-gradient(-10deg, #1862d1, #3987fd) no-repeat;
    overflow: hidden;
}

input, button {
    color: #fff;
    font-size: 1em;
}

img {
    display: block;
	width: auto;
	height: auto;
	max-width: 100%;
    max-height: 100%;
    object-fit: cover;/*-- 使图片不会被拉伸变形 --*/
}

table {
	border-collapse: collapse;
	border-spacing: 0;
}

input::-webkit-input-placeholder, textarea::-webkit-input-placeholder {   
    color: #adb5bd;
}

*::-webkit-scrollbar {
    display: none;
}

/*-------------------iphone button style reset-------------------*/

input[type=button], input[type=file], input[type=text], textarea, select { 
    -webkit-appearance: none;
}

/*-- bootstrap hack --*/

p, ol, ul, li, dl, h1, h2, h3, h4, h5, h6, label, select, input, button {
    margin-top: 0;
    margin-bottom: 0;
    padding-left: 0;
    color: #495057;
}

a {
    color: #495057;
}

a:hover {
    color: #099268;
    text-decoration: none;
}

span {
    font-size: .9em;
    color: #868e96;
}

h2 {
    font-size: 1.8em;
}

h4 {
    font-size: 1.4em;
}

h5 {
    font-size: 1.2em;
}

h6 {
    font-size: 1em;
}

button:active {
    opacity: .5;
}

/*-- public --*/

.i-hidden {
    visibility: hidden;
    width: 1em;
    height: 1em;
}

.flex {
    display: flex;
}

.flex-jcsb {
    display: flex;
    justify-content: space-between;
}

.flex-jcsb-aic {
    display: flex;
    justify-content: space-between;
    align-items: center;
    width: 100%;
}

.flex-aic {
    display: flex;
    align-items: center;
}

.flex-2c {
    display: flex;
    justify-content: center;
    align-items: center;
}

.flex-end {
    display: flex;
    justify-content: flex-end;
}

.no-shrink {
    flex-shrink: 0;
}

.text-sm {
    font-size: .8em;
}

.btn-sm {
    padding: .1em .4em;
}

.btn-line {
    color: #868e96;
    border: 1px solid rgba(154,154,154,.2);
    border-radius: 10em;
}

/* iconfont */

.i-dot {
    display: inline-block;
    margin-right: .4em;
    width: .4em;
    height: 1.2em;
    background-color: rgba(5,121,56,1);
    border-radius: 100em;
}

.i-dot-round {
    display: inline-block;
    margin-right: .2em;
    width: .3em;
    height: .3em;
    background-color: #ced4da;
    border-radius: 50%;
}

.iconfont {
    font-size: 1em;
}

.i-lg {
    font-size: 1.4em;
}

.i-xl {
    font-size: 2em;
}

/* color */

.color-white {
    color: #fff;
}

.color-red {
    color: #e74c3c;
}

.color-black {
    color: #495057;
}

.color-grey {
    color: #868e96;
}

.color-lightgrey {
    color: #adb5bd;
}

.color-green {
    color: #12b886;
}

.color-blue {
    color: #339af0;
}

.color-orange {
    color: #fd7e14;
}

.color-yellow {
    color: #fcc419;
}

.bgcolor-grey {
    background-color: #ced4da;
}

.bgcolor-white {
    background-color: #fff;
}

.bgcolor-green {
    color: #fff;
    background-color: #12b886;
}

.bgcolor-orange {
    color: #fff;
    background-color: #fd7e14;
}

.bgcolor-blue {
    color: #fff;
    background-color: #339af0;
}

.bgcolor-red {
    color: #fff;
    background-color: #e74c3c;
}

.bgcolor-purple {
    color: #fff;
    background-color: #cc5de8;
}

.bgcolor-transparent {
    background-color: transparent;
}

.borcolor-white {
    color: rgba(255,255,255,.8);
    background-color: rgba(255,255,255,.2);
}

.borcolor-grey {
    color: #495057;
    background-color: rgba(173,181,189,.2);
}

.borcolor-green {
    color: #12b886;
    background-color: rgba(18,184,134,.1);
}

.borcolor-blue {
    color: rgba(28,126,214,1);
    background-color: rgba(28,126,214,.1);
}

.borcolor-orange {
    color: #fd7e14;
    background-color: rgba(253,126,20,.1);
}

.borcolor-black {
    color: #495057;
    border: 1px solid rgba(0,0,0,.4);
}

.bgcolor-linear-orange {
    background: linear-gradient(150deg, #ffd8a8, #ff922b) no-repeat;
}

.bgcolor-linear-yellow {
    background: linear-gradient(150deg, #ffe066, #fab005) no-repeat;
}

.bgcolor-linear-green {
    background: linear-gradient(150deg, #96f2d7, #20c997) no-repeat;
}

.bgcolor-linear-blue {
    background: linear-gradient(150deg, #a5d8ff, #339af0) no-repeat;
}

.bgcolor-linear-purple {
    background: linear-gradient(150deg, #d0bfff, #845ef7) no-repeat;
}

.bgcolor-linear-red {
    background: linear-gradient(150deg, #ffc9c9, #ff6b6b) no-repeat;
}

/*-- common --*/

.flex-body {
    display: flex;
    flex-direction: column;
    width: 100%;
    height: 100%;
    overflow: hidden;
}

.main-con {
    height: 100%;
    overflow-y: auto;
}

.main-con.with-padding {
    padding: .6em;
}

header {
    flex-shrink: 0;
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 0 .8em;
    width: 100%;
    height: 3em;
    border-bottom: 1px solid #f1f1f1;
}

header.no-border {
    border-bottom: none;
}

header > img {
    flex-shrink: 0;
    margin-right: .8em;
    height: 1.3em;
}

header i {
    color: #495057;
}

header.bgcolor-transparent {
    border-bottom: none;
}

header.bgcolor-transparent i {
    color: rgba(255,255,255,.6);
}

.scroll-wrap {
    height: 100%;
    overflow-y: auto;
}

.bg-questions {
    background: url(../images/bg-top.png) top no-repeat;
    background-size: contain;
}

.vs-wrap {
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: center;
    height: 100%;
    overflow: hidden;
}

.vs-wrap h2 {
    margin-top: -1em;
    margin-bottom: 1em;
    font-size: 1.6em;
    font-weight: 600;
}

.vs-wrap h1 {
    margin-top: .6em;
    font-size: 4em;
    font-weight: 600;
}

.vs-wrap .flex-2c {
    flex-shrink: 0;
    width: 92%;
    height: 10em;
    background-color: rgba(0,0,0,.1);
    border-radius: 1em;
    backdrop-filter: blur(2px);
}

.vs-wrap .flex-2c p, .round-box p {
    display: flex;
    justify-content: center;
    align-items: center;
    text-align: center;
    margin: 0 1em;
/*    width: 4em;
    height: 4em; */
	width: 6em;
	height: 6em;
    line-height: 1.2;
    border-radius: 50%;
}

.vs-wrap .flex-2c h3 {
    margin-top: .2em;
    font-size: 2em;
    text-align: center;
}

.vs-wrap .flex-2c h4 {
    color: rgba(255,255,255,.6);
}

.round-box {
    margin: 0 auto 1em auto;
}

.questions-wrap {
    margin: 1em 0;
    padding: .8em;
    width: 92%;
    height: 100%;
    background-color: #fff;
    border-radius: 1em;
    overflow-y: auto;
}

.questions-wrap > p, .questions-wrap button {
    font-size: 1.1em;
    font-weight: bold;
}

.answers-wrap {
    position: relative;
}

.answers-wrap > img {
    position: absolute;
    right: 0;
    margin-top: -1em;
    width: 5em;
}

.answers-wrap h5 {
    margin: .6em 0;
}

.answers-wrap p, .answers-wrap span {
    font-size: 1em;
}

.rank-tit {
    margin: .6em 0;
    font-size: 1.7em;
    text-align: center;
    color: #0e376f;
    font-weight: bold;
}

.tab-rank {
    text-align: center;
}

.user-line {
    background-color: rgba(206,206,206,.1);
}

.a-rank {
    display: block;
    margin-bottom: 1.6em;
    text-align: center;
    color: #0e376f;
    text-decoration: none;
}

.full-box {
    flex-shrink: 0;
    text-align: center;
    align-content: center;
    height: 100%;
}

.vs-wrap .btns-wrap {
    display: flex;
    flex-direction: column;
    margin-top: 1em;
}

.vs-wrap .btns-wrap button {
    margin: 0 0 1em 0;
    padding: 0 .6em;
    width: 100%;
    height: 3em;
    text-align: left;
    border: none;
    border-radius: .4em;
}

.vs-wrap .btns-wrap button:disabled:active {
    opacity: 1;
}

@keyframes shake {
  0%, 100% { transform: translateX(0); }
  25% { transform: translateX(-.6em) rotate(0deg); }
  50% { transform: translateX(.6em) rotate(0deg); }
  75% { transform: translateX(-.6em) rotate(0deg); }
}

.shake {
    animation: shake .3s ease-in-out;
}

.wrong {
    color: #fff;
    background-color: #e74c3c;
    transition: all .8s;
}

.right {
    color: #fff;
    background-color: #12b886;
    transition: all .8s;
}

.flex-icons {
    flex-shrink: 0;
    position: absolute;
    right: .6em;
}

.flex-icons i {
    margin-left: 0.32em;
}

.full-wrap {
    width: 100%;
    background-color: #fff;
    border-bottom: 1px solid #faf3f5;
}

.full-wrap header {
    position: absolute;
    background-color: transparent;
}

.full-wrap header a:not([href]) {
    padding: .2em .6em;
    font-size: .9em;
    color: #fff;
    background-color: rgba(0,0,0,.4);
    border-radius: 10em;
}

.full-wrap .con-wrap {
    margin: 0;
}

.search-wrap {
    display: flex;
    align-items: center;
    width: 100%;
}

.full-wrap .search-wrap {
    padding: 0 .6em .6em;
}

.search-wrap .i-search {
    position: absolute;
    z-index: 2;
    margin-left: .2em;
}

.search-wrap .i-audio {
    position: absolute;
    right: .8em;
    z-index: 2;
}

.search-wrap input {
    padding: .3em .4em .3em 1.8em;
    width: 100%;
    background-color: #f5f6f7;
    border: none;
    border-radius: 10em;
}

.sub-search-wrap {
    padding: 0 .6em;
}

.sub-search-wrap .search-wrap input {
    background-color: #fff;
}

header i:active {
    opacity: .8;
}

header > .flex-aic i {
    margin: 0 .32em;
}

header > .flex-aic > span {
    position: absolute;
    z-index: 0;
    display: flex;
    justify-content: center;
    align-items: center;
    margin-top: -1.6em;
    margin-left: 1.6em;
    padding: .2em;
    width: 1.5em;
    height: 1.5em;
    font-size: .7em;
    color: #fff;
    background-color: #e74c3c;
    border-radius: 50%;
}

.banner-wrap {
    margin: .6em;
}

.top-banner {
    margin: .6em .6em 0 .6em;
}

.banner-wrap img, .top-banner img {
    border-radius: .6em;
}

.banner-wrap.sub {
    margin: 0;
}

.banner-wrap.sub img {
    border-radius: .4em;
}

.con-wrap {
    margin: .6em;
    padding: .6em;
    background-color: #fff;
    border-radius: .6em;
    overflow: hidden;
}

.con-wrap.no-bgcolor {
    padding: 0;
    background-color: transparent;
}

.no-margintop {
    margin-top: 0;
}

.nav-bottom.nav-tabs {
    flex-shrink: 0;
    background-color: #fff;
    border-top: 1px solid #f1f1f1;
    border-bottom: none;
}

.nav-bottom .nav-item {
    display: flex;
    justify-content: center;
    align-items: center;
    width: 33.3%;
    height: 3.8em;
}

.nav-bottom .nav-link.active, .nav-bottom .nav-link.active p, .nav-bottom .nav-item.show .nav-link {
    color: #fd7e14;
    border: none;
}

.nav-bottom .nav-link {
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: center;
    padding: 0;
    color: #495057;
    border: none;
}

.nav-bottom i {
    margin: -.2em 0;
}

.tab-pane.active {
    height: 100%;
    overflow-y: auto;
}

.bigbtn-wrap {
    margin-top: 2em;
    margin-bottom: 1em;
}

.ul-bigbtn {
    display: flex;
    flex-wrap: wrap;
}

.ul-bigbtn li {
    display: flex;
    flex-direction: column;
    align-items: center;
    margin: .6em 0;
    width: 25%;
}

.ul-bigbtn li:active {
    opacity: .6;
}

.ul-bigbtn li > div {
    display: flex;
    justify-content: center;
    align-items: center;
    margin-bottom: .4em;
    width: 2.8em;
    height: 2.8em;
    border-radius: .8em;
}

.ul-bigbtn li i {
    font-size: 1.8em;
    color: #fff;
}

.con-title {
    display: flex;
    justify-content: space-between;
    align-items: center;
    margin: .4em 0 1em 0;
}

.wrap-title {
    display: flex;
    justify-content: space-between;
    align-items: center;
    margin: 1em .6em;
}

.no-bgcolor .con-title {
    padding: 0 .6em;
}

.kccj .con-title {
    margin-bottom: .6em;
    padding-bottom: .6em;
    border-bottom: 1px solid #f1f3f5;
}

.kccj .con-wrap span {
    font-size: 1em;
}

.ul-kccj li {
    margin-bottom: .6em;
}

.ul-kccj li > p {
    padding: .4em .6em;
    background-color: #fcf1e2;
}

.ul-kccj li:last-of-type {
    margin-bottom: 0;
}

.ul-kccj li > label {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: .4em .6em;
    background-color: #fffcf8;
}

.con-title > h5, .wrap-title > h5 {
    display: flex;
    align-items: center;
    font-family: "SimSun", "宋体", serif;
    font-weight: bold;
}

.con-title > h5 i {
    display: flex;
    justify-content: center;
    align-items: center;
    margin-right: .4em;
    padding: .2em;
    width: 1.4em;
    height: 1.4em;
    background-color: #f1f3f5;
    border-radius: 50%;
}

.con-title > button {
    display: flex;
    justify-content: center;
    align-items: center;
    margin-left: 1em;
    color: #868e96;
}

.con-title > button i {
    font-size: 1em;
}

.category-wrap {
    display: flex;
    flex-wrap: wrap;
    align-items: center;
    margin-bottom: .6em;
}

.category-wrap span {
    margin: 0 .4em .4em 0;
    padding: .1em .4em;
    border: 1px solid rgba(154,154,154,.2);
    border-radius: 10em;
}

.category-wrap .active {
    color: #ed734d;
    border: 1px solid #ed734d;
}

.ul-course {
    display: flex;
    flex-wrap: wrap;
    justify-content: space-between;
    margin-bottom: -.6em;
}

.ul-course li {
    margin-bottom: .6em;
    padding: .6em;
    width: 48.5%;
    background-color: #fff;
    border-radius: .6em;
}

.ul-course li h6 {
    display: -webkit-box;
    -webkit-line-clamp: 2;
    -webkit-box-orient: vertical;
    overflow: hidden;
    margin-bottom: .4em;
    height: 2.4em;
}

.ul-course li .flex-jcsb-aic button:last-of-type, .ul-course li .flex-end button:last-of-type {
    display: flex;
    justify-content: center;
    align-items: center;
    width: 2.4em;
    height: 2.4em;
    color: rgba(237,115,77,1);
    background-color: rgba(237,115,77,.1);
    border: none;
    border-radius: 50%;
}

.ul-course li p {
    font-size: .9em;
}

.ul-course label {
    margin-top: .2em;
}

.ul-course label span {
    padding: .2em .4em;
    font-size: .8em;
    border-radius: .4em;
}

.img-course-wrap {
    flex-shrink: 0;
    position: relative;
    display: flex;
    justify-content: flex-end;
    margin-bottom: .6em;
    width: 100%;
    height: 7em;
    border-radius: .4em;
    overflow: hidden;
}

.img-course-wrap img {
    width: 100%;
    height: 100%;
}

.img-course-wrap > span {
    position: absolute;
    margin: .4em .4em;
    padding: .1em .4em;
    font-size: .8em;
    color: #fff;
    background-color: rgba(0,0,0,.4);
    border-radius: .2em;
}

.card-wrap {
    display: flex;
    flex-wrap: wrap;
    margin: .6em 0;
    border-radius: .6em;
}

.card-wrap > div {
    display: flex;
    align-items: center;
}

.card-wrap > div:active {
    opacity: .8;
}

.flex-dir-col > div {
    display: flex;
    flex-direction: column;
}

.card-wrap.three-column > div {
    width: 33%;
}

.card-wrap.four-column > div {
    width: 25%;
}

.card-wrap.two-column > div {
    width: 50%;
}

.card-wrap.two-column {
    padding: 0;
}

.two-column > div {
    padding: .8em 1em;
    border-right: 1px solid #eee;
    border-bottom: 1px solid #eee;
}

.two-column > div:nth-of-type(2n) {
    border-right: none;
}

.two-column > div:nth-last-of-type(-n+2) {
    border-bottom: none;
}

.four-column > div {
    margin-top: .6em;
}

.four-column > div:nth-of-type(-n+4) {
    margin-top: 0;
}

.user-wrap {
    display: flex;
    justify-content: space-between;
    padding: .6em .6em 0 .6em;
    height: 8em;
}

.user-wrap img {
    margin-right: .6em;
    width: 4.6em;
    height: 4.6em;
    border-radius: 50%;
}

.card-wrap h4 {
    margin-bottom: .1em;
    font-weight: bold;
}

.card-wrap h4 span {
    margin-left: .2em;
    color: #9a9a9a;
    font-size: .6em;
    font-weight: normal;
}

.ul-class {
    width: 100%;
}

.ul-class li {
    padding: 1em 0;
    border-bottom: 1px solid #f1f3f5;
}

.ul-class li:first-of-type {
    padding-top: .4em;
}

.ul-class li:last-of-type {
    margin-bottom: 0;
    border-bottom: none;
}

.ul-class li:active {
    opacity: .8;
}

.ul-class li > h6 {
    margin-bottom: .6em;
}

.ul-class li > h6 span {
    position: relative;
    z-index: 1;
    display: inline-flex;
    margin-right: .4em;
    padding: .1em .4em;
    font-size: .8em;
    color: #fff;
}

.ul-class li > h6 .red::after {
    position: absolute;
    z-index: -1;
    top: 0;
    bottom: 0;
    left: 0;
    right: 0;
    background-color: #e74c3c;
    transform: skewX(-15deg);
    content: "";
}

.ul-class li > h6 .orange::after {
    position: absolute;
    z-index: -1;
    top: 0;
    bottom: 0;
    left: 0;
    right: 0;
    background-color: #fd7e14;
    transform: skewX(-15deg);
    content: "";
}

.span-separator {
    margin: 0 .6em;
    color: #ced4da;
}

.ul-class li label {
    display: flex;
    align-items: center;
}

.ul-class li label, .ul-class li > p {
    margin: .2em 0;
    line-height: 1.1;
}

.ul-class li > div p {
    display: flex;
    align-items: center;
    line-height: 1.3;
}

.ul-class li > div button {
    flex-shrink: 0;
    padding: .2em .6em;
    border: none;
    border-radius: .3em;
}

.ul-class label > span {
    margin-right: .4em;
    padding: .2em .6em;
    border-radius: .4em;
}

.label-row, .ul-class li .label-row {
    margin: .6em 0;
}

.label-row > span {
    padding: .2em .6em;
    border-radius: .4em;
}

.label-row > h6 {
    margin-bottom: .4em;
}

.ul-class.with-pic li {
    display: flex;
    justify-content: space-between;
    align-items: center;
    margin-bottom: .6em;
    padding: .6em;
    background-color: #fff;
    border-bottom: none;
    border-radius: .6em;
}

.ul-class.with-pic li:last-of-type {
    margin-bottom: 0;
}

.class-info {
    display: flex;
    flex-direction: column;
    justify-content: space-between;
    width: 100%;
    height: 5.8em;
}

.class-info h6 {
    flex-shrink: 0;
    display: -webkit-box;
    -webkit-line-clamp: 2;
    -webkit-box-orient: vertical;
    overflow: hidden;
    width: 100%;
}

.class-info .flex-jcsb-aic label {
    margin-top: 0;
    margin-bottom: 0;
}

.ul-class .class-info a {
    overflow: hidden;
    text-overflow: ellipsis;
    white-space: nowrap;
    width: 11em;
    font-size: .9em;
    color: #868e96;
}

.class-info .flex-jcsb-aic > button {
    display: flex;
    justify-content: center;
    align-items: center;
    padding: .2em;
    width: 1.6em;
    height: 1.6em;
    background-color: #f1f3f5;
    border: none;
    border-radius: 50%;
}

.class-info .flex-jcsb-aic > div i {
    margin-right: .2em;
}

.class-info .i-bofang {
    margin-left: .1em;
}

.class-info .flex-jcsb-aic .btn-like {
    display: flex;
    justify-content: center;
    align-items: center;
    width: 2.2em;
    height: 2.2em;
    color: rgba(237, 115, 77, 1);
    background-color: rgba(237, 115, 77, .1);
    border: none;
    border-radius: 50%;
}

.img-wrap {
    position: relative;
    flex-shrink: 0;
    display: flex;
    justify-content: flex-end;
    margin-right: .6em;
}

.img-wrap > img {
    width: 9em;
    height: 5.6em;
    border-radius: .2em;
}

.img-wrap > h6 {
    position: absolute;
    padding: .2em .6em;
    font-size: .8em;
    color: #fff;
    background-color: #e74c3c;
    border-radius: 0 .2em 0 .6em;
}

.img-wrap > .i-down-circle {
    position: absolute;
    margin-top: -1.2em;
    margin-left: 2em;
    font-size: 1.6em;
    color: #9a9a9a;
}

.tit-news {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 1em .6em;
    background-color: #f5f6f7;
}

.tit-news h5 {
    line-height: 1.4;
}

.tit-news button {
    padding: .1em .4em .1em .6em;
    font-size: .9em;
    color: #868e96;
    background-color: transparent;
    border: none;
    border-radius: .4em;
}

.tit-news span {
    flex-shrink: 0;
    margin-left: 1em;
    padding: .2em .6em;
    border-radius: .4em;
}

.author-wrap {
    display: flex;
    justify-content: space-between;
    align-items: center; 
    margin-bottom: 1em;
    padding: .6em 0;
    border-bottom: 1px solid #f1f3f5;
}

.author-wrap span {
    margin: 0 ;
}

.con-article p {
    margin-bottom: .6em;
    text-indent: 2em;
    line-height: 1.6;
}

.con-article p:last-of-type {
    margin-bottom: 0;
}

.con-article img {
    margin: 1em auto;
    text-align: center;
    border-radius: .4em;
}

.pdf-wrap {
    position: relative;
    display: flex;
    justify-content: flex-end;
    margin: 1em 0;
}

.file-wrap p {
    margin: .6em 0;
}

.file-wrap button {
    margin-left: 1em;
}

.mail-wrap:active {
    opacity: .8;
}

.mail-wrap > .flex {
    margin: .6em 0;
}

.mail-wrap > span {
    display: -webkit-box;
    -webkit-line-clamp: 2;
    -webkit-box-orient: vertical;
    overflow: hidden;
}

.mail-wrap > div:last-of-type {
    margin-top: .8em;
    padding-top: .6em;
    border-top: 1px solid #f1f3f5;
}

.mail-wrap > .flex {
    position: relative;
}

.mail-wrap > .flex i {
    flex-shrink: 0;
    display: flex;
    justify-content: center;
    align-items: center;
    margin-right: .4em;
    padding: .2em;
    width: 1.8em;
    height: 1.8em;
    color: #fff;
    border-radius: 50%;
}

.mail-wrap > .flex span {
    position: absolute;
    flex-shrink: 0;
    display: block;
    margin-left: 1.4em;
    width: .4em;
    height: .4em;
    background-color: #e74c3c;
    border-radius: 50%;
}

.unread-wrap {
    display: flex;
    justify-content: space-between;
    align-items: center;
    width: 100%;
}

.unread-wrap .nav-tabs {
    border-bottom: none;
}

.unread-wrap .nav-tabs .nav-link {
    margin-right: 1em;
    padding: 0;
    color: #868e96;
    border: none;
    border-bottom: 4px solid transparent;
}

.unread-wrap .nav-tabs .nav-link.active {
    background-color: transparent;
    color: #495057;
    font-weight: bold;
    border: none;
    border-bottom: 4px solid #fd7e14;
}

.con-empty {
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: center;
    height: 100%;
    background-color: #fff;
    border-radius: .6em;
}

.con-empty.small {
    margin: .6em;
    height: 24em;
}

.con-empty.small img {
    margin-top: 0;
}

.con-empty img {
    margin-top: -8em;
    margin-bottom: 1em;
    width: 10em;
}

.live-wrap > img {
    width: 100%;
    height: 10em;
    border-radius: .4em;
}

.live-wrap h6 {
    margin-bottom: -.4em;
}

.live-wrap > div {
    margin: 1em 0;
}

.live-wrap > div:last-of-type {
    margin-bottom: 0;
}

.live-wrap > div button {
    margin: .8em 0 .4em 0;
}

.live-wrap span {
    font-size: 1em;
    line-height: 1.2;
}

.live-wrap p {
    line-height: 1.2;
}

.live-wrap .flex {
    margin: .3em 0;
}

.live-wrap .flex span {
    flex-shrink: 0;
    width: 5em;
    text-align: right;
}

.live-wrap input {
    padding: .2em .6em;
    width: 100%;
    height: 3em;
    font-weight: bold;
    text-align: center;
    background-color: #f5f6f7;
    border: none;
    border-radius: 10em;
}

.live-wrap button {
    padding: .2em .6em;
    width: 100%;
    height: 3em;
    border: none;
    border-radius: 10em;
}

.div-row {
    margin: .6em 0;
}

.div-row:last-of-type {
    margin-bottom: 0;
}

.div-row > img {
    width: 100%;
    border-radius: .4em;
}

.teacher-wrap {
    margin-bottom: .6em;
    border-bottom: 1px solid #f1f3f5;
}

.teacher-wrap img {
    margin-right: .4em;
    width: 3em;
    height: 3em;
    border: 1px solid rgba(154,154,154,.2);
    border-radius: 50%;
}

.ul-chat li {
    display: flex;
    margin-bottom: 1.2em;
}

.ul-chat li:last-of-type {
    margin-bottom: 3em;
}

.ul-chat li > img {
    flex-shrink: 0;
    margin-right: .4em;
    width: 2em;
    height: 2em;
    border: 1px solid rgba(154,154,154,.2);
    border-radius: 50%;
}

.ul-chat li > div > span {
    display: flex;
    align-items: center;
    height: 2.4em;
}

.ul-chat li > div > p {
    margin-right: 2.4em;
    padding: .4em .6em;
    background-color: #fff;
    border-radius: .4em;
}

.bottom-input {
    position: absolute;
    z-index: 2;
    bottom: 0;
    display: flex;
    align-items: center;
    padding: .6em 1.2em;
    width: 100%;
    height: 3em;
    background-color: #fff;
    border-top: 1px solid #f1f3f5;
}

.bottom-input input {
    padding: 0 1em;
    width: 100%;
    height: 2.2em;
    background-color: #f1f3f5;
    border: none;
    border-radius: 10em;
}

.bottom-input button {
    position: absolute;
    right: 1.2em;
    padding: .3em 1em;
    border: none;
    border-radius: 10em;
}

.ul-qa {
    padding: 0 .6em;
    background-color: #f5f6f7;
    border-radius: .4em;
}

.ul-qa li {
    padding: .6em 0;
    border-bottom: 1px solid #dee2e6;
}

.ul-qa li:last-of-type {
    border-bottom: none;
}

.ul-qa li a {
    margin-right: .4em;
    color: #339af0;
    text-decoration: none;
}

.interact-wrap {
    display: flex;
    justify-content: space-between;
    align-items: center;
    margin-top: .4em;
}

.interact-wrap label {
    display: flex;
    align-items: center;
}

.interact-wrap label button {
    background-color: transparent;
    border: none;
}

.interact-wrap label i {
    margin-right: .2em;
    color: #868e96;
}

.interact-wrap .liked i {
    color: #fd7e14;
}

.mini-banner {
    display: flex;
    justify-content: space-between;
    align-items: center;
    margin-bottom: -.6em;
    padding: .6em;
    height: 4em;
    background: linear-gradient(150deg, #ffebec, #fffdf6) no-repeat;
    border-radius: .6em;
}

.mini-banner img {
    margin-right: .2em;
    height: 3em;
}

.mini-banner h6 {
    color: #e74c3c;
    font-family: "SimSun", "宋体", serif;
    font-weight: bold;
}

.mini-banner button {
    padding: .2em .6em;
    font-size: .9em;
    border: none;
    border-radius: 10em;
}

.mini-banner button i {
    color: #fff;
}

.ul-jzb li {
    margin: .6em 0;
}

.ul-jzb li > h6 {
    overflow: hidden;
    text-overflow: ellipsis;
    white-space: nowrap;
    padding: .6em;
    height: 4.6em;
    color: #fff;
    background: linear-gradient(150deg, #ff8b23, #fdc921) no-repeat;
    border-radius: .6em;
}

.ul-jzb li > div {
    margin-top: -2.2em;
    padding: .6em;
    background: linear-gradient(180deg, rgba(255,255,255,.6), rgba(255,255,255,1)) no-repeat;
    border-radius: .6em;
    backdrop-filter: blur(4px);
}

.ul-jzb li > div > p {
    margin-bottom: .6em;
    line-height: 1.2;
}

.ul-jzb li label {
    position: relative;
    display: flex;
    justify-content: flex-end;
    align-items: flex-end;
    margin-bottom: .6em;
}

.ul-jzb li label p {
    z-index: 1;
    font-weight: bold;
}

.ul-jzb li label i {
    position: absolute;
    z-index: 0;
    display: block;
    width: 3em;
    height: .6em;
}

.flex-body.body-live {
    height: 100%;
    background: linear-gradient(180deg, #f9dcd1, #ffeeda, #fff, #fff) no-repeat;
}

.main-con.live {
    display: flex;
    flex-direction: column;
    justify-content: center;
    background: url(../images/bg-live02.png) no-repeat bottom;
    background-size: contain;
}

.con-live {
    display: flex;
    margin-top: -10em;
    padding: .6em;
    height: 12em;
    background: url(../images/bg-live01.png) no-repeat;
    background-size: cover;
}

.con-live img {
    margin-right: .4em;
    height: 4em;
}

.con-live label {
    display: flex;
    flex-direction: column;
    justify-content: center;
    height: 4em;
}

.con-live label h5 {
    font-family: "SimSun", "宋体", serif;
    font-weight: bold;
}

.fullbtns-wrap {
    margin-top: -2em;
    padding: .6em;
}

.fullbtns-wrap button {
    position: relative;
    display: flex;
    justify-content: center;
    align-items: center;
    margin: 1em 0;
    width: 100%;
    height: 3em;
    color: #fff;
    background-color: #fd7e14;
    border: none;
    border-radius: 10em;
}

.fullbtns-wrap button i {
    position: absolute;
    margin-bottom: -.7em;
}

.fullbtns-wrap button .i-user {
    margin-left: -6em;
    opacity: .6;
}

.fullbtns-wrap button .i-manager {
    margin-left: 6em;
    opacity: .6;
}

.filter-wrap {
    width: auto;
    overflow-x: auto;
    margin-bottom: .4em;
    padding: 0 .6em .4em .6em;
    border-bottom: 1px dashed #f1f3f5;
}

.filter-wrap:last-of-type {
    margin-bottom: 0;
    border-bottom: none;
}

.con-filter {
    display: flex;
    align-items: center;
}

.con-filter p {
    flex-shrink: 0;
    margin-left: .6em;
    font-size: .9em;
}

.con-filter span {
    flex-shrink: 0;
    margin-right: .6em;
    padding: .1em .6em;
    border: 1px solid transparent;
    border-radius: 10em;
}

.con-filter.search span {
    border: 1px solid #f1f3f5;
}

.con-filter.search span i {
    margin-left: .4em;
    color: #fd7e14;
    border-radius: 50%;
    border: 1px solid #fd7e14;
}

.con-filter span.selected {
    color: #fd7e14;
    border: 1px solid #fd7e14;
}

.number-wrap {
    margin: .6em .6em 0 .6em;
}

.number-wrap span span {
    margin: 0 .2em;
}

.full-img-wrap img {
    width: 100%;
    height: 10em;
    border-radius: .4em;
}

.full-wrap.bgcolor-lightred {
    background: linear-gradient(180deg, #fcf1e2, #fffcf8, #fff) no-repeat;
}

.full-wrap.bgcolor-lightred-transparent {
    background: linear-gradient(180deg, #fcf1e2, #fffcf8, transparent, transparent) no-repeat;
}

.bgcolor-lightred > .zhuanti {
    display: flex;
    justify-content: space-between;
    align-items: center;
    margin: 2.4em .6em .6em;
    color: #fff;
    background-color: transparent;
}

.bgcolor-lightred > .zhuanti > img {
    flex-shrink: 0;
    margin-right: .6em;
    width: 8em;
    height: 10em;
    border-radius: .4em;
}

.zhuanti .ul-class.with-pic li {
    padding: 0 0 .6em 0;
    border-bottom: 1px solid #f1f3f5;
    border-radius: 0;
}

.zhuanti .ul-class.with-pic li:last-of-type {
    padding-bottom: 0;
    border-bottom: none;
}

.zhuanti > p {
    margin: -.6em 0 1.2em 0;
}

.div-row.banner {
    margin: 0;
    padding: .6em;
    background-color: #fff;
}

.con-big-img {
    display: flex;
    justify-content: space-between;
    align-items: center;
}

.big-img {
    flex-shrink: 0;
    position: relative;
    display: flex;
    align-items: center;
    margin-right: .6em;
    width: 9em;
    height: 8em;
}

.big-img h6 {
    position: absolute;
    padding-left: .6em;
    font-size: .9em;
    font-family: "SimSun", "宋体", serif;
    font-weight: bold;
    color: #ffd8a7;
    text-shadow: 0 0 .4em rgba(59,5,0,.4);
}

.big-img img {
    border-radius: .4em;
}

.small-img {
    width: 100%;
}

.small-img > div {
    position: relative;
    display: flex;
    align-items: center;
    height: 3.7em;
    border-radius: .4em;
}

.small-img > div:first-of-type {
    margin-bottom: .6em;
}

.big-img:active, .small-img > div:active {
    opacity: .8;
}

.small-img .orange {
    background-color: #ffead5;
}

.small-img .blue {
    background-color: #edf2fe;
}

.small-img img {
    position: absolute;
    z-index: 1;
    right: .2em;
    width: 3.6em;
    height: 3.6em;
}

.small-img h6 {
    position: absolute;
    z-index: 2;
    padding-left: .6em;
    font-size: .9em;
    font-family: "SimSun", "宋体", serif;
    font-weight: bold;
}

.live-admin {
    display: flex;
    justify-content: space-between;
    align-items: center;
    margin: .6em 0 .2em 0;
    padding: 0 .6em;
}

.live-admin button {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: .6em 1.2em;
    width: 48.8%;
    border: none;
    border-radius: .4em;
}

.live-admin button h6 {
    color: #fff;
    font-family: "SimSun", "宋体", serif;
    font-weight: bold;
}

.bg-echarts {
    display: flex;
    align-items: flex-end;
    margin-top: 0;
    padding: 0 .6em;
    height: 8em;
    background: url(../images/bg-echarts.png) no-repeat top;
    background-size: cover;
}

.bgcolor-lightbrown {
    margin-top: 0;
    background-color: rgba(239,224,200,.6);
}

.con-wrap.echarts-box {
    margin: .6em 0 0;
}

.tit-echarts {
    display: flex;
    justify-content: space-between;
    align-items: center;
}

.tit-echarts h2 {
    margin-bottom: 0;
    color: #fd7e14;
}

.echarts-box .tit-echarts h2 span {
    margin-left: .2em;
    font-size: .5em;
    font-weight: normal;
}

.tit-echarts .nav-tabs {
    border-bottom: none;
}

.tit-echarts .nav-tabs .nav-link {
    color: #868e96;
    border: none;
}

.tit-echarts .nav-tabs .nav-link.active {
    color: #fd7e14;
    border: none;
}

.echarts-wrap {
    width: 100%;
    height: 10em;
}

.unread-wrap.dangan {
    display: block;
    margin-top: 3em;
    padding: 0 .6em;
}

.unread-wrap.no-margin-top {
    margin-top: 0;
}

.bg-jifen {
    margin-top: 3em;
    padding: 0 1.2em;
    background: url(../images/bg-jifen.png) no-repeat center;
    background-size: contain;
}

.bg-jifen label {
    display: block;
    margin: 1em 0;
}

.bg-kccj {
    display: flex;
    align-items: center;
    padding: 0 1.2em;
    height: 12em;
    background: url(../images/bg-kccj.png) no-repeat center;
    background-size: cover;
}

.bg-kccj label {
    display: block;
    margin: 1em 0;
}

.bg-kccj label h6 {
    margin-bottom: .8em;
}

.bg-kccj label span {
    padding: .4em 1.2em;
    font-size: 1em;
    background-color: #fff;
    border-radius: .4em;
}

.btns-switch {
    display: flex;
    justify-content: center;
    align-items: center;
    margin-bottom: .6em;
    padding: .2em;
    width: 100%;
    background-color: rgba(239,224,200,.6);
    border: none;
    border-radius: 10em;
}

.btns-switch button {
    width: 50%;
    height: 2.4em;
    color: #868e96;
    background-color: transparent;
    border: none;
    border-radius: 10em;
}

.btns-switch button.active {
    color: #fd7e14;
    background-color: #fff;
}

.dangan.no-bgcolor {
    margin-top: 0;
}

.banner-bg-class {
    display: flex;
    align-items: center;
    height: 8.6em;
    background: url(../images/banner-bg01.jpg) no-repeat;
    background-size: cover;
}

.banner-bg-class p {
    line-height: 1.6;
    color: #a45339;
}

.banner-bg-class p > span {
    font-size: 1em;
}

.ul-flex-jcsb li {
    position: relative;
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 1em 0;
    width: 100%;
    border-bottom: 1px solid #f1f3f5;
}

.ul-flex-jcsb li:first-of-type {
    padding-top: .4em;
}

.ul-flex-jcsb li:last-of-type {
    padding-bottom: .4em;
    border-bottom: none;
}

.ul-flex-jcsb li:active {
    opacity: .8;
}

.ul-flex-jcsb li > p {
    flex-shrink: 0;
    display: flex;
    align-items: center;
    max-width: 16em;
}

.ul-flex-jcsb li p > i {
    margin-right: .2em;
    font-size: 2em;
}

.ul-flex-jcsb li p > a {
    width: 1.4em;
    margin: 0 .6em;
    text-align: center;
}

.ul-flex-jcsb li > span {
    flex-shrink: 0;
    max-width: 6em;
}

.rank-1st {
    text-decoration: none;
    color: #fff;
    background: url(../images/bg-1st.png) no-repeat;
    background-size: contain;
}

.rank-2nd {
    text-decoration: none;
    color: #fff;
    background: url(../images/bg-2nd.png) no-repeat;
    background-size: contain;
}

.rank-3rd {
    text-decoration: none;
    color: #fff;
    background: url(../images/bg-3rd.png) no-repeat;
    background-size: contain;
}

.con-wrap.rank-btns-wrap {
    display: flex;
    flex-wrap: wrap;
    padding: .6em 0;
}

.rank-btns-wrap > div {
    padding: .6em 0;
    width: 33.3%;
    text-align: center;
    border-right: 1px solid #f1f3f5;
}

.rank-btns-wrap > div:last-of-type {
    border-right: none;
}

.rank-btns-wrap button {
    padding: .6em 0;
    width: 6em;
    line-height: 1.3;
    color: #fd7e14;
    background-color: rgba(239,224,200,.6);
    border: none;
    border-radius: .2em;
}

.rank-btns-wrap > div > p, .rank-btns-wrap > div > h6 {
    margin: 1em 0 .6em 0;
    line-height: 1.2;
}

.rank-btns-wrap > div > span {
    display: block;
    font-size: .8em;
    line-height: 1.2;
}

.rank-btns-wrap > div > img {
    margin: 0 auto;
    width: 6em;
}

.rank-btns-wrap > div > a {
    display: inline-block;
    margin: .6em 0;
    padding: .1em .6em;
    font-size: .8em;
    background-color: #f1f3f5;
}

.rank-btns-wrap > div > a > span {
    font-size: 1em;
}

.img-grey {
    filter: grayscale(100%);
}

.con-wrap.no-margin {
    margin: 0;
}

.bg-xunzhang {
    padding: 3.6em 1em 1em;
}

.bg-xunzhang label {
    display: flex;
    align-items: center;
}

.bg-xunzhang select {
    margin-right: .4em;
    padding: .2em .4em;
    background-color: transparent;
    border: 1px solid #fd7e14;
    border-radius: .2em;
}

.bg-xunzhang > p {
    display: flex;
    justify-content: center;
    align-items: center;
    margin: 1.6em 0;
}

.bg-xunzhang > p > span {
    display: flex;
    justify-content: center;
    align-items: center;
    width: 2.4em;
    height: 2.4em;
    font-size: 24px;
    font-weight: bold;
    color: #ffe89d;
    background: url(../images/bg-medal.png) no-repeat;
    background-size: contain;
    text-shadow: 0 0 8px rgba(240,92,2,1);
}

.unread-wrap.xunzhang {
    padding: .6em .6em .2em .6em;
}

.flex-body.xunzhang {
    background-color: #bc9e98;
}

.xunzhang .full-wrap {
    border-bottom: none;
}

.bg-xunzhang {
    height: 16em;
    background: url(../images/bg-xunzhang.png) no-repeat bottom;
    background-size: contain;
}

.edit-wrap {
    position: relative;
    margin-bottom: .6em;
}

.edit-wrap input {
    margin-top: .2em;
    padding: .6em;
    width: 100%;
    border: 1px solid rgba(253,126,20,.4);
    border-radius: .2em;
}

.edit-wrap textarea {
    margin-top: .2em;
    padding: .6em;
    width: 100%;
    height: 6em;
    border: 1px solid rgba(253,126,20,.4);
    border-radius: .2em;
}

.edit-wrap > p span, .span-star {
    position: absolute;
    margin-left: -.4em;
    font-size: 1.4em;
}

.span-star {
    margin-top: .4em;
}

.tit-edit {
    margin: .6em 0;
    padding-bottom: .6em;
    border-bottom: 1px solid #f1f3f5;
}

.edit-wrap input::-webkit-input-placeholder, .edit-wrap textarea::-webkit-input-placeholder {   
    color: #495057;
}

.full-btn-wrap button {
    padding: .2em .6em;
    width: 100%;
    height: 3em;
    border: none;
    border-radius: 10em;
}

.body-login {
    display: flex;
    flex-direction: column;
    align-items: center;
    height: 100%;
    background: linear-gradient(180deg, #fff5f1, #fffcf3, #fff, #fff, #fff) no-repeat;
}

.login-box {
    display: flex;
    flex-direction: column;
    justify-content: center;
    padding: 1em;
    height: 100%;
}

.login-box > img {
    margin: -6em auto 4em auto;
    width: 70%;
}

.login-box > h2 {
    margin-bottom: 1em;
    text-align: center;
    font-family: "SimSun", "宋体", serif;
    font-weight: bold;
}

.login-box > h5 {
    margin-bottom: 1em;
    font-family: "SimSun", "宋体", serif;
    font-weight: bold;
}

.login-box > p {
    margin-top: 1em;
    font-size: .9em;
    color: #868e96;
}

.login-box .p-tips {
    display: none;
    color: #fd7e14;
}

.input-wrap input {
    margin-bottom: 1em;
    padding: .2em .6em .2em 1.6em;
    width: 100%;
    height: 3em;
    background-color: #f5f6f7;
    border: none;
    border-radius: 10em;
}

.btns-wrap {
    display: flex;
    justify-content: center;
    align-items: center;
    margin-top: 1em;
}

.btns-wrap button {
    margin: 0 .3em;
    min-width: 8em;
}

.btn-code {
    position: absolute;
    z-index: 2;
    right: 2em;
    margin-top: .56em;
    padding: .2em .4em;
    color: #fd7e14;
    background-color: #f5f6f7;
    border: none;
}

.reason-wrap {
    display: flex;
    flex-wrap: wrap;
    justify-content: space-between;
    align-items: center;
}

.reason-wrap button {
    margin-bottom: 1em;
    width: 48%;
    height: 3em;
    color: #495057;
    background-color: #f5f6f7;
    border: none;
    border-radius: 10em;
}

.reason-wrap .active {
    color: #fff;
    background-color: #fd7e14;
}

.ul-selclasses li {
    margin-bottom: 1.2em;
}

.ul-selclasses li:last-of-type {
    margin-bottom: 0;
}

.ul-selclasses h6 {
    margin-bottom: .2em;
}

.ul-selclasses button {
    margin-top: .4em;
    padding: .5em .8em;
    border: none;
    border-radius: .4em;
    color: #495057;
    background-color: #f5f6f7;
}

.ul-selclasses .active {
    color: #fff;
    background-color: #12b886;
}

.switch-box {
    padding: .6em .6em 0 .6em;
}

.switch-box > .btns-switch {
    margin-bottom: 0;
}

.date-wrap h6 {
    margin-bottom: .4em;
}

.date-select {
    display: flex;
    align-items: center;
    justify-content: space-between;
    margin-bottom: .6em;
}

.date-select span {
    flex-shrink: 0;
    margin: 0 .4em;
}

.date-wrap > button {
    flex-shrink: 0;
    margin-left: 1em;
    padding: .4em .8em;
    border: none;
    border-radius: .4em;
    color: #fff;
}

.date-wrap > div {
    width: 100%;
}

.date-wrap label {
    display: flex;
    align-items: center;
    width: 100%;
}

.date-wrap label:first-child {
    margin-bottom: 1em;
}

.date-wrap input{
    margin-top: .2em;
    padding: .4em .6em;
    width: 100%;
    background-color: #fff;
    border: 1px solid rgba(253,126,20,.4);
    border-radius: .2em;
}

footer {
    margin-bottom: .6em;
    width: 100%;
    text-align: center;
}