.top-img img{
    width: initial !important;
	max-width: 100% !important;
	margin: auto;
	/* border-radius: 10px; */
}
.bg{
	background: url('../images/sun-bg.png') no-repeat center center;
    background-color: #f2f2f2 !important;
    background-size: cover;
    width: 100%; /* 确保宽度为100% */
    box-sizing: border-box; /* 确保内外边距计算正确 */
	padding: 50px 0 100px 0;
}

.card-title .h2-title{
    color: #636363;
    /* margin-top: 30px; */
    font-size: 30px;
    width: 70%;
    
}

.title-line{
    width: 50px;
    height: 5px;
    background: linear-gradient(100deg, #F10E1E, #FF955E);
}
.party-content{
    color: #595959;
    font-size: 16px;
    line-height: 2;
    text-indent: 2em;  /* 添加首行缩进2个字符 */
}
.pro-list {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    flex-wrap: wrap; /* 自动换行 */
    gap: 100px; /* 列间距 */
    width: 100%; /* 宽度100% */
    margin-top: 30px;
    justify-content: flex-start; /* 最后一行靠左对齐 */
}

.pro-list .pro-item {
    position: relative;  /* 添加相对定位 */
    margin-top: 20px;
    width: auto; /* 固定宽度 */
    height: 500px; /* 固定高度 */
    /* border: 1px solid #ddd; */
    /* border-radius: 10px;  */
    /* box-shadow: 0 4px 8px rgba(0, 0, 0, 0.1);  */
    display: flex;
    flex-direction: column; /* 垂直布局 */
    overflow: hidden;
    background-color: #fff;
    border-radius: 20px;
}

@media screen and (min-width: 1600px) {
  .pro-list .pro-item {
    position: relative;  /* 添加相对定位 */
    margin-top: 20px;
    width: auto; /* 固定宽度 */
    height: 500px; /* 固定高度 */
    /* border: 1px solid #ddd; */
    /* border-radius: 10px;  */
    /* box-shadow: 0 4px 8px rgba(0, 0, 0, 0.1);  */
    display: flex;
    flex-direction: column; /* 垂直布局 */
    overflow: hidden;
    background-color: #fff;
    border-radius: 20px;
}
}

/* 笔记本电脑（宽度小于1600px） */
@media screen and (max-width: 1599px) {
  .pro-list .pro-item {
    position: relative;  /* 添加相对定位 */
    margin-top: 20px;
    width: auto; /* 固定宽度 */
    height: 450px; /* 固定高度 */
    /* border: 1px solid #ddd; */
    /* border-radius: 10px;  */
    /* box-shadow: 0 4px 8px rgba(0, 0, 0, 0.1);  */
    display: flex;
    flex-direction: column; /* 垂直布局 */
    overflow: hidden;
    background-color: #fff;
    border-radius: 20px;
}
}

.pro-item img {
    border-top-left-radius: 20px;
    border-top-right-radius: 20px;
    width: 100%;
    aspect-ratio: 4/3;
    object-fit: cover; /* 裁剪超出部分 */
    object-position: center; /* 显示中心部分 */
}

.pro-item .name{
    margin-top: 30px;
    margin-left: 10px;
    margin-right: 10px;
    color: #343434;
    font-size: 18px;
}
.pro-item .desc {
    margin: 10px;
    font-size: 15px;
    color: #9F9F9F;
    /* padding: 10px 0; */
    /* text-align: center; */
    display: -webkit-box;
    -webkit-line-clamp: 2; /* 显示两行 */
    -webkit-box-orient: vertical;
    overflow: hidden;
    text-overflow: ellipsis; /* 超出显示省略号 */
}
.pro-item .date {
    position: absolute;
    bottom: 30px;
    left: 10px;
    font-size: 13px;
    color: #9F9F9F;
}

.pro-toggle-btn {
    margin: 40px auto; /* 上下间距和左右居中 */
    text-align: center;
    font-size: 16px;
    color: #F74337;
    cursor: pointer;
    padding: 5px 50px;
    border: 1px solid #F74337;
    border-radius: 20px;
    display: block; /* 确保按钮为块级元素 */
    width: fit-content; /* 根据内容自适应宽度 */
    transition: all 0.3s ease;
}

.pro-toggle-btn:hover {
    background-color: #F74337;
    color: #fff;
}