@charset "utf-8";
/*Author: BeiYue*/
/*QQ: 964214970*/
/*Telegram: BeiYue88*/
/*==============================================================*/

/* CSS Pt */
/*顶部导航----开始--------------------------------------------------------*/
.pt_nav_box {
	width: 1200px;
	margin: 30px auto;
	padding: 0 30px;
	box-sizing: border-box;
	overflow: hidden;
}

.pt_nav {
	width: 100%;
	height: 40px;
	display: flex;
	/* 每个项目周围分配相同的空间 */
	justify-content: space-around;
	align-items: center;
	border-radius: 30px;
	border: solid 1px #e0e0e0;
	overflow: hidden;
	box-sizing: border-box;
}

.pt_nav li {
	width: 100%;
	height: 100%;
	border-right: solid 1px #e0e0e0;
	display: flex;
	justify-content: center;
	align-items: center;
	flex-direction: column;
	cursor: pointer;
	box-sizing: border-box;
}

.pt_nav li a {
	width: 100%;
	height: 100%;
	display: flex;
	justify-content: center;
	align-items: center;
	padding: 5px;
	box-sizing: border-box;
}

.pt_nav li span {
	display: none;
	width: 80%;
	height: 4px;
	background: var(--sc01);
	margin-top: 10px;
	opacity: 0;
}

.pt_nav li:hover {
	background: var(--sc01);
}
.pt_nav li:hover a {
	color: var(--bai);
}

.pt_nav li:last-child {
	border-right: none;
}

.pt_nav .pt_nav_mr {
	background: var(--bai);
	color: var(--txt);
}

.pt_nav .pt_nav_act {
	background: var(--sc01);
}

.pt_nav .pt_nav_act a {
	color: var(--bai);
}

.pt_nav li a {
	white-space: nowrap;
}

/*顶部导航----结束--------------------------------------------------------*/
/*平台列表----开始--------------------------------------------------------*/
.pt_box {
	width: 1200px;
	margin: 0 auto;
	display: flex;
	flex-wrap: wrap;
	margin-bottom: 50px;
}

.pt_box .pt_list {
	flex: 0 0 calc(33.333% - 60px);
	min-width: 340px;
	background: var(--bai);
	box-shadow: 0 6px 14px rgba(205, 136, 136, 0.2);
	margin: 10px;
	padding: 20px;
	border-radius: 8px;
	display: flex;
	justify-content: flex-start;
	align-items: center;
	flex-direction: column;
}

.pt_box .pt_yc {
	display: none;
}

.pt_list .pt_cent {
	width: 100%;
	min-height: 180px;
	display: flex;
	justify-content: flex-start;
	align-items: flex-start;
}

.pt_cent .pt_l {
	min-width: 40%;
}

.pt_l .pt_logo {
	width: 100px;
	height: 100px;
	border-radius: 50%;
	overflow: hidden;
	display: flex;
	justify-content: center;
	align-items: center;
	margin-bottom: 5px;
	/* 禁止伸缩 */
	flex-shrink: 0;
	flex-grow: 0;
}

.pt_l .pt_gs {
	display: flex;
	justify-content: flex-start;
	align-items: flex-start;
	flex-direction: column;
	margin: 2px 0;
}

.pt_l .pt_gs p {
	font-size: 14px;
}

.pt_cent .pt_r {

}

.pt_r .pt_bt {
	width: 100%;
	height: 60px;
	display: flex;
	justify-content: center;
	align-items: center;
}

.pt_r .pt_cz {
	margin-bottom: 10px;
}

.pt_r .pt_cz h1 {
	color: var(--sc01);
	font-weight: bold;
	font-size: 14px;
}

.pt_r .pt_cz p {
	font-size: 14px;
}

.pt_btn_box {
	display: flex;
	justify-content: space-between;
	flex-wrap: wrap;
	gap: 10px;
	/* 按钮间距 */
	width: 100%;
	max-width: 600px;
	/* 容器最大宽度 */
	margin: 0 auto;
	margin-top: 10px;
}

.pt_btn_box a {
	flex: 0 0 calc(50% - 5px);
	/* 两列布局，减去一半间距 */
	height: 40px;
	display: flex;
	justify-content: center;
	align-items: center;
	text-decoration: none;
	color: white;
	font-weight: bold;
	border-radius: 8px;
	transition: all 0.3s ease;
	box-shadow: 0 2px 5px rgba(0, 0, 0, 0.1);
	margin-bottom: 5px;
}

/* 按钮颜色方案 */
.pt_btn_01 {
	background-color: var(--an01);
}

.pt_btn_02 {
	background-color: var(--an02);
}

.pt_btn_03 {
	background-color: var(--an03);
}

.pt_btn_04 {
	background-color: var(--an04);
}

.pt_btn_05 {
	background-color: var(--an05);
}

.pt_btn_06 {
	background-color: var(--an06);
}

/* 悬停效果 */
.pt_btn_box>a:hover {
	transform: translateY(-3px);
	box-shadow: 0 5px 15px rgba(0, 0, 0, 0.2);
}

/*平台列表----结束--------------------------------------------------------*/