#main section p{
	font-size: 1.6em;
	margin: 0 20px 15px;
}
#main section h3{
	font-size: 1.6em;
	background: hsl(var(--muted-600));
	color: hsl(var(--foreground));
	padding: 10px 20px;
	margin-top: 40px;
	border: 1px solid hsl(var(--border));
	border-right: 1px solid #FFF;
	border-bottom: 1px solid #FFF;
}


#main section p.link{
	padding-left: 23px;
	position: relative;
	list-style: none;
	background: none;
}
#main section p.link::after{
	content: "";
	position: absolute;
	left: 0.5rem;
	top: 50%;
	transform: translateY(-50%);
	width: 0;
	height: 0;
	border-top: 0.25rem solid transparent;
	border-right: 0.25rem solid transparent;
	border-bottom: 0.25rem solid transparent;
	border-left: 0.25rem solid hsl(var(--foreground));
}
#main section p.link:hover::after{
	left: 0.55rem;
}


#main section table{
	width: 100%;
	border-collapse: collapse;
	border-top: 1px solid hsl(var(--muted));
	border-left: 1px solid hsl(var(--muted));
}
#main section table tr{
	border-bottom: 1px solid hsl(var(--muted));
}
#main section table tbody th,
#main section table tbody td{
	padding: 10px 15px;
	border-bottom: 3px solid hsl(var(--muted));
	border-right: none;
}
#main section table tbody th{
	background: hsl(var(--muted-600));
	vertical-align: middle;
	width: 220px;
}
#main section table tbody td{
	line-height: 1.8;
	background: #FFF;
}
#main section table tbody td .note{
	font-size: 12px;
}


#main section{
}
#main .msg-container{
	background: url(/error/img/error-illust.png) no-repeat right bottom;
	min-height: 344px;
	padding-top: 2rem;
	margin-bottom: 2rem;
}
#main .msg-container h2{
	font-size: 2rem;
	margin:3rem 0 20px;
	padding-bottom: 18px;
	letter-spacing: 1px;
	font-weight: 600;
}
#main .msg-container p{
	font-size: 1.15rem;
	margin-left:0;
	margin-right:0;
	margin-bottom: 1.5rem;
	line-height: 1.6;
}

@media only screen and (max-width: 480px){
	#main .msg-container{
		background: url(/error/img/error-illust.png) no-repeat center top;
		background-size: 50%;
		min-height: inherit;
		margin-top: 2rem;
		padding-top: 0;
		padding-right: 0;
		padding-top: 45%;
		margin-bottom: 2rem;
	}
	#main .msg-container h2{
		padding-bottom: 0;
		margin-top: 1rem;
		font-size: 1.6rem;
	}
	#main .msg-container p {
		font-size: 1rem;
	}
}

/* Error pages - Apple-style (rate_limit_exceeded, item_not_found)
-------------------------------------------------------------------------------*/
.rate_limit_exceeded #main,
.item_not_found #main,
.taobao_api_error #main {
	background: none;
}
.rl-hero {
	display: flex;
	flex-direction: column;
	align-items: center;
	text-align: center;
	padding: 5rem 1.5rem 4rem;
	max-width: 580px;
	margin: 0 auto;
}
.rl-illust {
	width: 200px;
	margin-bottom: 2.5rem;
	opacity: 0.9;
}
.rl-title {
	font-size: 2rem;
	font-weight: 700;
	letter-spacing: 0.02em;
	color: hsl(var(--foreground));
	margin: 0 0 1rem;
	line-height: 1.3;
}
.rl-subtitle {
	font-size: 1.05rem;
	line-height: 1.8;
	color: hsl(var(--muted-foreground));
	margin: 0 0 2.5rem;
}
.rl-actions {
	display: flex;
	gap: 0.75rem;
	margin-bottom: 2.5rem;
}
.rl-btn-primary {
	display: inline-block;
	padding: 0.75rem 2rem;
	font-size: 1rem;
	font-weight: 600;
	color: #fff;
	background: hsl(var(--primary));
	border-radius: 980px;
	text-decoration: none;
	transition: background 0.2s;
}
.rl-btn-primary:hover {
	background: hsl(var(--primary-700));
	color: #fff;
}
.rl-hints {
	border-top: 1px solid hsl(var(--border));
	padding-top: 1.5rem;
}
.rl-hints p {
	font-size: 0.9rem;
	color: hsl(var(--muted-foreground));
	line-height: 1.7;
	margin: 0;
}
.rl-hints a {
	color: hsl(var(--primary));
	text-decoration: none;
}
.rl-hints a:hover {
	text-decoration: underline;
}

@media only screen and (max-width: 480px) {
	.rl-hero {
		padding: 3rem 1.25rem 2.5rem;
	}
	.rl-illust {
		width: 150px;
		margin-bottom: 2rem;
	}
	.rl-title {
		font-size: 1.5rem;
	}
	.rl-subtitle {
		font-size: 0.95rem;
		margin-bottom: 2rem;
	}
	.rl-actions {
		flex-direction: column;
		width: 100%;
		gap: 0.5rem;
	}
	.rl-btn-primary {
		width: 100%;
		text-align: center;
		box-sizing: border-box;
	}
}
