@charset "utf-8";

* {
	box-sizing: border-box;
}

html,body {
	margin: 0;
	display: flex;
	flex-direction: column;
	height: 100%;
}
.container {
	background-color: #fafafa;
	flex: 1;
}

/* main */
main {
	background-color: #fafafa;
	padding: 12px 16px 16px;
	max-width: 1080px;
	margin: 0 auto;
}

/* breadcrumb */
.breadcrumb ul{
	margin: 0;
	padding: 0;
	list-style: none;
	font-size: 0.9rem;
	color: #666;
}

.breadcrumb li {
	display: inline;
}

.breadcrumb li:after {
	content: '>';
	padding: 0 0.2em;
	font-size: 0.7rem;
}

.breadcrumb li:last-child:after {
	content: '';
}

.breadcrumb a {
	text-decoration: none;
	color: inherit;
}

/* pic */
.pic {
	background-image: url(../asset/bg.png);
	background-repeat: no-repeat;
	background-size: 100%;
	text-align: cover;
	aspect-ratio: 16 / 9;
	border-radius: 10px;
	margin-top: 64px;
}

.pic img {
	width: 100% !important;
	height: 100% !important;
	object-fit: contain;
	vertical-align: bottom;
}

/* titlecard */
.titleCard {
	background-color: #fff;
	border-radius: 10px;
	padding: 20px 16px;
	margin-top: 24px;
	box-shadow: 0 0 2px rgb(0 0 0 / 0.2);
	color: #222;
}

.titleCard .meta {
	display: flex;
	gap: 16px;
	color: #666;
	font-size: 0.8rem;
}

.titleCard .meta p {
	margin: 0;
}

.titleCard .title {
	margin-top: 12px;
}

.titleCard .title h2 {
	margin: 0;
}

.titleCard .author {
	color: #666;
	font-size: 0.8rem;
	margin-top: 12px;
}

.titleCard .author p {
	margin: 0;
}

/* text */
.text {
	background-color: #fff;
	border-radius: 10px;
	padding: 24px;
	box-shadow: 0 0 2px rgb(0 0 0 / 0.2);
	margin-top: 24px;
	color: #222;
}

.text .main {
	border-bottom: 1px solid #e5e7eb;
	padding-bottom: 24px;
}

.text h3 {
	margin: 0;
	margin-top: 24px;
}

.text p {
	margin: 0;
	line-height: 1.7;
	margin-top: 12px;
}

.text .buttons {
	margin-top: 24px;
	display: flex;
	gap: 8px;
}

.text .buttons button {
	background-color: #fff;
	font: inherit;
	border: 1px solid #e5e7eb;
	padding: 10px;
	border-radius: 26px;
}

.text .navs {
	margin-top: 24px;
	font-size: 0.9rem;
	display: flex;
	justify-content: space-between;
}

.text .navs a {
	text-decoration: none;
	color: inherit;
}