html {
	font-family: 'Lucida Sans', 'Lucida Sans Regular', 'Lucida Grande', 'Lucida Sans Unicode', Geneva, Verdana, sans-serif;
}

body {
	overflow-x: hidden;
}



.xysbj {

	width: 25%;
	margin: 5px;
	padding: 10px;
	overflow-y: scroll;
}


.header {
	width: 100%;
	height: 65px;
	background-color: #FFF;
	position: relative;
	top: 0;
	border-bottom: #ddd 1px solid;
	display: flex;
	align-items: center;
}

.header .logo {
	width: 15vh;
	height: 100%;
	padding-left: 20px;
	display: flex;
	align-items: center;
}

.header .logo a img {
	width: 100%;
}

.header .menu {
	font-size: 19px;
	font-weight: 800;
	flex-grow: 1;
	display: flex;
	justify-content: center;
}

.header .menu ul {
	text-align: center;
	list-style-type: none;
	margin: 0;
	padding: 0;
	display: flex;
}

.header .menu ul li {
	min-width: 50px;
	margin-left: 50px;
}

.header .menu ul li a {
	text-decoration: none;
	color: #000;
	position: relative;
	padding-bottom: 5px;
}

.header .menu ul li a::after {
	content: "";
	position: absolute;
	left: 0;
	bottom: 0;
	width: 0;
	height: 2px;
	background-color: #195b99;
	transition: width 0.3s ease;
}

.header .menu ul li a:hover::after {
	width: 100%;
}

.main {
	width: 100%;
	height: auto;
	background-color: aliceblue;
}

.footer {
	width: 100%;
	font-size: 12px;
}

.footer-top {
	display: flex;
	text-align: center;
	justify-content: space-around;
	margin-bottom: 20px;
}

.footer-column {
	flex: 1;
}

.footer-column h4 {
	margin-bottom: 10px;
}

.footer-column ul {
	list-style-type: none;
	padding: 0;
}

.footer-column ul li {
	margin-bottom: 5px;
}

.footer-column ul li a {
	color: white;
	text-decoration: none;
}

.footer-contact {
	flex: 2;
}

.footer-qr {
	flex: 1;
}

.footer-qr img {
	width: 100%;
	max-width: 150px;
}

.footer-bottom {
	text-align: center;
}

.slider {
	width: 100%;
	margin: 0 auto;
	position: relative;
	overflow: hidden;
}

.slides {
	width: 300%;
	display: flex;
}

.slide {
	width: 33.33%;
	transition: 0.6s;
}

.slide img {
	width: 100%;
	height: 100%;
	object-fit: cover;
}

input[name="slider"] {
	display: none;
}

.navigation {
	position: absolute;
	bottom: 20px;
	left: 50%;
	transform: translateX(-50%);
	display: flex;
}

.navigation label {
	width: 15px;
	height: 15px;
	border: 2px solid #fff;
	border-radius: 50%;
	margin: 0 5px;
	cursor: pointer;
	transition: 0.3s;
}

#slide1:checked~.slides .slide:nth-child(1) {
	margin-left: 0;
}

#slide2:checked~.slides .slide:nth-child(1) {
	margin-left: -33.33%;
}

#slide3:checked~.slides .slide:nth-child(1) {
	margin-left: -66.66%;
}

.card-container {
	display: flex;
	justify-content: center;
	flex-wrap: wrap;
	gap: 20px;
	padding: 20px;
}

.card {
	width: 300px;
	background-color: #fff;
	border-radius: 8px;
	transition: transform 0.3s ease;
	cursor: pointer;
	box-shadow: 0 4px 8px rgba(0, 0, 0, 0.1);
	overflow: hidden;
}



.card img {
	width: 100%;
	height: auto;
}

.card h3 {
	padding: 10px;
	margin: 0;
}

.card p {
	padding: 0 10px 10px;
	margin: 0;
	font-size: 12px;
}


.app-container {
	display: flex;
	flex-wrap: wrap;
	justify-content: center;
	gap: 30px;
	padding: 50px
}

.app-item {

	border: 1px solid #ddd;
	border-radius: 5px;
	padding: 20px;
	box-shadow: 0 0 5px rgba(0, 0, 0, 0.1);
}



.download-links {
	margin-top: 20px;
}

.btn {
	text-align: center;
	display: block;
	padding: 10px 20px;
	background-color: #fff;
	color: #007BFF;
	text-decoration: none;
	border-radius: 25px;
	margin-bottom: 10px;
	border: 1px #007BFF solid;
}

.btn:hover {
	background-color: #0056b3;
}

.filter-container {
	margin-bottom: 20px;
}

.filter-group {
	display: flex;
	flex-wrap: wrap;
	/*gap: 10px;*/
	width: calc(100% - 10px);
	margin-left: 5px;
	margin-top: 5px;
}

.filter-group h4 {
	width: 100%;
	margin-bottom: 10px;
}

.filter-tag {
	/* padding: 8px 16px; */
	margin-left: 5px;
	margin-top: 5px;
	margin-bottom: 5px;
	border: 1px solid #ccc;
	border-radius: 5px;
	background-color: #FFF;
	/* cursor: pointer; */
	/* transition: background-color 0.3s ease; */
	width: 120px;
	height: 35px;
	color: #000;
}

/* .filter-tag.active {
	background-color: #409EFF;
	color: white;
} */

.filter-tag.active {
	background-color: #FFF;
	color: #409EFF;
	border-color: #409EFF;
}



.flex-center-align {
	display: flex;
	align-items: center;
}

.full-width {
	width: 100%;
}

.full-width-center {
	width: 100%;
	display: flex;
	justify-content: center;
}

.full-width-align-gap {
	width: 100%;
	align-items: center;
	gap: 10px;
}

.title-font {
	font-size: 22px;
}

.height-50 {
	height: 50px;
}

.disabled-filter-tag {
	border: 1px solid gray;
	color: #DDD;
}

.breadcrumb {
	display: flex;
	align-items: center;
	gap: 8px;
	padding: 50px;
	/* background-color: #f9fafb;
	border-bottom: 1px solid #e5e7eb; */
}

.breadcrumb-item {
	color: #6b7280;
	text-decoration: none;
	transition: color 0.3s ease;
}

.breadcrumb-item:hover {
	color: #374151;
}

.breadcrumb-separator {
	color: #9ca3af;
}

.breadcrumb-item.active {
	color: #374151;
	font-weight: 600;
}

.p4 {
	font-size: 25px;
	margin-left: 50px;
}


.table-container {
	padding-left: 40px;
	padding-right: 80px;
	max-width: 1150px;
	width: 100%;
}

table {
	width: 100%;
	border-collapse: collapse;
	box-shadow: 0 0 20px rgba(0, 0, 0, 0.1);
}

th,
td {
	padding: 12px 15px;
	text-align: left;
	border: 1px solid #ccc;
}

th {
	background-color: #f4f4f4;
	font-weight: 600;
}

tr:hover {
	background-color: #f9f9f9;
}

.video-container {
	margin: 20px auto;
	max-width: 800px;
	width: 90%;
	box-shadow: 0 0 20px rgba(0, 0, 0, 0.1);
	border-radius: 15px;
}

video {
	width: 100%;
	height: auto;
	display: block;
}

.tab-container {
	margin: 20px auto;
	border-radius: 15px;
	/* max-width: 800px; */
	min-height: 800px;
	width: 90%;
	box-shadow: 0 0 20px rgba(0, 0, 0, 0.1);
}

.tab-nav {
	display: flex;
	border-bottom: 1px solid #e5e7eb;
}

.tab-nav-item {
	padding: 12px 15px;
	cursor: pointer;
	transition: background-color 0.3s ease;
}

.tab-nav-item.active {
	background-color: #50c9f5;
	border-bottom: 2px solid #1a5fcf;
	box-shadow: 0 0 20px rgba(0, 0, 0, 0.1);
	border-radius: 15px 0px 15px 0px;
}

.tab-content {
	padding: 20px;
}

.tab-pane {
	display: none;
}

.tab-pane.active {
	display: block;
}



.app-container_pc {
	display: none;
}


.app-pc-but {
	padding: 10px;
	border: 1px  #4f9eff solid;
	border-radius: 25px;
	color: #4f9eff;
}


.app-pc-but:hover{
	background-color:#4f9eff ;
	color: #FFF;
}





















/* 媒体查询：适用于手机等小屏幕设备（屏幕宽度小于 768px） */
@media (max-width: 767px) {
	.xysbj {
		width: 60%;
	}

	.header .menu ul li {
		min-width: 90px;
		margin-left: 0px;
	}

	.card-container {
		padding: 0px;
	}

	.table-container {
		padding-left: 5px;
		padding-right: 15px;
		padding-top: 10px;
		max-width: 1150px;
		width: 100%;
	}

	.p4 {
		margin-left: 0px;
		text-align: center;
	}

	.breadcrumb {
		padding: 20px;
	}

	.tab-content {
		padding: 2px;
	}

}

/* 媒体查询：适用于电脑等大屏幕设备（屏幕宽度大于等于 768px） */
@media (min-width: 768px) {
	.xysbj {
		width: 25%;
		padding: 10px;
	}

	.card:hover {
		transform: scale(1.1);
	}

	.app-container {
		display: none;
	}

	.app-container_pc {
		display: grid;
	}

}