#header {
    position: fixed;
    /* 将header固定在顶部 */
    top: 0;
    /* 距离顶部的距离 */
    width: 100%;
    /* 宽度占满整个屏幕 */
    z-index: 2000;
    /* 确保header在最顶层 */
    background-color: #ffffff;
    /* 设置header的背景颜色 */
    box-shadow: 0px 4px 6px rgba(0, 0, 0, 0.1);
    /* 添加阴影效果 */
	display: flex;
	align-items: center;
	justify-content: space-between;
}
#xiazai{
	display: inline-block;
	background-color: #3498db;
	color: #fff;
	font-size: 16px;
	line-height:38px;
	padding: 0 15px;
	border-radius: 19px;
	min-width: 60px;
	text-align: center;
}

main {
    padding-top: 80px;
}
@media (max-width:700px) {
	main {
	    padding-top: 40px;
	}
}

#header .language_choose {

    float: right;
    align-items: center;
    /* 垂直居中 */
}

/* 下拉按钮样式 */
#header .dropbtn {
    background-color: #3498DB;
    color: white;
    padding: 16px;
    font-size: 16px;
    border: none;
    cursor: pointer;
}

/* 下拉内容（默认隐藏） */
#header .dropdown-content {
    display: none;
    position: absolute;
    background-color: #f9f9f9;
    min-width: 160px;
    box-shadow: 0px 8px 16px 0px rgba(0, 0, 0, 0.2);
    z-index: 1;
}

/* 下拉内容链接样式 */
#header .dropdown-content span {
    color: black;
    /* margin: 12px 16px; */
    padding: 10px;
    text-decoration: none;
    display: block;
    transition: box-shadow 0.3s ease;
    /* 添加过渡效果 */
}

/* 鼠标悬停时的样式 */
#header .dropdown-content a:hover {
    background-color: #f1f1f1;
    box-shadow: 0px 4px 6px 0 rgba(0, 0, 0, 0.1) inset;
    /* 添加阴影效果 */
}

/* 显示下拉内容 */
#header .show {
    display: block;
}