.contents {
    color: #000;
}

.contents ul {
    list-style:none;
    margin:0;
    padding:0;
    width:100%;
}

.contents ul li {
    margin:0 0 10px 0;
    padding:4px 10px 4px;
    overflow:auto;
    cursor:move;
}

.contents ul li.selected {
    background:rgba(248, 249, 250);
    color: #fff;
}

.contents ul li:hover {
    background: rgba(248, 249, 250);
}

.contents ul li.placeholder {
  background: #fff;
  border:1px dashed #ccc;
  padding:0;
  margin:10px 0;
}

.contents ul span {
    text-transform:uppercase;
    color:#bbb;
    font-size:14px;
}

.contents ul a {
    display: block;
}

.contents ul a:hover {
    cursor:move;
    color: #2997ff;
}


.hidden {
    display:none;
}

form p {
    overflow:auto;
}

.errorlist {
    color:#ae2c2c;
    margin:0;
}


a.secondary-button {
    padding:10px 20px;
    margin:10px 0;
}

ul#ordering-modules {
    list-style:none;
    overflow:auto;
}

ul#ordering-modules textarea {
    width:600px;
    height:120px;
}

ul#ordering-modules li {
    padding:20px;
    overflow:auto;
    cursor:move;
    user-select:none;
}

ul#ordering-modules li:nth-child(even) {
    background:#efefef;
}

ul#ordering-modules li:hover {
    background:#ccc;
}
#module-contents {
    margin-bottom: 20px;
    
}
#module-contents div {
    background:#fff
}
#module-contents p {
    margin-bottom: 0px;
    
}

#module-contents div.placeholder {
  background: rgb(245, 245, 247);
}

#module-contents div:hover {
    cursor:move;
}

#module-contents .dropdown {
    padding: none;
    border: none;
    background:none;
}

.helptext {
    color:#ccc;
    padding-left:20px;
}

#chat {
    top: 64px;
    bottom:0;
    position:fixed;
    width:100%;
    overflow-y:scroll;
    padding-bottom:150px;
}

#chat .message {
    background:#efefef;
    padding:10px 20px;
    border-radius:4px;
    width:auto;
    display:inline;
    float:left;
    margin:10px 10px 0;
    min-width:440px;
    clear:both;
}

#chat .message.me {
    display:inline;
    float:right;
    background:#DCEDE0;
    color:#56A668;
}

#chat .date {
    color:#aaa;
    font-style:italic;
}

#chat-input {
    position:absolute;
    bottom:0;
    background:#efefef;
    width:100%;
    padding-top:20px;
}

#chat-input input {
    position:left;
    float:left;
    display:inline;
}
.main-img {
    width: 100%;
    max-height: 350px;
    object-fit: scale-down;
    object-position: left;
}
#form-set {
    background: #fff;
}

.nav-style {
    z-index: 2000;
    position: relative;
    padding-top: 3px;
    padding-bottom: 3px;
}
.bar-style {
    color: #fff;
}
ul.bar-style li {
    background-color: rgba(33, 33, 33);
}

.photo-style {
    left: 0;
    right: 0;
}
.photo-bg {
    height: 180px;
}
.avatar-style {
    width: 100%;
}
.background-photo {
    padding-bottom: 30px;
}
.avatar-action {
    width: 50px;
    height: 50px;
}
.folder-style {
    white-space: nowrap;
}
.folder-style li {
    width: 150px;
}
.folder-style i {
    font-size: 50px;
}
#ordering div {
    cursor: grab;
}
#folder-cursor {
    cursor: grab;
}
.folders {
    min-height: 200px;
}
.folders a {
    text-decoration: none;
    color: #000;
}
.folder-link {
    color: #fff;
    background-color: #0a58ca;
}
.folder-link a {
    color: #fff;
    background-color: #0a58ca;
}
.folder-link .bi {
    color: #fff;
}
.folder-link .list-inline-item {
    color: #efefef;
}
.folder-link .dropdown-menu a {
    background-color: #fff;
    color: #000;
}
.folder-link .dropdown-menu i {
    color: #000;
}
.folder-link .dropdown-menu a:hover {
    background-color: #f8f9fa;
    border-radius: none;
}
.follows-avatar {
    width: 80px;
    height: 80px;
}
.folder-avatar-most {
    width: 45px;
    height: 45px;
}
.folder-avatar-draft {
    width: 35px;
    height: 35px;
}
.folder-avatar-newest {
    width: 180px;
    height: 180px;
}
.folder-avatar {
    width: 48px;
    height: 48px;
}
.full-width.dropdown {
    position: static;
}
.full-width.dropdown > .dropdown-menu {
    right: 0;
    margin: 0px;
    border-radius: 0px;
    border: none;
}
.full-width.dropdown > .dropdown-menu > li > a {
   white-space: normal; 
}
.msg-base-success {
    background-color: rgb(199, 193, 190);
    color: #000;
}
.msg-base-error {
    background-color: rgba(167, 56, 59);
    color: #fff;
}
.msg-base-warning {
    background-color: rgba(255, 250, 204);
    color: #000;
}
#report-detail p {
    margin-bottom: 0px;
}
#module-detail p {
    margin-bottom: 0px;
}
.ol-type-n {
    list-style-type: decimal;
}

 /* 清除默认的列表样式 */
.report-ol ol {
    list-style-type: none;
    counter-reset: item;
    padding-left: 20px; /* 为序号留出空间 */
}

/* 为 li 元素添加序号并使用伪元素 ::before 显示序号 */
li.report-li {
    counter-increment: item;
    position: relative; /* 让伪元素相对于 li 定位 */
    color: #000;
}

/* 使用 ::before 伪元素来显示序号，并添加边框 */
li.report-li::before {
    content: counter(item) ""; /* 显示序号 */
    position: absolute;
    left: -22px; /* 将序号定位到 li 左侧 */
    background-color: #E5E4E2;
    padding-right: 5px; /* 序号与文本之间的间距 */
    padding-left: 5px; /* 序号与文本之间的间距 */
    border-radius: 4px;
    display: inline-block;
    min-width: 1.5em;
    margin-right: 1.5em;
    text-align: center;
}

/* 正确答案 */
li.outcome-true {
    counter-increment: item;
    position: relative; /* 让伪元素相对于 li 定位 */
}

/* 正确答案 */
li.outcome-true::before {
    content: counter(item) ""; /* 显示序号 */
    position: absolute;
    left: -20px; /* 将序号定位到 li 左侧 */
    border: 1px solid rgb(33, 37, 41); /* 序号的边框 */
    padding-right: 5px; /* 序号与文本之间的间距 */
    padding-left: 5px; /* 序号与文本之间的间距 */
    border-radius: 4px;
    background-color: rgb(33, 37, 41);
    color: white;
    display: inline-block;
    min-width: 1.5em;
    margin-right: 1.5em;
    text-align: center;
}
/* 空答案 */
li.outcome-null {
    counter-increment: item;
    position: relative; /* 让伪元素相对于 li 定位 */
}

/* 空答案 */
li.outcome-null::before {
    content: counter(item) ""; /* 显示序号 */
    position: absolute;
    left: -22px; /* 将序号定位到 li 左侧 */
    border: 1px solid rgb(187, 11, 11); /* 序号的边框 */
    padding-right: 5px; /* 序号与文本之间的间距 */
    padding-left: 5px; /* 序号与文本之间的间距 */
    border-radius: 4px;
    color: rgb(187, 11, 11);
    display: inline-block;
    min-width: 1.5em;
    margin-right: 1.5em;
    text-align: center;
}
/* 错误答案 */
li.outcome-false {
    counter-increment: item;
    position: relative; /* 让伪元素相对于 li 定位 */
}

/* 错误答案 */
li.outcome-false::before {
    content: counter(item) ""; /* 显示序号 */
    position: absolute;
    left: -22px; /* 将序号定位到 li 左侧 */
    border: 1px solid rgb(187, 11, 11); /* 序号的边框 */
    padding-right: 5px; /* 序号与文本之间的间距 */
    padding-left: 5px; /* 序号与文本之间的间距 */
    border-radius: 4px;
    background-color: rgb(187, 11, 11);
    color: white;
    display: inline-block;
    min-width: 1.5em;
    margin-right: 1.5em;
    text-align: center;
}



/* 为 li 元素添加序号并使用伪元素 ::before 显示序号 */
li.report-li-LTR {
    counter-increment: item;
    position: relative; /* 让伪元素相对于 li 定位 */
    color: #000;
}

/* 使用 ::before 伪元素来显示序号，并添加边框 */
li.report-li-LTR::before {
    content: counter(item, upper-alpha) ""; /* 显示序号 */
    position: absolute;
    left: -20px; /* 将序号定位到 li 左侧 */
    background-color: #E5E4E2;
    padding-right: 5px; /* 序号与文本之间的间距 */
    padding-left: 5px; /* 序号与文本之间的间距 */
    min-width: 1.5em;
    text-align: center;
    margin-right: 10px;
    border-radius: 4px;
}

/* 正确答案 */
li.outcome-true-LTR {
    counter-increment: item;
    position: relative; /* 让伪元素相对于 li 定位 */
}

/* 正确答案 */
li.outcome-true-LTR::before {
    content: counter(item, upper-alpha) ""; /* 显示序号 */
    position: absolute;
    left: -20px; /* 将序号定位到 li 左侧 */
    border: 1px solid rgb(33, 37, 41); /* 序号的边框 */
    padding-right: 5px; /* 序号与文本之间的间距 */
    padding-left: 5px; /* 序号与文本之间的间距 */
    min-width: 1.5em;
    text-align: center;
    margin-right: 10px;
    border-radius: 4px;
    background-color: rgb(33, 37, 41);
    color: white;
}
/* 空答案 */
li.outcome-null-LTR {
    counter-increment: item;
    position: relative; /* 让伪元素相对于 li 定位 */
}

/* 空答案 */
li.outcome-null-LTR::before {
    content: counter(item, upper-alpha) ""; /* 显示序号 */
    position: absolute;
    left: -20px; /* 将序号定位到 li 左侧 */
    border: 1px solid rgb(187, 11, 11); /* 序号的边框 */
    padding-right: 5px; /* 序号与文本之间的间距 */
    padding-left: 5px; /* 序号与文本之间的间距 */
    min-width: 1.5em;
    text-align: center;
    margin-right: 10px;
    border-radius: 4px;
    color: rgb(187, 11, 11);
}
/* 错误答案 */
li.outcome-false-LTR {
    counter-increment: item;
    position: relative; /* 让伪元素相对于 li 定位 */
}

/* 错误答案 */
li.outcome-false-LTR::before {
    content: counter(item, upper-alpha) ""; /* 显示序号 */
    position: absolute;
    left: -20px; /* 将序号定位到 li 左侧 */
    border: 1px solid rgb(187, 11, 11); /* 序号的边框 */
    padding-right: 5px; /* 序号与文本之间的间距 */
    padding-left: 5px; /* 序号与文本之间的间距 */
    min-width: 1.5em;
    text-align: center;
    margin-right: 10px;
    border-radius: 4px;
    background-color: rgb(187, 11, 11);
    color: white;
}
.report-ol ol li p {
    margin-left: 10px;
}

.user-avatar {
    width: 48px;
    height: 48px;
}
.user-avatar-box {
    width: 100%; /* 或者其他具体的宽度 */
    padding-top: 100%; /* 高度/宽度比例，例如 50% 表示高度是宽度的一半 */
    position: relative; /* 确保子元素定位正确 */
}

.user-photo {
    padding-bottom: 70px;
}
.user-photo-box {
    width: 100%; /* 或者其他具体的宽度 */
    padding-top: 28.57%; /* 高度/宽度比例，例如 50% 表示高度是宽度的一半 */
    background-color: rgb(199, 193, 190);
    position: relative; /* 确保子元素定位正确 */
  }
.user-photo-content {
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
}
.user-photo-avatar {
    width: 80px;
    height: 80px;
}
.pay-avatar {
    max-width: 200px;
    max-height: 200px;
}
.bg-hhkb {
    background-color: rgb(199, 193, 190);
}
.text-hhkb {
    color: rgb(26, 26, 26);
}
.bg-homepod {
    background-color: rgb(28, 29, 33);
}
.bg-vavy-blue {
    background-color: rgb(11, 27, 57);
}
.text-vavy-blue {
    color: rgb(11, 27, 57);
}
.text-blue-tertiary {
    color: rgb(63, 151, 204);
}
.form-number {
    display: inline-block;
    width: 22px;
}



/* 基础样式 */
.option-label {
    cursor: pointer;
    display: inline-block;
    transition: all 0.2s;
}

/* 序号基础样式 */
.option-prefix {
    display: inline-block;
    margin-right: 0.5em;
    font-weight: normal; /* 常规字体 */
}
  
/* 选中状态的序号样式 */
.option-prefix.selected-prefix {
    color: #000; /* 白色文字 */
}
  
/* 隐藏原始输入框 */
.option-d-none {
    display: none !important;
}

/* 百分比图表样式 */
.subject-cet4 {
    background-color: rgba(225, 81, 65);
    color: #000; /* 白色文字 */
}
.subject-cet4-bi {
    color: rgba(225, 81, 65);
}

.subject-cet6 {
    background-color: rgba(244, 127, 85);
    color: #000; /* 白色文字 */
}
.subject-cet6-bi {
    color: rgba(244, 127, 85);
}


.subject-technique {
    background-color: rgba(253, 228, 154);
    color: #000;
}
.subject-technique-bi {
    color: rgba(253, 228, 154);
}

.subject-dao {
    background-color: #C9CC3F;
    color: #000;
}
.subject-dao-bi {
    color: #C9CC3F;
}

.subject-photo {
    background-color: #8A9A5B;
    color: #000;
}
.subject-photo-bi {
    color: #8A9A5B;
}

.subject-ponder {
    background-color: #AFE1AF;
    color: rgba(33, 37, 41);
}
.subject-ponder-bi {
    color: #AFE1AF;
}

.option-check {
    color: rgba(184, 186, 58);
}
.option-x {
    color: rgba(174, 58, 54);
}

.nav-underline li {
    margin-left: 18px;
}
.nav-underline .active {
    border-bottom: 2px solid #000;
}
.vip-card-bg {
    background-color: rgba(248, 247, 247);
}