/*
Theme Name: YllonZT Theme
Theme URI: https://lubanbox.com/YllonZT-theme/
Author: Yllon
Author URI: https://lubanbox.com
Description: Yllon ZT.
Version: 1.0
License: GNU General Public License v2 or later
License URI: https://www.gnu.org/licenses/gpl-2.0.html
Text Domain: YllonZT-theme
*/

html,body{
	padding:0;
	margin:0;
}

a{
	text-decoration: none;
	color:#333;
}

/* 定义滚动条整体宽度 */
::-webkit-scrollbar {
  width: 2px; /* 垂直滚动条宽度 */
  height: 2px; /* 水平滚动条高度 */
}

/* 滚动条轨道样式 */
::-webkit-scrollbar-track {
  background: #f1f1f1; /* 轨道背景色 */
  border-radius: 1px; /* 轨道圆角 */
}

/* 滚动条滑块样式 */
::-webkit-scrollbar-thumb {
  background: #888; /* 滑块背景色 */
  border-radius: 1px; /* 滑块圆角 */
}

/* 滑块 hover 状态 */
::-webkit-scrollbar-thumb:hover {
  background: #555; /* hover 时滑块颜色 */
}

/* 滚动条角落（垂直+水平滚动条交汇处） */
::-webkit-scrollbar-corner {
  background: #f1f1f1;
}

/* 头部样式 */
.site-header {
	background: #fff;
	box-shadow: 0 2px 10px rgba(0,0,0,0.1);
	/*     position: relative;
	z-index: 1000; */
}

.header-container {
	max-width: 1200px;
	margin: 0 auto;
	padding: 0 20px;
	display: flex;
	align-items: center;
	justify-content: space-between;
	flex-wrap: wrap;
}

/* 网站品牌样式 */
.site-branding {
	display: flex;
	align-items: center;
	padding: 15px 0;
}

.site-title-area {
	margin-left: 15px;
}

.site-title {
	margin: 0;
	font-size: 1.8em;
	font-weight: 700;
}

.site-title a {
	text-decoration: none;
	color: #333;
}

/* 主导航菜单样式 */
.main-navigation {
	flex: 1;
	margin: 0 30px;
}

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

.primary-menu .menu-item {
	position: relative;
}

.primary-menu .menu-item a {
	display: block;
	padding: 15px 20px;
	text-decoration: none;
	color: #333;
	font-weight: 500;
	transition: all 0.3s ease;
	border-bottom: 3px solid transparent;
}

.primary-menu .menu-item a:hover{
	color: #2271b1;
	background: #f8f9fa;
}

.primary-menu .menu-item.current-menu-item a {
	color: #2271b1;
	border-bottom-color: #2271b1;
	background: #f8f9fa;
}

/* 搜索框样式 */
.header-search {
	margin-left: auto;
}

.searchform {
	display: flex;
	gap:5px;
}

.searchform div {
	display: flex;
	/* 	gap:5px; */
}

.searchform input[type="text"] {
	padding: 8px 12px;
	border: 1px solid #ddd;
	border-right: none;
	border-radius: 3px 0 0 3px;
}

.searchform input[type="submit"] {
	padding: 8px 15px;
	background: #2271b1;
	color: white;
	border: none;
	border-radius: 0 3px 3px 0;
	cursor: pointer;
}

.searchform input[type="submit"]:hover {
	background: #135e96;
}

.site-footer{
	background: #fff;
	background: #f8f9fa;
	/* 	box-shadow: 0 2px 10px rgba(0,0,0,0.1); */
}

.footer-container {
	max-width: 1200px;
	margin: 0 auto;
	padding: 50px 20px;
	display: flex;
	align-items: center;
	justify-content: center;
	flex-wrap: wrap;
	gap:10px;
}


.site-container{
	max-width: 1000px;
	margin: 0 auto;
	padding: 50px 20px;
	display: flex;
	align-items: center;
	justify-content: center;
	flex-wrap: wrap;
	gap:10px;
}




















