@charset "utf-8";
/* CSS Document */



/*  ***--背景-颜色--***  */
.bg-f {
	position: relative;
	background-color: #ffffff;
}

.login_bg {
	display: flex;
	display: -webkit-box;
	display: -webkit-flex;
	display: -moz-box;
	display: -moz-flex;
	display: -ms-flexbox;
	align-content: center;
	-webkit-align-content: center;
	background: url("../images/bg1.jpg") center bottom no-repeat;
	background-size: cover;
/*	background: url("../../4.jpg") center bottom 58px no-repeat;*/
/*	background-size: cover;*/
}

/*  ***--框架--***  */
html, body {
	display: block;
	position: relative;
	min-width: 100vw;
	min-height: 100vh;
/*	overflow: hidden;*/
}
.box {
	position: relative;
	min-width: 100vw;
	min-height: 100vh;
	padding-bottom: 60px;
}

.content {
	margin-left: auto;
	margin-right: auto;
	padding-left: 15px;
	padding-right: 15px;
	padding-top: 50px;
	padding-bottom: 50px;
}
@media (min-width: 768px) {
  .content {
    width: 750px;
  }
}
@media (min-width: 992px) {
  .content {
    width: 970px;
  }
}
@media (min-width: 1200px) {
  .content {
    width: 1170px;
  }
}



/*  ***--框架--***  */
.system_box {
	position: relative;
	width: 100vw;
	height: 100vh;
	overflow: auto;
}
.system_box::-webkit-scrollbar-button { display: none;}
.system_box::-webkit-scrollbar { width: 6px; height: 6px; border-radius: 10px; background-color: rgba(0,0,0,0.1);}
.system_box::-webkit-scrollbar-thumb { border-radius: 2px; background-color: #282f3b;}

.system_cont {
	position: relative;
	min-width: 1200px;
	max-width: 100%;
	min-height: 100%;
	padding-top: 60px;
	padding-left: 200px;
}

/*头部*/
.system_nav {
	position: absolute;
	top: 0;
	left: 0;
	right: 0;
	width: 100%;
	height: 60px;
	background-color: #13a0e0;
	overflow: hidden;
	z-index: 6;
}

.nav_logo {
	padding: 10px 15px;
}
.nav_logo > img {
	display: block;
	width: auto;
	height: 40px;
}

.nav_cont {
}

.nav_menu_c {
	display: flex;
	align-items: center;
	padding: 0 4px;
}
.nav_menu_c > li {}
.nav_menu_c > li + li {
	padding: 2px 10px;
}
.nav_menu_c > li .nav_link {
	width: auto;
	height: 36px;
	line-height: 36px;
	padding: 0 15px;
	color: #ffffff;
	font-size: 13px;
	border-radius: 4px;
}
.nav_menu_c > li .nav_link:hover {
	background-color: #0492d4;
}

.nav_item_link {
	position: relative;
	margin: auto 6px;
	padding: 10px;
}
.nav_item_link > img {
	display: block;
	width: auto;
	height: 22px;
}
.nav_item_link .nav_item_prompt {
	position: absolute;
	top: 2px;
	right: 2px;
	width: 1.7em;
	height: 1.7em;
	line-height: 1.7em;
	color: #ffffff;
	font-size: 11px;
	text-align: center;
	border-radius: 100%;
	background-color: #ff6767;
	overflow: hidden;
}

.nav_user {
	display: flex;
	align-items: center;
	padding: 10px 4px;
}
.nav_user > li {
	position: relative;
	padding: 0 15px;
}
.nav_user > li + li::before {
	content: '\a0';
	display: block;
	position: absolute;
	top: 50%;
	left: -1px;
	width: 2px;
	height: 1em;
	background-color: rgba(255,255,255,0.4);
	transform: translate(0, -50%);
}
.nav_user > li > a {
	display: flex;
	align-items: center;
	color: #ffffff;
	font-size: 14px;
	cursor: pointer;
}
.nav_user > li > a > img {
	display: inline-block;
	width: 14px;
	margin-right: 6px;
}
.nav_user > li > a > span {
}


/*侧边栏*/
.system_side {
	position: absolute;
	top: 0;
	left: 0;
	width: 200px;
	padding-top: 60px;
	height: 100%;
	font-size: 12px;
	background-color: #282f3b;
	overflow-x: hidden;
	overflow-y: auto;
	z-index: 5;
}
.system_side::-webkit-scrollbar-button { display: none;}
.system_side::-webkit-scrollbar { width: 3px; border-radius: 10px; background-color: rgba(255,255,255,0.1);}
.system_side::-webkit-scrollbar-thumb { border-radius: 10px; background-color: #aaaaaa;}

.side_menu {
	width: 100%;
	padding: 10px 0;
}
.side_menu > li {
}
.side_menu > li > .side_link {
	display: flex;
	align-items: center;
	width: 100%;
	height: 42px;
	line-height: 42px;
	padding: 0 40px 0 15px;
	color: #ffffff;
	font-size: 12px;
	background: url("../images/side_link_i1.png") right 14px center no-repeat;
	background-size: 12px;
	cursor: pointer;
}
.side_menu > li > .side_link.on {
	border-top: 1px solid rgba(255,255,255,0.04);
	background: url("../images/side_link_i2.png") right 14px center no-repeat;
	background-size: 12px;
}
.side_menu > li > .side_link > img {
	display: inline-block;
	flex: none;
	width: 16px;
	height: 16px;
	margin-right: 10px;
}
.side_menu > li > .side_link > p {
	width: 100%;
}
.side_menu > li > .side_link.on + .side_menu {
	display: block;
}
.side_menu > li > .side_menu {
	display: none;
	padding-top: 0;
	padding-right: 0;
	border-top: 1px solid rgba(255,255,255,0.04);
}
.side_menu > li .side_link:hover, .side_menu > li .side_link.on {
	background-color: #1c2027;
}
.side_menu > li .side_link.on + .side_menu {
	padding: 0 10px 5px 10px;
	background-color: #22272f;
}
.side_menu > li .side_link.on + .side_menu > li > .side_link {
	padding: 0 0 0 31px;
	background: none;
}
.side_menu > li .side_link.on + .side_menu > li > .side_link:hover, .side_menu > li .side_link.on + .side_menu > li > .side_link.on {
	background-color: #313844;
}



/*  ***--登录--***  */
.login_case {
	width: 320px;
	margin-right: 0;
	text-align: center;
}
.login_case > h1 {
	margin-bottom: 25px;
	color: #ffffff;
	letter-spacing: 0.4em;
	text-indent: 0.4em;
	font-size: 24px;
}

.login_case_shadow {
	padding: 40px 20px 20px;
	text-align: left;
	border-radius: 8px;
	background-color: #ffffff;
	box-shadow: 0 0 15px rgba(0,0,0,0.5);
}
.login_title {
	margin-bottom: 30px;
	color: #555555;
	font-size: 22px;
	font-weight: bold;
	text-align: center;
	letter-spacing: 0.2em;
	text-indent: 0.2em;
}
.login_img {
	margin-bottom: 30px;
}
.login_inp_c {
	display: flex;
    align-items: center;
    margin-bottom: 18px;
	padding: 4px 10px 4px 12px;
    border: 1px solid #d2d6de;
    border-radius: 5px;
    overflow: hidden;
}
.login_inp_ico {
	display: inline-block;
	flex: none;
	width: 15px;
	height: 15px;
	line-height: 0;
	margin-right: 12px;
}

.login_inp_tex {
	width: 100%;
	height: 34px;
	border: none;
}
.login_pick_c {
	display: flex;
	margin-bottom: 24px;
}
.pass_che {
	display: flex;
    align-items: center;
    width: auto;
    margin: auto auto auto 0;
    color: #888888;
    font-size: 12px;
    line-height: 18px;
    font-weight: normal;
    user-select: none;
    cursor: pointer;
}
.pass_che input[type="checkbox"] {
	width: 14px;
	height: 14px;
	margin: auto 6px auto 0;
}
.login_btn {
	display: block;
	width: 100%;
	height: 44px;
	color: #ffffff;
	font-size: 15px;
	outline: none;
	border: none;
	border-radius: 5px;
	background-image: -webkit-linear-gradient(#ccc744, #519641);
	background-image: -o-linear-gradient(#ccc744, #519641);
	background-image: linear-gradient(#ccc744, #519641);}

.login_btn:hover {
	background-image: -webkit-linear-gradient(#ccc631, #3f7d30);
	background-image: -o-linear-gradient(#ccc631, #3f7d30);
	background-image: linear-gradient(#ccc631, #3f7d30);
}
.login_btn:active {
	background-image: -webkit-linear-gradient(#ccc744, #519641);
	background-image: -o-linear-gradient(#ccc744, #519641);
	background-image: linear-gradient(#ccc744, #519641);
}
.login_mark {
	margin-top: 22px;
	margin-bottom: 8px;
	color: rgba(0,0,0,0.15);
	text-align: center;
	font-size: 15px;
	user-select: none;
}


.login_end {
    position: fixed;
    left: 0;
    right: 0;
    bottom: 0;
    width: 100%;
    padding: 20px;
    color: rgba(255,255,255,0.55);
    font-size: 14px;
    letter-spacing: 0.08em;
    text-align: center;
    background-color: #363c4b;
	z-index: 2;
}


