body {
	font-family: 'Open Sans', sans-serif;
}
/* 隐藏滚动条 */
::-webkit-scrollbar {
	width: 0;
	/* 或者设置为不显示的宽度 */
	height: 0;
	/* 水平滚动条 */
}


input,
textarea {
	font-size: 0.8rem;
	border: 1px solid #ddd;
	background: #fff;
	padding: 0.5rem 0.7rem;
	margin: 5px 0;
	transition: all 0.3s ease-in-out;
	width: 100%;

}

input:focus,
textarea:focus {
	border-color: #777;
	outline: none;
}


.item-container {
	width: 90%;
	display: flex;
	flex-wrap: wrap;
	/* 让内容自动换行 */
	justify-content: space-between;
	/* 让两列均匀分布 */
	margin: 0 auto;
	/* 居中对齐 */
	margin-bottom: 30px;
}


.index-item {
	width: 48%;
	border-radius: 10px;
	box-shadow: 0 8px 16px rgba(0, 0, 0, 0.2);
	margin: 10px 0;
}


.inner-content {
	font-size: 20px;
	line-height: 2;
	margin-bottom: 60px;
}

.inner-content a {
	color: #333;
	text-decoration: none;
	border-bottom: 1px solid #bbb;
}

.inner-content a:hover {
	color: #000;
	text-decoration: none;
	border-bottom: 1px solid #555;
}

.inner-content img {
	border-radius: 10px;
	width: 100%;
	box-shadow: 0 12px 24px rgba(0, 0, 0, 0.3);
}

.content-container {
	width: 80%;
	margin: 0 auto;
}


h1,
h2,
h3 {
	font-family: 'Crimson Text', sans-serif;
	letter-spacing: 1px;
	font-weight: bold;
	margin-bottom: 20px;
	text-shadow: 0 6px 12px rgba(0, 0, 0, 0.15);
}

.post-title h1 {
	font-size: 36px;
	font-weight: bold;
}

.navbar-container {
	width: 100%;
	position: fixed;
	top: 0;
	z-index: 1000;
	background-color: rgba(255, 255, 255, 0.5);
	border-bottom: 2px solid #595959;
	padding: 15px 0;
}

.navbar {
	width: 90%;
	margin: 0 auto;
	align-self: center;
	display: flex;
	justify-content: space-between;
	align-items: center;
}

.navbar-brand {
	font-size: 1.5rem;
	font-weight: bold;
	text-decoration: none;
	color: #333;
	transition: color 0.3s ease-in-out;
}

.navbar-brand:hover {
	color: #007bff;
}

.navbar-menu {
	list-style: none;
	display: flex;
	margin: 0;
	padding: 0;
}


.nav-item {
	margin-left: 20px;
}

.nav-link {
	text-decoration: none;
	color: #333;
	font-size: 1.1rem;
	font-weight: bold;
	padding: 8px 8px;
	border-radius: 5px;
	transition: color 0.3s ease-in-out;
}

.nav-link:hover {
	color: #005cdd;
	background-color: rgba(155, 203, 255, 0.5);
}

.index-img {
	width: 100%;
	height: 200px;
	object-fit: cover;
}

.project-img {
	display: block;
	margin: 0 auto;
	width: 70%;
	max-height: 90vh;
	object-fit: cover;
	border-radius: 10px;
}

.img-container,.video-container {
	width: 100%;
}

.page-img {
	margin-top: 60px;
	width: 100%;
	height: 50vh;
	border-radius: 10px;
	object-fit: cover;
}

.main-video {
	width: 100%;
	height: 85vh;
	border-radius: 10px;
	object-fit: cover;
}


.info-text {
	text-align: center;
	font-size: 1.2rem;
	margin: 20px 0;
	color: #333;
}

.info-text p {
	margin: 0;
	font-weight: bold;
}


/* Image Hover Effect */

.hovereffect {
	width: 100%;
	height: 100%;
	float: left;
	overflow: hidden;
	position: relative;
	text-align: center;
	border-radius: 10px;
}

.hovereffect .overlay {
	width: 100%;
	height: 100%;
	position: absolute;
	overflow: hidden;
	top: 0;
	left: 0;
}

.hovereffect .overlay-text {
	font-size: 26px;
	font-weight: bold;
	font-family: 'Crimson Text', sans-serif;
	color: rgb(255, 90, 90);
	left: 50%;
	position: absolute;
	top: 50%;
	width: 100%;
	transform: translate(-50%, -50%);
	opacity: 0;
	filter: alpha(opacity=0);
	transition: opacity 0.35s, transform 0.35s;
}

.hovereffect:hover .overlay-text {
	opacity: 1;
	filter: alpha(opacity=100);
}

.hovereffect img {
	display: block;
	position: relative;
	max-width: none;
	width: 100%;
	height: 100%;
	transition: opacity 0.35s, transform 0.35s;
	backface-visibility: hidden;
}

.hovereffect:hover img {
	opacity: 0.3;
	filter: alpha(opacity=30);
	transform: scale(1.1);
}


.page-nav {
	width: 50%;
	margin: 0 auto;
	text-align: center;
}

.page-nav a,
span {
	font-size: 1.3rem;
	font-weight: 300;
	margin: 0 10px;
	color: #000;
}