/* font */
* {
	font-size: 16px;
	font-family: "HarmonyOS Sans SC", Verdana, Arial,"华文细黑","STHeiti","Heiti SC","微软雅黑",
	    "Microsoft YaHei",SimHei,"Helvetica Neue","sans-serif";
}

/* layout*/
body {
	padding: 0;
	margin: 0;
	background-color: #fafafa;
	line-height: 1.618;
}
header {
	margin: 0 auto 32px auto;
	width: 1080px;
	padding-top: 16px;
}
footer {
	margin: 80px auto;
}

/* status bar*/
#statusbar {
	color: #fff;
	background-color: #199ED8;
	padding: 8px 16px;
	box-shadow: 0 1px 2px rgba(0, 0, 0, 0.04);
	display: flex;
	justify-content: space-between;
	align-items: center;
}
#statusbar .statusbar-right {
	display: flex;
	align-items: center;
}
#statusbar span {
	margin-left: 16px;
	font-size: 14px;
	font-weight: 400;
}
#statusbar a,
#statusbar a:link {
	text-decoration: none;
	cursor: pointer;
	color: #fff;
	opacity: 0.9;
	transition: all 0.2s ease;
	font-size: 14px;
	font-weight: 400;
}
#statusbar a:hover {
	opacity: 1;
}
#statusbar a:visited {
	color: #fff;
}
#statusbar a:active {
	font-weight: 500;
}
#statusbar .statusbar-left {
	display: flex;
	align-items: center;
	gap: 16px;
}
#statusbar .pinned {
	display: inline-block;
	cursor: default;
	position: relative;
}
#statusbar .pinned > a {
	color: #fff;
	opacity: 0.9;
}
#statusbar .pinned > a.curposit {
	opacity: 1;
	font-weight: 500;
}
#statusbar .todrop {
	z-index: 10;
	position: absolute;
	display: none;
	width: 160px;
	left: 0;
	top: 100%;
	background-color: #fff;
	border-radius: 8px;
	box-shadow: 0 4px 16px rgba(0, 0, 0, 0.08);
	overflow: hidden;
}
#statusbar .todrop a {
	color: #333;
	font-size: 14px;
	font-weight: 400;
	background-color: #fff;
	padding: 12px 16px;
	border-radius: 0;
	margin: 0;
	border-bottom: 0.5px solid #f0f0f0;
	display: block;
	opacity: 1;
}
#statusbar .todrop a:last-child {
	border-bottom: none;
}
#statusbar .todrop a:hover {
	background-color: #f8f8f8;
	color: #199ED8;
}
#statusbar .pinned:hover .todrop,
#statusbar .todrop:hover {
	display: block;
}


/* path navigation*/
header #dir_path a {
	display: inline-block;
	margin-right: 8px;
	color: #199ED8;
	font-weight: 500;
	font-size: 16px;
	text-decoration: none;
	letter-spacing: 0.2px;
}
header #dir_path {
	display: inline-block;
	margin-right: 8px;
	color: #199ED8;
	font-size: 16px;
	font-weight: 400;
	text-decoration: none;
}

/* form */
input, textarea, select, option {
	font-size: 14px;
	font-weight: 400;
}
.hint {
	font-size: 13px;
	color: #999;
	font-weight: 300;
}
label.required:after, 
.label.required:after {
	content: "*";
	color: #199ED8;
	font-weight: 500;
	margin-left: 2px;
}

/* placeholder*/
input::-webkit-input-placeholder,textarea::-webkit-input-placeholder { 
	color: #bbb;
	font-weight: 300;
}
input:-moz-placeholder,textarea::-moz-placeholder { 
    color: #bbb;
	font-weight: 300;
}
input::-moz-placeholder,textarea::-moz-placeholder { 
    color: #bbb;
	font-weight: 300;
}
input:-ms-input-placeholder,textarea::-ms-input-placeholder {
    color: #bbb;
	font-weight: 300;
}

/*input number */
    input::-webkit-outer-spin-button,
    input::-webkit-inner-spin-button {
        -webkit-appearance: none;
    }
    input[type="number"] {
        -webkit-appearance: textfield;
        -moz-appearance: textfield;
        appearance: textfield;
    }
/* button*/
input.go {
	display: block;
	margin: 0 auto;
	background-color: #199ED8;
	border: none;
	color: #fff;
	box-shadow: 0 2px 8px rgba(25, 158, 216, 0.15);
	padding: 8px 20px;
	border-radius: 8px;
	outline: none;
	font-size: 14px;
	font-weight: 500;
	letter-spacing: 0.3px;
	transition: all 0.2s ease;
	cursor: pointer;
}
input.go:hover {
	background-color: #1a8ec4;
	box-shadow: 0 4px 12px rgba(25, 158, 216, 0.25);
	transform: translateY(-1px);
}
input.go:disabled {
	opacity: 0.5;
	cursor: not-allowed;
	box-shadow: none;
}
input.go:active {
	transform: translateY(0);
	box-shadow: 0 1px 4px rgba(25, 158, 216, 0.2);
}

/* element link*/
a.elem_link{
	text-decoration: none;
	color: #333;
	transition: color 0.2s ease;
}
a.elem_link:hover{
	color: #199ED8;
}

/* color option*/
.color_option {
	display: none;
}
.color_option+label {
	display: inline-block;
	padding: 6px 14px;
	border: 0.5px solid #ddd;
	border-radius: 16px;
	color: #666;
	font-size: 13px;
	font-weight: 400;
	cursor: pointer;
	transition: all 0.2s ease;
	background-color: #fff;
}
.color_option+label:hover {
	border-color: #199ED8;
	color: #199ED8;
}
.color_option:checked+label {
	border-color: #199ED8;
	color: #fff;
	background-color: #199ED8;
	font-weight: 500;
	box-shadow: 0 2px 6px rgba(25, 158, 216, 0.15);
}

/* dropdown list*/
.ulist_holder {
	position: relative;
}
.ulist_drop_box {
	position: absolute;
	margin: 0;
	padding: 4px 0;
	display: none;
	background-color: #fff;
	border: 0.5px solid #e8e8e8;
	border-radius: 8px;
	box-shadow: 0 4px 16px rgba(0, 0, 0, 0.08);
	z-index: 15;
	width: 100%;
	max-height: 320px;
	overflow-y: auto;
}
.ulist_drop_box li{
	list-style-type: none;
	padding: 10px 16px;
	cursor: pointer;
	white-space: nowrap;
	overflow: hidden;
	text-overflow: ellipsis;
	font-size: 14px;
	font-weight: 400;
	color: #333;
	transition: background-color 0.15s ease;
}
.ulist_drop_box li:hover {
	background-color: #f5f5f5;
	color: #199ED8;
}

/* func button*/
.func_button_box {
	width: 800px;
	text-align: right;
	margin: 0 auto 24px auto;
	padding: 0;
}
.func_button {
	cursor: pointer;
	display: inline-block;
	text-decoration: none;
	margin-left: 12px;
	background-color: #199ED8;
	color: #ffffff;
	padding: 10px;
	height: 20px;
	width: 20px;
	border-radius: 8px;
	box-shadow: 0 2px 8px rgba(25, 158, 216, 0.15);
	transition: all 0.2s ease;
}
.func_button.primary {
	display: inline-flex;
	align-items: center;
	gap: 8px;
	padding: 10px 18px;
	height: auto;
	width: auto;
	border-radius: 999px;
	font-size: 14px;
	font-weight: 500;
}
.func_button:hover {
	background-color: #1a8ec4;
	box-shadow: 0 4px 12px rgba(25, 158, 216, 0.25);
	transform: translateY(-1px);
}
.func_button img {
	height: 100%;
	width: 100%;
	margin: 0;
	padding: 0;
	filter: brightness(0) invert(1);
}
.func_button.primary img {
	height: 16px;
	width: 16px;
}
.func_button.primary span {
	color: #fff;
	line-height: 1;
}
.func_button label {
	cursor: pointer;
	font-size: 14px;
	font-weight: 500;
}
.func_button:active {
	transform: translateY(0);
	box-shadow: 0 1px 4px rgba(25, 158, 216, 0.2);
}

/* head search box */
div.search_box {
	display: inline-block;
	text-align: left;
	border-radius: 20px;
	background-color: #fff;
	width: 280px;
	padding: 2px;
	box-shadow: 0 2px 8px rgba(25, 158, 216, 0.1);
	transition: all 0.2s ease;
}
input.search_input {
	margin: 0;
	width: 230px;
	padding: 8px 16px;
	height: auto;
	border: none;
	border-radius: 20px 0 0 20px;
	vertical-align: middle;
	background-color: transparent;
	font-size: 14px;
	font-weight: 400;
}
input.search_input:focus{
	outline: none;
}
input.search_submit, input.filter_submit {
	cursor: pointer;
	height: 20px;
	width: 20px;
	margin-left: 8px;
	vertical-align: middle;
	background-color: transparent;
	border: none;
	outline: none;
	filter: brightness(0) saturate(100%) invert(52%) sepia(84%) saturate(1284%) hue-rotate(169deg) brightness(94%) contrast(90%);
	opacity: 0.8;
	transition: all 0.2s ease;
}
input.search_submit:hover, input.filter_submit:hover {
	opacity: 1;
	transform: scale(1.1);
}

/* errormessage*/
#errormessage, #share_errormessage {
	color: #ff4d4f;
	text-align: center;
	font-size: 14px;
	font-weight: 400;
	padding: 8px 0;
	transition: all 0.2s ease;
}
#errormessage.success, #share_errormessage.success{
	color: #52c41a;
}

			
@media only screen and (max-width:1090px) {
	header,footer {width: unset; margin-left: 5px; margin-right: 5px;}
}
@media only screen and (max-width:810px) {
	.func_button_box {width: unset; margin-left: 5px; margin-right: 5px;}
/* 	header #main_menu .pinned {margin-right: 0.2em;} 
	header #main_menu .pinned>a {font-size: 1.4em;}
	header #main_menu .todrop a {font-size: 1em; width: 6em;} */
}
