.phone .menuBox{
    width: 100%;
    height: 3.36rem;
    background-color: #333;

    position: fixed;
    top: 0;
    left: 0;
    z-index: 99;

    -webkit-transition: all 0.3s ease-in;
    -moz-transition: all 0.3s ease-in;
    -ms-transition: all 0.3s ease-in;
    -o-transition: all 0.3s ease-in;
    transition: all 0.3s ease-in;

    overflow: hidden;
}

.phone .menuBox.act{
    width: 100%;
    height: 100%;
}
.phone .menuBox .logo{
    width: 6.87rem;
    height: .84rem;

    position: absolute;
    top: 1.25rem;
    left: .8rem;
}


.phone .menuBox .menu-btn {
    position: absolute;
    right: 0;
    top: .56rem;
    width: 1.14rem;
    padding: .8rem;
    display: flex;
    flex-direction: column;
    align-items: center;
    z-index: 3;
    transition: all 0.2s linear;
}
.phone .menuBox .menu-btn{
    top: .51rem;
}
  
  
.phone .menuBox .menu-btn input:focus {
    outline: none;
}   

.phone .menuBox .menu-btn span {
    width: 1.14rem;
    height: .09rem;
    margin: .19rem 0 0;
    background-color: #FFFFFF;
    position: relative;
    border-radius: 2px;
    transition: all 0.2s linear;
}

.phone .menuBox .menu-btn.act span:nth-of-type(1) {
    opacity: 0;
    transform: scale(0);
}
  
.phone .menuBox .menu-btn.act span:nth-of-type(2) {
    transform: rotate(45deg);
    width: 1.14rem;
}
  
.phone .menuBox .menu-btn.act span:nth-of-type(3) {
    transform: rotate(135deg);
    opacity: 1;
    width: 1.14rem;
    margin-top: -0.095rem;
}

.phone .menuBox .company_info{
    text-align: left;
    margin-top: 1.36rem;

    position: absolute;
    bottom: 1.4rem;
    left: .77rem;
    width: 100%;
}
.phone .menuBox .company_info div{
    margin-top: .7rem;
    

}
.phone .menuBox .company_info div a{
    color: #7d7d7d;
    font-size: .52rem;
    border-bottom: 1px solid #7d7d7d;
}
.phone .menuBox .company_info p{
    font-size: .7rem;
    color: #7d7d7d;

    position: absolute;
    bottom: 0;
    right: 1.57rem;
}



.phone .menus{
    position: relative;
    width: 100%;
    margin-top: 4.2rem;
}
.phone .menus .menu-item{
    width: 100%;
    min-height: 2.58rem;
    background-color: #333;
    position: relative;
    border-bottom: .03rem solid #7d7d7d;
}
.phone .menus .menu-item > a{
    color: #fff;
    font-size: .7rem;
    padding: 0 1rem;
    display: block;
    text-align: left;
    position: relative;
    height: 2.6rem;
    line-height: 2.6rem;
}
.phone .menus .menu-item.open > a{
    background-color: #2264dc;
}
.phone .menus .menu-item .arrow{
    width: .26rem;
    height: .51rem;
    position: absolute;
    right: 1rem;
    top: 1.18rem;
    transform: rotate(0deg);
    transition: transform .3s;
}

.phone .menus .menu-item .submenu-item > a{
    color: #7d7d7d;
    font-size: .7rem;
    line-height: 1.55rem;
    padding: 0 1rem;
    display: block;
}
.phone .menus .menu-item .submenu-item:first-child{
    margin-top: .8rem;
}
.phone .menus .menu-item .submenu-item:last-child{
    margin-bottom: .7rem;
}