/* iPadPro, iPadAir, SurfacePro7 */
@media (max-width:1024px) and (min-width: 821px) {

}

/* iPadMini */
@media (max-width:820px) and (min-width: 641px) {

}

/* iPhone */
@media (max-width: 640px) {
    .header-container{
        border-bottom: none;
    }
    .header-container-white{
        border-bottom: #EEEEEE solid 1px;
    }
    .header-content{
        padding: 10px 0;
    }
    .header-brand-logo{
        height: 40px;
    }
    .header-brand-logo-img{
        height: 30px;
    }
    .header-menu-list{
        display: none;
    }
    .header-actions{
        width: 0px;
        height: 0px;
        overflow: hidden;
    }
    .header-mobile-menu-toggle-btn,.header-mobile-language-toggle-btn{
        display: flex;
        width: 40px;
        height: 40px;
        flex-direction: column;
        justify-content: center;
        align-items: center;
    }
    .header-mobile-language-toggle-btn{
        margin-right: 10px;
    }
    .header-mobile-menu-toggle-btn-icon, .header-mobile-language-toggle-btn-icon{
        width: 40px;
        height: 40px;
        display: flex;
        flex-direction: row;
        justify-content: center;
        align-items: center;
    }
    .header-mobile-menu-toggle-btn-icon-img, .header-mobile-language-toggle-btn-icon-img{
        width: 30px;
        height: 30px;
        object-fit: contain;
    }
    .header-mobile-menu-toggle-btn-icon-img:last-of-type, .header-mobile-language-toggle-btn-icon-img:last-of-type{
        display: none;
    }
    .header-content-right{
        justify-content: flex-end;
    }
    .header-container-white .header-mobile-menu-toggle-btn-icon-img:last-of-type,
    .header-container-white .header-mobile-language-toggle-btn-icon-img:last-of-type{
        display: block;
    }
    .header-container-white .header-mobile-menu-toggle-btn-icon-img:first-of-type,
    .header-container-white .header-mobile-language-toggle-btn-icon-img:first-of-type{
        display: none;
    }
    @keyframes fadeRight {
        from {transform: translateX(-100%);}
        to {transform: translateX(0%);}
    }
    /* 手机版下拉菜单 */
    .header-mobile-dropdown-menu{
        width: calc(100% - 40px);
        height: calc(100% - 30px);
        padding: 10px 20px 20px;
        background-color: #ffffff;
        position: fixed;
        top: 0;
        left: 0;
        z-index: 1000;
        animation: fadeRight ease-in .3s forwards;
    }
    .header-mobile-dropdown-menu-header{
        width: 100%;
        display: flex;
        flex-direction: row;
        justify-content: space-between;
        align-items: center;
        padding-bottom: 10px;
        border-bottom: #EEEEEE solid 1px;
    }
    .header-mobile-dropdown-menu-header-left{
        display: flex;
        flex-direction: row;
        justify-content: flex-start;
        align-items: center;
    }
    .header-mobile-dropdown-menu-header-right{
        display: flex;
        flex-direction: row;
        justify-content: flex-end;
        align-items: center;
    }
    .header-mobile-dropdown-menu-header-toggle-btn{
        width: 30px;
        height: 30px;
        display: flex;
        flex-direction: row;
        justify-content: center;
        align-items: center;
        background-color: #3d9348;
        border-radius: 15px;
    }
    .header-mobile-dropdown-menu-header-toggle-btn-icon{
        width: 14px;
        height: 14px;
        display: flex;
        flex-direction: row;
        justify-content: center;
        align-items: center;
    }
    .header-mobile-dropdown-menu-header-toggle-btn-icon-img{
        width: 14px;
        height: 14px;
        object-fit: contain;
    }
    .header-mobile-dropdown-menu-list{
        width: 100%;
        height: calc(100% - 61px);
        overflow-y: auto;
        /*padding-top: 20px;*/
    }
    .header-mobile-dropdown-sub-menu{
        width: 100%;
        display: flex;
        flex-direction: column;
        justify-content: flex-start;
        align-items: flex-start;
        border-bottom: #EEEEEE solid 1px;
    }
    .header-mobile-dropdown-sub-menu-info{
        width: calc(100% - 20px);
        display: flex;
        flex-direction: row;
        justify-content: space-between;
        align-items: center;
        text-decoration: none;
        padding: 12px 10px;
    }
    .header-menu-dropdown-sub-menu-title{
        font-size: 16px;
        color: #515151;
    }
    .header-menu-dropdown-sub-menu-icon{
        width: 30px;
        height: 30px;
        display: flex;
        flex-direction: row;
        justify-content: center;
        align-items: center;
    }
    .header-menu-dropdown-sub-menu-icon-img{
        width: 20px;
        height: 20px;
        object-fit: contain;
    }
    .header-mobile-dropdown-menu-brand-logo{
        height: 40px;
        display: flex;
        flex-direction: row;
        justify-content: center;
        align-items: center;
    }
    .header-mobile-dropdown-menu-brand-logo-img{
        height: 30px;
        object-fit: contain;
    }
}