/*head*/
.head{
    width: 100%;
    height: 82px;
    position: fixed;
    top: 0;
    left: 0;
    right: 0;
    width: 100%;
    z-index: 9;
    background-color: #fff;
}
.head .searchText{
    position: absolute;
    padding: 5px 10px;
    bottom: -30px;
    right: 0;
    display: none;
}
.head .nav{
    position: relative;
    max-width: 1200px;
    height: 82px;
    margin: 0 auto;
    display: flex;
    justify-content: space-between;
    align-items: center;
}
.head .nav a{
    padding: 10px 0;
    font-size: 16px;
    cursor: pointer;
}
.head .nav a:not(:first-child):hover{
    color: #1f83f2;
    border-bottom: 2px solid #1f83f2;
}
.zhanwei{
    height: 82px;
    width: 100%;
}
/*Ð¡ÆÁÏìÓ¦*/
.sHead {
    display: none;
}
@media screen and (max-width: 750px) {
    /* .zhanwei{
        display: none;
    } */
    .zhanwei{
        height: 1rem;
        width: 100%;
    }
    .head {
        display: none;
    }
    .sHead {
        display: block;
        position: fixed;
        top: 0;
        left: 0;
        right: 0;
        width: 100%;
        z-index: 9;
        background-color: #fff;
    }
    .sHead .logo {
        float: left;
        padding: 0 .2rem;
        height: 1rem;
        line-height: 1rem;
        font-size: 0;
        box-sizing: border-box;
    }
    .sHead .logo img {
        height: .6rem;
        display: inline-block;
        vertical-align: middle;
    }
    .sHead .menu {
        float: right;
        line-height: 1rem;
        padding: 0 .2rem;
        font-size: 0;
        cursor: pointer;
        outline: none;
        box-sizing: border-box;
    }
    .sHead .menu .b-bar {
        display: inline-block;
        vertical-align: middle;
    }
    .sHead .menu .bar {
        width: .6rem;
        height: .08rem;
        border-radius: .04rem;
        background-color: #841031;
        margin-bottom: .1rem;
        transition: all 0.2s ease-out;
    }
    .sHead .menu .bar:nth-of-type(3) {
        margin-bottom: 0;
    }
    .sHead .menu .on-bar .bar:nth-of-type(1) {
        transform: translateY(0.18rem) rotate(-45deg);
    }
    .sHead .menu .on-bar .bar:nth-of-type(2) {
        opacity: 0;
    }
    .sHead .menu .on-bar .bar:nth-of-type(3) {
        transform: translateY(-0.18rem) rotate(45deg);
    }
    .menu-box {
        display: none;
        position: fixed;
        top: 1rem;
        left: 0;
        right: 0;
        width: 100%;
        background-color: #fff;
        box-shadow: 0 0.2rem 0.2rem rgba(0, 0, 0, 0.2);
    }
    .menu-box ul {
        padding: 0 .2rem;
    }
    .menu-box li a {
        display: block;
        line-height: .8rem;
        color: #333;
        font-size: .36rem;
        text-align: center;
        border-bottom: 1px solid #eee;
        letter-spacing: 2px;
    }
}