body {
    background-color: #F8F8F8;
}
.social {
    background-color: #fff;
    padding: .26rem .313rem .417rem;
    box-sizing: border-box;
    margin: .26rem auto;
}
.social_title {
    text-align: center;
    color: #59200a;
    font-size: 40px;
    line-height: .172rem;
    padding-bottom: .313rem;
    border-bottom: 1px solid #ddd;
    margin-bottom: .208rem;
}
.social_list {

}
.social_item {
    display: flex;
    align-items: center;
    background-color: #fffbef;
    margin-bottom: 30px;
}
.social_item_img {
    width: 2.344rem;
    height: 2.396rem;
    overflow: hidden;
    flex-shrink: 0;
}
.social_item_img img {
    width: 100%;
    height: 100%;
    object-fit: cover;
}
.social_item_right {
    padding: .219rem .365rem;
}
.social_item_title {
    font-size: 30px;
    line-height: .188rem;
    color: #59200a;
}
.social_item_line {
    width: 100%;
    height: 1px;
    background-color: #ddd;
    margin: .161rem 0 .109rem;
}
.social_item_desc {
    font-size: 16px;
    line-height: 33px;
    color: #59200a;
}

/* 移动端适配 */
@media screen and (max-width: 768px) {
    .social {
        padding: 20px 15px;
        margin: 15px auto;
    }
    
    .social_title {
        font-size: 24px;
        line-height: 1.4;
        padding-bottom: 20px;
        margin-bottom: 20px;
    }
    
    .social_item {
        flex-direction: column;
        margin-bottom: 20px;
    }
    
    .social_item:nth-child(even) {
        flex-direction: column;
    }
    
    .social_item_img {
        width: 100%;
        height: 200px;
    }
    
    .social_item_right {
        padding: 20px 15px;
    }
    
    .social_item_title {
        font-size: 18px;
        line-height: 1.5;
    }
    
    .social_item_line {
        margin: 15px 0 10px;
    }
    
    .social_item_desc {
        font-size: 14px;
        line-height: 26px;
        text-align: justify;
    }
}