
		:root {
			--primary-blue: #0056b3;
			--light-blue: #e9f1fb;
			--dark-blue: #004089;
		}

		.wf-bg-secondary{
			background-color: #EDF0F3;
		}



    	.server-entrance{
    	    width:100%;
    	    height: 450px;
    	    border-radius: 10px;
    	    position: relative;
    	    top:-70px;
    	    background-color: white;
    	    box-shadow: 2px 2px 5px #00000030;
			padding-top:50px;
    	}


		.server-title-zh{    
			text-align: center;
		    font-weight: 800;
			font-size: 24px;
		}
		.server-title-en{
			font-size: 12px;
			text-align: center;
			color: #3f94ff;
		    margin-bottom: 1.5rem;
		}

		.service-card {
			height: 300px;
			background-size: cover;
			background-position: center;
			color: white;
			flex-direction: column;
			justify-content: center;
			position: relative;
			padding: 5px;
		}
		.server-list{
			padding: 20px;
		}
		.service-img {
		    width: 100%;
		    display: block;
		    height: auto;
		    /* 可选：如果需要图片完全填充父容器，可添加object-fit（根据需求选择） */
		    /* object-fit: cover;  // 裁剪图片填充，保持比例 */
		    /* object-fit: contain; // 完整显示图片，可能留空白 */
    		/* 核心：添加过渡动画，让放大/缩小更流畅 */
    		transition: transform 0.3s ease;
    		/* 初始状态无缩放 */
    		transform: scale(1);    
			cursor: pointer;
		}

		/* 鼠标划过容器时，图片放大 */
		.service-card:hover .service-img {
		    /* scale(1.1) 表示放大到1.1倍，可根据需求调整数值，如1.05、1.2等 */
		    transform: scale(1.1);
		    /* 可选：添加轻微阴影，增强视觉效果 */
		    filter: drop-shadow(0 0 5px rgba(0, 0, 0, 0.1));    
		}



	


		.policy-title-zh{    
			text-align: center;
		    font-weight: 800;
			font-size: 24px;
		}
		.policy-title-en{
			font-size: 12px;
			text-align: center;
			color: #3f94ff;
		    margin-bottom: 1.5rem;
		}
		.policy-tabs .nav-link {
			color: #666;
			border-radius: 20px;
			padding: 0.3rem 1rem;
			margin: 0 0.5rem;
		}

		.policy-tabs .nav-link.active {
			background-color: #0069DF;
			color: white;
		}

		.news-item {
			border-bottom: 2px solid #eee;
			padding: 1rem 10px;
			background-color: white;
			margin-bottom: 10px;
		}
		.news-item h6{
			font-weight: 800;
		}
		.news-item a{
    		text-decoration-line: none;
		}
		.news-item small{
			margin-top: 10px;
		}
		.news-item:last-child {
			border-bottom: none;
		}

		.news-date {
			color: #999;
			font-size: 0.85rem;
		}
	/*平台简介 */
		/* .platform-introduction{
			
		} */
		.platform-title-zh{    
			text-align: center;
		    font-weight: 800;
			font-size: 24px;
		}
		.platform-title-en{
			font-size: 12px;
			text-align: center;
			color: #3f94ff;
		    margin-bottom: 1.5rem;
		}
		.platform-center{
			position: relative;
		}
		.platform-center p{
    		font-size: 16px;
    		color: #959393 !important;
    		letter-spacing: 3px;
    		line-height: 35px;
		}
		.platform-bootom{
			position: absolute;
			bottom: 0px;
			background-color:#0069DF;
			width:3000px;
			min-width: 3000px;
			height:180px;
		}
		.platform-img{
			width: 100%;
		}
		.platform-bootom-href{
			width: 400px;
			height: auto;
			color: white;
			position: absolute;
    		top: 80px;
    		left: 200px;
		}
		.platform-bootom-href div{
			height: 27px;
		}
		.platform-bootom-zh{
			font-size: 18px;
			font-weight: 700;
		}
		.platform-bootom-en{
			font-size: 14px;
		}
		.footer {
			background-color: var(--dark-blue);
			color: white;
			padding: 2rem 0;
			text-align: center;
			font-size: 0.9rem;
		}