    .Tit-Public {
        display: flex;
        flex-direction: column;
        align-items: center;
        justify-content: center;
        text-align: center;
        padding: 2rem 1rem;
    }
    @media (min-width: 768px) {
        .Tit-Public {
            padding: 3rem;
        }
    }


.cloud-products {
	font-family: -apple-system, BlinkMacSystemFont, 'Segoe UI', Roboto, Oxygen, Ubuntu, Cantarell, 'Open Sans', 'Helvetica Neue', sans-serif;
	max-width: 1280px;
	margin: 0 auto;
 /*padding: 20px;*/
}

.header {
	text-align: center;
	margin-bottom: 40px;
}

.header h1 {
	font-size: 32px;
	margin-bottom: 10px;
}

.view-all {
	color: #1677ff;
	text-decoration: none;
}

.product-container {
	display: flex;
	gap: 20px;
	overflow: hidden;
}

.sidebar {
	/*width: 300px;*/
	flex-shrink: 0;
	background: #f5f7fa;
	border-radius: 8px;
	margin-bottom: 20px;
	padding: 20px;
	background-size: cover;
	/*width: 260px;*/
	overflow-x: visible;
	white-space: normal;
}

.menu-item {
	display: flex;
	align-items: center;
	padding: 10px 0px 10px 10px;
	margin-bottom: 8px;
	border-radius: 8px;
	cursor: pointer;
	color: #333;
	font-size: 18px;
}

.menu-item > img {
	width: 10%;
	margin-right: 10px;
	margin-left: 30px;
}

.menu-item.active {
	background-color: #1677ff !important;
	color: white !important;
}

.menu-item .icon {
	margin-right: 8px;
}

.content {
	flex-grow: 1;
}

.product-section {
	background: #f5f7fa;
	padding: 20px;
	border-radius: 8px;
	margin-bottom: 20px;
	display: block;
	background-image: url("https://portal.volccdn.com/obj/volcfe/bee_prod/biz_950/tos_34f8dbb7ee741c70a674e5a6afc93883.jpg");
	background-size: cover;
}

.product-section h2 {
	font-size: 24px;
	margin-bottom: 8px;
}

.product-section > p {
	color: #666;
	margin-bottom: 20px;
}

.product-cards {
	display: grid;
	grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
	gap: 20px;
}

.card {
	background: white;
	padding: 20px;
	border-radius: 8px;
	box-shadow: 0 2px 8px rgba(0,0,0,0.1);
}

.card h3 {
	font-size: 18px;
	margin-bottom: 8px;
}

.card p {
	color: #666;
	margin-bottom: 12px;
}

.tags {
	display: flex;
	flex-wrap: wrap;
	gap: 8px;
}

.tags span {
	background: #f65159;
	color: #fff;
	padding: 4px 8px;
	border-radius: 4px;
	font-size: 12px;
}

.tags a {
	padding: 4px 8px;
	border-radius: 4px;
	font-size: 12px;
	border: 1px solid #1664ff;
	border-radius: 4px;
	-moz-box-sizing: border-box;
	box-sizing: border-box;
	display: inline-block;
	font-size: 14px;
	font-weight: 500;
	height: 32px;
	line-height: 30px;
	padding: 0 16px;
}

.tags a:hover {
	background: rgba(22,100,255,.1);
	border-color: #1664ff;
	color: #1664ff;
}

@media (max-width: 768px) {
	.menu-item {
		padding: 10px;
	}

	.menu-item > img {
		margin: 0 10px 0 10px !important;
	}

	.product-section {
		padding: 15px;
	}

	.product-section h2 {
		font-size: 20px;
	}

	.card {
		padding: 15px;
	}

	.card h3 {
		font-size: 16px;
	}

	.tags a {
		padding: 0 12px;
		height: 28px;
		line-height: 26px;
	}

	.sidebar {
		padding: 0px !important;
	}
}

.menu-item > img {
	width: 24px;
 /* 统一图标大小 */
	margin: 2px 10px 0 15px;
}