
*{
    transition: 0.2s;
}
/* 最外层容器 */
#nav_InternationalEDU{
    background-color: #444;
    width: 100%;
    height: 13.33vw;
    display: flex;
    align-items: center;
    justify-content: center;
    position: fixed;
    top: 0;
    left: 0;
    z-index: 1002;
}

/* 内容容器 */
#nav_InternationalEDUContentWrap{
    position: relative;
    width: 100%;
    height: auto;
    display: flex;
    flex-direction: row;
    align-items: center; 
    justify-content: space-between;
    margin: 0 6vw;
}

/* logo */
#nav_InternationalEDUContentWrap img{
    width: 30vw;
    height: auto;
}

/* 按钮 */
#nav_InternationalEDULinkButton{
    display: flex;
    flex-direction: column;
    justify-content: space-between;
    align-items: center;
    position: relative;
    width: 5.6vw;
    height: 5.6vw;
    cursor: pointer;
}

/* 按钮内部竖条 */
#nav_InternationalEDULinkButton div{
    /* position: absolute; */
    background-color: white;
    width: 105%;
    height: 0.4vw;
}
#nav_InternationalEDULinkButtonTOP{
    margin-top: 0.68vw;
    transform-origin: top left;
    /* top: 0.8vw; */
}
#nav_InternationalEDULinkButtonMID{
    transform-origin: 0 0;
    /* top: 2.8vw; */
}
#nav_InternationalEDULinkButtonBOT{
    margin-bottom: 0.68vw;
    transform-origin: bottom left;
    /* bottom: 6px; */
}

/* 链接容器 */
#nav_InternationalEDULinkWrapMoblie{
    z-index: 1002;
    position: fixed;
    right: 0;
    top: 0;
    padding-left: 4.6vw;
    padding-right: 4.6vw;
    /* display: flex; */
    display: none;
    height: 100vh ;
    flex-direction: column;
    border-radius: 2vw 0 0 2vw ;
    background-color: white;
    align-content: space-between;
    justify-content: space-between;
    transform: scaleX(0);
    transform-origin: center right;
    box-shadow: 0.6vw 0.6vw 0.6vw 0.6vw #ddd;
}

/* 单个链接 响应式 */
#nav_InternationalEDULinkWrapMoblie a{
    font-size: 4.26vw;
    color: #444;
    line-height: 4.26vw;       
}
#nav_InternationalEDULinkWrapMoblie a:first-child{
        margin-top: 13.33vw;
}
#nav_InternationalEDULinkWrapMoblie a:hover{
    font-weight: 600;
}

/* 分割线 */
#nav_InternationalEDULinkWrapMoblie div{
    width: 100%;
    height: 0.14vw;
    background-color: #ccc;
}

