.anim-up {
    opacity: 0;
    transform: translateY(50px);
    transition: opacity 0.5s ease, transform 0.5s ease
}

.anim-up.active {
    opacity: 1;
    transform: translateY(0)
}
.rotate {
    transform-origin: center center;
    animation: rotate-ani 4s linear infinite;
}
@keyframes rotate-ani {
    from {
        transform: rotate(0deg);
    }
    to {
        transform: rotate(360deg);
    }
}
.menu .banner {
    box-sizing: border-box;
    height: auto;
}
.menu .banner .videos{
    width: 100%;
    min-height: 200px;
    border-radius: 10px;
    overflow: hidden;
    display: flex;
    align-items: center;
    justify-content: center;
    margin-bottom: 10px;
}
.menu .banner .videos img {
    width: 100%;
    float: left;
    cursor: pointer;
    -webkit-transition: all .5s linear;
    -ms-transition: all .5s linear;
    -moz-transition: all .5s linear;
    -o-transition: all .5s linear;
    transition: all .5s linear;
}
.menu .banner .videos img:hover {
    transform: scale(1.05);
    cursor: unset;
}
.menu .banner .videos .btn img:hover {
    transform: unset;
}
.menu .banner .videos .others {
    max-width: 800px;
    height: auto;
    padding: 0 2%;
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    width: 100%;
}
.menu .banner .videos .others h5 {
    font-size: 25px;
    margin-top: 20px;
    margin-bottom: 40px;
    font-weight: normal;
    text-align: center;
    line-height: 1.6;
    letter-spacing: 8px;
    color: #7e4b02;
}

.menu .banner .videos .others .btn {
    width: 350px;
    height: auto;
}
.menu .banner .videos .others ul {
    display: flex;
    align-items: center;
    justify-content: space-between;
    flex-direction: row;
    margin-top: 44px;
    list-style: unset;
    padding: 0;
}
.menu .banner .videos .others ul li {
    list-style: none;
    width: 30%;
    text-align: center;
    font-size: 20px;
    color: #7e4b00;
    position: relative;
}
.menu .banner .videos .others ul li .playbtn {
    height: 80px;
    width: 80px;
    position: absolute;
    z-index: 2;
    top: 45%;
    left: 50%;
    margin-left: -40px;
    margin-top: -10px;

}
.menu .banner .videos .others ul li h4 {
    margin-top: 0;
    margin-bottom: 17px;
    font-size: 20px;
    line-height: 1;
    padding: 8px 0;
    border-top: 2px solid #7e4b00;
    border-bottom: 2px solid #7e4b00;
    display: inline-block;
}
.menu .banner .videos.v2 {
    width: 80%;
    margin: 0 auto;
}
.dialog {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100vh;
    background: rgba(0,0,0,0.8);
    z-index: 100;
    display: flex;
    align-items: center;
    justify-content: center;
}
.dialog-warp {
    position: relative;
}
.dialog video {
    z-index: 100;
    height: 100%;
    width: auto;
    border-radius: 8px;
    overflow: hidden;
    max-height: 600px;
    border: 3px solid #bda24d
}
.dialog .close {
    position: absolute;
    right: 20px;
    top: 20px;
    cursor: pointer;
    z-index: 101;
    overflow: hidden;
}
.dialog .close img {
    width: 45px;
    float: left;
}
.dialog .close:hover {
    border-radius: 8px;
    background: rgba(255,255,255,0.1);
}
.dialog .close svg {
    float: left;
}
.dialog .menu-list {
    width: 800px;
    height: 70vh;
    background: url(../images/pc/landing.jpg);
    background-size: 100% 100%;
    float: left;
    border-radius: 8px;
    box-sizing: border-box;
    padding: 16px;
    overflow: hidden;
    border: 3px solid #bda24d;

}
.dialog .menu-list .title {
    width: 100%;
    text-align: center;
    font-size: 26px;
    color: #bda24d;
    margin: 4px 0;
}
.dialog .menu-list p {
    text-align: center;
}
.dialog .menu-list .img {
    max-width: 100%;
    max-height: 240px;
}
.dialog .menu-list .list {
    width: 100%;
    display: flex;
    flex-direction: row;
}
.dialog .menu-list .list .l-t {
    font-size: 16px;
    color: #bda24d;
    line-height: 24px;
}
.dialog .menu-list .list .l {
    width: 35%;
    color: #fff;
    font-size: 14px;
    line-height: 24px;
    border-right: 2px solid #bda24d;
}
.dialog .menu-list .list .r {
    width: 65%;
    color: #fff;
    font-size: 14px;
    line-height: 24px;
}
.menu .banner .videos .others ul li .star{
    display: flex;
    width: 100%;
    text-align: center;
    align-items: center;
    justify-content: center;
}
.menu .banner .videos .others ul li .star span {
    line-height: 30px;
    display: block;
}

@media (min-width:768px){
    .mobile{
        display: none !important;
    }
}

@media (min-width:0px) and (max-width:767px) {
    .pc {
        display: none !important;
    }
    .dialog {
        background: rgba(0,0,0,0.4);
    }
    .dialog-warp {
        height: auto;
        width: 90%;
        padding: 0 0 0 2px;
        border-radius: 0;
        box-shadow: 10px 10px 20px 4px rgba(0,0,0,0.8)
    }
    .dialog video {
        width: 100%;
        height: auto;
        border-radius: 0;
    }
    .menu .banner {
        padding: 0
    }
    .menu .banner .videos.v2{
        width: 100%;
    }
    .menu .banner .videos .others {
        width: 100%;
        padding: 10px 0;
    }
    .menu .banner .videos .others h5 {
        font-size: 16px;
        margin-top: 5px;
        margin-bottom: 12px;
    }
    .menu .banner .videos .others .btn {
        width: 70%;
        height: auto;
        border-radius: 0;
    }
    .menu .banner .videos .others .btn img {
        min-height: unset;
    }
    .menu .banner .videos .others ul li h4 {
        margin-top: 10px;
        margin-bottom: 10px;
        font-size: 12px;
        ine-height: 1;
        padding: 5px 0;
        border-top: 1px solid #7e4b00;
        border-bottom: 1px solid #7e4b00;
        display: inline-block;
    }
    .menu .banner .videos .others ul {
        margin-top: 12px;
        margin-bottom: 0;
        width: 95%;
    }
    .menu .more-box {
        margin-top: 18px;
    }
    .menu .more-box .slogan {
        font-size: 20px;
        margin-bottom: 20px;
    }
    .menu .more-box ul li{
        width: 100%;
    }
    .dialog .menu-list {
        width: 100%;
        height: 89vh;
        border-radius: 0;
        padding: 10px;
        background: url(../images/wap/landing.jpg);
        background-size: 100% auto;
        overflow: auto;
        position: relative;
        border: 0;
    }
    .dialog .close {
        top: 10px;
        right: 10px;
    }
    .dialog .menu-list .title {
        font-size: 18px;
    }
    .dialog .menu-list .list {
        flex-direction: column;
    }
    .dialog .menu-list .list .l {
        border-right: unset;
        width: 100%;
        padding: 0 0 20px;
        border-bottom: 2px solid #bda24d;
        display: flex;
        flex-wrap: wrap;

    }
    .dialog .menu-list .list .l li {
        width: 48%;
        font-size: 12px;
        line-height: 1.2;
        padding-top: 5px;
        padding-bottom: 5px;
    }
    .dialog .menu-list .list .l li:nth-child(2n) {
        width: 52%;
        padding-right: 4%;
        box-sizing: border-box;
    }
    .dialog .menu-list .list .l-t {
        font-size: 14px !important;
        width: 100% !important;
    }
    .dialog .menu-list p {
        margin-bottom: 0;
    }
    .dialog .menu-list .list .r {
        border-right: unset;
        width: 100%;
        padding: 0;
        font-size: 12px;
    }
    .dialog .menu-list .list .r li {
        padding: 5px 0;
    }
    .menu .sec-3 {
        margin-top: 100px;
    }
    .menu .sec-3 .logo-2 {
        width: 90%;
        left: 5%;
        margin-left: unset;
        top: -20%;
    }
    .menu .sec-3 .product {
        position: absolute;
        z-index: 2;
        height: auto;
        width: 100%;
        left: unset;
        right: unset;
        margin-left: unset;
        bottom: 10px;
        align-items: baseline;
    }
    .menu .sec-3 .product img {
        height: 50px;
        margin-bottom: 6px;
    }
    .menu .sec-3 .product .item:nth-child(1) img {
        height: 73px;
    }
    .menu .sec-3 .product .item:nth-child(2) img {
        height: 50px;
    }
    .menu .sec-3 .product .item span {
        font-size: 14px;
    }
    .menu .sec-4 {
        margin-top: 15px;
    }
    .menu .sec-4 .title {
        width: 295px;
        height: 48px;
        line-height: 48px;
        font-size: 20px;
    }
    .menu .sec-4 .sub-title {
        font-size: 13px;
        line-height: 22px;
        margin: 15px 0;
        width: 70%;
        background-size: 100% 2px;
        padding-bottom: 5px;
        text-align: center;
    }
    .menu .sec-4 .video {
        width: 80%;
        height: auto;
    }
    .menu .sec-4 .video .poster {
        width: 100%;
        position: unset;
    }
    .menu .sec-5 {
        width: 90%;
        display: flex;
        padding: 28px 0 16px;
        font-size: 16px;
        justify-content: space-between;
        align-items: center;
        margin: 0 auto;
    }
    .menu .sec-5 .link .right {
        height: 12px;
    }
    .menu .banner .videos img {
        min-height: 300px;
    }
    .menu .banner .videos img {
        min-height: 60px;
    }
    .menu .more-box ul li img {
        min-height: 100px;
    }
    .menu .banner .videos .others ul li .playbtn {
        width: 40%;
        height: auto;
        min-height: unset;
        left: 30%;
        margin: 0;
        top: 50%;
    }
    .dialog .close img {
        width: 30px;
    }
    .menu .banner .videos .others ul li .star span {
        font-size: 12px;
        line-height: 1;
        margin-top: 5px;
    }
}
