.container {
    margin: 30px auto 80px;
}

.content_right {
    float: right;
    width: calc(100% - 319px - 30px);
}

.content_left {
    width: 319px;
    float: left;
}

.content_left_card {
    width: 100%;
    background-color: rgba(90, 90, 90, 0.12);
    padding-bottom: 30px;
    margin-bottom: 30px;
}

.title {
    width: 100%;
    height: 59px;
    line-height: 59px;
    background-color: var(--primary-color);
    font-weight: bold;
    font-size: 24px;
    color: #FFFFFF;
    padding: 0 22px;
    box-sizing: border-box;
}

.content_menu {
    width: calc(100% - 44px);
    padding: 20px 0;
    margin: 0 auto;
    border-bottom: 1px solid #BFBFBF;
}

.title_name {
    width: 100%;
    display: flex;
    align-items: center;
}

.title_name img {
    width: 23px;
    height: 23px;
}

.title_name span {
    width: calc(100% - 23px - 9px);
    font-weight: bold;
    font-size: 18px;
    color: #5A5A5A;
    margin-left: 9px;
}

.title_tel {
    width: calc(100% - 23px - 9px);
    font-weight: 300;
    font-size: 16px;
    color: #5A5A5A;
    margin: 10px 0 0 32px;
}

.latest_card {
    width: calc(100% - 44px);
    margin: 0 auto;
    padding: 20px 0 30px;
    border-bottom: 6px solid var(--primary-color);
}

.latest_card:nth-last-child(1) {
    border-bottom: none;
    padding-bottom: 0;
}

.latest_card_name {
    width: 100%;
    font-weight: bold;
    font-size: 16px;
    color: var(--primary-color);
    line-height: 26px;
}

.latest_card_img {
    width: 262px;
    height: 160px;
    margin-top: 16px;
    overflow: hidden;
}

.latest_card_img img {
    width: 100%;
    height: 100%;
}

@media screen and (max-width: 800px) {

    .content_right,
    .content_left {
        float: none;
        width: 100%;
    }

    .latest_card {
        padding: 19px 0 23px;
    }

    .title {
        height: 65px;
        font-size: 28px;
        line-height: 65px;
    }

    .content_menu {
        width: calc(100% - 20px);
        padding: 15px 0;
        border-bottom: 3px solid var(--primary-color);
    }

    .title_name img {
        width: 24px;
        height: 24px;
    }

    .title_name span {
        width: calc(100% - 24px - 9px);
        font-size: 18px;
    }

    .title_tel {
        width: calc(100% - 24px - 9px);
        font-size: 15px;
    }

    .latest_card {
        border-bottom: 3px solid var(--primary-color);
    }

    .latest_card_name {
        font-size: 18px;
        line-height: 24px;
    }

    .latest_card_img {
        width: 250px;
        height: 150px;
        margin-top: 14px;
    }
}

/* 后续添加 */
.wrap-layout {
    overflow: hidden;
    /* 清除浮动影响 */
    margin: 20px 0;
}

.float-img {
    float: left;
    /* 图片左浮动，文字环绕 */
    margin-right: 20px;
    margin-bottom: 10px;
    max-width: 30%;
    /* 图片宽度可调整 */
}

.float-img-right {
    float: right;
    /* 图片右浮动，文字环绕 */
    margin-top: 10px;
    margin-left: 20px;
    margin-bottom: 10px;
    max-width: 30%;
    /* 图片宽度可调整 */
}

img {
    max-width: 100%;
    height: auto;
    display: block;
}

h2 {
    margin-top: 0;
}

p {
    margin: 10px 0;
}