body {
            font-family: 'Inter', sans-serif;
        }

        /* 平滑滚动效果 */
        html {
            scroll-behavior: smooth;
        }

        /* 按钮悬停效果 */
        .hover-scale {
            transition: transform 0.3s ease;
        }

        .hover-scale:hover {
            transform: scale(1.05);
        }

        /* 卡片悬停效果 */
        .card-hover {
            transition: box-shadow 0.3s ease;
        }

        .card-hover:hover {
            box-shadow: 0 10px 15px -3px rgba(0, 0, 0, 0.1), 0 4px 6px -2px rgba(0, 0, 0, 0.05);
        }

        /* 轮播图样式 */
        .slider {
            position: relative;
            width: 1200px;
            margin: 0 auto;
            overflow: hidden;
        }

        .slider-container {
            display: flex;
            transition: transform 0.5s ease;
        }

        .slider img {
            min-width: 1200px;
            height: 600px;
            object-fit: cover;
        }

        .slider-button {
            position: absolute;
            top: 50%;
            transform: translateY(-50%);
            background-color: rgba(0, 0, 0, 0.5);
            color: white;
            border: none;
            padding: 10px;
            cursor: pointer;
        }

        .slider-button.prev {
            left: 10px;
        }

        .slider-button.next {
            right: 10px;
        }
		
		.about-us-label {
		    width: fit-content;
		    align-items: center;
		    justify-content: center;
		    gap: 20px; /* 中英文内容间距*/
		    margin: 20px; /* 上下外边距*/
			padding-top: 5px;
			padding-bottom: 5px;
			padding-left: 70px;
			padding-right: 50px;
			border: 1px solid #999;
		}
		.about-us-label h2 {
		    font-size: 24px;
		    font-weight: bold;
		    margin: 0; /* 清除默认边距 */
		}
		.about-us-label p {
		    font-size: 16px;
		    color: #777; /* 浅灰色文字 */
		    margin: 0; /* 清除默认边距 */
		}
		.about-us-label::before,
		.about-us-label::after {
		    content: "";
		    width: 50px; /* 横线占满剩余空间 */
		    height: 1px; /* 横线高度 */
		    background-color: #999; /* 横线颜色 */
		}
		
		.about-us-div{
			display: grid;
			justify-content: center;
			align-items: center;
		}
		
		.div_cominfo{
			display: block;
			text-align: center;
			margin-left:20%;
			margin-right:20%;
			margin-bottom: 20px;
		}
		
.headimg{
	width: 100vw; /* 宽度为视口宽度的100% */
	    height: auto;
	    margin-left: calc(50% - 50vw); /* 修正因滚动条导致的偏移 */
}