@charset "utf-8";
* {
	margin: 0px;
	padding: 0px;
}
/*自定义下拉框 - 保持向后兼容*/
.mySelect input {
	float: left;
	height: 22px !important;
	border: 1px solid #ccc; 
	padding-top:0 !important;
	padding-left:3px !important;
	padding-bottom:0 !important;
	line-height:22px;
}
.mySelect {
	display: inline-block;
	_margin-left: 3px;
	position: relative;
	zoom:1;
	*display:inline;
}
.mySelect a {
	background-image: url(sheepselect.gif);
	background-repeat: no-repeat;
	background-position: left top;
	display: block;
	height: 24px;
	width: 34px;
	float: left;
}
.mySelect ul {
	display: block;
	background-color: #FFFFFF;
	position: absolute;
	overflow: auto;
	max-height:300px;
	z-index: 50;
	border-right-width: 1px;
	border-bottom-width: 1px;
	border-left-width: 1px;
	border-right-style: solid;
	border-bottom-style: solid;
	border-left-style: solid;
	border-right-color: #ccc;
	border-bottom-color: #ccc;
	border-left-color: #ccc;
}
.mySelect ul li {
	list-style-type: none;
	display: block;
	padding-top: 0px;
	font-weight: normal;
	background-image: none;
	padding-left: 5px;
	padding-bottom: 0px;
	min-height:21px;
	height:21px;
	_height:21px;
	line-height: 21px;
	background-color: #f5f5f5;
	overflow: hidden;
	cursor:pointer;
}
.mySelect ul li:hover {background-color:#e3e3e3;}

/* 标准化类名样式 - 与.mySelect保持兼容 */
.sheep-select {
	display: inline-block;
	_margin-left: 3px;
	position: relative;
	zoom:1;
	*display:inline;
}
.sheep-select-input {
	float: left;
	height: 22px !important;
	border: 1px solid #ccc; 
	padding-top:0 !important;
	padding-left:3px !important;
	padding-bottom:0 !important;
	line-height:22px;
}
.sheep-select-arrow {
	background-image: url(sheepselect.gif);
	background-repeat: no-repeat;
	background-position: left top;
	display: block;
	height: 24px;
	width: 34px;
	float: left;
}
.sheep-select-dropdown {
	display: block;
	background-color: #FFFFFF;
	position: absolute;
	overflow: auto;
	max-height:300px;
	z-index: 50;
	border-right-width: 1px;
	border-bottom-width: 1px;
	border-left-width: 1px;
	border-right-style: solid;
	border-bottom-style: solid;
	border-left-style: solid;
	border-right-color: #ccc;
	border-bottom-color: #ccc;
	border-left-color: #ccc;
}
.sheep-select-option {
	list-style-type: none;
	display: block;
	padding-top: 0px;
	font-weight: normal;
	background-image: none;
	padding-left: 5px;
	padding-bottom: 0px;
	min-height:21px;
	height:21px;
	_height:21px;
	line-height: 21px;
	background-color: #f5f5f5;
	overflow: hidden;
	cursor:pointer;
}
.sheep-select-option:hover {
	background-color:#e3e3e3;
}
/* ARIA选中状态样式 */
.sheep-select-option[aria-selected="true"] {
	background-color: #3366cc;
	color: #ffffff;
}

/* 加载指示器样式 */
.sheep-select-loading {
	position: absolute;
	right: 38px;
	top: 50%;
	transform: translateY(-50%);
	display: flex;
	align-items: center;
	gap: 5px;
	font-size: 12px;
	color: #999;
	pointer-events: none;
	z-index: 10;
}

/* 加载动画 */
.loading-spinner {
	display: inline-block;
	width: 14px;
	height: 14px;
	border: 2px solid #f3f3f3;
	border-top: 2px solid #3366cc;
	border-radius: 50%;
	animation: sheep-select-spin 0.8s linear infinite;
}

@keyframes sheep-select-spin {
	0% { transform: rotate(0deg); }
	100% { transform: rotate(360deg); }
}

.loading-text {
	white-space: nowrap;
}