.borderR {
    border: 1px solid red;
}

.borderG {
    border: 1px solid green;
}

.borderB {
    border: 1px solid blue;
}

.break-all {
    display: inline-block;
    word-break: break-all;
}

.opacity5{
    opacity: 0.5;
}

.break-word {
    overflow-wrap: break-word;
    word-wrap: break-word;
}

.width_100 {
    width: 100%;
}

.shadow-all {
    box-shadow: 0 0 5px rgba(153, 153, 153, .2);
}

.shadow-block-all {
    box-shadow: 0px 0px 3px 0px rgba(0, 0, 0, 0.06);
}

.shadow-top {
    box-shadow: 0 -3px 2px #eee;
}

.shadow-bottom {
    box-shadow: 0 5px 5px rgba(153, 153, 153, .2);
}

.shadow-right {
    box-shadow: 5px 0 5px rgba(153, 153, 153, 0.3);
}

.shadow-left {
    box-shadow: -5px 0 5px rgba(153, 153, 153, 0.3);
}

.clear {
    clear: both;
}

.pos_r {
    position: relative;
}

.pos_bottom {
    position: absolute;
    bottom: 0;
}

.pos_top {
    position: absolute;
    top: 0;
}

.mga {
    margin: 0 auto;
}

.disHide {
    display: none;
}

.disShow {
    display: block;
}

.centered {
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
}

.radius2 {
    border-radius: 2px;
}

.radius2_t_r {
    border-top-right-radius: 2px
}

.radius2_t_l {
    border-top-left-radius: 2px
}

.radius4 {
    border-radius: 4px;
}

.radius4_t_r {
    border-top-right-radius: 4px;
}

.radius4_t_l {
    border-top-left-radius: 4px;
}


.radius4_b_r {
    border-bottom-right-radius: 4px;
}

.radius4_b_l {
    border-bottom-left-radius: 4px;
}

.circleImage {
    border-radius: 50%;
}

.bgColrf {
    background: #fff;
}

.bgColry {
    background: rgba(254, 251, 220, 1);
}

.bgF5 {
    background: #f5f5f5;
}

.colorCF {
    color: #CFCFCF;
}

.colorr {
    color: rgba(230, 0, 18, 1);
}

.colorr2 {
    color: #FD7B7B;
}

.colorr3 {
    color: #FF3C3C;
}

.colorg {
    color: #41CC64;
}

.colorBlue {
    color: rgba(0, 123, 255, 1);
}

.colorBlue2 {
    color: #36ACFF;
}

.colorBlue3 {
    color: #0056B4;
}

.colorw {
    color: white;
}

.color3 {
    color: #333;
}

.color26 {
    color: rgba(26, 26, 26, 1);
}

.colory {
    color: #FFA430;
    color: rgba(255, 164, 48, 1);
}

.color6 {
    color: #666;
}

.color7 {
    color: rgba(77, 77, 77, 1);
}

.color9 {
    color: #999;
}

.bgWhite {
    background: white;
}

.curp {
    cursor: pointer;
}

.curm {
    cursor: move;
}

.curu {
    cursor: unset;
}

.box-size-b {
    box-sizing: border-box;
}



.flex {
    display: -ms-flexbox;
    display: -webkit-flex; /* Safari */
    display: flex;
}

.flex-shrink-0 {
    flex-shrink: 0;
}

.flex-1 {
    flex: 1;
}

.flex-grow-1 {
    flex-grow: 1;
}

.item-c {
    -ms-flex-align: center;
    align-items: center;
}

.item-e {
    align-items: flex-end;
}

.item-s {
    align-items:  stretch;
}

.justify-between {
    justify-content: space-between;
}

.justify-end {
    justify-content: flex-end;
}

.justify-center {
    justify-content: center;
}

.justify-around {
    justify-content: space-around;
}

.delete-line-m {
    text-decoration: line-through;
}

.width100 {
    width: 100px;
}

.width200 {
    width: 200px;
}

.width300 {
    width: 300px;
}

.width400 {
    width: 400px;
}

.flex-wrap-1 {
    flex-wrap: wrap;
}

.flex-shrink-0 {
    flex-shrink: 0;
}

.flex-grow-0 {
    flex-grow: 0;
}

.flex-grow-1 {
    flex-grow: 1;
}

.flex-width-100 {
    width: 100%;
}

.flex-width-90 {
    width: 90%;
}

.flex-max-width-80 {
    max-width: 80%;
}

.flex-width-80 {
    width: 80%;
}

.flex-width-75 {
    width: 75%;
}

.flex-width-70 {
    width: 70%;
}

.flex-max-width-60 {
    max-width: 60%;
}

.flex-width-60 {
    width: 60%;
}

.flex-max-width-50 {
    max-width: 50%;
}

.flex-width-50 {
    width: 50%;
}

.flex-max-width-40 {
    max-width: 40%;
}

.flex-width-40 {
    width: 40%;
}

.flex-max-width-30 {
    max-width: 30%;
}

.flex-width-30 {
    width: 30%;
}

.flex-width-34 {
    width: 34%;
}

.flex-width-33 {
    width: 33%;
}

.flex-width-25 {
    width: 25%;
}

.flex-width-20 {
    width: 20%;
}

.flex-width-10 {
    width: 10%;
}

.flex-width-5 {
    width: 5%;
}

.f-left {
    float: left;
}

.f-right {
    float: right;
}

.f-clear {
    clear: both;
}

.text-l {
    text-align: left;
}

.text-c {
    text-align: center;
}

.text-r {
    text-align: right;
}

.vertical-m,
.table .vertical-m {
    vertical-align: middle;
}

.box-size-b {
    box-sizing: border-box;
}

.singleOver {
    overflow: hidden;
    text-overflow: ellipsis;
    white-space: nowrap
}

.line1Over {
    overflow: hidden;
    text-overflow: ellipsis;
    display: -webkit-box;
    -webkit-line-clamp: 1;
    -webkit-box-orient: vertical;
}

.line2Over {
    overflow: hidden;
    text-overflow: ellipsis;
    display: -webkit-box;
    -webkit-line-clamp: 2;
    -webkit-box-orient: vertical;
}

.line3Over {
    overflow: hidden;
    text-overflow: ellipsis;
    display: -webkit-box;
    -webkit-line-clamp: 3;
    -webkit-box-orient: vertical;
}


.fontw600 {
    font-weight: 600;
}

.fontB {
    font-weight: 500;
}

.fontb2 {
    font-weight: bold;
}

.fsize28 {
    font-size: 28px;
}

.fsize25 {
    font-size: 25px;
}

.fsize22 {
    font-size: 22px;
}

.fsize24 {
    font-size: 24px;
}

.fsize20 {
    font-size: 20px;
}

.fsize19 {
    font-size: 19px;
}

.fsize18 {
    font-size: 18px;
}

.fsize16 {
    font-size: 16px;
}

.fsize15 {
    font-size: 15px;
}

.fsize14 {
    font-size: 14px;
}

.fsize13 {
    font-size: 13px;
}

.fsize12 {
    font-size: 12px;
}

.fsize11 {
    font-size: 11px;
}

.fsize10 {
    font-size: 10px;
}

.height36 {
    height: 36px;
}

.height28 {
    height: 28px;
}

.height25 {
    height: 25px;
}

.height20 {
    height: 20px;
}

.height19 {
    height: 19px;
}

.height18 {
    height: 18px;
}

.height16 {
    height: 16px;
}

.height15 {
    height: 15px;
}

.height14 {
    height: 14px;
}

.height13 {
    height: 13px;
}

.height12 {
    height: 12px;
}

.height11 {
    height: 11px;
}

.height10 {
    height: 10px;
}

.lineh0 {
    line-height: 0;
}

.lineh30 {
    line-height: 30px;
}

.lineh28 {
    line-height: 28px;
}

.lineh22 {
    line-height: 22px;
}

.lineh25 {
    line-height: 25px;
}

.lineh24 {
    line-height: 24px;
}

.lineh20 {
    line-height: 20px;
}

.lineh19 {
    line-height: 19px;
}

.lineh18 {
    line-height: 18px;
}

.lineh16 {
    line-height: 16px;
}

.lineh15 {
    line-height: 15px;
}

.lineh14 {
    line-height: 14px;
}

.lineh13 {
    line-height: 13px;
}

.lineh12 {
    line-height: 12px;
}

.lineh11 {
    line-height: 11px;
}

.lineh10 {
    line-height: 10px;
}

.mg_30 {
    margin: 30px;
}

.mg_30_t {
    margin-top: 30px;
}

.mg_30_b {
    margin-bottom: 30px;
}

.mg_30_l {
    margin-left: 30px;
}

.mg_24 {
    margin: 24px;
}

.mg_24_t {
    margin-top: 24px;
}

.mg_24_b {
    margin-bottom: 24px;
}

.mg_24_l {
    margin-left: 24px;
}

.mg_24_r {
    margin-right: 24px;
}

.mg_20 {
    margin: 20px;
}

.mg_20_t {
    margin-top: 20px;
}

.mg_20_b {
    margin-bottom: 20px;
}

.mg_20_l {
    margin-left: 20px;
}

.mg_20_r {
    margin-right: 20px;
}

.pad_34_l {
    padding-left: 34px;
}

.mg_34_l {
    margin-left: 34px;
}

.pad_0_l {
    padding-left: 0;
}

.pad_0_r {
    padding-right: 0;
}

.pad_30_t {
    padding-top: 30px;
}

.pad_30_b {
    padding-bottom: 30px;
}

.pad_25 {
    padding: 25px;
}

.pad_25_t {
    padding-top: 25px;
}

.pad_33_r {
    padding-right: 33px;
}

.pad_25_b {
    padding-bottom: 25px;
}

.pad_25_l {
    padding-left: 25px;
}

.pad_25_r {
    padding-right: 25px;
}

.pad_20 {
    padding: 20px;
}

.pad_20_t {
    padding-top: 20px;
}

.pad_20_b {
    padding-bottom: 20px;
}

.pad_20_l {
    padding-left: 20px;
}

.pad_20_r {
    padding-right: 20px;
}

.mg_5 {
    margin: 5px;
}

.mg_5_l {
    margin-left: 5px;
}

.mg_5_r {
    margin-right: 5px;
}

.mg_15 {
    margin: 15px;
}

.mg_15_t {
    margin-top: 15px;
}

.mg_15_b {
    margin-bottom: 15px;
}

.mg_15_l {
    margin-left: 15px;
}

.mg_15_r {
    margin-right: 15px;
}

.mg_10_b {
    margin-bottom: 10px;
}

.mg_10_t {
    margin-top: 10px;
}

.mg_10_l {
    margin-left: 10px;
}

.mg_10_r {
    margin-right: 10px;
}

.pad_1 {
    padding: 1px;
}

.pad_10 {
    padding: 10px;
}

.pad_10_t {
    padding-top: 10px;
}

.pad_10_b {
    padding-bottom: 10px;
}

.pad_10_l {
    padding-left: 10px;
}

.pad_10_r {
    padding-right: 10px;
}

.pad_15 {
    padding: 15px;
}

.pad_15_l {
    padding-left: 15px;
}

.pad_15_r {
    padding-right: 15px;
}

.pad_15_t {
    padding-top: 15px;
}

.pad_15_b {
    padding-bottom: 15px;
}

.pad_12 {
    padding: 12px;
}

.pad_12_l {
    padding-left: 12px;
}

.pad_12_r {
    padding-right: 12px;
}

.pad_12_t {
    padding-top: 12px;
}

.pad_12_b {
    padding-bottom: 12px;
}

.pad_5 {
    padding: 5px;
}

.pad_5_t {
    padding-top: 5px;
}

.pad_5_b {
    padding-bottom: 5px;
}

.pad_5_l {
    padding-left: 5px;
}

.pad_5_r {
    padding-right: 5px;
}

.my-btn {
    padding-left: 20px;
    padding-right: 20px;
}

.btn-radius {
    border-radius: .25rem;
}

.my-btn:hover {
    text-decoration: none;
    cursor: pointer;
    color: white;
}

.separte_line_b {
    border-bottom: 1px solid #eee;
}

.separte_line_t {
    border-top: 1px solid #eee;
}

.separte_line_l {
    border-left: 1px solid #eee;
}

.separte_line_r {
    border-right: 1px solid #eee;
}

.seprate_line_blue {
    width: 100%;
    border-bottom: 2px solid rgba(43, 110, 181, 1);
}

.main-text-color {
    color: rgba(51, 51, 51, 1);
}

.second-text-color {
    color: rgba(153, 153, 153, 1);
}

.third-text-color {
    color: rgba(102, 102, 102, 1);
}

.core-content {
    padding-top: 140px;
}

.radius2 {
    border-radius: 2px;
}

.radius6 {
    border-radius: 6px;
}

.radius6-t-l {
    border-top-left-radius: 6px;
}

.radius6-t-r {
    border-top-right-radius: 6px;
}

.radius8 {
    border-radius: 8px;
}

.fixed-bottom {
    position: fixed;
    bottom: 0;
}

.warehouse .btn-on {
    color: #007AFF;
    font-size: 15px;
    font-weight: 600;
}

.warehouse .btn-on .active-sourse-bottom {
    width: 100%;
    position: absolute;
    left: 0;
    bottom: -15px;
    height: 2px;
    background: #007AFF;
}

.warehouse .btn-off {
    color: #666;
    font-size: 15px;
    font-weight: 400;
}

.tags_area {
    margin-top: 10px;
    padding: 15px 20px;
    background: rgba(229, 229, 229, 1);
    border-radius: 10px;
}

.core-content #btnGroupDrop1 {
    background: none;
    font-size: 16px;
}

.core-content #btnGroupDrop2 {
    padding: 4px 8px;
    background: #fff;
    font-size: 12px;
    border: none;
}

.noChildTags {
    padding: 4px 8px;
    background: #fff;
    font-size: 12px;
    border-radius: 5px;
}

.swiperImage {
    width: 100%;
    height: 0;
    padding-bottom: 40%;
    overflow: hidden;
    background-position: center center;
    background-repeat: no-repeat;
    -webkit-background-size: cover;
    -moz-background-size: cover;
    background-size: cover;
}

.right-arrow {
    width: 6px;
    height: 6px;
    border-top: 1px solid #999999;
    border-right: 1px solid #999999;
    transform: rotate(45deg);
}

.right-arrow2 {
    width: 8px;
    height: 8px;
    border-top: 2px solid #007bff;
    border-right: 2px solid #007bff;
    transform: rotate(45deg);
}

.right-arrow3 {
    width: 8px;
    height: 8px;
    border-top: 1px solid #999999;
    border-right: 1px solid #999999;
    transform: rotate(45deg);
}

.corses_row .course-item {
    width: 240px;
    margin-bottom: 22px;
    border-radius: 4px;
}

.course_area {
    border-radius:4px;
}

.course_area_mouse_on {
    box-shadow: 0px 1px 6px 5px #E9EDF1;
}

.course_area .courseImg {
    width: 100%;
    height: 0;
    padding-bottom: 50%;
    overflow: hidden;
    background-position: center center;
    background-repeat: no-repeat;
    -webkit-background-size: cover;
    -moz-background-size: cover;
    background-size: cover;
}

.course_content_area {
    padding: 10px;
}

.course_type {
    width: 62px;
    height: 20px;
    background: #EEEEEE;
    border-radius: 10px;
    background: #eee;
    text-align: center;

}

.course_type_text {
    text-align: center;
    width: 62px;
    height: 20px;
    line-height: 20px;
    font-size: 12px;
    font-family: PingFangSC-Regular, PingFang SC;
    font-weight: 400;
    color: #7A7A7A;
    text-shadow: 0px 2px 8px rgba(0, 0, 0, 0.1);

}

.course_from_score {
    padding-top: 9px;
    padding-bottom: 7px;
}

.no_more_data {
    margin: 30px auto;
    margin-bottom: 0;
    font-size: 14px;
    color: rgba(102, 102, 102, 1);
}

.no_data {
    margin: 20px auto;
}

#footer-area .no_data {
    margin-top: 20px;
}

.no_data .img_area,
.no_data .img_area img {
    width: 217px;
    height: 175px;
}

.no_data .text-area {
    padding-top: 8px;
    font-size: 22px;
    color: rgba(102, 102, 102, 1);
    padding-bottom: 20px;
}

.breif_area {
    margin-bottom: 15px;
    border-radius: 8px;
    padding: 30px 15px;
}

.breif_area .course_image img {
    width: 100%;
}

.brief_content {
    padding-left: 30px;
}

.score_learners_list > div {
    margin-top: 15px;
    line-height: 14px;
    border-right: 1px solid rgba(220, 220, 220, 1);
}

.score_learners_list > div:last-child {
    border: none;
}

.course_from {
    padding-left: 16px;
    padding-right: 16px;
    border-radius: 10px;
    height: 20px;
    text-align: center;
    line-height: 20px;
    background: rgba(252, 186, 5, 1);
}

.course_progress {
    width: 200px;
    height: 14px;
}

.buy_now {
    width: 80px;
    height: 36px;
    color: #FD6C3A;
    line-height: 36px;
    background: #FFE4D0;
    border-radius: 4px;
    border: 1px solid #F2CFBA;
}

.course_btn1 {
    font-size: 16px;
    font-weight: 400;
    line-height: 36px;
}

.buy_now_text {
    color: #FD6C3A;;
}

.add_cart {
    width: 126px;
    height: 36px;
    background: #FF4401;
    border-radius: 4px;
}

.blue_btn,
.apply-btn {
    width: 130px;
    height: 38px;
    line-height: 38px;
    background: rgba(2, 97, 186, 1);
}

.course_warning {
    padding: 12px 10px 12px 30px;
}

.waring_text_box {
    padding-left: 10px;
    padding-right: 20px;
}

.course_warning .wrong_icon img {
    width: 24px;
    height: 24px;
}

#relate-courses {
    padding-right: 0px;
}

#course_details_area {
    padding: 0;
    border-radius: 8px;
}

.course_tab {
    height: 65px;
    width: 100%;
    border-bottom: 1px solid rgba(238, 238, 238, 1);;
}

.course_tab > div {
    padding-left: 30px;
    padding-right: 30px;
    line-height: 65px;
}

.course_tab_on {
    border-bottom: 2px solid rgba(2, 97, 186, 1);;
}

#relate-courses .course_tab .course_tab_on {
    margin: 0 auto;
    width: 150px;
}

.course_intro {
    padding: 30px 50px 40px 30px;
}

.course_intro_title {
    border-left: 4px solid rgba(2, 97, 186, 1);;
    padding-left: 10px;
    color: rgba(2, 97, 186, 1);
}

.course_intro_text {
    margin-bottom: 26px;
    margin-top: 18px;
    margin-left: 35px;
}

a.introjs-button {
    margin-left: 5px;
}

.tabArea > div.course_eva_box {
    border-bottom: 1px solid #EEEEEE;
}

.tabArea > div.course_eva_box:last-child {
    border: none;
}

.course_eva_box {
    margin: 0 15px;
    padding: 20px 0;
}

.course_eva_box .photoImg {
    width: 60px;
    height: 60px;
}

#relate_course_ul > div {
    margin: 0 20px;
    padding: 20px 0;
    border-bottom: 1px solid #EEEEEE;
}

#relate_course_ul > div:last-child {
    border: none;
}

.relate_course_ul img {
    width: 100%;
}

.coursePackage_ul .course_area {
    border: 1px solid #DCDCDC;
    margin-bottom: 20px;
}

.cart_order_box {
    position: fixed;
    top: 50%;
    right: 0;
    z-index: 100;
}



.cart_order_box > div {
    margin-bottom: 5px;
}


.cartNum {
    position: absolute;
    top: -5px;
    right: 15px;
    width: 15px;
    height: 15px;
    line-height: 15px;
    border-radius: 50%;
    text-align: center;
    background: rgba(230, 0, 18, 1);
}

.mobileBox {
    margin: 0 auto;
    width: 100%;
    max-width: 576px;
}

.gtjaContent {
    /* position: absolute;
     top: 180px;
     left: 0;
     width: 100%*/
}

.border_r_10 {
    border-radius: 5px;
}

.gtja_box {
    padding: 14px 24px 14px 14px;
}

.gtjaContent .imageBox img {
    width: 41px;
    height: 36px;
}

.gtjaContent .titleBox {
    font-size: 15px;
    color: rgba(102, 102, 102, 1);

}

.gtja_ul > div {
    padding: 12px 30px 12px 25px;
    border-top: 1px solid #eee;
}

.circle-base {
    width: 10px;
    height: 10px;
    border-radius: 50%;
}

.circle-on {
    background: linear-gradient(176deg, rgba(118, 208, 250, 1) 0%, rgba(82, 171, 255, 1) 100%);
}

.circle-off {
    background: linear-gradient(105deg, rgba(160, 157, 156, 1), rgba(221, 216, 216, 1));
}

.gtja-li-no-child {
    position: relative;
    width: 100%;
    padding: 14px 24px 14px 14px;
    -webkit-box-sizing: border-box;
    -moz-box-sizing: border-box;
    box-sizing: border-box;
}

.circleBox-2 {
    flex-basis: 15px;
    min-width: 15px;
}

.circle-base-2 {
    width: 15px;
    height: 15px;
    -moz-box-sizing: border-box;
    box-sizing: border-box;
    border-radius: 50%;
}

.circle-on-2 {
    border: 2px solid #68C2FC;
}

.circle-off-2 {
    border: 2px solid #D2D2D2;
}

.gtjaContent .name_box {
    margin: 14px 24px;
}

.gtjaContent .name_box div:first-child {
    width: 3px;
    height: 15px;
    background: linear-gradient(176deg, rgba(89, 163, 248, 1) 0%, rgba(23, 119, 254, 1) 100%);
}

.gtjaContent .departBox {
    margin: 20px 15px;
}

.gtjaContent .departBox .departBoxContent {
    border-radius: 5px;
}

.gtjaContent .thirdMenu {
    padding: 12px 20px 12px 20px;
    border-bottom: 1px solid #eee;
}

.gtjaContent .departBoxContent div.thirdMenu:last-child {
    border: none;
}

.taskCard {
    padding: 32px 20px 28px 18px;
}

.signUpListCard .task_img,
.taskCard .task_img {
    width: 100%;
    height: 0;
    padding-bottom: 50%;
    overflow: hidden;
}



.signUpListCard .task_img img,
.taskCard .task_img img {
    width: 100%;
}

.tags_box {
    padding: 23px 28px 20px 14px;
}

.task-type-item {
    width: 100px;
    height: 36px;
    line-height: 36px;
}

.task-type-item-active {
    background: rgba(0, 123, 255, 1);
    border: none;
    color: white;
}

.task-type-item-unactive {
    border: 1px solid rgba(205, 205, 205, 1);
    color: #333;
}

.task_search {
    width: 260px;
    height: 36px;
}

.task_search input {
    width: 100%;
    height: 36px;
    border: none;
}

.material-icons .md-20 {
    font-size: 20px;
}

.task_search .serachIcon {
    position: absolute;
    top: 8px;
    left: 15px;
}

.task_search input {
    padding-left: 45px;
    padding-right: 8px;
}

#btnGroupDrop1 {
    background: none;
}

#btnGroupDrop2 {
    background: #fff;
}

#catalogZtree,
#storePageZtree {
    margin-top: 10px;
    height:calc(100vh - 90px - 34px - 160px);
    overflow-y: scroll;
    overflow-x: hidden;
}

#courses-swiper {
    margin-bottom: 25px;
}


.store-left-aside {
    position: fixed;
    width: 322px;
    z-index: 10;
    height: 350px;
}


.store-content {
    margin-left: 340px;
    overscroll-behavior: contain;
    -ms-scroll-chaining: contain;
}


#noRight,
#notEnable{
    margin:0  auto 30px;
    height:calc(100vh - 90px - 34px - 60px);
    background: white;
    border-radius: 6px;
}



#reloadData {
    position: relative;
    width: 100%;
    min-height: 100vh;
}

#store-load-box {
    position: absolute;
    top: 50%;
    left: 50%;
    width: 150px;
    height: 120px;
    margin-left: -75px;
    margin-top: -110px;
    color: rgb(153, 153, 153);
}

#showLoadData {
    /*padding-top: 20px;*/
    /*padding-top: 10px;*/
    /*border:1px solid red;*/
}

#showLoadData div.row {
    margin-left: -10px;
    margin-right: -10px;
}

#taksList div.row,
#mileStone div.row,
#fileTable div.row {
    margin-left: 0px;
    margin-right: 0px;
}

.active-btn {
    cursor: pointer;
    height: 28px;
    line-height: 28px;
    background: rgba(0, 123, 255, 1);
    border-radius: 5px;
    color: white;
}

.unActive-btn {
    height: 28px;
    line-height: 28px;
    background: rgba(117, 181, 255, 1);
    border-radius: 5px;
    color: white;
}

.unActive-btn-2 {
    width: 58px;
    height: 38px;
    line-height: 38px;
    background: rgba(117, 181, 255, 1);
    border-radius: 5px;
    color: white;
}

.cycleeva-table .active-btn {
    width: 90px
}

.eva-details .active-btn,
.eva-details .unActive-btn {
    width: 120px;
}

.evaTableCellText {
    width: 110px;
}

.planTableCellText {
    width: 140px;
}

#reloadTreeData,
.reloadTreeData {
    position: absolute;
    left: 50%;
    top: 50%;
    margin-left: -55px;
    margin-top: -57px;
}

#selectedFile button[id^='UPBTN_'] {
}

.serach_input {
    border: none;
    padding-left: 5px;
    padding-right: 5px;
}

/*首页样式*/

.tile-card {
    height: 653px;
}

.user-sudoku {
    table-layout: fixed;
}

.user-sudoku td {
    height: 95px;
    cursor: pointer;
}

.user-sudoku td img {
    line-height: 0;
    margin-top: 2px;
    margin-bottom: 12px;
    height: 35px;

}

.index-no-data-image {
    width: 230px;
    margin-top: 43px;
    margin-bottom: 34px;
}

.index-no-data-image2 {
    width: 140px;
    height: 113px;
    margin-top: 135px;
    margin-bottom: 34px;
}

.index-no-data-image3 {
    width: 230px;
    margin-top: 143px;
    margin-bottom: 34px;
}

.fixed-card-bottom {
    position: absolute;
    bottom: 14px;
    left: 0;
}

.oneline-tile {
    height: 40px;
    line-height: 40px;
}

.border_top_1 {
    border-top: 1px solid #eee;
}

.border-bottom_1 {
    border-bottom: 1px solid #eee;
}

.border-left_1 {
    border-left: 1px solid #e5e5e5;
}

#mytaskTabContent .tab-pane {
    height: 450px;
}

#mytaskTabContent .img-fluid {
    max-height: 70px;
}

.title-border-l {
    border-left: 4px solid rgba(54, 172, 255, 1);
}

.max_h_90 {
    max-height: 90px;
}

#tilesArea .list-group-flush .list-group-item {
    border-color: #eee;
}

#tilesArea .list-group-flush .list-group-item:last-child {
    /*border-bottom: none;*/
}

#tilesArea .card {
    margin: 30px auto;
}

#live-btn-group button {
    min-width: 74px;
}

#live-btn-group button.active {
    background-color: rgb(0, 123, 255);
    border-color: rgb(0, 123, 255);
}

/*intro.css*/
.introjs-helperLayer {
    background: transparent;
}

.introjs-overlay {
    opacity: 0 !important;
}

.introjs-helperLayer:before {
    opacity: 0;
    content: '';
    position: fixed;
    width: inherit;
    height: inherit;
    border-radius: 0.5em;
    box-shadow: 0 0 0 1000em rgba(0, 0, 0, .7);
    opacity: 1;
}

.introjs-helperLayer:after {
    content: '';
    left: 0;
    right: 0;
    top: 0;
    bottom: 0;
    position: fixed;
    z-index: 1000;
}

.introjs-tooltip {
    width: 300px;
}

.index-li-circle {
    margin-right: 5px;
    width: 4px;
    height: 4px;
    background: rgba(205, 205, 205, 1);
    border-radius: 50%;

}

.updateAnnText {
    padding: 5px;
    color: #ff9933;
    font-size: 12px;
}

/*新版论坛*/
.thread_name_1 {
    text-indent: 3rem;
}

.thread_name_2 {
    text-indent: 6rem;
}

.thread-type-val {
    position: absolute;
    top: 2px;
    left: 0;
}

.ico_toped {
    text-align: center;
    color: white;
    margin-right: 10px;
    width: 20px;
    height: 20px;
    border-radius: 4px;
    font-size: 12px;
    line-height: 20px;
    background: rgba(255, 114, 114, 1);
}

.thread-type-btn-basic {
    width: 40px;
    height: 20px;
    border-radius: 4px;
    font-size: 12px;
    line-height: 20px;
}

.thread-type-btn-pink {
    border: 1px solid rgba(255, 196, 196, 1);
    color: #FF7373;
    font-weight: 600;
}

.thread-type-btn-blue {
    border: 1px solid rgba(190, 224, 248, 1);
    color: #36ACFF;
    font-weight: 600;
}

.thread-type-btn-green {
    border: 1px solid rgba(187, 232, 190, 1);
    color: #62C569;
    font-weight: 600;
}

.slectImageIcon {
    position: absolute;
    right: 22px;
    bottom: 0px;
}

.topedIconBox {
    position: absolute;
    top: 14px;
    left: 24px;
    width: 36px;
    height: 18px;
    background: rgba(255, 82, 82, 1);
    border-radius: 4px;
    text-align: center;
}

.topedText {
    font-size: 12px;
    font-family: Microsoft YaHei;
    font-weight: 400;
    color: rgba(255, 255, 255, 1);
}

.course_page_header_box {
    padding: 30px 20px;
    border-radius: 8px;
}

.course_page_header_box .course_image img {
    width: 440px;
    height: 220px;
}

.course_page_header_box2 {
    padding: 20px;
    border-radius: 8px;
}

.course_page_header_box2 .course_image img {
    width: 340px;
    height: 170px;
}

.page-right-card {
    padding-top: 15px ;
    padding-bottom: 10px;
    width: 57px;
    background: #FFFFFF;
    box-shadow: 0px 1px 4px 0px rgb(0,0,0,15%);
    border-radius: 6px 0px 0px 6px;
}



