/**菜单按钮**/
a.menu-btn {
    width: 0.9rem;
    height: 0.7rem;
    background: var(--mainColor);
    display: flex;
    flex-direction: column;
    gap: .07rem;
    align-items: center;
    justify-content: center;
    float: none;
    border-radius: 0.2rem 0 0 0.2rem;
    position: absolute;
    right: 0;
    margin-top: -0.1rem;
}

a.menu-btn.btn2 {
    display: none
}

a.menu-btn .xian {
    display: block;
    height: .03rem;
    width: 0.3rem;
    background: #fff;
    border-radius: .03rem;
    transition: all .4s ease-in-out
}

a.menu-btn.arrow .xian:nth-child(2) {
    display: none
}

a.menu-btn.arrow .xian:nth-child(1) {
    transform: rotate(-45deg);
    position: absolute
}

a.menu-btn.arrow .xian:nth-child(3) {
    transform: rotate(45deg);
    position: absolute
}

.fixbox {
    position: fixed;
    z-index: 2;
    background: url(images/fixbg.jpg) no-repeat center/cover;
    width: 100%;
    height: 100vh;
    display: flex;
    align-items: center;
    justify-content: center;
    top: 0;
    clip-path: circle(32px at 110% 0);
    padding: 2.4rem calc(50vw - var(--innerWidth)/2) 0.4rem;
    box-sizing: border-box;
    visibility: hidden;
    opacity: 0;
    overflow: auto;
}

.fixbox .close {
    width: .48rem;
    height: .48rem;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    position: absolute;
    right: 50%;
    margin-right: -8.2rem;
    top: .55rem;
    cursor: pointer
}

.fixbox .close img {
    width: .25rem
}

.fixbox.open {
    display: flex
}
.fixbox .head-top {
    display: none;
}
.fixbox {
    flex-wrap: wrap;
    justify-content: space-between;
    align-content: space-between
}
.fixbox:after {
    content: "";
    display: block;
    width: 5.34rem;
    height: 0.5rem;
    position: absolute;
    background: url(images/tago_w.svg) no-repeat center/100%;
    left: 50%;
    transform: translateX(-50%);
    bottom: 17.6vh;
}
.fixbox a {
    color: #fff
}

.fixbox .wp-menu {
    display: flex;
    width: 100%;
    justify-content: space-between;
    text-align: center
}

.fixbox .wp-menu .menu-link {
    font-size: 0.24rem;
    line-height: 2;
    display: block;
    color: #fff;
}
.fixbox .site-lang ul{
    gap: 0;
    border: none;
    width: 100%;
}
.fixbox .site-lang ul li{
    flex: 1;
}
.fixbox .site-en{
    position: absolute;
    top: 0;
    right: 0;
    margin: 0;
}
.fixbox .site-en a{
    width: 34px;
    height: 34px;
    line-height: 34px;
}
.fixbox .site-lang ul li.links a {
    border: 1px solid #ffffff4d;
    line-height: 2;
    display: block;
    width: 100%;
    text-align: center;
}
.fixbox .site-lang{
    margin-right: 48px;
}
.fixbox .wp-menu .sub-menu {
    margin-top: 0.17rem;
    text-align: center
}

.fixbox .wp-menu .sub-menu .sub-menu {
    display: none
}

.fixbox .wp-menu .sub-menu a {
    font-size: var(--titleSize);
    line-height: 2.3;
    color: #fff;
}

.fixbox .searchbox {
    width: auto
}

/**手机端**/
.mobile .fixbox .wp-menu .sub-menu .sub-menu {
    display: block
}
