body {
	background-color: #f8f9fa;
	color: #333;
	padding-top: 0px;
	font-family: "Helvetica Neue", Helvetica, "PingFang SC",
		"Hiragino Sans GB", "Microsoft YaHei", Arial, sans-serif;
}

/* 头部区域 */
.hero-header {
	background: linear-gradient(135deg, #26a69a 0%, #00897b 100%);
	color: white;
	padding: 40px 0 50px;
	margin-bottom: 30px;
	border-bottom-left-radius: 50% 20px;
	border-bottom-right-radius: 50% 20px;
	box-shadow: 0 4px 15px rgba(0, 0, 0, 0.1);
	text-align: center;
}

.hero-title {
	margin: 0 0 10px;
	font-size: 2.5em;
	font-weight: bold;
	text-shadow: 1px 1px 2px rgba(0, 0, 0, 0.2);
}

.hero-title a {
	color: white;
	text-decoration: none;
}

.hero-subtitle {
	font-size: 1.1em;
	opacity: 0.9;
	margin-bottom: 25px;
}

/* 搜索框样式 */
.search-container {
	max-width: 700px;
	margin: 0 auto;
}

.search-input-group {
	box-shadow: 0 4px 10px rgba(0, 0, 0, 0.15);
	border-radius: 50px;
	overflow: hidden;
}

.search-input-group input {
	border: none;
	padding: 15px 20px;
	height: auto;
	font-size: 16px;
}

.search-input-group .btn-search {
	border: none;
	background-color: #ffb300;
	color: #fff;
	padding: 0 30px;
	font-weight: bold;
	font-size: 16px;
	border-radius: 0 50px 50px 0;
	transition: background-color 0.3s;
}

.search-input-group .btn-search:hover {
	background-color: #ffa000;
}

.qmb_ {
	width: 96px;
	margin: 3px;
}

ruby {
	font-size: 18pt;
	font-weight: bold;
}

rt {
	font-size: 11pt;
	padding-left: 3px;
	font-weight: normal;
}

pre {
	white-space: pre-wrap;
	word-wrap: break-word;
	font-size: 13pt;
}

a.ppbs {
	font-size: 13pt;
	padding: 5px;
}

a.ppbs:HOVER {
	background-color: gray;
}

td {
	vertical-align: middle !important;
}

.title-h1 {
	font-size: 20px;
	font-weight: bold;
	margin: 15px 0;
	color: #333;
}

.zdwords {
	margin: 5px;
	font-size: 13pt;
}

/* 主内容 */
.main-container {
  max-width: 900px;
  margin: 30px auto;
  background: #fff;
  border-radius: 8px;
  box-shadow: 0 1px 3px rgba(0,0,0,0.06);
  overflow: hidden;
}

/* 字符展示 */
.char-hero {
  text-align: center;
  padding: 50px 20px;
  background: linear-gradient(to bottom, #f8f9fa, #fff);
  border-bottom: 1px solid #e8e8e8;
}
.char-main {
  font-size: 96px;
  font-weight: 700;
  color: #2c3e50;
  margin: 0;
  line-height: 1;
}

/* 快速信息 */
.quick-info {
  display: flex;
  flex-wrap: wrap;
  padding: 30px;
  border-bottom: 1px solid #e8e8e8;
}
.info-item {
  flex: 1;
  min-width: 120px;
  text-align: center;
  padding: 10px;
}
.info-label {
  font-size: 12px;
  color: #95a5a6;
  margin-bottom: 5px;
}
.info-value {
  font-size: 18px;
  font-weight: 600;
  color: #2c3e50;
}

/* 内容区块 */
.section {
  padding: 30px;
  border-bottom: 1px solid #e8e8e8;
}
.section:last-child {
  border-bottom: none;
}
.section-title {
  font-size: 18px;
  font-weight: 600;
  color: #2c3e50;
  margin: 0 0 20px 0;
  padding-left: 12px;
  border-left: 3px solid #5c9ded;
}

/* 说明文字 */
.desc-text {
  color: #555;
  line-height: 1.8;
  font-size: 14px;
  background: #f8f9fa;
  padding: 20px;
  border-radius: 6px;
  white-space: pre-wrap;
}

/* 标签 */
.tags {
  display: flex;
  flex-wrap: wrap;
  gap: 8px;
}
.tag {
  padding: 6px 14px;
  background: #f0f0f0;
  border-radius: 4px;
  color: #555;
  font-size: 13px;
  transition: all 0.2s;
}
.tag:hover {
  background: #5c9ded;
  color: white;
}

/* 统计信息 */
.stats {
  display: flex;
  gap: 15px;
  margin-bottom: 15px;
}
.stat-box {
  flex: 1;
  text-align: center;
  padding: 20px;
  background: #f8f9fa;
  border-radius: 6px;
}
.stat-num {
  font-size: 28px;
  font-weight: 600;
  color: #5c9ded;
  margin-bottom: 5px;
}
.stat-label {
  font-size: 13px;
  color: #7f8c8d;
}

/* 提示信息 */
.tip {
  background: #e8f4fd;
  border-left: 3px solid #5c9ded;
  padding: 12px 15px;
  font-size: 13px;
  color: #555;
  border-radius: 4px;
}

/* 评论区 */
.comments {
  background: #fafafa;
  padding: 40px 0;
}
.comment {
  background: white;
  padding: 18px;
  margin-bottom: 12px;
  border-radius: 6px;
  border: 1px solid #e8e8e8;
}
.comment-header {
  margin-bottom: 10px;
}
.comment-author {
  font-weight: 600;
  color: #2c3e50;
  margin-right: 12px;
}
.comment-date {
  color: #95a5a6;
  font-size: 12px;
}
.comment-body {
  color: #555;
  font-size: 14px;
  line-height: 1.6;
  background: none;
  box-shadow: none;
  -webkit-box-shadow:none;
}

/* 表单 */
.form-card {
  background: white;
  padding: 30px;
  border-radius: 6px;
  border: 1px solid #e8e8e8;
  margin-top: 20px;
}
.form-title {
  font-size: 16px;
  font-weight: 600;
  margin-bottom: 20px;
  color: #2c3e50;
}
.form-control {
  border: 1px solid #ddd;
  border-radius: 4px;
  font-size: 14px;
  transition: border-color 0.3s;
}
.form-control:focus {
  border-color: #5c9ded;
  box-shadow: 0 0 0 2px rgba(92,157,237,0.1);
}
.btn-submit {
  background: #5c9ded;
  border: none;
  color: white;
  padding: 10px 30px;
  border-radius: 4px;
  font-size: 14px;
  font-weight: 500;
  transition: background 0.3s;
}
.btn-submit:hover {
  background: #4a8ad6;
}

/* 响应式 */
@media (max-width: 768px) {
  .char-main { font-size: 72px; }
  .info-item { min-width: 50%; }
  .section { padding: 20px; }
  .stats { flex-direction: column; }
}

/* 页脚 */
.footer {
	text-align: center;
	padding: 20px 0;
	color: #888;
	font-size: 0.9em;
	border-top: 1px solid #eee;
	margin-top: 58px;
}

/* 修正Bootstrap一些老的样式问题 */
.input-group-addon {
	border: 0;
	border-radius: 0 50px 50px 0;
}