@charset "utf-8";

* {
	padding: 0;
	margin: 0;
	box-sizing: border-box;
	font-family: 'NotoSans', -apple-system, BlinkMacSystemFont,
		'Segoe UI', Roboto, Oxygen, Ubuntu, Cantarell,
		'Open Sans', 'Helvetica Neue', sans-serif;
	-webkit-font-smoothing: antialiased;
	-moz-osx-font-smoothing: grayscale;
}

html {
	font-size: 10px;
}

body {
	background-color: #F0F3F6;
	font-size: 1.5rem;
	min-width: 320px;
	overflow-x: hidden;
}

input:focus,
textarea:focus {
	outline: none;
}

li {
	list-style: none;
}

h1,
h2,
h3,
h4,
h5,
h6 {
	font-weight: normal;
}

a {
	color: inherit;
	text-decoration: none;
}

.cl {
	clear: both;
}

.kongs,
.kongs:hover,
.kongs:after {
	border: none !important;
	background-color: transparent !important;
	box-shadow: none !important;
	padding: 0 !important;
	margin: 0 !important;
}

img {
	border: none;
}

img.img {
	display: block;
	width: 100%;
	transition: transform 0.3s;
}

@font-face {
	font-family: 'NotoSans';
	src: url('../fonts/NotoSans-Regular.ttf') format('truetype');
	font-style: normal;
	font-display: swap;
}

@font-face {
	font-family: 'NotoSans-Bold';
	src: url('../fonts/NotoSans-Bold.ttf') format('truetype');
	font-style: normal;
	font-display: swap;
}

@font-face {
	font-family: 'NotoSans-Medium';
	src: url('../fonts/NotoSans-Medium.ttf') format('truetype');
	font-style: normal;
	font-display: swap;
}

@font-face {
	font-family: 'KronaOne';
	src: url('../fonts/KronaOne-Regular.ttf') format('truetype');
	font-style: normal;
	font-display: swap;
}

@font-face {
	font-family: 'D-DIN-PRO';
	src: url('../fonts/D-DIN-PRO-700-Bold.ttf') format('truetype');
	font-style: normal;
	font-display: swap;
}

.index-bigtit p.t1 {
	font-family: 'KronaOne';
	font-weight: 400;
	font-size: 5.6rem;
	color: #2E2E2E;
}

.index-bigtit p.t2 {
	font-family: 'NotoSans-Medium';
	font-size: 1.5rem;
	line-height: 3rem;
	color: #939BA2;
	padding-left: 5rem;
	position: relative;
	text-transform: capitalize;
}

.index-bigtit p.t2::after {
	content: '';
	display: block;
	width: 4rem;
	height: 2px;
	background-color: #D86916;
	position: absolute;
	left: 0;
	top: 1.5rem;
}

.index-bigtit.white p.t1 {
	color: #ffffff;
}

.index-bigtit.white p.t2 {
	color: #C0C2C5;
}

.common-view-more {
	width: 18rem;
	height: 5rem;
	border: 2px solid #DBDFE3;
	border-radius: 7rem;
	display: flex;
	justify-content: center;
	align-items: center;
	font-weight: 500;
	font-size: 1.6rem;
	color: #2E2E2E;
	transition: background-color 0.3s, color 0.3s, border-color 0.3s;
}

.common-view-more i {
	display: block;
	color: #D86916;
	font-size: 3.2rem;
	margin-left: 1.2rem;
}

.common-view-more:hover {
	color: #ffffff;
	border: 2px solid #D86916;
	background-color: #D86916;
}

.common-view-more:hover i {
	color: #ffffff;
}

.w_100 {
	width: 100%;
}

.w_1200 {
	width: 90vw;
	max-width: 1200px;
	margin: 0 auto;
}

.m-t-80 {
	margin-top: 8rem;
}

.m-t-40 {
	margin-top: 4rem;
}

.m-b-40 {
	margin-bottom: 4rem;
}

.p-b-50 {
	padding-bottom: 5rem;
}

/* 分页外层容器 */
.pages-pagination {
  margin: 30px auto; /* 上下留白，与内容分隔 */
  text-align: center; /* 分页居中 */
}

/* 分页列表基础样式 */
.pagination {
  display: inline-flex; /* 紧凑居中排列 */
  gap: 8px; /* 页码之间的间距 */
  flex-wrap: wrap; /* 小屏幕自动换行 */
}

/* 页码项通用样式 */
.pagination li {
  display: inline-block;
}

/* 页码按钮/文字统一样式 */
.pagination li a,
.pagination li span {
  display: inline-block;
  min-width: 36px; /* 最小宽度，保证对齐 */
  height: 36px;
  line-height: 36px; /* 垂直居中 */
  text-align: center;
  border-radius: 6px; /* 圆角，简约柔和 */
  font-size: 14px;
  color: #333; /* 默认文字色 */
  text-decoration: none; /* 清除下划线 */
  transition: all 0.2s ease; /* 平滑过渡动画 */
  padding: 0 6px;
  box-sizing: border-box;
}

/* 【当前页】样式 - 高亮突出 */
.pagination li.active span {
  background-color: #D86916; /* 主色调：橙色 */
  color: #fff; /* 白色文字 */
  font-weight: 500;
  border: none;
}

/* 【可点击页】hover效果 */
.pagination li a:hover {
  background-color: #fff5ee;
  color: #D86916;
}

/* 【禁用态】样式（上一页/第一页时） */
.pagination li.disabled span {
  color: #ccc;
  cursor: not-allowed; /* 禁止鼠标样式 */
  background-color: #f9f9f9;
}

/* 弹窗 */
.qrcode-layer{
	padding: 12px;
}


@keyframes marquee {
	0% {
		transform: translateX(0);
	}
	100% {
		transform: translateX(-50%);
	}
}

@keyframes TextRun {
	from {
		transform: translateX(0)
	}
	to {
		transform: translateX(-100%)
	}
}

