header {
    background: #F8F8F9;
    width: 100%;
    height: 36px;
    line-height: 36px;
    color: #777D85;

}

.head-sculpture {
    float: right;
    font-size: 16px;
    color: #555;
}

.head-sculpture>img:hover .note {
    display: block;
}

.head-sculpture img {
    width: 28px;
    height: 28px;
    margin-top: -8px;
}

.note {
    display: none;
    margin: 100px;
    width: 300px;
    height: 270px;
    background: #ffffff;
    position: absolute;
    top: -40px;
    right: -100px;
    z-index: 999;
    padding: 35px 20px 25px 20px;
    border-radius: 10px;
    /*box-shadow: 0 0 10px 0px #000;*/
    /*水平偏移---垂直偏移---模糊度---扩张半径---颜色*/

    filter: drop-shadow(0 0 4px rgba(29, 39, 51, 0.1));
    /*看清楚哦，drop-shadow没有扩张半径*/
}

.triangle {
    border-left: 36px solid transparent;
    border-right: 36px solid transparent;
    border-bottom: 36px solid #ffffff;
    /*我们一般根据方向来写三角形，这样容易记忆；箭头指向的反方向的颜色设置为你想要的，然后箭头方向不要写，另外两个方向的颜色设置为transperent透明*/
    position: absolute;
    top: -26px;
    right: 0px;
    margin-left: -10px;
}

.note img {
    width: 60px;
    height: 60px;
}

.unamecontent {
    display: flex;
}

.uname {
    margin-left: 10px;
}

.nameu {
    font-size: 16px;
    color: #1D2733;
    display: flex;
    flex-direction: row;
    flex-wrap: nowrap;
    align-items: center;
    justify-content: flex-start;
}

.nameu a {
    font-size: 24px;
    font-weight: 700;
    color: #1D2733;
    margin-left: 8px;
}

.orderid {
    font-size: 14px;
}

.dashed-line {
    width: 260px;
    height: 0;
    border: 1px dashed rgb(228, 229, 231);
    margin: 25px auto;
}

.miorder {
    font-size: 14px;
    color: #1D2733;
    display: flex;
    flex-direction: row;
    flex-wrap: nowrap;
    justify-content: space-around;
    align-items: center;
}
.miorder a {
    color: #1D2733;
}
.miorder a:hover {
    color: #147CFA;
}
.exit {
    width: 260px;
    height: 48px;
    margin: 10px auto;
    color: #777D85;
    font-size: 14px;
    text-align: center;
    line-height: 48px;
    background: transparent;
    border: 1px solid #777D85;
}

.exit:hover {
    background: #ffffff;
    opacity: 0.6;
}

#exit:hover {
    cursor: pointer;
}
@media screen and (min-width:431px) {
    .navbar-header {
        display: none;
    }
    .navbar-collapse {
        display: none;
    }
    .collapse-nav {
        display: none;
    }
    .navbar-nav {
        display: none;
    }
    .type-area {
        width: 1220px; margin: 0px auto;
    }
}
@media screen and (max-width: 430px)  {
    header {
        display: none;
        width: 475px;
    }
    .type-area {
        display: inline-block;
        width: 100%;
    }
    .brand-img {
        display: none;
    }
    .product-classification {
        display: none;

    }
    .navbar-brand img {
        width: 132px;
        height: 36px;
        margin-top: -8px;
    }
    footer {
        display: none;
    }
    .navbar {
        margin-bottom: 0;
        
    }
    .nav-tabs {
        display: none;
    }
}