:root {
	--aiOptArticle_primary-gradient-start: #4AA9FE;
	--aiOptArticle_primary-gradient-end: #76DCFE;
	--aiOptArticle_background-color: #F5F5F7;
	--aiOptArticle_text-color: #333;
	--aiOptArticle_card-background: #fff;
	--aiOptArticle_shadow-color: rgba(0, 0, 0, 0.1);
	--aiOptArticle_border-radius: 12px;
	--aiOptArticle_spacing: 20px;
}

#page_aiOptArticle{
	box-sizing: border-box;
	margin: 0;
	padding: 0 0 66px 0;
	font-family: "Microsoft YaHei", "微软雅黑", SimSun, "宋体", sans-serif;
	line-height: 1.8;
	background-color: var(--aiOptArticle_background-color);
	color: var(--aiOptArticle_text-color);
}

.aiOptArticle_container {
	width: 100%;
	max-width: 100%;
	margin: 0 auto;
	padding: var(--aiOptArticle_spacing);
	background-color: var(--aiOptArticle_background-color);
}
#aiOptArticle_srcWrapper{display:flex;gap:20px}
#aiOptArticle_srcCt{width:40vw}
#aiOptArticle_srcImgWrapper{flex:1}
#aiOptArticle_srcImgWrapper .aiOptArticle_imgDiv{position:relative;width: 100%;}
#aiOptArticle_srcImgWrapper img{width:100%}

.wavyClick{position: absolute;width:100%;background:transparent;z-index: 99999;}
.wavyLine {
	position: absolute;
	top: 50%;
	left: 5px;
	right: 5px;
	height: 40px;
	transform: translateY(-50%);
}

.wavyLine svg {
	width: 100%;
	height: 100%;
	filter: drop-shadow(0 1px 1px rgba(255,0,0,0.3));
}

.wavyLine path {
	stroke: #dc2626;
	stroke-width: 2.5;
	fill: none;
	stroke-linecap: round;
	stroke-linejoin: round;
	opacity: 0;
	stroke-dasharray: 400;
	stroke-dashoffset: 400;
	animation: draw 2s ease-in-out forwards;
}

@keyframes draw {
	to {
		opacity: 1;
		stroke-dashoffset: 0;
	}
}

@keyframes draw {
	to {
		opacity: 1;
		stroke-dashoffset: 0;
	}
}

@media (max-width: 768px) {
	#aiOptArticle_srcWrapper{flex-flow: column;}
	#aiOptArticle_srcCt{width: 100%;}
}

.aiOptArticle_card {
	background: var(--aiOptArticle_card-background);
	border-radius: var(--aiOptArticle_border-radius);
	box-shadow: 0 4px 20px var(--aiOptArticle_shadow-color);
	padding: var(--aiOptArticle_spacing);
	margin-bottom: var(--aiOptArticle_spacing);
	transition: transform 0.3s ease, box-shadow 0.3s ease;
}

.aiOptArticle_card:hover {
	transform: translateY(-5px);
	box-shadow: 0 10px 30px rgba(0, 0, 0, 0.15);
}

.aiOptArticle_section-title {
	color: var(--aiOptArticle_primary-gradient-start);
	margin-bottom: 15px;
	padding-bottom: 10px;
	border-bottom: 2px solid #eee;
	display: flex;
	align-items: center;
}

.aiOptArticle_section-title i {
	margin-right: 10px;
}

.essay-section p {
	margin-bottom: 15px;
	line-height: 2;
	font-size: 16px;
	transition: background-color 0.3s ease;
	border-radius: 4px;
	padding: 5px;
}

.essay-section p:hover {
	background-color: rgba(74, 169, 254, 0.05);
}

.correction {
	color: #e74c3c;
	cursor: pointer;
	text-decoration: underline wavy #ff5959;
	position: relative;
	font-weight: bold;
	padding: 0 2px;
	transition: background-color 0.2s ease;
}

.correction:hover {
	background-color: #ffe6e6;
}

.aiOptArticle_annotations {
	margin-top: 30px;
	transition: max-height 0.5s ease;
	background-color: rgba(74, 169, 254, 0.05);
	border-radius: var(--aiOptArticle_border-radius);
}

.aiOptArticle_toggle-annotations {
	display: flex;
	align-items: center;
	justify-content: center;
	margin: 20px auto;
	padding: 10px 20px;
	background: linear-gradient(135deg, var(--aiOptArticle_primary-gradient-start) 0%, var(--aiOptArticle_primary-gradient-end) 100%);
	color: white;
	border: none;
	border-radius: 30px;
	cursor: pointer;
	font-size: 16px;
	transition: all 0.3s ease;
	box-shadow: 0 4px 15px rgba(74, 169, 254, 0.3);
}

.aiOptArticle_toggle-annotations:hover {
	transform: translateY(-2px);
	box-shadow: 0 6px 20px rgba(74, 169, 254, 0.4);
}

.aiOptArticle_toggle-annotations i {
	margin-right: 10px;
}

.aiOptArticle_score-container {
	margin-top: 30px;
}

.aiOptArticle_score-card {
	background-color: white;
	border-radius: var(--aiOptArticle_border-radius);
	box-shadow: 0 4px 20px var(--aiOptArticle_shadow-color);
	padding: 25px;
}

.aiOptArticle_score-header {
	display: flex;
	align-items: center;
	margin-bottom: 20px;
	padding-bottom: 20px;
	border-bottom: 1px solid #eee;
}

.aiOptArticle_total-score {
	display: flex;
	flex-direction: column;
	align-items: center;
	justify-content: center;
	width: 120px;
	height: 120px;
	background: linear-gradient(135deg, var(--aiOptArticle_primary-gradient-start) 0%, var(--aiOptArticle_primary-gradient-end) 100%);
	color: white;
	border-radius: 50%;
	margin-right: 30px;
	box-shadow: 0 5px 15px rgba(74, 169, 254, 0.3);
	transition: transform 0.3s ease, box-shadow 0.3s ease;
}

.aiOptArticle_total-score:hover {
	transform: scale(1.05);
	box-shadow: 0 8px 25px rgba(74, 169, 254, 0.4);
}

.aiOptArticle_score-number {
	font-size: 42px;
	font-weight: bold;
	line-height: 1;
}

.aiOptArticle_score-text {
	font-size: 18px;
	margin-top: 5px;
}

.aiOptArticle_score-breakdown {
	flex: 1;
	display: grid;
	grid-template-columns: repeat(auto-fit, minmax(200px, 1fr));
	gap: 15px;
}

.aiOptArticle_score-item {
	display: flex;
	justify-content: space-between;
	padding: 12px;
	background-color: #f5f7fa;
	border-radius: 8px;
	transition: transform 0.2s ease, box-shadow 0.2s ease;
}

.aiOptArticle_score-item:hover {
	transform: translateY(-2px);
	box-shadow: 0 4px 10px rgba(0,0,0,0.1);
	background-color: rgba(74, 169, 254, 0.1);
}

.aiOptArticle_score-label {
	font-weight: bold;
	color: var(--aiOptArticle_primary-gradient-start);
}

.aiOptArticle_score-value {
	font-weight: bold;
}

.aiOptArticle_score-comment {
	margin-top: 20px;
}

.aiOptArticle_score-comment h3 {
	color: var(--aiOptArticle_primary-gradient-start);
	margin-bottom: 10px;
	padding-bottom: 5px;
	border-bottom: 1px solid #eee;
	display: flex;
	align-items: center;
}

.aiOptArticle_score-comment h3 i {
	margin-right: 10px;
}

.aiOptArticle_score-comment ul {
	padding-left: 20px;
	margin-bottom: 20px;
}

.aiOptArticle_score-comment li {
	margin-bottom: 8px;
	padding-left: 5px;
	transition: transform 0.2s ease;
}

.aiOptArticle_score-comment li:hover {
	transform: translateX(5px);
}

.aiOptArticle_optimized-container {
	margin-top: 30px;
}

.aiOptArticle_optimized-content {
	background-color: white;
	border-radius: var(--aiOptArticle_border-radius);
	box-shadow: 0 4px 20px var(--aiOptArticle_shadow-color);
	padding: 25px;
	display: flex;
	flex-direction: column;
	gap: 30px;
}

.aiOptArticle_optimized-text {
	padding: 20px;
	background-color: #f9f9f9;
	border-radius: 8px;
	border-left: 4px solid var(--aiOptArticle_primary-gradient-start);
	transition: all 0.3s ease;
}

.aiOptArticle_optimized-text:hover {
	box-shadow: 0 5px 15px rgba(74, 169, 254, 0.2);
	transform: translateX(5px);
}

.aiOptArticle_optimized-text p {
	margin-bottom: 15px;
	line-height: 1.8;
}

.aiOptArticle_optimization-explanation {
	flex: 1;
}

.aiOptArticle_optimization-explanation h3 {
	color: var(--aiOptArticle_primary-gradient-start);
	margin-bottom: 15px;
	padding-bottom: 5px;
	border-bottom: 1px solid #eee;
	display: flex;
	align-items: center;
}

.aiOptArticle_optimization-explanation h3 i {
	margin-right: 10px;
}

.aiOptArticle_optimization-explanation ol {
	padding-left: 20px;
}

.aiOptArticle_optimization-explanation li {
	margin-bottom: 12px;
	transition: transform 0.2s ease;
}

.aiOptArticle_optimization-explanation li:hover {
	transform: translateX(5px);
}

.aiOptArticle_optimization-explanation ul {
	padding-left: 20px;
	margin-top: 5px;
}

.good {
	background-color: #e7f9ef;
	color: #27ae60;
	padding: 0 3px;
	border-radius: 3px;
}

#aiOptArticle_annotations p {
	margin-bottom: 10px;
	padding: 10px;
	border-radius: 8px;
	background-color: #fff;
	transition: all 0.3s ease;
	border-left: 3px solid var(--aiOptArticle_primary-gradient-start);
}

#aiOptArticle_annotations p:hover {
	transform: translateX(5px);
	box-shadow: 0 3px 10px rgba(74, 169, 254, 0.2);
}

.aiOptArticle_word-count {
	padding: 10px 15px;
	background: linear-gradient(135deg, var(--aiOptArticle_primary-gradient-start) 0%, var(--aiOptArticle_primary-gradient-end) 100%);
	color: white;
	border-radius: 30px;
	font-weight: bold;
	display: inline-flex;
	align-items: center;
	margin-top: 10px;
	box-shadow: 0 3px 10px rgba(74, 169, 254, 0.3);
}

.aiOptArticle_word-count i {
	margin-right: 10px;
}

@keyframes aiOptArticle_slideIn {
	from {
		transform: translateX(100%);
		opacity: 0;
	}
	to {
		transform: translateX(0);
		opacity: 1;
	}
}

@keyframes aiOptArticle_fadeOut {
	from {
		transform: translateX(0);
		opacity: 1;
	}
	to {
		transform: translateX(100%);
		opacity: 0;
	}
}

/* 响应式设计增强 */
@media (max-width: 992px) {
	.aiOptArticle_optimized-content {
		flex-direction: column;
	}
	
	.aiOptArticle_score-header {
		flex-direction: column;
		align-items: center;
	}
	
	.aiOptArticle_total-score {
		margin-right: 0;
		margin-bottom: 20px;
	}
	
	.aiOptArticle_score-breakdown {
		width: 100%;
	}
}

@media (max-width: 768px) {
	.aiOptArticle_container {
		padding: 10px;
	}
	
	.aiOptArticle_card {
		padding: 15px;
	}
	
	.aiOptArticle_score-breakdown {
		grid-template-columns: 1fr;
	}
}