/* 框架响应式css */
@media screen and (max-width: 1400px) {
    .sidebar-menu {
        width: 75px;
    }
    .main {
        margin-left: 115px;
    }   
    .close-button
    {
        display: block;
    }
    /* .sidebar-menu .menu-item-title span {
        display: none;
    } */
    /* menu-item-title背景图标不要了 */
     .menu-item .menu-item-title {
        background-image: none;
    }
}
@media screen and (max-width: 1300px) {
    .sidebar-menu {
        display: none;
    }
    .main {
        margin-left: 20px;
    }   
}
/* 头部menu隐藏 */
@media screen and (max-width:768px) {
    .header .header-content .menu {
        position: relative;
    }
    .header .header-content .menu ul{
        display: none;
        position: absolute;
        width: 98px;
        border: 1px solid #a59d9d;
        top:40px;
        /* left: 50%; */
        transform: translateX(-50%);
        padding-top: 7px;
        padding-bottom: 5px;
        background-color: #ffffff;
    }
    .header .header-content .menu ul.show{
        display: block;
    }
    .header .header-content .menu ul li{
       height: 35px;
       /* border: 1px solid #e90a0a; */
       line-height: 35px;
        /* margin: 10px 0; */
        text-align: center;
        
    }
    .header .header-content .menu ul li a{
        display: inline;
        padding: 5px 10px;
    }
  
    /* 菜单图标显示 */
    .header-content .menu .icon-fenlei {
        display: block;
    }  
    .header-content .logo {
        margin-right: 32px;
    }
    /* 表格中文本处理  */
    table.orders tr th.fp,
    table.orders tr td.fp{
       display: none;
    }
    table.orders tr td span{
        display: none;
    }
}