﻿/*#region 设置滚动条的样式*/
/*ie滚动条样式*/
* {
	-moz-box-sizing: border-box;
	-webkit-box-sizing: border-box;
	box-sizing: border-box;
	background: transparent;
	border: 0;
	margin: 0;
	padding: 0;
	-ms-scrollbar-face-color: #B4B4B4;
	scrollbar-face-color: #B4B4B4;
	-ms-scrollbar-3dlight-color: #B5CBF7;
	scrollbar-3dlight-color: #B5CBF7;
	-ms-scrollbar-darkshadow-color: #B5CBF7;
	scrollbar-darkshadow-color: #B5CBF7;
	-ms-scrollbar-base-color: #B5CBF7;
	scrollbar-base-color: #B5CBF7;
	-ms-scrollbar-shadow-color: #efeff4;
	scrollbar-shadow-color: #efeff4;
	-ms-scrollbar-highlight-color: #efeff4;
	scrollbar-highlight-color: #efeff4;
	-ms-scrollbar-track-color: #efeff4;
	scrollbar-track-color: #efeff4;
	-ms-scrollbar-arrow-color: #4A6184;
	scrollbar-arrow-color: #4A6184;
	-webkit-tap-highlight-color: rgba(0, 0, 0, 0);
	/*font-family: -apple-system,BlinkMacSystemFont,Segoe UI,PingFang SC,Hiragino Sans GB,Microsoft YaHei,Helvetica Neue,Helvetica,Arial,simsun,sans-serif;*/
	font-family: "Microsoft YaHei", "微软雅黑", "Helvetica Neue", Helvetica, "PingFang SC", "Hiragino Sans GB", Arial, sans-serif;
}

/*chrome滚动条样式*/
/*滚动条整体部分，其中的属性有width,height,background,border（就和一个块级元素一样）等。*/
::-webkit-scrollbar {
	width: 8px;
	height: 10px;
}

::-webkit-scrollbar-button {
	width: 0;
	height: 10px;
}

::-webkit-scrollbar-track-piece {
	/*内层轨道，滚动条中间部分（除去）。*/
	background: rgb(240, 240, 240);
}

::-webkit-scrollbar-thumb {
	-moz-border-radius: 5px;
	-webkit-border-radius: 5px;
	border-radius: 5px;
	/*滚动条里面可以拖动的那部分*/
	background: #dee1e6;
}

::-webkit-scrollbar-thumb:hover {
	/*滚动条里面可以拖动的那部分*/
	background: rgb(180, 180, 180);
}

::-webkit-scrollbar-corner {
	/*边角*/
	background: rgb(200, 200, 200);
}

::-webkit-scrollbar-resizer {
	/*定义右下角拖动块的样式*/
	background: rgb(200, 200, 200);
}

::-webkit-scrollbar-track {
	background: #eee;
	border: thin solid lightgray;
	-moz-box-shadow: 0 0 3px #dfdfdf inset;
	-webkit-box-shadow: 0 0 3px #dfdfdf inset;
	box-shadow: 0 0 3px #dfdfdf inset;
	-moz-border-radius: 10px;
	-webkit-border-radius: 10px;
	border-radius: 10px;
}

@font-face {
	font-family: "LCD";
	/* Project id 3390856 */
	src: url('/Content/fonts/LCD.ttf?t=1676510278277') format('truetype');
}

input:-webkit-autofill,
textarea:-webkit-autofill,
select:-webkit-autofill,
input:-webkit-autofill:hover,
input:-webkit-autofill:focus {
	background-color: #fff !important;
	-webkit-box-shadow: 0 0 0px 1000px white inset !important;
	-moz-box-shadow: 0 0 0px 1000px white inset !important;
	box-shadow: 0 0 0px 1000px white inset !important;
}

input:-internal-autofill-selected {
	background-color: transparent;
	box-shadow: none;
}

::-webkit-input-placeholder {
	/* WebKit browsers */
	color: #999 !important;
}

:-moz-placeholder {
	/* Mozilla Firefox 4 to 18 */
	color: #999 !important;
}

::-moz-placeholder {
	/* Mozilla Firefox 19+ */
	color: #999 !important;
}

:-ms-input-placeholder {
	/* Internet Explorer 10+ */
	color: #999 !important;
}

/*#endregion*/

/*#region reset*/

*:before,
*:after {
	-webkit-box-sizing: border-box;
	-moz-box-sizing: border-box;
	box-sizing: border-box;
}

html,
body {
	height: 100%;
	width: 100%;
	overflow: hidden;
	position: relative;
	background-color: #ffffff;
}

body {
	overflow: auto;
	color: #333333;
	-webkit-text-size-adjust: 100%;
	-moz-text-size-adjust: 100%;
	-ms-text-size-adjust: 100%;
	text-size-adjust: 100%;
	-webkit-tap-highlight-color: rgba(0, 0, 0, 0);
	line-height: 1.28571;
	font-size: 16px;
}

h1,
h2,
h3,
h4,
h5,
h6 {
	font-weight: normal;
}

ul {
	list-style: none;
}

blockquote {
	quotes: none;
}

blockquote:before,
blockquote:after {
	content: '';
	content: none;
}

del {
	text-decoration: line-through;
}

a {
	text-decoration: none;
	outline: 0px;
	color: #2fb3ff;
	cursor: pointer;
}

a:hover {
	text-decoration: none;
	color: #0071e6;
}

p {
	color: #333;
}

table {
	border-collapse: collapse;
	border-spacing: 0;
}

h1 a,
h2 a,
h3 a,
h4 a,
h5 a,
h6 a {
	font-weight: normal;
	line-height: 1em;
}

h1,
h1 a {
	font-size: 1.1875rem;
}

h2,
h2 a {
	font-size: 1.0625rem;
}

h3,
h3 a {
	font-size: 0.9375rem;
}

h4,
h4 a {
	font-size: 0.875rem;
}

h5,
h5 a {
	font-size: 0.8125rem;
}

h6,
h6 a {
	font-size: 0.75rem;
}

pre {
	white-space: pre-wrap;
	-ms-word-wrap: break-word;
	word-wrap: break-word;
}

input,
button,
textarea {
	-webkit-appearance: none;
	resize: none;
	outline: 0;
	-moz-border-radius: 0;
	-webkit-border-radius: 0;
	border-radius: 0;
	font-size: 13px;
}


input,
select {
	border: 0.0625rem solid #ced4da;
	background-color: #fff;
	height: 36px;
	width: 100%;
	padding: 0 0.625rem;
	border-radius: 3px;
}

select {
	height: 38px;
}

input:focus,
textarea:focus {
	border-color: #3D8CF7;
	box-shadow: 1px 1px 6px rgba(0, 0, 0, 0.15);
}

input[readonly],
textarea[readonly] {
	background-color: #e8e9e9;
}

input[readonly].leo-date {
	background-color: #ffffff;
}

input.etip {
	width: 40%;
	margin-left: 5px;
}

select {
	border: 0.0625rem solid #ced4da;
}

textarea {
	border: 0.0625rem solid #ced4da;
	background-color: #fff;
	padding: 0.3125rem;
	width: 100%;
	resize: auto;
}


input[type=checkbox],
input[type=radio] {
	width: 1rem;
	height: 1rem;
	padding: 0 !important;
	line-height: 1rem;
	border: none;
	font-family: "iconfont" !important;
	font-size: 0.875rem;
	font-style: normal;
	-webkit-font-smoothing: antialiased;
	-moz-osx-font-smoothing: grayscale;
	color: #ced4da;
}

input[type=radio] {
	font-size: 1rem;
}

input[type=checkbox]:before {
	content: "\e60f";
}

input[type=checkbox]:checked:before {
	content: "\e606";
	color: #0071e6;
}

input[type=radio]:before {
	content: "\e7bb";
}

input[type=radio]:checked:before {
	content: "\e888";
	color: #0071e6;
}


/*input:focus {
    border-color: #0071e6;
}*/

input[readonly]:focus,
textarea[readonly]:focus {
	border: 0.0625rem solid #ced4da;
}

fieldset {
	/* border: 0.0625rem solid #dee2e6;*/
	padding: 10px;
	border-radius: .25rem;
	/*解决width不生效的问题**/
	min-width: inherit !important;
}

fieldset legend {
	font-size: 14px;
	padding: 0 5px;
}

fieldset legend .font-weight-lighter {
	font-size: 12px;
	font-weight: normal;
}


fieldset.active legend {
	color: #28a745;
}

fieldset.over {
	opacity: 0.4;
}

/*#endregion*/

/*#region buton*/
.leo-btn-yellow,
.leo-btn-black,
.leo-btn-blue,
.leo-btn-gray,
.leo-btn-gray1 {
	padding: 0.25rem 0.8rem;
	line-height: 1.75rem;
	-moz-border-radius: 0.125rem;
	-webkit-border-radius: 0.125rem;
	border-radius: 0.125rem;
	border: solid 1px;
	text-align: center;
	-moz-transition-duration: 0.3s;
	-o-transition-duration: 0.3s;
	-webkit-transition-duration: 0.3s;
	transition-duration: 0.3s;
	-moz-transition-property: background;
	-o-transition-property: background;
	-webkit-transition-property: background;
	transition-property: background;
	font-size: 0.8rem;
	text-indent: 0px;
	cursor: pointer;
}

.leo-btn-black i,
.leo-btn-blue i,
.leo-btn-gray i {
	margin-right: 0.3125rem;
}

.leo-btn-yellow:active,
.leo-btn-blue:active,
.leo-btn-black:active,
.leo-btn-gray:active {
	color: #00647f;
	-moz-transition-duration: 0s;
	-o-transition-duration: 0s;
	-webkit-transition-duration: 0s;
	transition-duration: 0s;
	-webkit-text-shadow: 0 1px 0 rgba(255, 255, 255, 0.4);
	text-shadow: 0 1px 0 rgba(255, 255, 255, 0.4);
	-moz-box-shadow: 0 1px 3px rgba(0, 0, 0, 0.3) inset, 0 1px 0 #fff;
	-webkit-box-shadow: 0 1px 3px rgba(0, 0, 0, 0.3) inset, 0 1px 0 #fff;
	box-shadow: 0 1px 3px rgba(0, 0, 0, 0.3) inset, 0 1px 0 #fff;
}

.leo-btn-black {
	color: #ffffff;
	background: #494748;
	border: 1px solid #5A5859;
}

.leo-btn-gray {
	color: #000;
	background: #dee2e6;
	border-color: #dee2e6;
}

.leo-btn-gray1 {
	color: #2fb3ff;
	background-color: transparent;
	border-color: #2fb3ff;
}

.leo-btn-blue {
	color: #ffffff;
	background: #2fb3ff;
	border: 1px solid #2fb3ff;
}

.leo-btn-yellow {
	color: #ffffff;
	background: #fb660d;
	/*border-color: #fb660d;*/
	border: 1px solid #ff742f;
	background: -webkit-linear-gradient(right, #fc9857, #ffc736);
	/* Safari 5.1 - 6.0 */
	background: -o-linear-gradient(right, #fc9857, #ffc736);
	/* Opera 11.1 - 12.0 */
	background: -moz-linear-gradient(right, #fc9857, #ffc736);
	/* Firefox 3.6 - 15 */
	background: linear-gradient(to right, #fc9857, #ffc736);
	/* 标准的语法 */
}

.leo-btn-black:hover {
	background-color: #201F20;
	border-color: #201F20;
	text-decoration: none;
}

.leo-btn-gray:hover {
	color: #000;
	background-color: #D1D1D1;
	text-decoration: none;
}

.leo-btn-blue:hover {
	background-color: #15a0f1;
	color: #ffffff;
	text-decoration: none;
}

.leo-btn-gray1:hover {
	border-color: #2a6496;
}

.leo-btn-yellow:hover {
	background: #e25b0b;
	border-color: #e25b0b;
	color: #ffffff;
	text-decoration: none;
}

.leo-btn-black:active {
	background-color: #0A0909;
	border-color: #0A0909;
}

.leo-btn-gray:active {
	background-color: #CCCCCC;
	color: #000;
}

.leo-btn-blue:active {
	background-color: #0071e6;
	color: #ffffff;
}

.leo-btn-yellow:active {
	background: #e25b0b;
	color: #ffffff;
}

a.leo-btn-blue:visited {
	color: #fff;
	text-decoration: none;
}

.leo-btn-blue.disabled {
	background-color: #e6e3e3;
	color: #606060;
	border-color: transparent;
}

/*#endregion*/

/*#region page*/
.gw-pagination {}

.gw-pagination .total {
	font-weight: 400;
	color: #606266;
}

.gw-pagination select {
	padding: 5px 10px;
	border-radius: 4px;
	margin-right: 5px;
	width: auto;
}

.gw-pagination .inputgo {
	max-width: 50px;
	text-align: center;
}

.gw-pagination input.inputgo {
	height: auto;
	padding: 5px 10px;
	border-radius: 4px;
}

.gw-pagination .page span,
.gw-pagination .page a {
	margin: 0 5px;
	background-color: #f4f4f5;
	color: #606266;
	min-width: 30px;
	border-radius: 2px;
	padding: 0 4px;
	font-size: 13px;
	height: 28px;
	line-height: 28px;
	text-align: center;
	font-weight: bold;
}

.gw-pagination .page span.disabled {
	color: #c0c4cc;
	cursor: default;
}

.gw-pagination .page span.active {
	background-color: #409eff;
	color: #fff;
	cursor: default;
}

/*#endregion*/

.rem-w-3 {
	width: 3rem;
}

.rem-h-3 {
	height: 3rem;
}

.text-main {
	color: #0081de
}

.gw-container {
	width: 100%;
	margin: 0 auto;
}


.gw-logo img {
	margin-top: 10px;
	height: 50px;
}

.gw-nav a {
	color: #fff;
	font-size: 0.8rem;
	padding: 0.6rem 0.6rem;
}

.gw-nav a:hover span {
	color: #fff;
}

.gw-nav a span {
	padding-bottom: 4px;
}

.gw-nav a.select span {
	color: #fff;
	border-bottom: 3px solid #fff;
	font-weight: bold;
}

.gw-nav a.gobackground {
	background: linear-gradient(263deg, #FF540C 0%, #FFAF3C 100%);
	border-radius: 16px;
	font-size: 0.6rem;
	font-family: Microsoft YaHei;
	font-weight: 400;
	color: #FFFFFF;
	text-shadow: 0px 1px 4px rgba(255, 87, 14, 0.2100);
	padding: 0.4rem 1rem;
	margin-left: 1rem;
}

.gw-nav a.gobackground:hover {
	background: linear-gradient(263deg, #FF540C 0%, #d98a18 100%);
}

.gw-content {
	
}