@media screen and (min-width: 768px) {
    .menu-list{
        flex-wrap: wrap;
    }
    .menu-list .menu-item{
        width: 25%;
        flex: unset;
        height: 50%;
        padding: var(--size-40) var(--size-24);
        cursor: pointer;
        display: block;
    }
    .menu-list .menu-item:hover{
        flex: unset;
    }
    .menu-list .menu-item .title{
        width: 100%;
        line-height: 1.2;
    }
    .menu-list .menu-item .title img{
        display: none;
    }
    .menu-list .menu-item .more{
        width: var(--size-48);
        height: var(--size-48);
        line-height: var(--size-48);
        margin-top: var(--size-24);
    }
    .menu-list .menu-item .text{
        position: absolute;
        left: var(--size-24);
        right: var(--size-24);
        top: 100%;
        transform: translateY(-100%);
        transition: all .3s ease-in-out;
    }
    .menu-list .menu-item:hover .text{
        top: var(--size-40);
        transform: translateY(0);
    }

    .menu-list .menu-item::before{
        content: unset;
    }
}


.secondary-head-en .page-title{
    width: unset;
    font-family: "SourceHanSerifCN";
    font-weight: 600;
    color: #fff;
    text-align: right;
    margin-right: var(--size-12);
    position: relative;
}

.flipdown .rotor-group:nth-child(1) .rotor-group-heading:before {
    content: 'Days';
    font-size: .65em;
}

.flipdown .rotor-group:nth-child(2) .rotor-group-heading:before {
    content: 'Hours';
    font-size: .65em;
}

.flipdown .rotor-group:nth-child(3) .rotor-group-heading:before {
    content: 'Minutes';
    font-size: .65em;
}

.flipdown .rotor-group:nth-child(4) .rotor-group-heading:before {
    content: 'Seconds';
    font-size: .65em;
}

.count-down .text{
    text-align: right;
    margin-bottom: calc(var(--size-54) * .35);
    background: linear-gradient(90deg, #E7CA88 0%, #B56A56 100%);
    -webkit-background-clip: text;
    color: transparent;
    line-height: 1.2;
}

.develop-list .develop-item .year{
    margin-top: 0;
    margin-bottom: var(--size-6);
}