.main {
    background: #fff;
    width: 100%;
    height: auto;
}

.main .header_img {
    width: 100%;
    height: 303px;
}
.bg_1{
    background: #e4d6ba;
}
.bg_2{
    background: #ddf1ff;
}
.bg_3{
    background: #dcfbe3;
}
.bg_4{
    background: #bfbfef;
}
.box_wrap{
    padding: 10px 0 80px 0;
}
.box_wrap .box .title_box{
    position: relative;
    margin: 20px auto;
}

.box_wrap .box .title_box .title_bg {
    width: 50px;
    height: 8px;
    border-radius: 8px;
    margin-top: -12px;
}
.box_wrap .box .title_box .title_t{
    font-size: 24px;
    font-weight: 400;
    color: #333;
}

.box .card_wrap{
    width: 100%;
    height: auto;
    border-radius: 3px;
    padding: 20px;
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    background-image: linear-gradient(to right, #ffffffcc, #ffffffcc);
    gap: 20px;
}
.box .card_wrap .card{
    width: 100%;
    height: auto;
    display: flex;
    flex-direction: column;
}
.box .card_wrap .card .card_top{
    display: flex;
}
.box .card_wrap .card .card_top img{
    border-radius: 3px;
    margin-right: 15px;
}
.box .card_wrap .card .card_top .card_title{
    font-size: 18px;
    font-weight: 700;
    color: #333;
    margin-top: 10px;
    height: 70px;
    line-height: 22px;
    display: -webkit-box;
    overflow: hidden;
    text-overflow: ellipsis;
    -webkit-box-orient: vertical;
    -webkit-line-clamp: 3;
}
.box .card_wrap .card .card_top .card_content{
    font-size: 13px;
    line-height: 18px;
    font-weight: 400;
    color: #666;
    display: -webkit-box;
    overflow: hidden;
    text-overflow: ellipsis;
    -webkit-box-orient: vertical;
    -webkit-line-clamp: 5;
    text-align: justify;
}

.main .box .card_wrap .card ul{
    margin-top: 5px;
}
.main .box .card_wrap .card ul li{
    font-size: 14px;
    list-style: none;
    height: 38px;
    line-height: 38px;
    border-bottom: 1px solid #e5d8bd4e;
}
.main .box .card_wrap .card ul li:last-child{
    font-size: 14px;
    list-style: none;
    height: 38px;
    line-height: 38px;
    border-bottom: none;
}
.main .box .card_wrap .card ul li a{
    margin-left: 20px;
    display: flex;
    justify-content: space-between;
}
.main .box .card_wrap .card ul li a::before{
    position: absolute;
    margin-top: 17px;
    margin-left: -10px;
    content: '';
    width: 5px;
    height: 5px;
    background: #e5d8bd;
    border-radius: 50%;
}
.main .box .card_wrap .card ul li a:hover{
  color: #007474;
}