.header {
    position: relative;
}

.lunbo {
	position: absolute;
	top: 0;
	left: 0;
	width: 100%;
	height: 100vh; /* 或者根据实际需要调整高度 */
	z-index: 1; /* 使轮播图在导航栏的下方 */
}
.navbar {
    position: fixed;
    width: 100%;
	background-color: #fff; /* 背景色为白色 */
    /*background-color: transparent;  默认背景色为透明 */
    top: 0;
    z-index: 100; /* 确保导航栏在轮播图之上 */
    transition: background-color 0.3s; /* 添加过渡效果 */
}

/* 滚动后背景颜色变为白色 */
.navbar.scrolled {
    background-color: #fff; /* 背景色为白色 */
	box-shadow: 0 10px 10px -10px rgba(0, 0, 0, 0.5);
	z-index: 3;
}

.slideshow-container {
    /* 设置轮播图容器的样式 */
}

/* 默认样式 */
.top_ul_link {
    text-decoration: none;
    color: black; /* 默认文字颜色 */
}
/*菜单栏默认选中样式*/
.top_ul_link.active {
    color: #b51b21; /* 被选中时的文字颜色 */
	font-weight: bold;
    /*pointer-events: none; /* 不可选中 */
}
@media screen and (max-width: 768px) {
	.lunbo{
		margin-top: 100px;
		height: 20vh;
	}
}
