.menu {
    width: 14.4rem;
    margin: 0 auto;
    padding-top: 0.8rem;
    padding-bottom: 1.2rem;
}

.menu .menu_nav {
    display: flex;
    justify-content: center;
    margin-bottom: 0.5rem;
}

.menu .menu_nav a {
    display: flex;
    justify-content: center;
    align-items: center;
    width: 1.6rem;
    height: 0.46rem;
    background: #FFFFFF;
    border: 0.01rem solid #FFA600;
    box-sizing: border-box;
    transition: all 0.3s;
    margin-right: 0.6rem;
    font-family: OPPOSans;
    font-weight: 500;
    font-size: 0.2rem;
    color: #333333;
}

.menu .menu_nav a:last-child {
    margin-right: 0;
}

.menu .menu_nav a:hover {
    background: #FFA600;
    color: #FFFFFF;
}

.menu .menu_nav a.active {
    background: #FFA600;
    color: #FFFFFF;
}

.menu_con {
    display: flex;
    width: 14.4rem;
    margin: 0 auto;
}

.menu_con .menu_left {
    margin-right: 0.65rem;
    width: 2.3rem;
}

.menu_con .menu_left .left_item {
    position: relative;
    display: block;
    background: #F5F5F5;
    width: 100%;
    height: 0.44rem;
    padding-left: 0.2rem;
    box-sizing: border-box;
    transition: all 0.3s;
    font-family: OPPOSans;
    font-weight: 400;
    font-size: 0.16rem;
    color: #333333;
    line-height: 0.44rem;
}

.menu_con .menu_left .left_item::after {
    content: "";
    position: absolute;
    bottom: 0;
    left: 0.2rem;
    width: 1.9rem;
    height: 0.02rem;
    background: #DCDCDC;
    transition: all 0.3s;
}

.menu_con .menu_left .left_item:last-child::after {
    display: none;
}

.menu_con .menu_left .left_item:hover {
    background: #FFA600;
    color: #FFFFFF;
}

.menu_con .menu_left .left_item:hover::after {
    background: #FFA600;
}

.menu_con .menu_left .left_item.active {
    background: #FFA600;
    color: #FFFFFF;
}

.menu_con .menu_left .left_item.active::after {
    background: #FFA600;
}

.menu_con .menu_right {
    width: 11.45rem;
    display: flex;
    flex-wrap: wrap;
}

.menu_con .menu_right .right_item {
    position: relative;
    display: block;
    width: 3.65rem;
    height: 2.65rem;
    margin-right: 0.25rem;
    margin-bottom: 0.25rem;
    overflow: hidden;
}

.menu_con .menu_right .right_item:nth-child(3n) {
    margin-right: 0;
}

.right_item img {
    display: block;
    width: 100%;
    height: 100%;
    transition: all .3s;
}

.right_item:hover img{
    transform: scale(1.1);
} 

.right_item .right_item_title {
    position: absolute;
    bottom: 0;
    left: 0;
    width: 100%;
    height: 0.46rem;
    padding: 0 0.2rem;
    box-sizing: border-box;
    background: linear-gradient(180deg, rgba(0, 0, 0, 0) 0%, rgba(0, 0, 0, 0.52) 43%, rgba(0, 0, 0, 0.79) 100%);
    font-family: Microsoft YaHei, Microsoft YaHei;
    font-weight: 400;
    font-size: 0.16rem;
    color: #FFFFFF;
    line-height: 0.46rem;
}

.menu_con .menu_right .page {
    padding-top: 0.35rem;
    margin: 0 auto;
}