/* 图标主色
#007bff




*/


/* 我的课堂主体部分开始 */
/* 在线课堂容器 */
.onlineClassroom-container {
    background-color: white;
    padding: 20px;
    border-radius: 10px;
    box-shadow: 0px 2px 5px rgba(0, 0, 0, 0.3);
}

/* 我的班级容器 */

.myClass-container {
    background-color: white;
    padding: 20px;
    margin-top: 30px;
    border-radius: 10px;
    box-shadow: 0px 2px 5px rgba(0, 0, 0, 0.3);
}

.myClassroom-page {
    border-radius: 20px;
    width: 100%;
    height: 85vh;
    overflow-y: auto;
    margin-top: 80px;
    padding: 5px;
}
::-webkit-scrollbar {
  width: 10px;               /* 垂直滚动条宽度 */
  height: 10px;              /* 水平滚动条高度 */
}

/* 滚动条轨道 */
::-webkit-scrollbar-track {
  background: transparent;        /* 轨道颜色 */
  border-radius: 10px;
}
::-webkit-scrollbar-thumb {
  background: #98caff;
  border-radius: 5px;

  /* border: 2px solid #f1f1f1;  */
  /* 创建内边距效果 */
}

/* 选择课堂&加入课堂 */
.mainClassroom {
    display: flex;
    flex-direction: column;
    gap: 20px;
}

/* 已经加入的课堂： */
.selectedClassroom {
    font-size: 20px;
    color: #333333;
}

/* 已经加入课堂和加入新课堂按钮容器 */
.classroomContainer {
    display: flex;
    gap: 20px;
    align-items: center;
    margin-top: 20px;
}

/* 当前课堂信息 */
.currentClassroominfo {
    border: 1px solid #bbbbbb;
    padding: 20px;
    border-radius: 10px;
    margin-top: 20px;
    font-size: 20px;
    color: #333333;
}

/* 课堂简介内容 */
.classroomDesc span {
    font-family: "Times New Roman", '宋体';
    text-indent: 2em;
    line-height: 2;
    font-size: 20px;
    color: #000000;
    margin-top: 10px;
    display: block;
}


/* 选课下拉列表 */
.classroom-select {
    width: 200px;
    height: 40px;
    padding: 5px;
    border: 1px solid #bbbbbb;
    border-radius: 5px;
    font-size: 16px;
    text-align: center;
}


/* 加入新课堂按钮 */
.join-classroom {
    font-size: 20px;
    width: 150px;
    height: 40px;
    background-color: #4F46E5;
    color: white;
    text-align: center;
    vertical-align: middle;
    line-height: 40px;
    border-radius: 8px;
    cursor: pointer;
    transition: background-color 0.2s ease;
}

.classroom-input {
    width: 80%;
    height: 40px;
    padding: 5px;
    border: 1px solid #bbbbbb;
    border-radius: 5px;
    font-size: 16px;
    /* text-align: center; */
    margin-top: 10px;
}




/* 加入新课堂弹窗 */

.join-classroom-popup {
    display: none;
    /* 初始状态为隐藏，暂时注释 */
    position: fixed;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    background-color: white;
    padding: 20px;
    border-radius: 10px;
    box-shadow: 0px 2px 5px rgba(0, 0, 0, 0.3);
    z-index: 2000;
    width: 400px;
    font-size: 20px;
    text-align: center;
    height: 200px;
}

/* 弹窗标题 */
.selectTitle {
    font-size: 20px;
    color: #333333;
    margin-bottom: 20px;

}

.confirmCancel {
    display: flex;
    gap: 20px;
    justify-content: center;
    margin-top: 30px;
}
/* 确认加入按钮 */
.confirmBtn {
      background: #4F46E5;
    color: #fff;
    border: none;
    padding: 6px 14px;
    border-radius: 6px;
    cursor: pointer;
    font-size: 16px;
    transition: background-color 0.2s ease;
}
/* 取消加入按钮 */
.cancelBtn {
    background: #64748B;
    color: #fff;
    border: none;
    padding: 6px 14px;
    border-radius: 6px;
    cursor: pointer;
    font-size: 16px;
    transition: background-color 0.2s ease;
}



/* 关联教材标题 */
.sub-title {
    /* margin-left: 20px; */
    font-size: 20px;
    /* font-weight: bold; */
    color: #616161;

    margin-top: 20px;
}

.book-cover {
    padding: 10px;
    width: 95%;

    border-radius: 5px;
    position: relative;

}

.book-cover img {
    width: 100%;
    height: 100%;
    border-radius: 10px;
    object-fit: scale-down;
}


/* 遮罩层开始 */

.classMask {
    display: none;
    /*   JS 控制显示/隐藏 */
    position: fixed;
    inset: 0;
    z-index: 1001;
    background: rgb(236, 253, 255, 0.5);
    /* 背景透明，遮罩由 overlay 提供 */
    justify-content: center;
    align-items: center;
    /* background: rgb(255, 255, 255); */
    /* 半透明，增强对比度 */
    backdrop-filter: blur(2px);
    opacity: 0;
    transition: opacity 0.3s ease;
}


/* 遮罩层结束 */




/* 考试弹窗开始 */
.exam-popup {
    display: none;
    /* 初始状态为隐藏，暂时注释 */
    position: fixed;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    background-color: white;
    padding: 10px;
    padding-right: 0;
    border-radius: 10px;
    box-shadow: 0px 2px 5px rgba(0, 0, 0, 0.3);
    z-index: 9999;
    width: 800px;
    height: 600px;
    font-size: 20px;
    text-align: center;
    overflow: auto;
}

.examCloseBtn {
    /* 关闭按钮 */
    position: absolute;
    top: 8px;
    right: 12px;
    background: none;
    border: none;
    font-size: 35px;
    color: #8b99ad;
    cursor: pointer;
    z-index: 1111;
    line-height: 1;
    padding: 0 6px;
    transition: color 0.2s;
}

.examCloseBtn:hover {
    /* 关闭按钮悬停 */
    color: #4F46E5;
}

/* 第一页-考试提示信息 */
.infoPage {
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    /* margin-top: 20px; */
    font-size: 20px;
    height: 100%;
    width: 100%;
    color: #000000;
    background-color: #ffffff;
    line-height: 2;
    text-align: center;
    display: flex;
   
    z-index: 10000;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    /* padding-bottom: 100px; */


}

/* 考试选择下拉框 */
.select-wrapper {
    margin-left:20px;
  display: inline-block;
  position: relative;
  vertical-align: middle;
  max-width: 100%;
  font-family: inherit;
}

/* 隐藏原生样式，保留可访问性 */
.select-wrapper .exam-select {
  -webkit-appearance: none;
  -moz-appearance: none;
  appearance: none;
  width: 240px;              /* 根据需要调整宽度 */
  height: 40px;              /* 高度 */
  padding: 0 44px 0 12px;    /* 右侧留出箭头空间 */
  border: 1px solid #d0d7de;
  border-radius: 6px;
  background-color: #fff;
  background-image: none;
  color: #222;
  font-size: 16px;
  line-height: 40px;
  box-sizing: border-box;
  outline: none;
  transition: border-color .15s, box-shadow .15s;
  cursor: pointer;
}

/* 右侧箭头（伪元素）*/
.select-wrapper::after {
  content: "";
  position: absolute;
  top: 50%;
  right: 12px;
  width: 0;
  height: 0;
  pointer-events: none;
  transform: translateY(-50%);
  border-left: 6px solid transparent;
  border-right: 6px solid transparent;
  border-top: 6px solid #666; /* 箭头颜色 */
}

/* 开始考试按钮 */
.startExam-btn {
    font-size: 20px;
    width: 150px;
    height: 40px;
    margin-top: 50px;
    background-color: #4F46E5;
    color: white;
    text-align: center;
    vertical-align: middle;
    line-height: 40px;
    border-radius: 8px;
    cursor: pointer;
    transition: background-color 0.2s ease;
}



/* 第二页-考试内容容器 */
.examcontent {
    /* display: none; */
    display: flex;
    flex-direction: column;
    /* align-items: center; */
    /* justify-content: center; */
    margin-top: 20px;
   
    font-size: 20px;
       height: 90%;
    color: #000000;
    background-color: #ffffff;
    line-height: 2;
    padding-right: 10px;
    text-align: justify;
    margin-left: 20px;
    overflow: auto;
}

/* 考试名称 */
.examName {
    font-size: 24px;
    color: #000000;
    margin-bottom: 20px;
    text-align: center;
    position: sticky;
    top: 0;
    background-color: #ffffff;
    z-index: 999;
    /* font-weight: bold; */
}

/* 考试倒计时 */
.finalCountdown {
    font-size: 18px;
    color: #555555;
    margin-bottom: 10px;
    text-align: center;
}

/* 各题型板块容器 */
.single,
.multiple,
.trueFalse,
.blank,
.short {
    margin-top: 20px;
    background-color: #f0f7ff;
 
    padding: 0px;
    font-family: "Helvetica Neue", Helvetica, Arial, sans-serif;
    border-radius: 10px;
}

/* 题型标题 */
.singleTitle,
.multipleTitle,
.trueFalseTitle,
.blankTitle,
.shortTitle {
    font-family: '黑体';
    font-size: 25px;
    color: #000000;
    background-color: #f3f3f3;
    padding-left: 20px;
    margin-bottom: 10px;
    border-radius: 10px 10px 0 0;
    /* font-weight: bold; */
}

/* 选项部分 */
.singleItem,
.multipleItem,
.trueFalseItem,
.blankItem,
.shortItem {
    box-sizing: content-box;
    margin-bottom: 10px;
    padding: 10px;
}

/* 选项列表 */
.optionList li {
    transition: all .3s ease;
    cursor: pointer;
}

.optionList li:hover {
    background-color: #d2edff;
    cursor: pointer;
}

/* 题干 */
.questionStem {
   
    color: #4F46E5;
}

/* 填空题输入框 */
.blankAnswer {
    width: 80%;
    height: 40px;
    padding: 5px;
    border: 1px solid #bbbbbb;
    border-radius: 5px;
    font-size: 16px;
    margin-top: 10px;
}

/* 简答题文本域 */
.shortAnswer {
    display: block;
    margin: 0 auto;
    width: 98%;
    height: 150px;
    padding: 5px;
    border: 1px solid #bbbbbb;
    border-radius: 5px;
    font-size: 16px;
    margin-top: 10px;
    resize: none;
}

/* 提交考试按钮  */
.submitExam-btn {
    font-size: 20px;
    width: 150px;
    height: 40px;
    margin: 50px auto 20px auto;

    background-color: #4F46E5;
    color: white;
    text-align: center;
    vertical-align: middle;
    line-height: 40px;
    border-radius: 8px;
    cursor: pointer;
    transition: background-color 0.2s ease;
}

/* 考试弹窗结束 */



/* 常用功能板块开始 */
.commonFunctions .commonFunctions-main {
    display: flex;
    flex-direction: row;
    margin-top: 20px;
    gap: 20px;
}

.commonFunctions-main .test-btn {
       display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    background-color: #f4ffda;
    text-align: center;
    border-radius: 5px;
    transition: all 0.3s;
    height: 200px;
    width: 200px;
    cursor: pointer;
}

.commonFunctions-main .discussion-btn {
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    background-color: #d0ffed;
    text-align: center;
    border-radius: 5px;
    transition: all 0.3s;
    height: 200px;
    width: 200px;
    cursor: pointer;
}

.commonFunctions-main .test-btn:hover,
.commonFunctions-main .discussion-btn:hover,
.myClassroom-main .rollCall-btn:hover,
.myClassroom-main .score-btn:hover {
    box-shadow: 0px 2px 5px rgba(0, 0, 0, 0.3);
}


.commonFunctions-main img {
    margin: 10px auto;
    width: 65%;

}

.commonFunctions-main span {
    font-size: 18px;
    color: #000000;
}

/* 常用功能板块结束 */



/* 工具箱板块样式开始 */

.myClass-container .myClassroom-main {
    display: flex;
    flex-direction: row;
    gap: 20px;
}

.myClassroom-main .rollCall-btn {
   display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    background-color: #ffdada;
    text-align: center;
    border-radius: 5px;
    transition: all 0.3s;
    height: 200px;
    width: 200px;
    cursor: pointer;
}

.myClassroom-main .score-btn {
      display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    background-color: #daf1ff;
    text-align: center;
    border-radius: 5px;
    transition: all 0.3s;
    height: 200px;
    width: 200px;
    cursor: pointer;
}

.myClassroom-main img {
    margin: 10px auto;
    width: 65%;

}

.myClassroom-main span {
    font-size: 18px;
    color: #000000;
}

/* 工具箱板块样式结束 */




/* 在线讨论区弹窗样式开始 */


/* 弹窗容器 */
.discussionPopup {
    position: fixed;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    width: 900px;
    min-width: none;
    display: none;
    height: 700px;
    z-index: 10000;
    background-color: #ffffff;
    box-shadow: 0px 2px 5px rgba(0, 0, 0, 0.3);
    border-radius: 10px;
    padding: 20px;
}


.discussionHeader {
    /* 弹窗标题 */
    font-size: 20px;
    text-align: center;
    color: #4F46E5;
    margin-bottom: 12px;
}

.discussionCloseBtn {
    /* 关闭按钮 */
    position: absolute;
    top: 8px;
    right: 12px;
    background: none;
    border: none;
    font-size: 35px;
    color: #8b99ad;
    cursor: pointer;
    z-index: 1;
    line-height: 1;
    padding: 0 6px;
    transition: color 0.2s;
}

.discussionCloseBtn:hover {
    /* 关闭按钮悬停 */
    color: #4F46E5;
}

.discussionMain {
    /* 主体内容区 */
    flex: 1 1 0;
    display: flex;
   
    flex-direction: column;
     gap: 10px;
    min-height: 0;
    height: 380px;
    overflow-y: auto;
    border: 1px solid #cccccc;
    padding: 10px;
    border-radius: 6px;
    
}

.discussionPostList {
    /* 帖子列表容器 */
    flex: 1 1 0;
    overflow-y: auto;
    list-style: none;
    padding: 0;
    margin: 0 0 12px 0;
    display: flex;
    flex-direction: column;
    gap: 10px;
}
/* 课程名称 */
.discussionCourseName{
    font-size: 20px;
    color: #4F46E5;
    font-weight: 600;
}
.discussionPostItem {
    /* 单条帖子容器 */
    border: 1px solid #d2e7ff;
    padding: 6px;
    border-radius: 6px;
   
    background: #fbfdff;
    box-shadow: 1px 1px 8px rgba(0, 0, 0, 0.1);
    margin-bottom: 10px;
}

.discussionPostHead {
    /* 帖子头部（作者、时间） */
    display: flex;
    justify-content: space-between;
    margin-bottom: 6px;
    font-size: 13px;
    color: #333;
}

.discussionPostAuthor {
    /* 帖子作者 */
    font-weight: 500;
}

.discussionPostTime {
    /* 帖子时间 */
    color: #8b99ad;
}

.discussionPostBody {
    /* 帖子正文 */
    white-space: pre-wrap;
    color: #222;
    font-size: 15px;
}

/* 选择帖子下拉框 */
.postTopicSelect {
    display: flex;
    width: 95%;
    align-items: center;
    gap: 8px;
    margin-bottom: 8px;
    font-size: 16px;
    color: #000000;
}

.discussionForm {
    /* 发帖表单容器 */
    display: flex;
    position: absolute;
    bottom: 20px;
    flex-direction: column;
    width: 95%;
    gap: 8px;
    border-top: 1px solid #e6eef9;
    padding-top: 10px;
    background: #fff;
}

.discussionFormTitle,
.discussionFormContent {
    /* 表单输入框、文本域 */
    /* width: 200px; */
    box-sizing: border-box;
    padding: 8px;
    border: 1px solid #e6eef9;
    border-radius: 4px;
    font-size: 15px;
}

.discussionFormTitle:focus {
    border: 1px solid #8fd4ff;
    outline: none;
}

.discussionFormContent {
    /* 表单文本域 */
    width: 100%;
    /* height: 80px; */
    height: 150px;
    resize: none;
}

.discussionFormBtns {
    /* 表单按钮区 */
    display: flex;
    gap: 8px;
}

.discussionBtn {
    /* 通用按钮 */
    background: #4F46E5;
    color: #fff;
    border: none;
    padding: 6px 14px;
    border-radius: 6px;
    cursor: pointer;
    font-size: 14px;
    transition: background-color 0.2s ease;
}

.discussionBtn.secondary {
    /* 次级按钮 */
    background: #f3f6fb;
    color: #4F46E5;
    border: 1px solid #d7e6fb;
}

.discussionPreviewMask {
    /* 预览遮罩层 */
    position: fixed;
    left: 0;
    top: 0;
    width: 100vw;
    height: 100vh;
    background: rgba(0, 0, 0, 0.25);
    z-index: 9999;
    display: flex;
    align-items: center;
    justify-content: center;
}

.discussionPreviewBox {
    /* 预览弹窗容器 */
    background: #fff;
    border-radius: 8px;
    box-shadow: 0 2px 16px rgba(0, 0, 0, 0.12);
    padding: 32px 24px;
    min-width: 320px;
    max-width: 90vw;
}

.discussionPreviewTitle {
    /* 预览标题 */
    font-size: 20px;
    font-weight: 600;
    color: #4F46E5;
    margin-bottom: 16px;
}

.discussionPreviewContent {
    /* 预览正文 */
    font-size: 16px;
    color: #222;
    margin-bottom: 24px;
    white-space: pre-wrap;
}

.discussionNote {
    /* 说明文字 */
    font-size: 13px;
    color: #4b5563;
    margin-top: 8px;
}

.discussionNoPosts {
    /* 无帖子时提示 */
    color: #8b99ad;
    padding: 12px;
    text-align: center;
}

/* 在线讨论区弹窗样式结束 */


/* 考勤记录弹窗样式开始 */
.checkingInPopup {
    display: none;
    /* 初始状态为隐藏，暂时注释 */
    position: fixed;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    background-color: white;
    padding: 20px;
    border-radius: 10px;
    box-shadow: 0px 2px 5px rgba(0, 0, 0, 0.3);
    z-index: 9999;
    width: 800px;
    height: 600px;
    font-size: 20px;
    text-align: center;
    overflow: auto;
}

.checkingInRecord {
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
}

.checkingInTitle {
    font-size: 24px;
    font-weight: 500;
    color: #4F46E5;
    margin-bottom: 16px;
}

/* 关闭按钮 */
.closeCheckingInIcon {
    position: absolute;
    top: 8px;
    right: 12px;
    font-size: 35px;
    color: #8b99ad;
    font-weight: 500;
    cursor: pointer;
    margin-bottom: 16px;
}

.closeCheckingInIcon:hover {
    color: #4F46E5;
}


/* 记录主体 */
.checkingInBody {
    width: 90%;
}

/* 学生信息 */
.studentInfo {
    text-align: justify;
    font-size: 18px;
    color: #333333;
    margin-bottom: 20px;
}
/* 姓名 */
.stuName {
    font-size: 20px;
    font-weight: 500;
    color: #4F46E5;
    margin-bottom: 10px;
    margin-right: 30px;
}

/* 学号 */
.stuNo {    
    font-size: 20px;
    font-weight: 500;
    color: #4F46E5;
    margin-bottom: 10px;
  
}

.stuName strong,
.stuNo strong {
   
    color: #000000;
}





/* 成绩记录表格 */
.checkingInTable {
    width: 100%;
    border-collapse: collapse;
    margin-bottom: 20px;
    /* border: 1px solid #0b74d1; */
    border-radius: 10px 10px 0 0;
    background-color: #f4f9ff;
}

/* 表格标题 */
.checkingInTable thead tr th {
    font-size: 20px;
    font-weight: 500;
    background-color: #4F46E5;
    color: #ffffff;
    padding: 10px;
    /* border: 1px solid #000000; */
}

/* 首行第一个单元格圆角 */
.checkingInTable thead tr th:first-child {
    border-radius: 10px 0px 0 0;

}

/* 首行最后一个单元格圆角 */
.checkingInTable thead tr th:last-child {
    border-radius: 0px 10px 0 0;

}

/* 各行的高度 */
.checkingInTable tr {
    height: 50px;
}


/* 偶数行 */
.checkingInTable tr:nth-child(even) {
    background-color: #ebebeb;
}

/* 底部 */
.checkingInFooter {
    font-size: 18px;
    color: #000000;
    margin-top: 20px;
    display: flex;
    gap: 20px;
    justify-content: center;
}

/* 关闭学习记录按钮 */
.checkingInFooter .closeCheckingIn {
    background-color: #4F46E5;
    color: #ffffff;
    border: none;
    padding: 6px 14px;
    border-radius: 6px;
    cursor: pointer;
    font-size: 14px;
    transition: background-color 0.2s ease;
}

/* 下载学习记录按钮 */
.checkingInFooter .downCheckingIn {
    background-color: #10B981;
    color: #ffffff;
    border: none;
    padding: 6px 14px;
    border-radius: 6px;
    cursor: pointer;
    font-size: 14px;
    transition: background-color 0.2s ease;
}



/* 考勤记录弹窗样式结束 */



/* 成绩记录弹窗样式开始 */
.studyRecordPopup {
    display: none;
    /* 初始状态为隐藏，暂时注释 */
    position: fixed;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    background-color: white;
    padding: 20px;
    border-radius: 10px;
    box-shadow: 0px 2px 5px rgba(0, 0, 0, 0.3);
    z-index: 9999;
    width: 800px;
    height: 600px;
    font-size: 20px;
    text-align: center;
    overflow: auto;
}

/* 学习记录内容 */
.studyRecord {
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
}

/* 记录标题文字 */
.recordTitle {
    font-size: 24px;
    font-weight: 500;
    color: #4F46E5;
    margin-bottom: 16px;
}

/* 关闭按钮 */
.closeRecordIcon {
    position: absolute;
    top: 8px;
    right: 12px;
    font-size: 35px;
    color: #8b99ad;
    font-weight: 500;
    cursor: pointer;
    margin-bottom: 16px;
}

.closeRecordIcon:hover {
    color: #4F46E5;
}


/* 记录主体 */
.recordBody {
    width: 90%;
}

/* 学生信息 */
.studentInfo {
    text-align: justify;
    font-size: 18px;
    color: #333333;
    margin-bottom: 20px;
}

/* 成绩记录表格 */
.recordTable {
    width: 100%;
    border-collapse: collapse;
    margin-bottom: 20px;
    /* border: 1px solid #0b74d1; */
    border-radius: 10px 10px 0 0;
    background-color: #f4f9ff;
}

/* 表格标题 */
.recordTable thead tr th {
    font-size: 20px;
    font-weight: 500;
    background-color: #4F46E5;
    color: #ffffff;
    padding: 10px;
    /* border: 1px solid #000000; */
}

/* 首行第一个单元格圆角 */
.recordTable thead tr th:first-child {
    border-radius: 10px 0px 0 0;

}

/* 首行最后一个单元格圆角 */
.recordTable thead tr th:last-child {
    border-radius: 0px 10px 0 0;

}

/* 各行的高度 */
.recordTable tr {
    height: 50px;
}


/* 偶数行 */
.recordTable tr:nth-child(even) {
    background-color: #ebebeb;
}

/* 底部 */
.recordFooter {
    font-size: 18px;
    color: #000000;
    margin-top: 20px;
    display: flex;
    gap: 20px;
    justify-content: center;
}

/* 关闭学习记录按钮 */
.recordFooter .closeRecord {
    background-color: #4F46E5;
    color: #ffffff;
    border: none;
    padding: 6px 14px;
    border-radius: 6px;
    cursor: pointer;
    font-size: 14px;
    transition: background-color 0.2s ease;
}

/* 下载学习记录按钮 */
.recordFooter .downRecord {
    background-color: #10B981;
    color: #ffffff;
    border: none;
    padding: 6px 14px;
    border-radius: 6px;
    cursor: pointer;
    font-size: 14px;
    transition: background-color 0.2s ease;
}


/* 成绩记录弹窗样式结束 */


