2025-11-02 20:44:19 +08:00
|
|
|
|
.recitation-container {
|
|
|
|
|
|
max-width: 900px;
|
|
|
|
|
|
margin: 0 auto;
|
|
|
|
|
|
}
|
|
|
|
|
|
|
|
|
|
|
|
.input-section,
|
|
|
|
|
|
.extracted-section,
|
|
|
|
|
|
.wheel-section,
|
|
|
|
|
|
.result-section {
|
|
|
|
|
|
margin-bottom: 40px;
|
|
|
|
|
|
padding: 30px;
|
|
|
|
|
|
background: #f8f9fa;
|
|
|
|
|
|
border-radius: 15px;
|
|
|
|
|
|
}
|
|
|
|
|
|
|
|
|
|
|
|
.input-section h2,
|
|
|
|
|
|
.extracted-section h2,
|
|
|
|
|
|
.wheel-section h2,
|
|
|
|
|
|
.result-section h2 {
|
|
|
|
|
|
font-size: 1.8em;
|
|
|
|
|
|
margin-bottom: 15px;
|
|
|
|
|
|
color: #333;
|
|
|
|
|
|
}
|
|
|
|
|
|
|
|
|
|
|
|
.hint,
|
|
|
|
|
|
.info {
|
|
|
|
|
|
color: #666;
|
|
|
|
|
|
margin-bottom: 20px;
|
|
|
|
|
|
line-height: 1.6;
|
|
|
|
|
|
}
|
|
|
|
|
|
|
|
|
|
|
|
.info span {
|
|
|
|
|
|
color: #667eea;
|
|
|
|
|
|
font-weight: bold;
|
|
|
|
|
|
}
|
|
|
|
|
|
|
|
|
|
|
|
.text-input {
|
|
|
|
|
|
width: 100%;
|
|
|
|
|
|
padding: 15px;
|
|
|
|
|
|
border: 2px solid #e9ecef;
|
|
|
|
|
|
border-radius: 10px;
|
|
|
|
|
|
font-size: 1em;
|
|
|
|
|
|
font-family: inherit;
|
|
|
|
|
|
resize: vertical;
|
|
|
|
|
|
margin-bottom: 20px;
|
|
|
|
|
|
transition: border-color 0.3s;
|
|
|
|
|
|
}
|
|
|
|
|
|
|
|
|
|
|
|
.text-input:focus {
|
|
|
|
|
|
outline: none;
|
|
|
|
|
|
border-color: #667eea;
|
|
|
|
|
|
}
|
|
|
|
|
|
|
|
|
|
|
|
.items-list {
|
|
|
|
|
|
max-height: 400px;
|
|
|
|
|
|
overflow-y: auto;
|
|
|
|
|
|
padding: 15px;
|
|
|
|
|
|
background: white;
|
|
|
|
|
|
border-radius: 10px;
|
|
|
|
|
|
margin-bottom: 20px;
|
|
|
|
|
|
}
|
|
|
|
|
|
|
|
|
|
|
|
.item-tag {
|
|
|
|
|
|
display: inline-block;
|
|
|
|
|
|
padding: 8px 15px;
|
|
|
|
|
|
margin: 5px;
|
|
|
|
|
|
background: #667eea;
|
|
|
|
|
|
color: white;
|
|
|
|
|
|
border-radius: 20px;
|
|
|
|
|
|
font-size: 0.9em;
|
|
|
|
|
|
}
|
|
|
|
|
|
|
2025-11-02 23:46:11 +08:00
|
|
|
|
/* ת<><D7AA><EFBFBD><EFBFBD>ʽ */
|
2025-11-02 20:44:19 +08:00
|
|
|
|
.wheel-container {
|
|
|
|
|
|
position: relative;
|
|
|
|
|
|
width: 400px;
|
|
|
|
|
|
height: 400px;
|
|
|
|
|
|
margin: 40px auto;
|
|
|
|
|
|
}
|
|
|
|
|
|
|
|
|
|
|
|
.wheel {
|
|
|
|
|
|
width: 100%;
|
|
|
|
|
|
height: 100%;
|
|
|
|
|
|
border-radius: 50%;
|
|
|
|
|
|
position: relative;
|
|
|
|
|
|
border: 8px solid #667eea;
|
|
|
|
|
|
background: white;
|
|
|
|
|
|
overflow: hidden;
|
|
|
|
|
|
transition: transform 3s cubic-bezier(0.17, 0.67, 0.12, 0.99);
|
|
|
|
|
|
box-shadow: 0 0 20px rgba(0, 0, 0, 0.2);
|
|
|
|
|
|
}
|
|
|
|
|
|
|
|
|
|
|
|
.wheel svg {
|
|
|
|
|
|
transition: transform 3s cubic-bezier(0.17, 0.67, 0.12, 0.99);
|
|
|
|
|
|
}
|
|
|
|
|
|
|
|
|
|
|
|
.wheel-pointer {
|
|
|
|
|
|
position: absolute;
|
|
|
|
|
|
top: -15px;
|
|
|
|
|
|
left: 50%;
|
|
|
|
|
|
transform: translateX(-50%);
|
|
|
|
|
|
width: 0;
|
|
|
|
|
|
height: 0;
|
|
|
|
|
|
border-left: 15px solid transparent;
|
|
|
|
|
|
border-right: 15px solid transparent;
|
|
|
|
|
|
border-top: 30px solid #667eea;
|
|
|
|
|
|
z-index: 10;
|
|
|
|
|
|
filter: drop-shadow(0 2px 4px rgba(0, 0, 0, 0.2));
|
|
|
|
|
|
}
|
|
|
|
|
|
|
|
|
|
|
|
.btn-spin {
|
|
|
|
|
|
display: block;
|
|
|
|
|
|
margin: 30px auto;
|
|
|
|
|
|
padding: 15px 50px;
|
|
|
|
|
|
font-size: 1.2em;
|
|
|
|
|
|
background: linear-gradient(135deg, #f093fb 0%, #f5576c 100%);
|
|
|
|
|
|
color: white;
|
|
|
|
|
|
border: none;
|
|
|
|
|
|
border-radius: 30px;
|
|
|
|
|
|
cursor: pointer;
|
|
|
|
|
|
transition: all 0.3s;
|
|
|
|
|
|
}
|
|
|
|
|
|
|
|
|
|
|
|
.btn-spin:hover {
|
|
|
|
|
|
transform: scale(1.05);
|
|
|
|
|
|
box-shadow: 0 5px 20px rgba(245, 87, 108, 0.4);
|
|
|
|
|
|
}
|
|
|
|
|
|
|
|
|
|
|
|
.btn-spin:disabled {
|
|
|
|
|
|
opacity: 0.6;
|
|
|
|
|
|
cursor: not-allowed;
|
|
|
|
|
|
transform: none;
|
|
|
|
|
|
}
|
|
|
|
|
|
|
|
|
|
|
|
.current-item {
|
|
|
|
|
|
text-align: center;
|
|
|
|
|
|
padding: 20px;
|
|
|
|
|
|
background: white;
|
|
|
|
|
|
border-radius: 10px;
|
|
|
|
|
|
margin-top: 20px;
|
|
|
|
|
|
font-size: 1.3em;
|
|
|
|
|
|
font-weight: bold;
|
|
|
|
|
|
color: #667eea;
|
|
|
|
|
|
min-height: 60px;
|
|
|
|
|
|
display: flex;
|
|
|
|
|
|
align-items: center;
|
|
|
|
|
|
justify-content: center;
|
|
|
|
|
|
}
|
|
|
|
|
|
|
2025-11-02 23:46:11 +08:00
|
|
|
|
/* 掌握按钮样式 */
|
|
|
|
|
|
.mastery-buttons {
|
|
|
|
|
|
display: flex;
|
|
|
|
|
|
gap: 15px;
|
|
|
|
|
|
justify-content: center;
|
|
|
|
|
|
margin-top: 20px;
|
|
|
|
|
|
flex-wrap: wrap;
|
|
|
|
|
|
}
|
|
|
|
|
|
|
|
|
|
|
|
.btn-mastered {
|
|
|
|
|
|
padding: 12px 30px;
|
|
|
|
|
|
font-size: 1em;
|
|
|
|
|
|
background: linear-gradient(135deg, #43e97b 0%, #38f9d7 100%);
|
|
|
|
|
|
color: white;
|
|
|
|
|
|
border: none;
|
|
|
|
|
|
border-radius: 25px;
|
|
|
|
|
|
cursor: pointer;
|
|
|
|
|
|
transition: all 0.3s;
|
|
|
|
|
|
font-weight: bold;
|
|
|
|
|
|
box-shadow: 0 4px 15px rgba(67, 233, 123, 0.3);
|
|
|
|
|
|
}
|
|
|
|
|
|
|
|
|
|
|
|
.btn-mastered:hover {
|
|
|
|
|
|
transform: translateY(-2px);
|
|
|
|
|
|
box-shadow: 0 6px 20px rgba(67, 233, 123, 0.4);
|
|
|
|
|
|
}
|
|
|
|
|
|
|
|
|
|
|
|
.btn-mastered:active {
|
|
|
|
|
|
transform: translateY(0);
|
|
|
|
|
|
}
|
|
|
|
|
|
|
|
|
|
|
|
.btn-forgot {
|
|
|
|
|
|
padding: 12px 30px;
|
|
|
|
|
|
font-size: 1em;
|
|
|
|
|
|
background: linear-gradient(135deg, #f5576c 0%, #fa709a 100%);
|
|
|
|
|
|
color: white;
|
|
|
|
|
|
border: none;
|
|
|
|
|
|
border-radius: 25px;
|
|
|
|
|
|
cursor: pointer;
|
|
|
|
|
|
transition: all 0.3s;
|
|
|
|
|
|
font-weight: bold;
|
|
|
|
|
|
box-shadow: 0 4px 15px rgba(245, 87, 108, 0.3);
|
|
|
|
|
|
}
|
|
|
|
|
|
|
|
|
|
|
|
.btn-forgot:hover {
|
|
|
|
|
|
transform: translateY(-2px);
|
|
|
|
|
|
box-shadow: 0 6px 20px rgba(245, 87, 108, 0.4);
|
|
|
|
|
|
}
|
|
|
|
|
|
|
|
|
|
|
|
.btn-forgot:active {
|
|
|
|
|
|
transform: translateY(0);
|
|
|
|
|
|
}
|
|
|
|
|
|
|
|
|
|
|
|
/* 掌握情况信息 */
|
|
|
|
|
|
.mastery-info {
|
|
|
|
|
|
text-align: center;
|
|
|
|
|
|
margin-top: 15px;
|
|
|
|
|
|
padding: 10px;
|
|
|
|
|
|
color: #666;
|
|
|
|
|
|
font-size: 0.95em;
|
|
|
|
|
|
}
|
|
|
|
|
|
|
|
|
|
|
|
.mastery-info #remainingNum {
|
|
|
|
|
|
color: #667eea;
|
|
|
|
|
|
font-weight: bold;
|
|
|
|
|
|
font-size: 1.2em;
|
|
|
|
|
|
}
|
|
|
|
|
|
|
|
|
|
|
|
/* <20><><EFBFBD><EFBFBD><EFBFBD><EFBFBD><EFBFBD>б<EFBFBD> */
|
2025-11-02 20:44:19 +08:00
|
|
|
|
.sorted-list {
|
|
|
|
|
|
background: white;
|
|
|
|
|
|
border-radius: 10px;
|
|
|
|
|
|
padding: 20px;
|
|
|
|
|
|
max-height: 500px;
|
|
|
|
|
|
overflow-y: auto;
|
|
|
|
|
|
}
|
|
|
|
|
|
|
|
|
|
|
|
.sorted-item {
|
|
|
|
|
|
padding: 15px;
|
|
|
|
|
|
margin: 10px 0;
|
|
|
|
|
|
background: #f8f9fa;
|
|
|
|
|
|
border-radius: 8px;
|
|
|
|
|
|
border-left: 4px solid #667eea;
|
|
|
|
|
|
display: flex;
|
|
|
|
|
|
align-items: center;
|
|
|
|
|
|
transition: all 0.3s;
|
|
|
|
|
|
}
|
|
|
|
|
|
|
|
|
|
|
|
.sorted-item:hover {
|
|
|
|
|
|
background: #e9ecef;
|
|
|
|
|
|
transform: translateX(5px);
|
|
|
|
|
|
}
|
|
|
|
|
|
|
|
|
|
|
|
.sorted-item-number {
|
|
|
|
|
|
display: inline-flex;
|
|
|
|
|
|
align-items: center;
|
|
|
|
|
|
justify-content: center;
|
|
|
|
|
|
width: 35px;
|
|
|
|
|
|
height: 35px;
|
|
|
|
|
|
background: #667eea;
|
|
|
|
|
|
color: white;
|
|
|
|
|
|
border-radius: 50%;
|
|
|
|
|
|
font-weight: bold;
|
|
|
|
|
|
margin-right: 15px;
|
|
|
|
|
|
flex-shrink: 0;
|
|
|
|
|
|
}
|
|
|
|
|
|
|
|
|
|
|
|
.sorted-item-text {
|
|
|
|
|
|
flex: 1;
|
|
|
|
|
|
color: #333;
|
2025-11-02 23:46:11 +08:00
|
|
|
|
position: relative;
|
|
|
|
|
|
}
|
|
|
|
|
|
|
|
|
|
|
|
/* 已掌握的项目样式 */
|
|
|
|
|
|
.sorted-item-mastered {
|
|
|
|
|
|
background: #d4edda;
|
|
|
|
|
|
border-left-color: #28a745;
|
|
|
|
|
|
opacity: 0.7;
|
|
|
|
|
|
}
|
|
|
|
|
|
|
|
|
|
|
|
.sorted-item-mastered .sorted-item-text {
|
|
|
|
|
|
color: #155724;
|
|
|
|
|
|
text-decoration: line-through;
|
|
|
|
|
|
}
|
|
|
|
|
|
|
|
|
|
|
|
.mastered-icon {
|
|
|
|
|
|
display: inline-block;
|
|
|
|
|
|
margin-left: 10px;
|
|
|
|
|
|
color: #28a745;
|
|
|
|
|
|
font-weight: bold;
|
|
|
|
|
|
font-size: 1.1em;
|
2025-11-02 20:44:19 +08:00
|
|
|
|
}
|
|
|
|
|
|
|
2025-11-02 23:46:11 +08:00
|
|
|
|
/* <20><><EFBFBD><EFBFBD><EFBFBD><EFBFBD>ť<EFBFBD><C5A5>ʽ */
|
2025-11-02 22:23:10 +08:00
|
|
|
|
.export-buttons {
|
|
|
|
|
|
display: flex;
|
|
|
|
|
|
gap: 10px;
|
|
|
|
|
|
margin-bottom: 20px;
|
|
|
|
|
|
flex-wrap: wrap;
|
|
|
|
|
|
}
|
|
|
|
|
|
|
|
|
|
|
|
.btn-export {
|
|
|
|
|
|
padding: 10px 20px;
|
|
|
|
|
|
background: #28a745;
|
|
|
|
|
|
color: white;
|
|
|
|
|
|
border: none;
|
|
|
|
|
|
border-radius: 5px;
|
|
|
|
|
|
cursor: pointer;
|
|
|
|
|
|
font-size: 0.9em;
|
|
|
|
|
|
transition: all 0.3s;
|
|
|
|
|
|
}
|
|
|
|
|
|
|
|
|
|
|
|
.btn-export:hover {
|
|
|
|
|
|
background: #218838;
|
|
|
|
|
|
transform: translateY(-2px);
|
|
|
|
|
|
}
|
|
|
|
|
|
|
|
|
|
|
|
.btn-export:active {
|
|
|
|
|
|
transform: translateY(0);
|
|
|
|
|
|
}
|
|
|
|
|
|
|
2025-11-02 23:46:11 +08:00
|
|
|
|
/* <20><>Ӧʽ<D3A6><CABD><EFBFBD> */
|
2025-11-02 20:44:19 +08:00
|
|
|
|
@media (max-width: 768px) {
|
|
|
|
|
|
.wheel-container {
|
|
|
|
|
|
width: 300px;
|
|
|
|
|
|
height: 300px;
|
|
|
|
|
|
}
|
|
|
|
|
|
|
|
|
|
|
|
.wheel-item {
|
|
|
|
|
|
font-size: 0.7em;
|
|
|
|
|
|
}
|
|
|
|
|
|
|
|
|
|
|
|
.input-section,
|
|
|
|
|
|
.extracted-section,
|
|
|
|
|
|
.wheel-section,
|
|
|
|
|
|
.result-section {
|
|
|
|
|
|
padding: 20px;
|
|
|
|
|
|
}
|
|
|
|
|
|
}
|
|
|
|
|
|
|