* {
	margin: 0;
	padding: 0;
	box-sizing: border-box;
	font-family: "Microsoft Yahei", sans-serif;
}

body {
	position: relative;
	margin: 0;
	padding: 0;
	background-color: #fff;
	color: #333;
	line-height: 1.6;
}

/* Header */
.header {
   background: url('./images/1.png') no-repeat center center;
   background-size: cover;
   min-height: 100px;
   color: #fff;
   padding: 10px 0;
   display: flex;
   align-items: center;
   justify-content: center;
   position: relative;
   z-index: 99;
}

.header-inner {
   width: 85%;
   margin: 0 auto;
   display: flex;
   justify-content: space-between;
   align-items: center;
}

.logo-container {
   display: flex;
   align-items: center;
   justify-content: center;
   height: 100%;
}

.logo img {
   width: 380px !important;
   height: auto !important;
   margin-right: 15px;
   object-fit: contain;
   display: block;
}

/* 导航栏*/
.nav-wrapper {
	background-color: #2196F3;
	background-size: cover;
	padding: 8px 0;
	box-shadow: 0 -5px 10px rgba(0, 0, 0, 0.15);
	position: relative;
	z-index: 100; 
}
.nav-wrapper {
	background-color: #2196F3;
	background-size: cover;
	padding: 8px 0;
	box-shadow: 0 -5px 10px rgba(0, 0, 0, 0.15);
	position: relative;
	z-index: 100; 
	font-weight: bold;
}
.nav-bar-inner {
	width: 85%;
	margin: 0 auto;
	display: flex;
	justify-content: space-between;
	align-items: center;
	gap: 20px;
}
.nav {
	flex: 0.9 1 0%;
}
.nav ul {
	display: flex;
	list-style: none;
	width: 100%;
	justify-content: space-around;
	padding: 0;
	margin: 0;
	gap: 15px;
}
.nav ul li {
	position: relative;
	min-width: 80px;
	text-align: center;
	overflow: visible;
}
.nav ul li a {
	color: #fff;
	text-decoration: none;
	font-size: 14px;
	padding: 8px 12px;
	display: block;
}
.nav .subnav {
	display: none;
	position: absolute;
	top: 100%;
	left: 50%;
	transform: translateX(-50%);
	background-color: #2196F3;
	min-width: 110px;
	box-shadow: 0 2px 3px rgba(0,0,0,0.1);
	z-index: 999;
	padding: 3px 0;
	margin: 0;
	list-style: none;
}
.nav .subnav li {
	min-width: 100%;
	text-align: center;
	padding: 0;
	margin: 0;
}
.nav .subnav li a {
	padding: 6px 10px;
	font-size: 13px;
	white-space: nowrap;
}
.nav ul li:hover .subnav {
	display: block;
}
.nav .subnav li a:hover {
	color: #cce0ff;
	background-color: rgba(255,255,255,0.08);
}
.nav ul li a::after {
	content: '';
	position: absolute;
	bottom: 0;
	left: 0;
	width: 0;
	height: 2px;
	background-color: #fff;
	transition: width 0.3s;
}
.nav ul li a:hover::after {
	width: 100%;
}

/* 搜索框 */
.search-box {
	display: flex;
	align-items: center;
	width: 150px;
	height: 25px;
	border: 1px solid #fff;
	border-radius: 15px;
	padding: 0 12px;
	background-color: transparent;
}
.search-text {
	flex: 1;
	background: transparent;
	border: none;
	outline: none;
	color: #fff;
	font-size: 12px;
	width:100px;
}
.search-icon {
	width: 16px;
	height: 16px;
	color: #fff;
	cursor: pointer;
}

/* Footer*/
.footer {
	background: url('./images/12.png') no-repeat center center;
	background-size: cover;
	color: #fff;
	padding: 30px 0;
	min-height: 200px;
}

.footer-inner {
	width: 85%;
	margin: 0 auto;
}

.friend-link {
	font-size: 12px;
	margin-bottom: 20px;
}

.friend-link a {
	color: #fff;
	text-decoration: none;
	margin: 0 15px;
}

.friend-link a:hover {
	text-decoration: underline;
}

.footer-middle {
	display: flex;
	justify-content: space-between;
	align-items: center;
	margin-bottom: 20px;
}

.logo-contact {
	display: flex;
	align-items: center;
}

.logo-contact img {
	height: 45px;
	margin-right: 15px;
}

.contact-info {
	text-align: left;
}

.contact-info p {
	margin-bottom: 8px;
	font-size: 12px;
	display: flex;
	align-items: center;
	justify-content: flex-start;
}

.contact-icon {
	width: 15px; 
	height: 15px; 
	margin-right: 10px; 
	vertical-align: middle; 
	object-fit: contain;
}

.copyright {
	background-color: #333;
	color: #ccc; 
	font-size: 12px;
	text-align: center;
	padding: 15px 0; 
	width: 100%;
	margin-top: 0;
}

@media screen and (max-width: 1366px) {
    .header-inner {
        width: 90%;
    }
    .container {
        width: 85%;
        gap: 10px;
    }
    .logo img {
        max-width: 300px;
    }
    #banner-carousel {
        height: 400px !important;
    }
    #news-carousel .layui-carousel-item {
        height: 200px;
    }
}