#social {
    margin-bottom: 64px;
}
#social ul {
    display: flex;
    justify-content: space-between;
}
#social ul li {
    flex: 1;
    margin-right: 8px;
    cursor: pointer;
}
#social ul li:first-child {
    flex: 2;
}
#social ul li:last-child {
    margin-right: 0;
}
#social ul:hover li {
    flex: 1;
}
#social ul li:hover {
    flex: 2;
    transition: all 0.5s ease-out; 
}
#social .social-li-image-title-top {
    height: 274px;
    width: 100%;
    background-size: cover;
    background-position: center;
    background-repeat: no-repeat;
    position: relative;
}
#social .social-li-top-content {
    width: 100%;
    height: 80px;
    position: absolute;
    bottom: 0;
    left: 0;
    background: rgba(0, 0, 0, 0.50);
    display: flex;
    justify-content: start;
}
#social .social-li-top-content .social-li-img {
    width: 80px;
    height: 80px;
    display: flex;
    justify-content: center; /* 水平居中 */
    align-items: center; /* 垂直居中 */
}
#social .social-li-top-content .social-li-img1 {
    background-color: #0B2467;
}
#social .social-li-top-content .social-li-img2 {
    background-color: #46763B;
}
#social .social-li-top-content .social-li-img3 {
    background-color: #F89C24;
}
#social .social-li-top-content .social-li-img img {
    width: 44px;
    height: 44px;
    display: inline-block;
}
#social .social-li-top-content .social-value-title {
    cursor: pointer;
    box-sizing: border-box;
    padding: 0 16px;
    line-height: 80px;;
    width: calc(100% - 80px);
    color: #ffffff;
    text-align: center;
    font-size: 14px;
    text-overflow: ellipsis; /* 用省略号表示被隐藏的文本 */
    display: -webkit-box;
    -webkit-box-orient: vertical;
    line-clamp: 1;
    -webkit-line-clamp: 1;
    overflow: hidden;
}
#social-list .social-li-image-title {
    padding-top: 32px;
    padding-bottom: 34px;
    display: flex;
    justify-content: start;
    border-bottom: 1px solid rgb(212, 219, 229);
    transition: all .5s;
}
#social-list .social-li-image-title:last-child {
    border-bottom: 1px solid rgba(212, 219, 229, 0);
}
#social-list .social-value-date {
    width: 80px;
    height: 80px;
    box-sizing: border-box;
    background-color: #ECD4B5;
    text-align: center;
    margin-right: 24px;
    color: #CC953D;
    display: flex;
    align-items: center;
    flex-direction: column;
    justify-content: center;
    font-weight: bold;
    transition: all .5s;
}
#social-list .social-date-day {
    font-size: 28px;
    margin-top: -1px;
}
#social-list .social-date-year-month {
    font-size: 12px;
}
#social-list  .social-li-content {
    width: calc(100% - 104px);
    height: 80px;
    overflow: hidden;
    box-sizing: border-box;
}
#social-list .social-li-title {
    cursor: pointer;
    font-size: 20px;
    color: #333;
    margin-bottom: 8px;
    font-weight: bold;
    text-overflow: ellipsis; /* 用省略号表示被隐藏的文本 */
    display: -webkit-box;
    -webkit-box-orient: vertical;
    line-clamp: 1;
    -webkit-line-clamp: 1;
    overflow: hidden;
}
#social-list .social-li-description {
    font-size: 14px;
    color: #666;
    line-height: 24px;
    box-sizing: border-box;
    text-align: left;
    font-size: 14px;
    text-overflow: ellipsis; /* 用省略号表示被隐藏的文本 */
    display: -webkit-box;
    -webkit-box-orient: vertical;
    line-clamp: 2;
    -webkit-line-clamp: 2;
    overflow: hidden;
}
#social-list .social-li-image-title:hover {
    border-bottom-color: #F89C24;
    transition: all .5s;
}
#social-list .social-li-image-title:hover .social-li-title {
    font-weight: bold;
    transition: all .5s;
}
#social-list .social-li-image-title:hover .social-li-title {
    color: #CC953D;
    transition: all .5s;
}
#social-list .social-li-image-title:hover .social-value-date {
    background-color: #0B2467;
    color: #ffffff;
    transition: all 1s ease;
}
@media screen and (max-width: 600px) {
   #social {
        display: none;
   }

}