/* Write your custom CSS here */
body {
	background-color: #F1F2F3;
}

/* 公共样式 */

.float-right {
	float: right;
}


/* 公共样式结束 */
.header {
	width: 100%;
	min-width: 800px;
	/* height: 360px; */
	position: relative;
	z-index: 1;

	background: url("/static/img/top-background.jpg");
	background-size: 3000px auto;
	background-position: center;
	background-position-x: center;
	background-position-y: center;
	background-repeat: no-repeat;
	padding-bottom: 50px;

	/* 确保内容在伪元素之上 */
}

.header::before {
	content: "";
	position: absolute;
	top: 0;
	right: 0;
	bottom: 0;
	left: 0;
	background: #2E60F222;
	z-index: -1;
	/* 确保伪元素在内容之下 */
}

.logo {
	text-align: center;
}

.logo img {
	margin: 30px 0;
	width: 35%;
	max-width: 600px;
	/* height: 118px; */
}



.main {
	/* background: #000; */
	
	width: 45%;
	height: 60px;
	margin: 0 auto;
	display: flex;
	/* align-items: center; */
}

/* 提单号查询 */


.main .input {
	width: 100%;
	margin: 0 20px;
	position: relative;
}
.main .input input{
	height: 48px;
}
::-webkit-input-placeholder {
	font-size: 16px;
	font-weight: bolder;
	/* padding-left: 20px; */
	letter-spacing: 0.2em;
}



.main button {
	width: 8em;
	height: 48px;
	background: #fff;
	color: #2E60F2;
	font-size: 1.5em;
	font-weight: 600;
}

.x{
	position: absolute;
	top: 12px;
	right: 20px;
}

@media (min-width: 1200px) {
	.Xiaomeng-containre {
		max-width: 90%
	}
}

.desc {
	margin: 50px 0 20px 0;
	color: #000;
	font-size: 16px
}

.card-title {
	position: relative;
	/* 必要的定位，以便伪元素可以相对于此元素定位 */
	padding-left: 20px;
	left: -24px;
	font-size: 20px !important;
	font-weight: 600;
}

.card-title::before {
	content: '';
	position: absolute;
	top: -13px;
	left: 0;
	width: 6px;
	height: 50px;
	background-color: #2E60F2;
}

/* 为空的图标 */
.empty {
	margin: 0 auto;
	display: flex;
	flex-direction: column;
	align-items: center;
}


.footer {
	background: #313030;
	height: 111px;
	color: #fff;
	display: flex;
	align-items: center;
	justify-content: center;
}

h6 span {
	background: #EB5D75;
	color: #fff;
	padding: 0px 5px;
	border-radius: 50%;
}













/* 设置表格整体宽度和边框 */
table {
	width: 100%;
	border-collapse: collapse;
	/* 合并相邻边框 */
	margin-bottom: 20px;
	/* 与其他内容保持间距 */
}

/* 设置表头单元格样式 */
thead th {
	background-color: #f2f2f2;
	color: #333;
	padding: 10px;
	text-align: left;
	/* border-bottom: 2px solid #ddd; */
}

/* 设置表格主体单元格样式 */
tbody td {
	padding: 10px;
	border-bottom: 1px solid #ddd;
}

/* 设置鼠标悬停效果 */
tbody tr:hover {
	background-color: #f9f9f9;
	/* 鼠标悬停时的背景色 */
}

/* 可选：设置条纹效果 */
tbody tr:nth-child(even) {
	background-color: #f5f5f5;
	/* 偶数行的背景色 */
}