.top-img img{
    /*width: initial !important;*/
	max-width: 100% !important;
	margin: auto;
	/* border-radius: 10px; */
}
.nav-about {
    background: #ffffff;
    margin-top: -30px;
    padding: 0 80px;
    z-index: 1000;
    position: relative;
    box-shadow: 0 4px 8px rgba(0, 0, 0, 0.1);
    border-radius: 10px;
}
.nav-row{
    display: flex;
    justify-content: space-between; 
}
.title-bar{
	width: 6px;
	background-color: #F4272A;
	height: 60px;
	margin-right: 14px;
}
.title-box1{
    color: #F4272A;
	font-weight: bold;
	/*margin-top: 50px;*/
	font-size: 50px;
}
.title-box{
	color: #F4272A;
	font-weight: bold;
	margin-top: 50px;
	font-size: 50px;
}
.content{
	margin-left: 20px;
}
.sub-title{
	margin-top: 50px;
	font-size: 40px;
	color: #F4272A;
	font-weight: bold;
}
.sub-con{
	margin-top: 50px;
	font-size: 30px;
	color: #626262;
}

.pro-list {
    display: flex;
    flex-wrap: wrap; /* 自动换行 */
    gap: 30px; /* 图片间隔 */
    margin-top: 30px;
}

.pro-list a {
	margin-top: 20px;
    width: calc((100% - 90px) / 3); /* 每行显示三个图片，减去两次间隔 */
    border-radius: 20px; /* 圆角 */
    object-fit: cover; /* 确保图片适应容器 */
}
.pro-list a img{
    width: 100%; /* 每行显示三个图片，减去两次间隔 */
    border-radius: 20px; /* 圆角 */
    object-fit: cover; /* 确保图片适应容器 */
}
.hua-bg{
	margin-top: 50px;
	background: url('../images/jgbj.png') no-repeat center center;
    background-size: cover;
    width: 100%; /* 确保宽度为100% */
    box-sizing: border-box; /* 确保内外边距计算正确 */
	padding: 100px 60px;
    /* position: relative; */
}

.hua-bg .glass-effect {
    display: flex; /* 使用 flex 布局 */
    justify-content: space-between;
    align-items: center;
    height: 300px;
    background: rgba(255, 255, 255, 0.7); /* 半透明白色背景 */
    backdrop-filter: blur(10px); /* 毛玻璃效果 */
    border-radius: 20px; /* 圆角 */
    box-shadow: 0 4px 10px rgba(0, 0, 0, 0.1); /* 添加阴影 */
    padding: 20px 0 /* 内边距 */
}

.hua-bg .glass-effect .left,
.hua-bg .glass-effect .right {
	margin-left: 100px;
    flex: 1; /* 左右部分均分宽度 */
    /* text-align: center; */
}

.hua-bg .glass-effect .divider {
    width: 2px; /* 增加宽度 */
    height: 80%; /* 分隔线高度 */
    background: repeating-linear-gradient(
        to bottom,
        #929191,
        #929191 2px,
        transparent 2px,
        transparent 6px
    ); /* 更明显的虚线效果 */
}

.hua-bg .glass-effect .title {
    font-size: 24px;
    color: #888787;
    margin-bottom: 10px;
}

.hua-bg .glass-effect .left .value {
    font-size: 36px;
    font-family: 'Source Han Sans CN', sans-serif;
    font-weight: bold;
    font-size: 57px;
    color: #F40F1E;
    background: linear-gradient(100deg, #F10E1E 0%, #FF955E 80%);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
}
.hua-bg .glass-effect .right .value {
    font-size: 36px;
    font-family: 'Source Han Sans CN', sans-serif;
    font-weight: bold;
    font-size: 57px;
    color: #F40F1E;
    background: linear-gradient(100deg, #F10E1E 0%, #FF955E 20%);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
}
.sub-mg-left{
	margin-left: 20px;
}

.list-content {
    display: flex;
    flex-direction: column;
    gap: 30px; /* 列表项间距 */
    margin-top: 50px;
}

.list-item {

    width: 100%;
}

.list-item .left {
	display: flex;
	align-items: center;
    flex: 0 0 100px; /* 固定宽度 */
}

.list-item .left img {
    width: 50px;
    height: 50px;
    object-fit: cover; /* 确保图片适应容器 */
}

.list-item .right {
	margin-left: 65px;
    display: flex;
    flex-direction: column;
    justify-content: center; 
}

.list-item .title {
	margin-left: 15px;
    font-size: 24px;
    font-weight: bold;
    margin-bottom: 10px;
    color: #333;
}

.list-item .right .desc {
    font-size: 16px;
    color: #666;
    margin-bottom: 20px;
}

.list-item .right .images {
    display: flex;
    gap: 30px; /* 图片间隔 */
}

.list-item .right .images img {
    width: 25%; /* 每张图片宽度为40% */
    height: 200px; /* 固定高度 */
    object-fit: cover; /* 裁剪超出部分 */
    border-radius: 10px; /* 圆角 */
}

.bottom-btn {
    background: url('../images/theme-bg.png') no-repeat center center;
    background-size: cover;
    border-radius: 10px; /* 圆角 */
    width: 40%; /* 按钮宽度 */
    height: 100px; /* 按钮高度 */
    margin: 150px auto 100px auto; /* 居中 */
    display: flex;
    justify-content: center; /* 水平居中 */
    align-items: center; /* 垂直居中 */
    font-size: 30px; /* 文字大小 */
    font-weight: bold; /* 加粗 */
    color: #FFFFFF; /* 文字颜色 */
    text-align: center; /* 文字居中 */
    cursor: pointer; /* 鼠标悬停时显示手型 */
}