* {
	list-style: none;
	margin: 0;
	padding: 0;
}

/* new head */
.new-header-bg {
	width: 100%;
	background-color: #002536;
	height: 100px;
	position: relative;
}

.gq {
	display: flex;
	justify-content: center;
	align-items: center;
	height: 100px;
	width: 130px;
}

.gq_img {
	width: 45px;
	margin-left: 0;
	margin-top: 0;
	cursor: pointer;
}

.gq_line {
	height: 43px;
	width: 2px;
	background-color: #000;
	margin: 0 10px;
	border-radius: 4px;
}

.news-contact {
	margin-top: 30px;
}

.news-contact-main {
	text-align: left;
	font-weight: 600;
	font-size: 16px;
	color: #000;
	line-height: 50px;
}

.contact-sub {
	font-size: 14px;
	color: #000;
	font-weight: 550;
	margin-top: 10px;
}

.contact_info {
	margin-top: 10px;
}

.contact_info li {
	list-style: none;
	color: #000;
	font-size: 14px;
	font-weight: 550;
	margin-bottom: 15px;
}

/* soft */
.new-soft {
	border-bottom: 1px solid #c0c4c7;
	padding: 10px 22px;
	display: flex;
	justify-content: flex-start;
	align-items: center;
	margin-bottom: 10px;
}

.new-soft-img {
	width: 80px;
	height: 100px;
}

.new-soft-title {
	color: #000;
	font-size: 17px;
	font-weight: 550;
	margin-left: 30px;
}

.new-soft-desc {
	font-size: 14px;
	color: #000;
	margin-left: auto;
	display: flex;
	justify-content: flex-start;
}

.new-soft-desc li {
	margin: 0 2px;
	cursor: pointer;
}

.new-soft-active-li-bg {
	background-color: #68686a;
}


/* new product */
.new-products {
	margin-top: 30px;
	padding: 0 10px;
	/* 关键1：固定容器最大宽度为4个卡片的总宽度（200px*4 + 15px*4） */
	max-width: calc(4 * 200px + 4 * 15px);
	margin-left: auto;
	margin-right: auto;
}

.new-products-main {
	font-weight: 600;
	font-size: 26px;
	margin-bottom: 20px;
}

.new-products-list {
	display: flex;
	justify-content: flex-start;
	flex-wrap: wrap;
	
}

.new-products-list-card {
	/* 核心：所有屏幕下固定每排4个，宽度按1/4分配 */
	width: calc(25% - 11.25px);
	/* 调整间距计算，避免总宽度溢出 */
	/* 卡片最大/最小宽高，保证尺寸可控 */
	max-width: 200px;
	min-width: 100px;
	max-height: 154px;
	height: auto;
	/* 关键3：统一间距，4个卡片的总间距为 15px*3 = 45px，均分后每个卡片左右7.5px，总间距45px */
	margin: 20px 5px;
	display: flex;
	flex-direction: column;
	align-items: center;
}

.new-products-list-card-img {
	width: 100%;
	aspect-ratio: 200/110;
	max-height: 110px;
	/* object-fit: cover; */
}

.new-products-list-card-title {
	font-size: 16px;
	font-weight: 550;
	color: #000;
	text-align: center;
	margin-top: 10px;
	line-height: 24px;
	white-space: nowrap;
	overflow: hidden;
	text-overflow: ellipsis;
	width: 100%;
}

/* dia */
/* 遮罩层样式 */
.modal-overlay {
	position: fixed;
	top: 0;
	left: 0;
	width: 100%;
	height: 100%;
	background: rgba(0, 0, 0, 0.5);
	display: flex;
	justify-content: center;
	align-items: center;
	z-index: 9999;
	opacity: 1;
	transition: all 0.3s ease;
}



/* 输入框容器样式 */
.modal-container {
	background: #fff;
	padding: 24px;
	border-radius: 8px;
	width: 90%;
	max-width: 400px;
	box-shadow: 0 4px 12px rgba(0, 0, 0, 0.15);
	transform: translateY(-20px);
	transition: transform 0.3s ease;
}

.modal-overlay.show .modal-container {
	transform: translateY(0);
}

/* 标题样式 */
.modal-title {
	margin: 0 0 16px 0;
	font-size: 18px;
	color: #333;
	font-weight: 600;
}

/* 输入框样式 */
.modal-input {
	width: 100%;
	padding: 12px;
	border: 1px solid #ddd;
	border-radius: 4px;
	font-size: 16px;
	margin-bottom: 20px;
	box-sizing: border-box;
	outline: none;
	transition: border-color 0.2s;
}

.modal-input:focus {
	border-color: #1890ff;
	box-shadow: 0 0 0 2px rgba(24, 144, 255, 0.2);
}

/* 按钮容器样式 */
.modal-buttons {
	display: flex;
	justify-content: flex-end;
	gap: 12px;
}

/* 按钮样式 */
.modal-btn {
	padding: 8px 16px;
	border-radius: 4px;
	font-size: 14px;
	cursor: pointer;
	border: none;
	transition: background-color 0.2s;
}

.modal-btn.cancel {
	background: #f5f5f5;
	color: #666;
}

.modal-btn.cancel:hover {
	background: #e8e8e8;
}

.modal-btn.confirm {
	background: #1890ff;
	color: #fff;
}

.modal-btn.confirm:hover {
	background: #096dd9;
}

/* 触发按钮样式 */
.trigger-btn {
	padding: 10px 20px;
	font-size: 16px;
	background: #52c41a;
	color: #fff;
	border: none;
	border-radius: 4px;
	cursor: pointer;
	margin: 50px;
}

.trigger-btn:hover {
	background: #389e0d;
}


/* 分页器 */
/* 分页器样式 */
.pagination {
	display: flex;
	align-items: center;
	justify-content: flex-end;
	/* justify-content: center; */
	gap: 8px;
	flex-wrap: wrap;
}

.pagination-btn {
	display: inline-flex;
	align-items: center;
	justify-content: center;
	width: 26px;
	height: 26px;
	border: 1px solid #e5e7eb;
	border-radius: 2px;
	background-color: #fff;
	color: #333;
	font-size: 11px;
	cursor: pointer;
	transition: all 0.2s ease;
	outline: none;
}

.pagination-btn:disabled {
	cursor: not-allowed;
	color: #9ca3af;
	background-color: #f9fafb;
	border-color: #e5e7eb;
}

.pagination-btn:not(:disabled):hover {
	background-color: #f3f4f6;
	border-color: #d1d5db;
}

.pagination-btn.active:hover {
	/* background-color: #1890ff; */
	background-color: #68686a;
	color: #fff;
	/* border-color: #1890ff; */
	cursor: default;
}

.pagination-btn.active {
	/* background-color: #1890ff; */
	background-color: #68686a;
	color: #fff;
	/* border-color: #1890ff; */
	cursor: default;
}

.pagination-ellipsis {
	display: inline-flex;
	align-items: center;
	justify-content: center;
	width: 26px;
	height: 26px;
	color: #9ca3af;
	font-size: 11px;
}

/* 响应式适配 */
@media (max-width: 576px) {
	.pagination-btn {
		width: 22px;
		height: 22px;
		font-size: 10px;
	}

	.pagination-ellipsis {
		width: 22px;
		height: 22px;
		font-size: 10px;
	}
}



/* soft 媒体查询 */
@media screen and (min-width: 768px) and (max-width: 1200px) {
	.new-header-bg {
		height: 70px;
	}
	.new-products-main {
		font-size: 22px;
	}
	
	.new-products-list-card-title {
		font-size: 14px;
	}
	
	.new-products {
		padding: 0 5px;
	}
}

@media screen and (min-width: 576px) and (max-width: 767px) {

	/* head */
	.new-header-bg {
		height: 70px;
	}

	.gq {
		height: 60px;
		width: 75px;
	}

	.gq_img {
		width: 30px;
		margin-left: 0;
		margin-top: 0;
		cursor: pointer;
	}

	.gq_line {
		height: 30px;
		width: 2px;
		background-color: #000;
		margin: 0 6px;
		border-radius: 4px;
	}


	.new-soft-img {
		width: 50px;
		height: 70px;
	}

	.new-soft-title {
		font-size: 14px;
		margin-left: 20px;
	}

	.new-soft-desc {
		font-size: 12px;
	}
	
	/* soft */
	.new-products-main {
		font-size: 20px;
	}
	
	.new-products-list-card-title {
		font-size: 12px;
	}
	
	.new-products {
		padding: 0 5px;
	}
}

@media screen and (max-width: 575px) {
	.gq {
		height: 35px;
		width: 75px;
	}
	.gq_img {
		width: 30px;
		margin-left: 0;
		margin-top: 0;
		cursor: pointer;
	}
	
	.gq_line {
		height: 30px;
		width: 2px;
		background-color: #000;
		margin: 0 6px;
		border-radius: 4px;
	}
	
	.new-soft-img {
		width: 50px;
		height: 70px;
	}
	
	.new-soft-title {
		font-size: 14px;
		margin-left: 20px;
	}
	
	.new-soft-desc {
		font-size: 12px;
	}
}