/* 全局样式 */
body {
    font-family: Arial, sans-serif;
    margin: 0;
    padding: 0;
}

/* 顶部导航栏 */
.navbar {
    background-color: #333;
    color: white;
    padding: 0.2rem 0;  /*上下内边距为1rem，左右自动填充*/
}

.nav-container {
    display: flex;
    justify-content: space-between;
    align-items: center;
    width: 80%;
    margin: 0 auto;/*左右外边距自动居中*/
}

.nav-menu {
    list-style: none;
    display: flex;
	justify-content: space-between;
	width: 1000px;
	gap: 1.5rem;
}

.nav-menu li {
    margin-right: 1.5rem;
	font-size: 20px;
	font-weight: bolder;
}

.nav-menu li:first-child>a{
	color: #00ffff;
}

.nav-menu a {
    color: white;
    text-decoration: none;
}

.user-actions button {
    background-color: #4CAF50;
    border: none;
    color: white;
    padding: 0.5rem 1rem;
    cursor: pointer;
	width: 200px;
}
/* 横幅图片滚动 */
.banner {
    width: 100%;
    overflow: hidden;
}

.scroll-container{
				width: 100%;
				max-width: 1200px;
				height: 300px;
				margin: 10px;
				overflow: hidden;
				position: relative;
				left: 250px;
				border-radius: 8px;
			}
			.scroll-list{
				display: flex;
				width: max-content;
				animation: scroll 20s linear infinite;
			}
			.scroll-item {
				width: 500px;
				height: 100%;
				flex-shrink: 0;
			}
			.scroll-item img{
				width: 100%;
				height: auto;
				object-fit: cover;
			}
			@keyframes scroll{
				0%{ transform: translateX(0);}
				100%{ transform: translateX(-50%);}
			}
			.scroll-container:hover .scroll-list{
				animation-play-state: paused;
			}


/* 核心入口 */
.core-entries {
    display: flex;
    justify-content: space-around;
    padding: 2rem;
}

.entry-card {
    border: 1px solid #ddd;
    padding: 1rem;
    width: 45%;
    text-align: center;
}

/* 数据看板 */


/* 底部信息区 */
.footer {
    background-color: #333;
    color: white;
    text-align: center;
    padding: 0.2rem 0;
	width: 100%;
	position: absolute;
	bottom: 10px;
}
.footer-content{
	display: flex;
	justify-content: space-between;
	align-items: center;
	max-width: 1200px;
	margin: 0 auto;/*左右外边距自动居中*/
	
}
 .footer-menu{
	 list-style: none;
	 display: flex;
	 gap: 1.5rem;
	 padding-bottom: 0px;
	 margin: 15px auto;
 }
 .footer-menu li {
     margin-right: 1.5rem;
 }
 
 .footer-menu a {
     color: white;
     text-decoration: none;
 }