.col_menu_head {
    position: relative;
    margin-top: 20px;
    width: 100%; /* 可根据需要调整 */
    height: 80px; /* 可根据需要调整 */
    font-size: 24px;
    color: white;
    font-weight: bold;
    z-index: 1;
    display: flex;
    align-items: center;
    justify-content: center;
    background-color: rgba(147, 8, 12, 0.9);
}

.col_menu_con {
    width: 100%;
    background-color: white;

    li {
        display: block;
        height: 60px;
        line-height: 60px;
        text-align: center;
        border-left: 1px solid var(--color-coffee);
        border-right: 1px solid var(--color-coffee);
        border-bottom: 1px solid var(--color-coffee);

        a {
            display: block;
            width: 100%;
            height: 100%;
            font-size: 1.5em;
        }

        a:hover {
            color: white;
            background-color: var(--color-coffee);
        }


    }



}

.left_menu {
    display: block;
}

.col_menu {
    margin: 0 auto;
    width: 80%;
}

.col_menu_head::before {
    content: "";
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background-color: #F6F6F6;
    z-index: -1;
    /* 使用clip-path裁剪右上角为直角三角形 */
    clip-path: polygon(
            101% 0%, /* 右上角 */ 101% 25%, /* 右下移动 */ 90% 0%, /* 向左上移动 */ 101% 0% /* 闭合路径 */
    );
}

.bt_next {
    padding: 15px 0;
}