.touch-top {
    display: none;
}

.touch-menu {
    position: absolute;
    z-index: 99;
    display: none;
    left: 0;
    width: 100%;
}
.touch-bg {
    width: 100%;
    position: fixed;
    left: 0;
    top: 0;
    z-index: 8;
    background: #252525;
    display: none;
    height: 100%;
}
.touch-menu .menu-item {
    position: relative;
   
}
.touch-menu .menu-item .dot{
    position: absolute;
    width: 5px;
    height: 5px;
    top:20px;
    left:15px;
    background-color: #d4b771;
    border-radius: 4px;
}
.touch-menu .menu-item h3 {
    height: 44px;
    display: block;
    line-height: 44px;
    padding-left:7%;
    box-sizing:border-box;
    border-top: 1px solid #414141;
    position: relative;
    z-index:8;
}
.touch-menu .menu-item h3 a{
    color: #fff;
    font-size: 16px;
}
.touch-menu .menu-item .touch-arrow-right{
    display: none;
}
.touch-menu .menu-item:last-child {
    border-bottom: 1px solid #414141;
}
.touch-menu .menu-item a.on{
    border-bottom:1px solid #282828;
}
.touch-menu .menu-item a.on+ul li{
    border-bottom:1px solid #282828;
    background:#303030;
}
.touch-menu .menu-item i {
    position: absolute;
    top: 17px;
    right:15px;
    display: block;
    width: 13px;
    height: 13px;
    overflow: hidden;
    background-position: center center;
    background-repeat: no-repeat;
    background-size: contain;
    z-index:10;
}

.touch-menu .menu-item i.touch-arrow-right {
    background-image: url(/template/home/static/images/touch-arrow-r.png);
}

.touch-menu .menu-item i.touch-arrow-down {
    background-image: url(/template/home/static/images/touch-arrow-d.png);
}

.touch-menu .sub-menu {
    display: none;
    margin: 0;
    height: 100%;
    max-height: 234px;
    overflow-y: scroll;
    width: 100%;
}
.touch-menu .sub-menu.on{
    background: #303030;
}
.touch-menu .sub-menu li {
    border-bottom: none;
    border-top: 1px solid #333;
    margin: 0;
    padding: 0;
    font-size:15px;
    border-bottom:1px solid #282828;
}

.touch-menu .sub-menu li a {
    padding: 0;
    font-size: 15px;
    height: 38px;
    line-height: 38px;
    text-transform: uppercase;
    padding-left:3.73%;
    color:#fff;
}

.touch-navigation {
    position: relative;
}

.touch-toggle {
    position: absolute;
    right: 0px;
    top: 0;
}

.touch-toggle li {
    float: left;
    text-align: center;
}

.touch-toggle li:hover,
.touch-toggle li:active {}

.touch-toggle .touch-toggle-item-first {
    border-left: none;
}

.touch-toggle .touch-toggle-item-last {
    border-right: none;
}

.touch-toggle li a {
    display: block;
    font-size: 12px;
}

.touch-toggle li i {
    display: inline-block;
    width: 26px;
    height: 26px;
    overflow: hidden;
    /*margin-top:20px;*/
    margin-top: 5px;
    background-repeat: no-repeat;
    background-position: center center;
    background-size: contain;
}

.touch-toggle .top_ico {
    width: 30px;
    height: 35px;
    position: relative;
    cursor: pointer;
    transition: all 0.3s;
}

.touch-toggle .top_ico i {
    display: block;
    font-size: 0;
    width: 30px;
    height: 1px;
    z-index: 1;
    left: 50%;
    margin-left: -13px;
    position: absolute;
    top: 0;
    background: #fff;
    transition: 0.6s;
    -webkit-transition: 0.6s;
    -moz-transition: 0.6s;
    -ms-transition: 0.6s;
    -o-transition: 0.6s;
    overflow: hidden;
    /* margin-top: 40px; */
}

.touch-toggle .top_ico i:nth-child(2) {
    top: 10px;
}

.touch-toggle .top_ico i:nth-child(3) {
    top: 20px;
}

/* .touch-toggle .top_ico:hover i {
    -webkit-transform: scale(1.2, 1.2);
    -moz-transform: scale(1.2, 1.2);
    -o-transform: scale(1.2, 1.2);
    -ms-transform: scale(1.2, 1.2);
    transform: scale(1.2, 1.2);
} */

.touch-toggle .top_ico i span {
    width: 2px;
    height: 2px;
    margin-left: 3px;
    float: left;
    background: #fff;
}


.touch-toggle .top_ico.on i:nth-child(1) {
    top: 10px;
    transform: rotate(45deg);
    -webkit-transform: rotate(45deg);
    -ms-transform: rotate(45deg);
    -o-transform: rotate(45deg);
    -moz-transform: rotate(45deg);
}

.touch-toggle .top_ico.on i:nth-child(2) {
    opacity: 0;
}

.touch-toggle .top_ico.on i:nth-child(3) {
    top: 10px;
    transform: rotate(-45deg);
    -webkit-transform: rotate(-45deg);
    -ms-transform: rotate(-45deg);
    -o-transform: rotate(-45deg);
    -moz-transform: rotate(-45deg);
}

.touch-toggle .top_ico.on i span {
    display: none;
}

@media screen and (max-width:768px) {

    /* pc端导航 */
    .header {
        display: none;
    }



    /* 移动端导航 */
    .touch-bg {
        top: 55px;
    }

    .header-wrapper {
        padding: 10px 15px;
    }

    .touch-top {
        display: block;
    }

    .touch-top .touch-logo {
        height: 35px;
    }

    .touch-top .touch-logo img {
        height: 100%;
    }
    .touch-menu{
        top:55px;
    }
}