@charset "UTF-8"; /**!
* 淮安公安政工三级页面
* date:2021-09-14
* author: 周宗逸;
*/
.footer-content {
	height: 180px;
}
:root {
	--primary-color: #406cff;
	--secondary-color: #5e6d82;
	--card-bg: #ffffff;
	--hover-shadow: 0 8px 24px rgba(0, 0, 0, 0.12);
	--transition-duration: 0.3s;
	--base-font-size: 16px;
}

* {
	margin: 0;
	padding: 0;
	box-sizing: border-box;
}

body {
	font-family: 'Microsoft YaHei', Arial, sans-serif;
	line-height: 1.6;
	font-size: var(--base-font-size);
}
.container {
	width: 1200px;
}
.main {
    min-width: 1200px;
	background: #f5f7fa;
}
/* 卡片容器 */
.card-container {
	margin: 0 auto;
	display: grid;
	grid-template-columns: repeat(auto-fit, minmax(min(280px, 100%), 1fr));
	gap: 24px;
	padding: 20px;
}

/* 主卡片 */
.main-card {
	overflow: visible;
	display: flex;
	gap: 20px;
	position: relative;
	width: 100%;
	flex-wrap: nowrap;
	justify-content: space-between;
}

/* 图片容器 */
.card__img-container {
	flex: 0 0 40;
	background: transparent;
	border-radius: 0;
	position: relative;
	box-shadow: none;
	display: flex;
	align-items: center;
}

.carousel-container {
	position: relative;
	width: 100%;
	overflow: hidden;
	flex: 0 1 800px;
	aspect-ratio: 17/8;
	background: #f5f7fa;
	/* 通过宽高比自动计算高度 */
}
.swiper-link {
	display: block;
	width: 564px;
	height: 309px;
}
.swiper-link > img {
	width: 100%;
	height: 100%;
}
.swiper-pagination-bullet {
	width: 12px;
	height: 12px;
	border-radius: 50%;
	border: 2px solid rgba(255, 255, 255, 1);
	background: rgba(255, 255, 255, 1);
	cursor: pointer;
	transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
	list-style: none;
	margin: 0 8px;
	opacity: 0.8;
}
.swiper-pagination-bullet-active {
	width: 16px;
	height: 16px;
	background: #fff;
	box-shadow: 0 2px 8px rgba(0, 0, 0, 0.2);
}

.content-card {
	flex: 1 1 50%;
	max-width: 50%;
	background: var(--card-bg);
	border-radius: 20px;
	padding: 16px;
	display: flex;
	flex-direction: column;
	justify-content: space-between;
	align-items: center;
	height: 100%;
	aspect-ratio: 1506/809;
	background-image: url('../images/content-bg.png');
	background-size: cover;
	background-repeat: no-repeat;
	background-position: center;
	text-align: center;
	cursor: pointer;
	box-shadow: 0 4px 12px rgba(64, 108, 255, 0.08);
	position: relative;
	overflow: visible;
	background-clip: padding-box;
}

.card__content {
	flex: 1;
	display: flex;
	flex-direction: column;
	justify-content: space-between;
	padding: 15px 0;
	align-items: center;
	width: 100%;
}

.content-footer {
	margin: auto 0 2% 0;
}

.content-card:hover {
	transform: none;
}

.content-card:focus,
.content-card.active {
	box-shadow: var(--hover-shadow);
	transform: translateY(-2px);
	border-radius: 20px !important;
	/* 强制圆角 */
	z-index: 3;
	/* 提升层级 */
}

.content-card.active::after {
	border: 0 solid transparent;
	box-shadow: none;
	border-radius: 22px;
	z-index: 3;
	transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
}

/* 按钮样式 */
.card__button {
	/* width: 140px; */
	display: inline-block;
	padding: 12px 28px;
	background: #4365fe;
	color: white;
	border-radius: 8px;
	text-decoration: none;
	transition: background-color var(--transition-duration);
	border: none;
	cursor: pointer;
	font-size: 20px;
	font-weight: 550;
	letter-spacing: 2px;
	align-self: center;
	/* margin-bottom: 10px; */
	margin-top: 8%;
}

/* .card__button:hover {
            background: #63c7f9;
        } */
/* 优势卡片 */
.advantage-card {
	width: min(255px, 90%);
	height: auto;
	min-height: 230px;
	background: var(--card-bg);
	box-shadow: 0 2px 5px 0 rgba(66, 102, 181, 0.13);
	border-radius: 8px;
	padding: 30px 16px 20px 16px;
	/* 添加左右内边距 */
	display: flex;
	flex-direction: column;
	align-items: center;
	gap: 12px;
	/* 减少间距防止过密 */
	margin-top: 10px;
}

.advantage-card__icon {
	width: 52px;
	height: 52px;
}

.advantage-card__title {
	height: 32px;
	color: #20304d;
	font-size: 20px;
	font-weight: bolder;
	text-align: center;
	font-family: 'Microsoft YaHei', Arial, sans-serif;
	padding-top: 3px;
}

.main-card__title {
	height: 32px;
	color: #4365fe;
	font-size: 28px;
	font-weight: bolder;
	text-align: center;
	font-family: 'Microsoft YaHei', Arial, sans-serif;
	padding-top: 5%;
}

.content-footer {
	margin-top: 0;
}

.main__desc {
	color: var(--secondary-color);
	font-weight: bold;
	font-size: 16px;
	text-align: left;
	width: calc(100% - 10%);
	/* 添加左右内边距 */
	margin-top: 8%;
	line-height: 2;
}

.advantage-card__desc {
	color: var(--secondary-color);
	font-size: 14px;
	text-align: center;
	padding: 0 14px;
	/* 添加左右内边距 */
	line-height: 1.6;
	/* 增加行高 */
	margin-top: 4px;
	/* 与标题增加间距 */
}

/* 新增样式 */
.section-title {
	font-size: 28px;
	color: var(--primary-color);
	text-align: center;
	margin: 10px 0 10px;
	font-family: 'Alibaba PuHuiTi-Bold';
}

.bottom-section {
	max-width: 1200px;
	margin: 40px auto;
	padding: 20px;
}

/* 底部布局调整 */
.brands-logos {
	display: flex;
	justify-content: center;
	gap: 40px;
	margin-bottom: 30px;
}

.video-container {
	width: 100%;
	max-width: 800px;
	margin: 20px auto;
}

/* 核心优势布局 */
.advantages-section {
	margin: 0 auto;
	padding-top: 10px;
}

.advantages-container {
	display: flex;
	justify-content: center;
	flex-wrap: wrap;
	gap: 60px;
}

.brand-logo {
	flex: 1;
	max-width: min(200px, 30vw);
	height: auto;
	object-fit: contain;
}

.video-placeholder {
	flex: 2;
	position: relative;
	background: rgba(43, 109, 229, 0.1);
	border-radius: 12px;
	aspect-ratio: 16/9;
}

.video-overlay {
	position: absolute;
	top: 50%;
	left: 50%;
	transform: translate(-50%, -50%);
	color: var(--primary-color);
	font-size: 18px;
	font-weight: bold;
}

/* 标题样式 */
.con-title {
	display: flex;
	align-items: center;
	justify-content: center;
	gap: 24px;
	/* 增加图标间距 */
	margin: 40px 0;
	/* 增加上下边距 */
}

.con-title .title {
	font-size: 32px;
	/* 放大字号 */
	color: rgba(0, 0, 0, 0.85);
	font-family: 'Alibaba PuHuiTi-Bold';
	font-weight: 800;
	/* 增加字重 */
	letter-spacing: 2px;
	/* 增加字间距 */
}

.confirm-modal {
	display: none;
	position: fixed;
	top: 0;
	left: 0;
	width: 100%;
	height: 100%;
	background: rgba(0, 0, 0, 0.5);
	z-index: 9999;
	justify-content: center;
	align-items: center;
}

.confirm-content {
	background: white;
	width: 320px;
	border-radius: 8px;
	box-shadow: 0 4px 12px rgba(0, 0, 0, 0.15);
}

.confirm-header {
	padding: 16px 16px 0 16px;
	display: flex;
	justify-content: space-between;
	align-items: center;
}

.confirm-title {
	font-size: 16px;
	color: #333;
	font-weight: 500;
}

.confirm-close {
	cursor: pointer;
	font-size: 20px;
	color: #666;
}

.confirm-body {
	padding: 10px 16px;
	font-size: 14px;
	color: #666;
}

.confirm-footer {
	padding: 12px;
	display: flex;
	gap: 8px;
	justify-content: flex-end;
}

.confirm-btn {
	padding: 6px 16px;
	border: none;
	border-radius: 4px;
	cursor: pointer;
	font-size: 14px;
}

.confirm-ok {
	background: #63c7f9;
	color: white;
}

.confirm-cancel {
	background: #f0f0f0;
	color: #666;
}
.main-top {
	height: 220px;
}
