@import "header.css";
@import "floot.css";
@import "suspension.css";

body,html {margin: 0rem;padding: 0rem;text-align: center;}
/*=========reset css===========*/
*,
*::before,
*::after{
/*所有标签和伪元素都选中*/
margin: 0;
padding: 0;
/*防止内容溢出*/
box-sizing: border-box;
-webkit-box-sizing: border-box;
/*点击高亮效果取消*/
tap-highlight-color: transparent;
-webkit-tap-highlight-color: transparent;
}
body{font-family: "microsoft yahei",sans-serif;color: #333;background: #f7faff;width: 100vw;overflow-x: hidden;}
input,textarea{border: none;outline: none;/*不允许改变尺寸*/resize: none;/*清除浏览器自带样式*/-webkit-appearance: none;}
a{ text-decoration: none;color: #3280fc; }
ul li{list-style-type:none;}

.flex-between-center{
	display: flex;
	justify-content: space-between;
	align-items: center;
}

.flex-left-center{
	display: flex;
	justify-content: flex-start;
	align-items: center;
	flex-wrap: wrap;
}



.box{
	position: fixed;
	top: 0;
	left: 0;
    width: 100%;
    background: #fff;
    z-index: 9;
    box-shadow: 0 3px 4px rgb(0 0 0 / 3%);
    border-color: rgb(243 244 246, 1);
}




.nav>li>a{
	padding: 0px 15px !important;
}

/**
 * 导航栏 end
 */

/**
 * 内容 strat
 */
.body{
	width: 100vw;
}
.content-box{
	padding: 18px 0px;
}
.body-box{
    width: 1200px;
    margin: auto;
}
.separator{
	width: 30px;
	height: 5px;
	background-color: #418bf7;
	margin: 15px 0;
}
/**
 * 内容 end
 */



/**
 * 输入框
 */
.ngs-control{
	margin-bottom: 20px;
}
.ngs-dis{
	display: flex;
	justify-content: space-between;
	align-items: center;
}
.ngs-form-control{
	position: relative;
	height: 44px;
	margin-bottom: 20px;
}
.ngs-input-prefix{
	position: absolute;
	z-index: 2;
	height: 44px;
}
.ngs-input-prefix>i{
	font-size: 18px;
	line-height: 44px;
	margin-left: 12px;
	color: #999;
}
.ngs-input{
	border: 1px solid #dcdfe6;
	font-size: 14px;
	padding-left: 15px;
	border-radius: 4px;
	height: 100%;
	width: 100%;
}
.ngs-input-suffix{
	width: 120px;
	color: #999;
	position: absolute;
	right: -130px;
	height: 44px;
	line-height: 44px;
	text-align: left;
}

.ngs-input:hover{
	border: 1px solid #cacaca;
}

.ngs-input:focus{
	border: 1px solid #418bf7;
	transition: all 0.5s;
}

.ngs-input-icon{
	padding-left: 40px;
}

.ngs-input-search-btn{
	height: 30px;
	line-height: 30px;
	padding: 0 30px;
	position: absolute;
	top: 7px;
	right: 7px;
	background-color: #0076fe;
	color: #fff;
	border-radius: 8px;
	cursor: pointer;
}


/**
 * 输入框
 */

/**
 * 按钮
 */
.ngs-button-link{
	font-size: 14px;
	color: #0076fe;
	cursor: pointer;
}
.ngs-button{
	width: 100%;
	height: 40px;
	background-color: #0076fe;
	color: #fff;
	font-size: 14px;
	border-radius: 6px;
}
.ngs-button:hover{
	background-color: #0485fd;
	transition: all 0.3s;
}
.ngs-button-disabled{
	background-color: #999 !important;
}
/**
 * 按钮
 */

/**
 * 标签页 start
 */
.nav-tabs>li>a{
	padding: 10px 20px !important;
}
.nav-tabs>.active>a{
	background-color: #418bf7 !important;
	color: #fff !important;
}
.tab-content>.tab-pane{
	padding: 20px 0 !important;
}
/**
 * 标签页 end
 */

/**
 * 商品卡片
 */
#goods-box{
	display: flex;
	justify-content: left;
	flex-wrap: wrap;
	min-height: 400px;
}
/* 商品卡片 */
.card{
	text-align: left;
	background-color: #fff;
	border-radius: 12px;
	border:1px solid #e5e7eb;
	box-shadow: var(0 0 #0000, 0 0 #0000), var(0 0 #0000, 0 0 #0000), var(0 1px 2px 0 rgb(0 0 0 / 0.05)) !important;
}
.card>div{
	padding: 15px;
	cursor: pointer;
}
.card-heading{
	padding: 0 !important;
	margin-bottom: 10px !important;
	/* height: 36px; */
	white-space:unset !important;
	display: flex !important;
	justify-content: space-between !important;
	align-items: center !important;
}
.card-heading h3{
	font-weight: 400;
	color: #000;
	font-size: 16px;
	margin: 0;
	padding: 0;
}
.card-heading span{
	display: block;
	color: #096dd9;
	font-size: 14px !important;
}
.card-content{
	font-size: 14px !important;
	color: rgb(107,114,128) !important;
	margin-bottom: 15px !important;
	padding: 0 !important;
}
.card-floot{
	display: flex;
	justify-content: flex-start;
	align-items: flex-start;
	flex-wrap: wrap;
}
.card-floot>div{
	color: rgb(59,130,246);
	background-color: rgb(239,246,255);
	border-radius: 4px;
	padding: 4px 6px;
	font-size: 12px;
	margin-right: 8px;
	margin-bottom: 8px;
}

/* 商品卡片 ----- end */


/**
 * 空状态
 */
.empty{
	color: #999;
	width: 100%;
	display: flex;
	justify-content: center;
	align-items: center;
	flex-direction: column;
}

/**
* 卡片
*/
.ngs-card{
	background: #fff;
    box-shadow: 0 1px 2px #ebecec;
    overflow: visible;
    border-radius: 0;
}
.ngs-card-header{
	border-bottom: 1px dashed #ebecec;
    line-height: 32px;
    box-sizing: border-box;
	position: relative;
    background: #fff;
    font-size: 14px;
    font-weight: 400;
    color: #333;
    cursor: pointer;
    padding: 7px 30px 7px 30px;
	display: flex;
	justify-content: space-between;
}
.ngs-card-header>span{
	font-weight: 700;
}
.ngs-card-body{
	padding: 20px 30px;
}

/**
* 隐藏 与 显示
*/
.hide{
	display: none !important;
}
.show{
	display: block !important;
}
.modal-content{
	text-align: left !important;
}

/* 表格空状态 */
#table-null{
	text-align: center;
	height: 160px;
}
#table-null::before {
    content: "暂无数据";
	font-size: 16px;
	color: #333;
	position: relative;
    top: 50%;
    left: 50%;
	transform: translate(-50%, -50%);
    display: block;
    width: 80px;
    height: 100px;
}

/* 表格表头 */
.table>thead>tr>th{
    background-color: #f5f5f5;
    height: 40px;
    font-weight: 400;
}

.form-control.focus, .form-control:focus{
	border: 1px solid #0076fe;
	box-shadow: none;
	text-shadow: none;
}