html {
	background-color: #ffffff;
}
body {
	color: #333333;
	font-size: 14px;
	font-family: "SF Pro SC", "SF Pro Display", "SF Pro Icons", "PingFang SC", "Helvetica Neue", "Microsoft YaHei", "Helvetica", "Arial", sans-serif;
	background-color: #ffffff;
}
h1, h2, h3, h4, h5, h6, .h1, .h2, .h3, .h4, .h5, .h6 {
	font-family: "SF Pro SC", "SF Pro Display", "SF Pro Icons", "PingFang SC", "Helvetica Neue", "Microsoft YaHei", "Helvetica", "Arial", sans-serif;
}
img {
	max-width: 100%;
}
a, a:focus {
	outline: none;
}
.container-fluid {
	max-width: 1740px;
	padding-left: 15px;
	padding-right: 15px;
}

.site-mainnav {
	padding: 2px 0 4px 0;
	background-color: rgba(245, 245, 247, .4) !important;
	-webkit-backdrop-filter: saturate(180%) blur(20px);
	backdrop-filter: saturate(180%) blur(20px);
}
.site-mainnav .container-fluid {
	padding-left: 14px;
	padding-right: 5px;
}
.site-mainnav .navbar-brand {
	display: inline-block;
	width: 30px;
}
.site-mainnav .search {
	display: inline-block;
	width: 20px;
}
.site-mainnav a {
	outline: none;
}

.header {
	background-image: url(imgs/header-pic.jpg);
	background-position: bottom center;
	background-size: 100% auto;
	background-repeat: no-repeat;
	margin-bottom: 30px;
}
.header .pagetitle {
	padding: 60px 0;
}
.header .pagetitle .title {
	margin-bottom: 20px;
}
.header .pagetitle .icon {
	width: 30px;
	margin-right: 5px;
}
.header .pagetitle h1 {
	display: inline-block;
	font-size: 34px;
	font-weight: bold;
	margin: auto;
	vertical-align: middle;
	background-image: linear-gradient(90deg, #fe6adf, #b38cfb);
	-webkit-background-clip: text;
	-webkit-text-fill-color: transparent;
}
.header .pagetitle .info {
	color: #333333;
	max-width: 700px;
}
.header .pagetitle .info a{
	color: #333333;
}
.header .pagetitle .info a:active{
	opacity: 0.6;
	text-decoration: none;
}
.header .header-pic {
	text-align: center;
}

.website-list .list {
	margin-bottom: 50px;
}
.website-list .list-title {
	padding: 10px 0;
	font-size: 1.2em;
	font-weight: bold;
	color: #000;
}
.website-list .item {
	display: block;
	color: #333333;
	text-decoration: none;
}
.website-list .item img {
	border-radius: 10px;
	border: 1px solid rgba(0, 0, 0, 0.1);
	transition: all 0.2s ease-in-out;
}
.website-list .item img:active {
	transform: scale(1);
	-webkit-filter: brightness(80%);
	filter: brightness(80%);
}
.website-list .item .name-box {
	font-size: 1.1em;
	padding: 8px 5px;
}
.website-list .item .name-box .name {
	overflow: hidden;
	text-overflow: ellipsis;
	white-space: nowrap;
}
.alert {
	margin-bottom: 0;
}
.alert a{
	color: #495057;
}
.alert a:active{
	opacity: 0.6;
	text-decoration: none;
}

.footer {
	color: #a3a3a3;
	/* border-top: 1px solid #e6e6e6; */
	padding: 40px 0;
	font-size: 0.9em;
}
.footer a {
	color: #a3a3a3;
}

@media (min-width: 768px) {
	.container-fluid {
		width: 96%;
	}
	.site-mainnav .container-fluid {
		max-width: 100%;
		width: 100%;
	}
	.header .pagetitle h1 {
		font-size: 40px;
	}
	.header .pagetitle .info {
		font-size: 1.1em;
	}
	.website-list .list-title {
		font-size: 1.6em;
	}
	.website-list .g-3, .website-list .gx-3 {
		--bs-gutter-x: 1.6rem;
	}
}
@media (min-width: 992px) {
	body {
		background-image: url(imgs/header-pic-pc.jpg);
		background-size: 140% auto;
		background-position: 60% top;
		background-repeat: no-repeat;
	}
	.site-mainnav .container-fluid {
		padding-left: 15px;
		padding-right: 15px;
	}
	.header {
		background: none;
		margin-bottom: 0;
	}
	.navbar-expand-lg .navbar-nav .nav-link {
		padding-left: 15px;
		padding-right: 15px;
	}
	.header .pagetitle .btn-primary:hover {
		background-color: #007ffd;
	}
}
@media (min-width: 1200px) {
	body {
		background-size: 1992px auto;
		background-position: 60% top;
		background-repeat: no-repeat;
	}
	.header .pagetitle {
		padding: 110px 0;
	}
	.header .pagetitle .icon {
		width: 40px;
		margin-right: 10px;
	}
	.header .pagetitle h1 {
		font-size: 50px;
	}
	.header .pagetitle .info {
		font-size: 1.2em;
	}
	.header .pagetitle .btn-primary {
		padding: 16px 16px;
		min-width: 250px;
	}
	.header .pagetitle .btn-light {
		padding: 16px 16px;
	}
	.website-list .list-title {
		font-size: 1.8em;
	}
	.website-list .item img {
		border-radius: 22px;
	}
	.website-list .item img:hover {
		transform: scale(1.03);
		box-shadow: 0px 8px 30px rgba(0, 0, 0, 0.15);
	}
}

/* 回弹效果 */
@keyframes bounce {
	0% {
		right: -10px;
	}
	50% {
		right: -20px;
		/* 略微回弹 */
	}
	100% {
		right: -10px;
	}
}