.c_dialog_content {
  box-sizing: border-box;
  padding: 0.3rem;
}
.c_form {
  width: 100%;
}
.c_form_item {
  width: 100%;
  display: flex;
  margin-bottom: 0.2rem;
  align-items: center;
}
.c_label {
  width: 0.7rem;
  margin-right: 0.2rem;
  text-align: right;
  color: #333;
  font-family: PingFang SC;
  font-size: 0.14rem;
}
.c_input_container {
  flex: 1;
  display: flex;
  align-items: center;
  box-sizing: border-box;
  padding: 0.1rem;
  border-radius: 0.05rem;
  border: 0.01rem solid #d4d6d9;
  transition: all 0.3s;
}
.c_input_container:focus-within {
  border: 0.01rem solid #3a8bff;
}
.c_input_container textarea,
.c_input_container input {
  flex: 1;
  width: 100%;
  border: none;
  outline: none;
  font-size: 0.14rem;
}
.c_input_container textarea {
  height: 0.8rem;
}
.c_type_list {
  display: flex;
  flex-wrap: wrap;
  gap: 0.2rem;
  align-items: center;
  margin-top: 0.14rem;
}
.c_type_item .c_comsume_type,
.c_type_item .c_wrapper {
  width: fit-content;
  cursor: pointer;
  box-sizing: border-box;
  padding: 0.07rem 0.14rem;
  color: #777;
  text-align: center;
  font-family: PingFang SC;
  font-size: 0.14rem;
  border-radius: 0.04rem;
  font-style: normal;
  font-weight: 500;
  line-height: normal;
  position: relative;
  border: 0.01rem solid transparent;
  transition: all 0.3s;
}
.c_type_item .c_comsume_type {
  border: 0.01rem dashed #d5e2f1;
  background-color: transparent;
  display: flex;
  align-items: center;
  color: #6b89b2;
  gap: 0.05rem;
  padding: 0.07rem 0.1rem;
}
.c_type_item.c_type_item_active{
  background-color: #E1E8FE;
  border: 1px solid #6982EE;
  border-radius: 4px;
  color: #6982EE;
}
.c_type_item .c_comsume_type .c_add_icon {
  display: block;
  width: 0.125rem;
  height: 0.125rem;
  background: url(../imgs/icon-add.svg) no-repeat center center;
  background-size: 100% 100%;
}
.c_type_item1 .c_wrapper {
  background: rgba(37, 172, 245, 0.12);
}
.c_type_item2 .c_wrapper {
  background: #e0e6fd;
}
.c_type_item1.c_type_item_active .c_wrapper {
  border: 0.01rem solid #7ed5fa;
  background: rgba(0, 145, 223, 0.12);
}
.c_type_item2.c_type_item_active .c_wrapper {
  border: 0.01rem solid #9fb3f9;
  background: #ced7f7;
}
.c_type_item .c_wrapper:hover .c_delete_btn_P {
  display: block;
}
.c_type_item1 .c_wrapper:hover {
  background: linear-gradient(180deg, #9adcff 0%, #7ec7ee 100%);
  color: #fff;
}
.c_type_item2 .c_wrapper:hover {
  background: linear-gradient(180deg, #6fabef 0%, #6481e8 100%);
  color: #fff;
}
.c_type_item2 .c_wrapper:active {
  background: rgba(91, 118, 188);
  background: -webkit-linear-gradient(
    318deg,
    rgba(91, 118, 188) 0%,
    rgba(91, 118, 188) 100%
  );
  background: -moz-linear-gradient(
    318deg,
    rgba(91, 118, 188) 0%,
    rgba(91, 118, 188) 100%
  );
  background: -o-linear-gradient(
    318deg,
    rgba(91, 118, 188) 0%,
    rgba(91, 118, 188) 100%
  );
  background: linear-gradient(
    318deg,
    rgba(91, 118, 188) 0%,
    rgba(91, 118, 188) 100%
  );
}
.c_type_item1 .c_wrapper:active {
  background: rgba(108, 178, 217);
  background: -webkit-linear-gradient(
    318deg,
    rgba(108, 178, 217) 0%,
    rgba(108, 178, 217) 100%
  );
  background: -moz-linear-gradient(
    318deg,
    rgba(108, 178, 217) 0%,
    rgba(108, 178, 217) 100%
  );
  background: -o-linear-gradient(
    318deg,
    rgba(108, 178, 217) 0%,
    rgba(108, 178, 217) 100%
  );
  background: linear-gradient(
    318deg,
    rgba(108, 178, 217) 0%,
    rgba(108, 178, 217) 100%
  );
}
.c_delete_btn_P {
  display: none;
  box-sizing: border-box;
  width: 0.14rem;
  height: 0.14rem;
  border-radius: 50%;
  background: url(../imgs/delete-icon.svg) no-repeat 100% 100%;
  background-size: 100% 100%;
  position: absolute;
  top: 0;
  right: 0;
  transform: translate(50%, -50%);
}
.c_type_edit_box {
  display: flex;
  align-items: center;
}
.c_type_edit_box .c_input_container {
  padding: 0.08rem 0.1rem;
}
.c_confirm_btn,
.c_cancel_btn {
  width: 0.24rem;
  height: 0.24rem;
  cursor: pointer;
}
.c_confirm_btn {
  margin-left: 0.2rem;
  background: url(../imgs/edit-confirm.svg) no-repeat center center;
  background-size: 100% 100%;
}
.c_cancel_btn {
  margin-left: 0.1rem;
  background: url(../imgs/edit-cancel.svg) no-repeat center center;
  background-size: 100% 100%;
}
.c_course_info_item {
  display: flex;
  align-items: center;
  gap: 0.15rem;
  padding: 0.13rem 0.3rem;
  /*border-bottom: 0.01rem solid rgba(0, 0, 0, 0.1);*/
}
.c_course_info {
  flex: 1;
}
.c_added,
.c_add_course {
  color: #3a8bff;
  font-family: PingFang SC;
  font-size: 0.12rem;
  font-style: normal;
  font-weight: 400;
  line-height: normal;
}
.c_added {
  color: #777;
}
.c_course_name {
  color: #000;
  font-family: PingFang SC;
  font-size: 0.16rem;
  font-style: normal;
  font-weight: 600;
  margin-bottom: 0.14rem;
  line-height: normal;
  white-space: nowrap;
  text-overflow: ellipsis;
  overflow: hidden;
}
.c_course_teacher {
  color: #777;
  font-family: PingFang SC;
  font-size: 0.12rem;
  font-style: normal;
  font-weight: 500;
  line-height: normal;
}
.c_course_info_item .c_course_img {
  width: 1.24rem;
  height: 0.8rem;
  border-radius: 0.1rem;
}
.c_course_img img {
  width: 100%;
  height: 100%;
  border-radius: 0.06rem;
}
.c_course_base_box {
  display: flex;
  font-size: 0.14rem;
  font-family: PingFang SC;
  justify-content: space-between;
  color: #777777;
  padding: 0 0.3rem;
  margin-top: 0.14rem;
}
.c_search_btn1 {
  display: block;
  width: 0.16rem;
  height: 0.16rem;
  cursor: pointer;
  background: url(../imgs/icon-search.svg) no-repeat center center;
  background-size: 100% 100%;
}

.maskDiv {
  position: fixed;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  display: flex !important;
  justify-content: center;
  align-items: center;
}

/* 2024-05-30新增 */
.c_hover_wrapper{position: relative;width: 1rem}
.c_hover_wrapper:hover .c_hover_list_wrapper{display: block;}
.c_hover_wrapper:hover .c_trigger_hover::after{transform: rotate(180deg);}
.c_trigger_hover{color: #3A8BFF;font-size: 0.12rem;font-family: PingFang SC;justify-content: end; cursor: pointer;display: flex;align-items: center;}
.c_trigger_hover::after{display: block;transition: all 0.3s; margin-left: 0.05rem; content: "";width: 0.1rem;height: 0.1rem;background: url(../imgs/icon-pull-arrow.svg)no-repeat center center;background-size: 100% 100%;}
.c_hover_list_wrapper{position: absolute;display: none;z-index: 66; left: 50%;bottom: 0;transform: translate(-50%,100%);width: 100%;text-align: center;padding-top: 0.05rem;}
.c_hover_list{background-color: #fff;font-size: 0.14rem; color: #474C59;padding: 0.05rem 0;border-radius: 0.06rem;box-shadow: 0px 0.02rem 0.12rem 0px #AFBBCCBF;}
.c_hover_item{padding: 0.08rem 0.05rem;width: 100%;text-overflow: ellipsis;overflow: hidden;white-space: nowrap;box-sizing: border-box;}
.c_hover_item:hover{background-color: #F0F6FF;color: #3A8BFF;cursor: pointer;}


/* 2024-11-04新增弹窗排序 */
.c_dialog_course_sort_container{}
.c_tip_p_text{display: flex;padding: 20px 30px 10px 30px;box-sizing: border-box;align-items: center;color: #ACB4BF;font-size: 14px;font-family: PingFang SC;}
.c_tip_p_text::before{content: "";margin-right: 8px;display: block;width: 16px;height: 16px;background: url(../imgs/icon-tip-gray.svg)no-repeat center center;background-size: 100% 100%;}
.c_course_sort_list{max-height: 350px;overflow-y: auto;padding:0 30px;box-sizing: border-box;}
.c_course_sort_item{display: flex;align-items: center;justify-content: space-between;padding: 16px 0 16px 30px;border-bottom: 1px solid rgba(0, 0, 0, 0.1); position: relative;}
.c_course_sort_trigger{display: none;position: absolute;left: 0%;top: 50%;transform: translate(-0%,-50%); cursor: move;width: 10px;height: 18px;background: url(../imgs/icon-sort-dragger.svg)no-repeat center center;background-size: 100% 100%;}
.c_course_sort_item:hover .c_course_sort_trigger{display: block;}
.c_course_sort_info{display: flex;align-items: center;}
.c_course_sort_img{width: 116px;height: 64px;border-radius: 6px;overflow: hidden;margin-right: 20px;}
.c_course_sort_img img{width: 100%;height: 100%;}
.c_course_sort_name{color: #131B26;font-size: 16px;font-weight: 600;margin-bottom: 5px;}
.c_course_sort_tch{color: #8A8B99;font-size: 12px;}
.c_course_sort_delete{display: block;cursor: pointer;width: 14px;height: 14px;background: url(../imgs/icon-delete-red.svg)no-repeat center center;background-size: 100% 100%;}

/* 2025-01-17新增弹窗标签 */
.c_trigger_hover_text{flex:1;width:0;overflow: hidden;text-overflow: ellipsis;white-space: nowrap;text-align: right;}

/* 2025-01-16新增 */
.c_course_qun_wrapper{}
.c_course_type_list .c_type_list{margin-top: 0;}
.c_course_type_list{display: flex; margin-top: 10px; padding: 13px;box-sizing: border-box;width: 100%;border-radius: 5px;background-color: #F8F8F8;}
.c_course_type_label{font-size: 14px;flex-shrink: 0;margin-right: 15px; line-height: 34px; font-weight: 600;color: #8A8B99;}
.c_type_item.solid{border: 1px solid #A3B9D9;border-radius: 4px;color: #777777;background-color: #F6FBFF;}
.c_type_item.dash{border: 1px dashed #A3B9D9;border-radius: 4px;color: #777777;background-color: #F6FBFF;}
.c_type_item.dash .c_comsume_type{border: none}
