/*
 * @Author: hm
 * @Date: 2018-12-12 09:51:43
 * @LastEditTime: 2025-07-30
 * @Description: Browser compatible with IE8 and above
 * @verson 3.0.1
 */

/*-- public css --*/
/* @media screen and (min-width:1601px){
	.wrap { width: 1390px; }
}
.resp02 .wrap { width: 1390px; } */
.border0 { border: none !important; }
/* 文字排列方向 */
.text-right { text-align: right !important; }
.text-left { text-align: left !important; }
.text-center { text-align: center !important; }

/* table */
table.deftable {
	width: 100%;
	border-bottom: 1px solid #eee;
	border-right: 1px solid #eee;
	text-align: left;
}
table.deftable th {
	background: #f5f5f5;
  line-height: 18px;
	border-top: 1px solid #eee;
	border-left: 1px solid #eee;
	padding: 8px 5px;
}
table.deftable td {
	border-top: 1px solid #eee;
	border-left: 1px solid #eee;
	padding: 8px 5px;
	line-height: 18px;
}
table.deftable td a { text-decoration: none; color: #288be4; }
table.deftable td a:hover { color: #fb4d42; }
table.deftable .datagrid-cell {
	display: inline-block;
	width: 100%;
}
/* titlebar */
.titlebar {
	width: 100%;
	float: left;
	border-bottom: 1px solid #eee;
}
.titlebar .item {
	display: inline-block;
	padding-bottom: 10px;
	color: #1a1a1a;
	border-bottom: 2px solid #288be4;
	margin-bottom: -1px;
}
/* warning */
.alert-warning {
	display: inline-block;
	float: left;
	width: 100%;
	padding: 10px;
	background: #fcf8e3;
	color: #8a6d3b;
}
/* info */
.alert-info {
	display: inline-block;
	float: left;
	width: 100%;
	padding: 10px;
	background: #fff7ed;
	color: #8a6d3b;
}
/* tabs */
.tabs {
	width: 100%;
	float: left;
	border-bottom: 1px solid #eee;
}
.tabs .item {
	float: left;
	display: inline-block;
	padding-bottom: 10px;
	margin-bottom: -1px;
	cursor: pointer;
	margin-right: 20px;
}
.tabs .item.active,
.tabs .item:hover {
	border-bottom: 2px solid #288be4;
	color: #1a1a1a;
}
.tabContent {
	float: left;
	width: 100%;
}
.tabContent .tabBox {
	display: none;
	float: left;
	width: 100%; 
}
.tabContent .tabBox.active { display: block; }

/* panel */
.panel-wrap {
	width: 100%;
	float: left;
	border-radius: 2px;
	border: 1px solid #e5e5e5;
}
.panel-wrap .panel-heading {
	width: 100%;
	float: left;
	background: #f5f5f5;
	padding: 0 10px;
	height: 32px;
	line-height: 32px;
}
.panel-wrap .panel-heading img { vertical-align: middle; }
.panel-wrap .panel-body {
	width: 100%;
	float: left;
	background: #ffffff;
	padding: 10px;
}
.panel-wrap .panel-body table {
	float: left;
	width: 100%;
}
.panel-wrap .panel-body table th { 
	text-align: left;
	height: 26px;
	padding: 0 5px;
}
.panel-wrap .panel-body table td { 
	padding: 0 5px;
	height: 30px; 
}
.panel-wrap .panel-body table tr:hover { background: #f5f5f5; }
/*-- !end / public css --*/

/*-- header --*/
.header {
	position: relative;
	width: 100%;
	background: #fff;
	height: 60px;
	border-bottom: 1px solid #efefef;
}
.header .container {
	width: 990px;
	margin: 0 auto;
}
.header .logo {
	margin-top: 12px;
	height: 36px;
	line-height: 36px;
	text-decoration: none;
	font-size: 18px;
	font-weight: bold;
	color: #2e2323;
}
.header .logo img {
	height: 82%;
	vertical-align: middle;
}
.header .nav {
	float: left;
	margin-left: 50px;
	height: 60px;
}
.header .nav li {
	position: relative;
	float: left;
	line-height: 60px;
	margin: 0 10px;
	min-width: 50px;
	text-align: center;
}
.header .nav li a {
	position: relative;
	display: inline-block;
	color: #333;
	text-decoration: none;
	font-size: 16px;
}
.header .nav li a:hover { text-decoration: none; }
.header .nav li a::before {
	content: '';
	display: block;
	width: 100%;
	height: 2px;
	background: #fb4d42;
	position: absolute;
	left: 0;
	bottom: 10px;
	-webkit-transition: width .3s ease;
	-ms-transition: width .3s ease;
	-o-transition: width .3s ease;
	-moz-transition: width .3s ease;
	transition: width .3s ease;
	-webkit-transition: -webkit-transform .3s ease;
	transition: -webkit-transform .3s ease;
	transition: transform .3s ease;
	transition: transform .3s ease, -webkit-transform .3s ease;
	-webkit-transform-origin: right top;
	-ms-transform-origin: right top;
	-o-transform-origin: right top;
	-moz-transform-origin: right top;
	transform-origin: right top;
	-webkit-transform: scale(0, 1);
	-ms-transform: scale(0, 1);
	-o-transform: scale(0, 1);
	-moz-transform: scale(0, 1);
	transform: scale(0, 1);
}
.header .nav li:hover a::before,
.header .nav li.focus a::before {
	-ms-transform-origin: left top;
	-o-transform-origin: left top;
	-moz-transform-origin: left top;
	-webkit-transform-origin: left top;
	transform-origin: left top;
	-webkit-transform: scale(1, 1);
	-ms-transform: scale(1, 1);
	-o-transform: scale(1, 1);
	-moz-transform: scale(1, 1);
	transform: scale(1, 1);
}
.header .nav li:hover a,
.header .nav li.focus a { color: #fb4d42; }
.header .login {
	display: inline-block;
	height: 30px;
	width: 85px;
	text-align: center;
	line-height: 28px;
	margin-top: 15px;
	color: #288be4;
	border-radius: 20px;
	border: 1px solid #288be4;
	text-decoration: none;
	transition: all 0.3s linear;
  -webkit-transition: all 0.3s linear;
  -moz-transition: all 0.3s linear;
  -o-transition: all 0.3s linear;
}
.header .login .icon01 { vertical-align: -4px; }
.header .login:hover {
	background: #288be4;
	color: #fff;
	text-decoration: none;
}
.header .login:hover .icon01 { background-position:-240px 0; }
.header .logged {
	position: relative;
	display: inline-block;
	padding-top: 10px;
	height: 52px;
	line-height: 38px;
	text-decoration: none;
}
.header .logged .userimg {
	display: inline-block;
	width: 30px;
	height: 30px;
	border-radius: 50%;
	overflow: hidden;
	vertical-align: middle;
	/* margin-right: 10px; */
	/* background: #dbdbdb; */
	background: #a2acb7;
	color: #fff;
	text-align: center;
	line-height: 28px;
	font-size: 16px;
	text-transform: uppercase;
	border: 1px solid #fff;
}
.header .logged .userimg img { width: 100%; }
.header .logged:hover .listb { display: inline-block; }
.header .logged .listb {
	position: absolute;
	display: none;
	top: 55px;
	right: -13px;
	background: #fff;
	padding: 15px 0px;
	border: 1px solid #efefef;
	border-radius: 2px;
	width: 100px;
	-webkit-box-shadow: 0 3px 8px 0px rgb(0 0 0 / 7%);
	box-shadow: 0 3px 8px 0px rgb(0 0 0 / 7%);
	line-height: 30px;
	z-index: 1;
}
.header .logged .listb li,
.header .logged .listb li a {
	width: 100%;
	display: inline-block;
}
.header .logged .listb li { padding: 0 20px; }
.header .logged .listb li:hover { background: #f8f8f8; }
.header .logged .listb li.pointer {
	position: absolute;
	top: -14px;
  right: 16px;
	background: url(../../images/ilib/pointer-t.png);
	height: 14px;
	width: 22px;
	padding: 0;
}
.header .notice {
	display: block;
	position: relative;
	float: right;
	width: 40px;
	height: 50px;
	line-height: 50px;
	margin-right: 10px;
	margin-top: 6px;
	text-align: center;
}
.header .notice .notice-count {
	position: absolute;
	top: 5px;
	left: 20px;
	min-width: 16px;
	height: 16px;
	line-height: 16px;
	padding: 0 4px;
	text-align: center;
	background-color: #fb4d42;
	border-radius: 8px;
	font-size: 12px;
	color: #FFF;
	z-index: 1;
}
.header .notice .iconfont { font-size: 20px; }
.header .notice-list {
	display: none;
	position: absolute;
	top: 48px;
	right: -54px;
	width: 366px;
	border: 1px solid #efefef;
	background: #fff;
	border-radius: 2px;
	-webkit-box-shadow: 0 3px 8px 0px rgb(0 0 0 / 7%);
	box-shadow: 0 3px 8px 0px rgb(0 0 0 / 7%);
	z-index: 1;
}
.header .notice-list .pointer {
	position: absolute;
	top: -14px;
  right: 62px;
	background: url(../../images/ilib/pointer-t.png);
	height: 14px;
	width: 22px;
	padding: 0;
}
.header .notice-list .bar {
	height: 38px;
	line-height: 38px;
	border-bottom: 1px solid #ededed;
	border-radius: 2px 2px 0 0;
	overflow: hidden;
}
.header .notice-list .box {
	background: #fff;
	height: 210px;
	overflow-y: auto;
}
.header .notice-list .item{
	position: relative;
	padding: 15px 15px 15px 70px;
	color: #999;
	background: #fff;
	border-bottom: 1px solid #ededed;
	line-height: 20px;
}
.header .notice-list .link {
	position: absolute;
	display: block;
	left: 15px;
	top: 15px;
	width: 40px;
	height: 40px;
	overflow: hidden;
}
.header .notice-list .link img { 
	max-width: 100%;
	max-height: 100%; 
}
.header .notice-list .details {
	text-align: left;
	overflow: hidden;
	height: 40px;
	line-height: 20px;
	color: #666;
}
.header .notice-list .show-all {
	height: 38px;
	line-height: 38px;
	background: #f8f8f8;
	display: block;
	border-radius: 0 0 2px 2px;
}
@media screen and (min-width:1280px){
	.header { height: 60px; }
	.header .container { width: 1210px; }
	.header .logo {
		margin-top: 12px;
		height: 36px;
		line-height: 36px;
	}
	.header .nav li { line-height: 60px; }
	.header .nav li a::before { bottom: 15px; }
	.header .login { margin-top: 15px; }
	.header .logged { padding-top: 10px; }
}
.resp01 .header { height: 60px; }
.resp01 .header .container { width: 1210px; }
.resp01 .header .logo {
	margin-top: 12px;
	height: 36px;
	line-height: 36px;
}
.resp01 .header .nav li { line-height: 60px; }
.resp01 .header .nav li a::before { bottom: 15px; }
.resp01	.header .login { margin-top: 15px; }
.resp01	.header .logged { padding-top: 10px; }
/* @media screen and (min-width:1601px){
	.header { height: 80px; }
	.header .container { width: 1550px; }
	.header .logo {
		margin-top: 18px;
		height: 42px;
		line-height: 42px;
	}
	.header .nav li { line-height: 80px; }
	.header .nav li a::before { bottom: 20px; }
	.header .login, .header .logged { margin-top: 25px; }
}
.resp02 .header { height: 80px; }
.resp02 .header .container { width: 1550px; }
.resp02 .header .logo {
	margin-top: 18px;
	height: 42px;
	line-height: 42px;
}
.resp02 .header .nav li { line-height: 80px; }
.resp02 .header .nav li a::before { bottom: 20px; }
.resp02	.header .login, .resp02	.header .logged { margin-top: 25px; } */
/*-- !end / header --*/

/*-- footer --*/
.footer {
	width:  100%;
	float: left;
	background: #333;
	padding: 20px 0;
}
.footer p {
	text-align: center;
	margin: 2px 0;
	color: #efefef;
}
/*-- !end / footer --*/

.ilibWrap {
	width: 100%;
	float: left;
	min-height: 790px;
	margin: 30px 0;
}
/*-- navWrap --*/
.ilibWrap .navWrap {
	width: 235px;
	float: left;
	min-height: 790px;
	background: url(../../images/ilib/nav.jpg);
	background-position: center bottom;
	-webkit-background-size: cover;
	-moz-background-size: cover;
	-o-background-size: cover;
	background-size: cover;
	border: 1px solid #eeeeee;
}
.ilibWrap .navWrap .userWrap {
	position: relative;
	float: left;
	padding-top: 30px;
	width: 100%;
}
.ilibWrap .navWrap .userWrap .iconfont{color: #999 !important;}
.ilibWrap .navWrap .userWrap .userimg {
	width: 90px;
	height: 90px;
	line-height: 80px;
	border: 4px solid #f5f5f5;
	/* background: #dbdbdb; */
	background: #a2acb7;
	color: #ffffff;
	font-size: 40px;
	text-align: center;
	text-transform: uppercase;
	border-radius: 50%;
	overflow: hidden;
	margin: 0 auto;
}
.ilibWrap .navWrap .userWrap .userimg img { width: 100%; }
.ilibWrap .navWrap .userWrap p {
	width: 100%;
	text-align: center;
	line-height: 40px;
}
.ilibWrap .navWrap .userWrap .setBtn {
	display: none;
	position: absolute;
	top: 20px;
	right: 20px;
	color: #999;
	width: 30px;
	height: 30px;
	text-align: center;
	line-height: 30px;
}
.ilibWrap .navWrap .userWrap .setBtn i { font-size: 18px; }
.ilibWrap .navWrap .userWrap:hover .setBtn { display: inline-block; }
.ilibWrap .navWrap .userWrap .setBtn:hover { color: #fb4d42; }
.ilibWrap .navWrap .userWrap ul {
	width: 100%;
	display: block;
}
.ilibWrap .navWrap .userWrap ul li.item {
	width: 50%;
	float: left;
	display: inline-block;
	background: rgba(255,255,255,0.7);
	filter: progid:DXImageTransform.Microsoft.gradient(startColorstr=#B2FFFFFF,endColorstr=#B2FFFFFF);
	border-right: 1px solid #ddd;
}
.ilibWrap .navWrap .userWrap ul li.item a {
	display: inline-block;
	width: 100%;
	text-align: center;
	padding: 20px 0;
	color: #999;
	font-size: 12px;
}
.ilibWrap .navWrap .userWrap ul li.item a i {
	font-size: 20px;
	color: #333;
}
.ilibWrap .navWrap .userWrap ul li.item:hover { background: #fff; }
.ilibWrap .navWrap .userWrap ul li.item:hover a { color: #666; }
.ilibWrap .navlist {
	width: 100%;
	float: left;
	margin-top: 20px;
	padding: 20px 0;
	min-height: 529px;
	background: rgba(255,255,255,0.7);
	filter: progid:DXImageTransform.Microsoft.gradient(startColorstr=#B2FFFFFF,endColorstr=#B2FFFFFF);
}
.ilibWrap .navlist li {
	width: 100%;
	float: left;
	border-left: 2px solid transparent;
	padding-left: 20px;
	line-height: 30px;
	margin-bottom: 5px;
}
.ilibWrap .navlist li a {
	display: inline-block;
	width: 100%;
}
.ilibWrap .navlist li .iconfont {
	color: #aaa;
	margin-right: 10px;
	vertical-align: middle;
}
.ilibWrap .navlist li.focus {
	border-left-color: #288be4;
  background: rgba(219,219,219,0.2);
  filter: progid:DXImageTransform.Microsoft.gradient(startColorstr=#33DBDBDB,endColorstr=#33DBDBDB);
}
.ilibWrap .navlist li:hover {
	background: rgba(219,219,219,0.2);
  filter: progid:DXImageTransform.Microsoft.gradient(startColorstr=#33DBDBDB,endColorstr=#33DBDBDB);
}
.ilibWrap .navlist li:hover a,
.ilibWrap .navlist li.focus a,
.ilibWrap .navlist li.focus .iconfont,
.ilibWrap .navlist li:hover .iconfont { color: #288be4; }
/*-- !end / navWrap --*/
/*-- container --*/
.ilibWrap .container { margin-left: 255px; }
.ilibWrap .container .con-layout {
	float: left;
	width: 100%;
	min-height: 790px;
	background: #fff;
	border: 1px solid #efefef; 
	padding: 20px;
}
.form-control {
	border: 1px solid #ddd;
	border-radius: 2px;
	height: 30px;
	padding: 0 10px;
	width: 250px;
	transition: all 0.3s linear;
	-webkit-transition: all 0.3s linear;
	-moz-transition: all 0.3s linear;
	-o-transition: all 0.3s linear;
}
.form-control:focus { border: 1px solid #aaa; }
.form-group {
	width: 100%;
	margin-bottom: 10px;
}
.form-group .control-label {
	display: inline-block;
	width: 14%;
	text-align: right;
}
.form-group .form-con {
	width: 80%;
	display: inline-block;
}
@media screen and (min-width:1280px){
	.form-group .control-label { width: 10%; }
}
.resp01 .form-group .control-label { width: 10%; }
/* @media screen and (min-width:1601px){ 
	.form-group .control-label { width: 10%; }
}
.resp02 .form-group .control-label { width: 10%; } */
/*-- !end / container --*/

/*-- 暂无数据 --*/
/*.emptyDiv {
	width: 100%;
	float: left;
	text-align: center;
	margin-top: 100px;
	color: #999;
}
.emptyDiv .img {
	width: 120px;
	display: inline-block;
}
.emptyDiv .img img { width: 100%; }*/
.emptyDiv {
	width: 100%;
	float: left;
	text-align: center;
	color: #999;
	height: 190px;
	background-image: url("../../images/ilib/empty.png");
	background-repeat: no-repeat;
	background-size: 120px;
	background-position: center;
}
.emptyDiv span{
	position: relative;
	top: 170px;
}
.emptyDivNoImg{
	width: 100%;
	float: left;
	text-align: center;
	color: #999;
}
/*-- !end / 暂无数据 --*/

/*-- 密码强度 --*/
.illb-form-mid {
	display: inline-block;
	color: #999;
}
.illb-form-mid .midti {
	background: #c4c4c4;
	color: #ffffff;
	padding: 0px 20px;
	text-align: center;
	margin-right: 3px;
	cursor: default;
}
.illb-form-mid.weak .fir { background: #f65952; }
.illb-form-mid.medium .fir, 
.illb-form-mid.medium .sec { background: #ff9e0c; }
.illb-form-mid.strong .fir, 
.illb-form-mid.strong .sec, 
.illb-form-mid.strong .thi { background: #5fb878; }
/*-- !end / 密码强度 --*/

/*-- 申请离校 --*/
.leavewrap {
	width: 100%;
	float: left;
	margin-top: 10px;
	margin-bottom: 10px;	
}
.leave-txt-wrap {
	width: 100%;
	float: left;
	margin-top: 30px;
	margin-bottom: 30px;	
	font-size: 18px;
	font-weight: 700;
}

.tipswrap-add {
	width: 100%;
	float: left;
	padding: 20px 20px 10px 20px;
	background: #fafafa;
	border: 1px dashed #f9d8d6;	
}
.tipswrap-add p { margin-bottom: 10px;}
.tipswrap-add button { 
	height: 26px; 
	line-height: 26px; 
}
/**积分当前位置**/
.jf_wz{
	max-width: 1100px;
	margin: 10px auto;
	font-size: 12px;
	height: 8px;
}
/*积分中心*/
.jf {
	width: 100%;
	max-width: 1100px;
	min-height: 790px;
	margin: 20px auto;
	background-color: #ffffff;
	top: 80px;
}

.jf>.container{
	display: flex;
	padding: 0.8em;
	flex-direction: column;
	width: 100%;
}
.inline-flex{
	display: inline-flex;
}
.jf_head_item{
	flex: 1;
	border-radius: 5px;
	margin: 5px; /* 可选：添加间距 */
	padding: 10px; /* 可选：添加内边距 */
	box-sizing: border-box; /* 确保边框和内边距包含在宽度内 */
	background: url(../../images/ilib/jfbg.jpg);
	background-size: cover;
}
/*积分统计数据样式*/
.jf_data{
	display: flex;
	flex-direction: column;
}
.jf_data span{
	font-size: 0.8em;opacity: 0.8;
}
.jf_data a{
	font-size: 24px;text-align: center;
}
.jf_data .iconfont{
	margin-right: 5px;
	font-size: 20px;
}

.jf .avatar img {
	width: 60px;
	height: 60px;
	object-fit: cover; /* 保持图片比例，不拉伸 */
}
.user-info {
	display: flex;
	align-items: center;
	/*gap: 15px;*/ /* 图片与文字之间的间距 */
}
.user-info .user-id{
	font-size: 12px;
	line-height: 16px;
}
/*圆头像*/
.avatar {
	border-radius: 50%;
	overflow: hidden;
}
.avatar .userimg{
	width: 60px;
	height: 60px;
	border-radius: 50%;
	overflow: hidden;
	background: #a2acb7;
	color: #F2F2F2;
	text-align: center;
	line-height: 56px;
	font-size: 2em;
	border: 2px solid #f2f2f2;
}
.center-head-title{
	display: inline-flex;
	height: 3em;
}
.jf-head-2{
	display: flex;
	justify-content: space-between; /* 文字和链接分别靠左和靠右 */
	align-items: center;
	padding: 30px 10px 10px 10px;
	border-bottom: 0.5px solid #ddd;
}
.jf-rank>div{
	flex: 1;
	padding: 10px;
}
.jf table.deftable {
	text-align: center;
}
.jfgoods{
	display: flex;
	flex-wrap: wrap;
	padding: 5px;
}
.jfgoods-item{
	flex: 0 0 calc((100% - 50px) / 5);
	margin-right: 10px;
	height: 260px;
	text-align: center;
	line-height: 30px;
	background-color: #f5f5f5;
	border-radius: 5px;
	margin-top: 10px;
}
.jfgoods-img{
	display: flex;
	justify-content: center;
	align-items: center;
	width: calc(100% - 20px);
	height: 160px;
	border-radius: 5px;
	background-color: #fff;
	margin: 10px;
}
.jfgoods-img img{
	height: 150px; max-width:170px ;
	object-fit: contain;
}
.flex-column{
	display: flex;
	flex-direction: column;
}
.jfgoods-text{
	display: flex;
	flex-direction: column;
	text-align: left;
	line-height: 1.5em;
	padding-left: 10px;
	padding-right: 10px;
}
.jfgoods-text span{
	display: -webkit-box;
	text-overflow: ellipsis;
	overflow: hidden;
	-webkit-box-orient: vertical;
	-webkit-line-clamp: 2;
	height: 3em;
}
.jfgoods-text em{
	position: relative;
	top: 5px;
}
.title_tag{
	font-size: 12px;
	color: grey;
	position: relative;
	top: 5px;
	left: 5px;
}
.jf .paginator{
	margin: 20px auto;
}