/* <<<<<<<<<<<共用樣式>>>>>>>>>>> */
@import url('https://fonts.googleapis.com/css2?family=Noto+Sans+SC:wght@100;200;300;400;500;600;700;800;900&display=swap');

* {
	font-family: 'Noto Sans SC', sans-serif !important;
	/* cursor: none !important; */
}

/* 底色 */
body {
	background-color: #fff;
	position: relative;
	overflow-x: hidden;
}

/* 所有圖片設定 */
img {
	width: 100%;
	vertical-align: bottom;
}

/* 所有連結裝飾消失 */
a {
	text-decoration: none;
}

/* 容器 */
.wrap {
	width: 80%;
	max-width: 1140px;
	margin: auto;
	padding: 36px 0;
}


.titleh2 {
	display: flex;
	width: fit-content;
	line-height: 120%;
	color: #000;
	font-size: 32px;
	font-weight: 700;
	position: relative;
	margin: 0 auto 16px;
	box-sizing: border-box;
}

.titleh3 {
	margin: auto;
	line-height: 120%;
	color: #000;
	font-size: 28px;
	font-weight: 700;
	box-sizing: border-box;
}

.intro {
	margin: auto;
	color: #424242;
	font-size: 20px;
	font-style: normal;
	font-weight: 400;
	line-height: 140%;
	letter-spacing: 1px;
	margin-bottom: 24px;
	box-sizing: border-box;
}

.booklist {
	display: flex;
	flex-wrap: wrap;
	justify-content: space-between;
}

.booklist.scrollcontainer {
	width: 100%;
	display: flex;
	flex-wrap: nowrap;
	overflow: auto;
	gap: 20px;
	border-bottom: none;
}

/* 捲動條的寬度 */
.booklist.scrollcontainer::-webkit-scrollbar {
	width: 100%;
	height: 12px;
}

/* 捲動條的顏色 */
.booklist.scrollcontainer::-webkit-scrollbar-thumb {
	background-color: #3491EA;
}

/* 捲動條軌道的顏色 */
.booklist.scrollcontainer::-webkit-scrollbar-track {
	background-color: #DDD;
}

.booklist .book {
	width: calc((100% - 8px)/2);
	margin-bottom: 24px;
}

.booklist.scrollcontainer .book {
	min-width: 150px;
}

.booklist .book .pic {
	box-shadow: 0px 6px 16px 0px rgba(176, 176, 176, 0.32);
	-webkit-box-shadow: 0px 6px 16px 0px rgba(176, 176, 176, 0.32);
	-moz-box-shadow: 0px 6px 16px 0px rgba(176, 176, 176, 0.32);
	transition: 0.5s;
}

.booklist .book .pic:hover{
	transform: translateY(-5px);
}

.booklist .book .txt p {
	color: #202020;
	font-size: 20px;
	line-height: 150%;
	text-align: center;
	margin: 4px 0 0;
	box-sizing: border-box;
	/* 書架書名兩行限制 */
	overflow: hidden;
	display: -webkit-box;
	-webkit-line-clamp: 1;
	/* 行數 */
	-webkit-box-orient: vertical;
	white-space: normal;
}

.booklist .book .tagbox {
	display: flex;
	flex-wrap: wrap;
	justify-content: center;
	margin: 8px 0;
	gap: 4px;
	min-height: 20px;
}

.booklist .book .tagbox span {
	display: inline-block;
	align-items: center;
	padding: 2px 8px;
	color: #e9982e;
	border: 1px solid #e9982e;
	border-radius: 999px;
	box-sizing: border-box;
}

.booklist .book .linkbox {
	display: flex;
	flex-direction: column;
	align-items: center;
	gap: 4px;
}

.booklist .book .linkbox a {
	width: 80%;
	text-align: center;
	font-size: 16px;
	padding: 8px 12px;
	box-sizing: border-box;
	border-radius: 4px;
}

.booklist .book .linkbox a:first-child {
	color: #fff;
	background-color: #318EE7;
	transition: 0.3s;
}

.booklist .book .linkbox a:first-child:hover {
	background-color: #1f79ce;
}

/* 投稿信息按鈕 */
.booklist .book .linkbox a.uploadinfo {
	border: 1px solid #318EE7;
	color: #318EE7;
	transition: 0.2s;
}

.booklist .book .linkbox a.uploadinfo:hover {
	background-color: #f3f3f3;
	transition: 0.2s;
}

@media (min-width: 1024px) {
	.booklist.scrollcontainer {
		display: flex;
		flex-wrap: wrap;
		justify-content: space-between;
		gap: 0;
	}

	.booklist .book {
		width: calc((100% - 60px)/5);
	}
}

@media (min-width: 1200px) {
	.booklist .book {
		width: calc((100% - 120px)/5);
	}
}

/* <<<<<<<<<<<共用樣式>>>>>>>>>>> */

/* <<<<<<<<<<<HEADER>>>>>>>>>>> */
header {
	position: sticky;
	top: 0;
	z-index: 99;
}

header.bgc {
	background-color: #fff;
	box-shadow: 0px -4px 9px 2px rgba(0, 0, 0, 0.12);
	-webkit-box-shadow: 0px -4px 9px 2px rgba(0, 0, 0, 0.12);
	-moz-box-shadow: 0px -4px 9px 2px rgba(0, 0, 0, 0.12);
}

header .wrap {
	display: flex;
	justify-content: space-between;
	align-items: center;
	padding: 16px 0px;
	position: relative;
	box-sizing: border-box;
}

/* HEADER LOGO*/
/* <<<<<<<<<<<<<<<<依照menu長度調整 >>>>>>>>>>>>*/
header .logo .pic {
	max-width: 280px;
}

/* HEADER HAMBURGER*/
header .hamburger {
	cursor: pointer;
}

/* HEADER MENU*/
header .menu {
	display: none;
	list-style: none;
	/* padding:16px 0 32px; */
}

header .menu.open {
	display: block;
	width: 100%;
	overflow: hidden;
	background-color: #f5f5f5;
	border-bottom-left-radius: 8px;
	border-bottom-right-radius: 8px;
	position: absolute;
	top: 100%;
	left: 0;
	box-shadow: 0px 6px 16px 0px rgba(176, 176, 176, 0.32);
	-webkit-box-shadow: 0px 6px 16px 0px rgba(176, 176, 176, 0.32);
	-moz-box-shadow: 0px 6px 16px 0px rgba(176, 176, 176, 0.32);
}

header .menu .menu_item {
	padding: 24px 0 24px 16px;
	font-size: 16px;
	font-style: normal;
	font-weight: 400;
	cursor: pointer;
	box-sizing: border-box;
}

header .menu .menu_item:hover {
	color: #fff;
	background-color: #318EE7;
}

header .menu .menu_item.active {
	color: #fff;
	background-color: #318EE7;
}

@media (min-width: 768px) {

	/* HEADER HAMBURGER*/
	.hamburger {
		display: none;
	}

	/* HEADER MENU*/
	header .menu {
		display: flex;
	}

	header .menu .menu_item {
		cursor: pointer;
	}

	header .menu .menu_item:not(:last-child) {
		margin-right: 12px;
		font-size: 16px;
		font-style: normal;
		font-weight: 400;
	}

	header .menu .menu_item:hover {
		color: #318EE7;
		background-color: transparent;
	}

	header .menu .menu_item.active {
		color: #318EE7;
		background-color: transparent;
	}

	header .logo .pic {
		max-width: 280px;
	}
}

/* 引言 */
.quote {
	background-color: #5A9FE0;
	position: relative;
}

.quote p {
	color: #fff;
	font-size: 18px;
	font-style: normal;
	font-weight: 400;
	line-height: 150%;
	letter-spacing: 1px;
	box-sizing: border-box;
	text-align: center;
}

.quote .pic {
	max-width: 30px;
	margin: 24px auto 0;
	transform: translateX(-50%);
	animation-name: bounce;
	animation-duration: 2s;
	animation-iteration-count: infinite;
}

@keyframes bounce {

	0%,
	20%,
	50%,
	80%,
	100% {
		transform: translateY(0);
	}

	40% {
		transform: translateY(-20px);
	}

	60% {
		transform: translateY(-10px);
	}
}

@media (min-width: 768px) {
	.quote .wrap {
		width: 80%;
	}

	.quote p {
		font-size: 24px;
	}
}

/* 六大学门推荐期刊 */
.list .item {
	margin-top: 36px;
	padding: 20px;
	border-radius: 24px;
}

.list .item:nth-child(odd) {
	background-color: #318EE7;
}

.list .item:nth-child(even) {
	border: 3px solid #3789d6;
}

@media (min-width: 1024px) {
	.list .item {
		padding: 24px;
		box-sizing: border-box;
	}
}

.list .item .introtag {
	display: block;
	margin: 0 auto 12px;
	/* text-align: center; */
	font-size: 20px;
	font-weight: 500;
	color: #383838;
	padding: 8px 0 12px;
	box-sizing: border-box;
	border-bottom: 1px solid #ddd;
}

.list .item:nth-child(odd) .introtag {
	color: #ececec;
}

.list .item:nth-child(odd) .titleh3 {
	color: #fff;
}

.list .item:nth-child(odd) .intro {
	color: #fff;
}

.list .item:nth-child(odd) .booklist .book .txt p {
	color: #fff;
}

.list .item:nth-child(odd) .booklist .book .tagbox span {
	color: #fff;
	border: 1px solid #fff;
}

.list .item:nth-child(odd) .booklist .book .linkbox a:first-child {
	color: #318EE7;
	background-color: #fff;
	transition: 0.3s;
}

.list .item:nth-child(odd) .booklist .book .linkbox a:first-child:hover {
	background-color: #e2e2e2;
}

/* 投稿信息按鈕 */
.list .item:nth-child(odd) .booklist .book .linkbox a.uploadinfo {
	border: 1px solid #fff;
	color: #fff;
}

.list .item:nth-child(odd) .booklist .book .linkbox a.uploadinfo:hover {
	background-color: #59acfa;
}

/* <<<<<<<<<<<2024 热搜榜>>>>>>>>>>> */
.reader .item .txt p {
	color: #424242;
	font-size: 20px;
	font-weight: 400;
	line-height: 120%;
	letter-spacing: 1px;
	box-sizing: border-box;
	margin: 8px 0 12px;
}

.reader .item .txt ul {
	list-style: circle;
}

.reader .item .txt ul li {
	list-style: disc;
	color: #424242;
	font-size: 20px;
	font-weight: 600;
	line-height: 120%;
	letter-spacing: 1px;
	margin: 0 0 16px 20px;
	box-sizing: border-box;
}

@media (min-width: 1024px) {
	.reader .item {
		display: flex;
		align-items: center;
	}

	.reader .item .txt {
		width: 40%;
		padding-left: 24px;
	}

	.reader .item .pic {
		max-width: 800px;
		width: 60%;
	}
}

/* 关于华艺学术文献数据库 */
.more_us .btnbox a {
	display: block;
	width: 100%;
	border-radius: 8px;
	padding: 20px 0;
	text-align: center;
	font-size: 20px;
	font-weight: 700;
	color: #fff;
	background-color: #318EE7;
}

.more_us .btnbox a:hover {
	background-color: #1f79ce;
}

/* 投稿信息按鈕 */
.more_us .btnbox a:last-child {
	border: 1px solid #318EE7;
	color: #318EE7;
	background-color: transparent;
	transition: 0.2s;
	margin-top: 8px;
}

.more_us .btnbox a:last-child:hover {
	background-color: #f3f3f3;
	transition: 0.2s;
}

@media (min-width: 1024px) {
	.more_us .btnbox {
		display: flex;
		gap: 24px;
		width: 80%;
		margin: auto;
	}

	.more_us .btnbox a {
		display: inline-block;
		width: calc(100% / 2);
	}

	.more_us .btnbox a:last-child {
		margin-top: 0px;
	}

}

/* footer */
footer {
	padding: 36px 0;
	background-color: #ecf5ff;
	margin-top: 64px;
}

footer p {
	text-align: center;
	font-size: 16px;
}