/* 浏览器样式重置 */

* {
    padding: 0;
    margin: 0;
    box-sizing: border-box;
    font-family: 'Alibaba PuHuiTi 2.0';
}

@font-face {
    font-family: 'Alibaba PuHuiTi 2.0';
    src: url(../font/AlibabaPuHuiTi-2-65-Medium.eot), url(../font/AlibabaPuHuiTi-2-65-Medium.otf), url(../font/AlibabaPuHuiTi-2-65-Medium.ttf), url(../font/AlibabaPuHuiTi-2-65-Medium.woff), url(../font/AlibabaPuHuiTi-2-65-Medium.woff2);
}


/* 列表去除圆点 */

ul li {
    list-style: none;
}


/* 超链接样式 */

a {
    text-decoration: none;
}

a:hover {
    text-decoration: none;
}


/* 图片去间隔 */

img {
    vertical-align: top;
    outline-width: 0ch;
}


/* 手机导航点击特效 */

.mb_head {
    width: 100%;
    height: 60px;
    display: flex;
    align-items: center;
    justify-content: space-between;
    padding: 0 15px;
    box-shadow: rgba(0, 0, 0, .2) 0 1px 5px 0px;
}

.m_logo img {
    width: 120px;
}

.mb_hide_menu {
    width: 70%;
    height: 100%;
    position: fixed;
    background-color: #fff;
    z-index: 99;
    top: 0;
    right: -100%;
    transition: all cubic-bezier(0.645, 0.045, 0.355, 1) 0.5s
}

.change {
    right: 0 !important;
}

.delay_cover {
    width: 100%;
    height: 100%;
    background: rgba(0, 0, 0, 0.7);
    position: fixed;
    top: 0;
    right: 0;
    z-index: 98;
    display: none;
}

.cancle {
    position: absolute;
    left: 10px;
    top: 10px;
    z-index: 999;
}


/* 汉堡导航点击变化 */

.lanlist2 {
    float: left;
    font-size: 14px;
}

.hb_group {
    width: 30px;
    float: right;
    /* height: 30px; */
    margin: 20px auto 20px 20px;
    transition: all ease 0.5s;
}

.hb_group span {
    background-color: #2f8e7e;
    width: 30px;
    height: 3px;
    display: block;
    margin-bottom: 5px;
    transition: all ease 0.5s;
}

.bgc_change {
    background-color: #cccccc !important;
}

.fade_span {
    background-color: transparent !important;
}

.translate {
    transform: translateY(8px) rotate(45deg) !important;
}

.translate1 {
    transform: translateY(-8px) rotate(-45deg) !important;
}


/* 
.rot {
    transform: rotate(270deg);
} */