#page_articleCorrect {
	margin: 0;
	padding: 0 0 88px 0;
	box-sizing: border-box;
	font-family: "PingFang SC", "Helvetica Neue", Arial, sans-serif;
	background-color: #F5F5F7;
	margin: 0 auto;
}

.articleCorrect_container {
	width: 100%;
	margin: 0 auto;
	min-height: 100vh;
	display: flex;
	flex-direction: column;
}

.articleCorrect_card {
	background-color: white;
	border-radius: 15px;
	margin: 20px;
	padding: 20px;
	box-shadow: 0 2px 10px rgba(0, 0, 0, 0.05);
}

.articleCorrect_card_title {
	font-size: 18px;
	font-weight: 600;
	margin-bottom: 20px;
	color: #333;
}

.articleCorrect_upload_area {
	border: 2px dashed #ddd;
	border-radius: 10px;
	padding: 40px 20px;
	text-align: center;
	margin-bottom: 15px;
	position: relative;
	cursor: pointer;
	transition: border-color 0.3s, background-color 0.3s;
}

.articleCorrect_upload_area:hover {
	border-color: #ccc;
	background-color: #f9f9f9;
}

.articleCorrect_upload_icon {
	font-size: 40px;
	color: #ccc;
	margin-bottom: 10px;
}

.articleCorrect_upload_text {
	font-size: 16px;
	color: #999;
	margin-bottom: 5px;
}

.articleCorrect_upload_input {
	position: absolute;
	top: 0;
	left: 0;
	width: 100%;
	height: 100%;
	opacity: 0;
	cursor: pointer;
}

.articleCorrect_upload_notice {
	font-size: 14px;
	color: #FF9042;
	margin-top: 15px;
	line-height: 1.5;
}

.articleCorrect_toggle_card {
	background-color: white;
	border-radius: 15px;
	margin: 20px;
	padding: 20px;
	box-shadow: 0 2px 10px rgba(0, 0, 0, 0.05);
}

.articleCorrect_toggle_row {
	display: flex;
	justify-content: space-between;
	align-items: center;
}

.articleCorrect_toggle_label {
	font-size: 16px;
	color: #333;
	font-weight: 500;
}

.articleCorrect_toggle {
	position: relative;
	display: inline-block;
	width: 50px;
	height: 28px;
}

.articleCorrect_toggle input {
	opacity: 0;
	width: 0;
	height: 0;
}

.articleCorrect_toggle_slider {
	position: absolute;
	cursor: pointer;
	top: 0;
	left: 0;
	right: 0;
	bottom: 0;
	background-color: #ccc;
	transition: .4s;
	border-radius: 34px;
}

.articleCorrect_toggle_slider:before {
	position: absolute;
	content: "";
	height: 20px;
	width: 20px;
	left: 4px;
	bottom: 4px;
	background-color: white;
	transition: .4s;
	border-radius: 50%;
}

.articleCorrect_toggle input:checked + .articleCorrect_toggle_slider {
	background: linear-gradient(to right, #4AA9FE, #76DCFE);
}

.articleCorrect_toggle input:checked + .articleCorrect_toggle_slider:before {
	transform: translateX(22px);
}

.articleCorrect_toggle_notice {
	font-size: 14px;
	color: #FF9042;
	margin-top: 10px;
}

.articleCorrect_next_button {
	width: calc(100% - 40px);
	margin: 20px auto;
	padding: 15px;
	background: linear-gradient(to right, #FF6B6B, #FF9042);
	color: white;
	border: none;
	border-radius: 15px;
	font-size: 18px;
	font-weight: 500;
	text-align: center;
	cursor: pointer;
	box-shadow: 0 4px 10px rgba(255, 107, 107, 0.3);
	transition: transform 0.3s, box-shadow 0.3s;
}

.articleCorrect_next_button:active {
	transform: translateY(2px);
	box-shadow: 0 2px 5px rgba(255, 107, 107, 0.2);
}

.articleCorrect_image_preview {
	display: none;
	width: 100%;
	height: 150px;
	object-fit: contain;
	margin-top: 15px;
	border-radius: 8px;
	border: 1px solid #eee;
}

.articleCorrect_toast {
	position: fixed;
	bottom: 80px;
	left: 50%;
	transform: translateX(-50%);
	background-color: rgba(50, 50, 50, 0.9);
	color: white;
	padding: 12px 25px;
	border-radius: 30px;
	font-size: 14px;
	z-index: 1000;
	opacity: 0;
	transition: opacity 0.3s, transform 0.3s;
	box-shadow: 0 5px 15px rgba(0, 0, 0, 0.2);
	font-weight: 500;
	letter-spacing: 0.5px;
	display: flex;
	align-items: center;
	gap: 8px;
}

.articleCorrect_toast.articleCorrect_show {
	opacity: 1;
}

/* 关联学生区域样式 */
.articleCorrect_student_card {
	background-color: white;
	border-radius: 15px;
	margin: 20px;
	padding: 20px;
	box-shadow: 0 2px 10px rgba(0, 0, 0, 0.05);
	cursor: pointer;
	transition: transform 0.3s, box-shadow 0.3s;
}

.articleCorrect_student_card:hover {
	transform: translateY(-2px);
	box-shadow: 0 4px 15px rgba(0, 0, 0, 0.1);
}

.articleCorrect_student_card:active {
	transform: translateY(1px);
	box-shadow: 0 2px 5px rgba(0, 0, 0, 0.1);
}

.articleCorrect_student_row {
	display: flex;
	justify-content: space-between;
	align-items: center;
}

.articleCorrect_student_label {
	font-size: 16px;
	color: #333;
	font-weight: 500;
}

.articleCorrect_student_icon {
	color: #ccc;
	font-size: 20px;
}

.articleCorrect_student_notice {
	font-size: 14px;
	color: #999;
	margin-top: 10px;
}

/* Animation */
@keyframes articleCorrect_fadeIn {
	from { opacity: 0; transform: translateY(20px); }
	to { opacity: 1; transform: translateY(0); }
}

.articleCorrect_card, .articleCorrect_toggle_card, .articleCorrect_student_card {
	animation: articleCorrect_fadeIn 0.5s forwards;
}

.articleCorrect_next_button {
	animation: articleCorrect_fadeIn 0.5s 0.3s both;
}

#articleCorrect_imagePreviewWapper{display: flex;gap: 20px;}
#articleCorrect_imagePreviewWapper .imagePreview img{all:unset;}
/*替换为四张图*/
/* 新的四个上传区域样式 */
.articleCorrect_upload_grid {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 15px;
    margin-bottom: 15px;
}

.articleCorrect_upload_item {
    position: relative;
    height: 150px;
    border: 2px dashed #ddd;
    border-radius: 10px;
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    cursor: pointer;
    transition: all 0.3s ease;
    background-color: #fafafa;
}

.articleCorrect_upload_item:hover {
    border-color: #4AA9FE;
    background-color: #f0f9ff;
}

.articleCorrect_upload_item.uploaded {
    border-color: #4AA9FE;
    background-color: #f0f9ff;
}

.articleCorrect_upload_plus {
    font-size: 30px;
    color: #ccc;
    margin-bottom: 5px;
    transition: color 0.3s ease;
}

.articleCorrect_upload_item:hover .articleCorrect_upload_plus {
    color: #4AA9FE;
}

.articleCorrect_upload_item.uploaded .articleCorrect_upload_plus {
    display: none;
}

.articleCorrect_upload_label {
    font-size: 14px;
    color: #999;
    text-align: center;
}

.articleCorrect_upload_item.uploaded .articleCorrect_upload_label {
    display: none;
}

.articleCorrect_upload_input {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    opacity: 0;
    cursor: pointer;
}

.articleCorrect_preview_image {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    object-fit: cover;
    border-radius: 8px;
    display: none;
}

.articleCorrect_upload_item.uploaded .articleCorrect_preview_image {
    display: block;
}

.articleCorrect_remove_btn {
	display:none;
    position: absolute;
    top: 8px;
    right: 8px;
    width: 24px;
    height: 24px;
    background-color: rgba(255, 255, 255, 0.9);
    color: #ff4757;
    border: 1px solid #ff4757;
    border-radius: 50%;
    font-size: 14px;
    cursor: pointer;
    display: flex;
    align-items: center;
    justify-content: center;
    box-shadow: 0 2px 4px rgba(0, 0, 0, 0.1);
    transition: all 0.3s ease;
}

.articleCorrect_remove_btn:hover {
    background-color: #ff4757;
    color: white;
    transform: scale(1.1);
}

@media (max-width: 480px) {
    .articleCorrect_upload_grid {
        gap: 10px;
    }
    
    .articleCorrect_upload_plus {
        font-size: 24px;
    }
    
    .articleCorrect_upload_label {
        font-size: 12px;
    }
}