header {
    z-index: 99;
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 80px;
    padding: 0 20px;
    background-color: rgba(0,0,0, .8);
}
header > .wrap{
    width: 100%;
    height: 100%;
    display: flex;
    flex-direction: row;
    justify-content: space-between;
    align-items: center;
}
header .logo {
    width: 160px;
    height: 35px;
    
    background-image: url(../resources/img-logo.png);
    background-repeat: no-repeat;
    background-position: center left;
    background-size: auto 100%;
}
header .btn {
    width: 35px;
    height: 35px;
}

header .cateList {
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%,-50%);
    white-space: nowrap;
}
header .cateList .cateItem{
    color: #fff;
    display: inline-block;
    vertical-align: middle;
    margin: 0 20px;
    font-size: 1.5rem;
}

.ic-insta{
    /* background-color: #fff; */
    background: rgb(151,146,255);
background: linear-gradient(153deg, rgba(151,146,255,1) 0%, rgba(255,138,161,1) 100%);
    -webkit-mask-image: url(../resources/icon/ic-insta.png);
    mask-image: url(../resources/icon/ic-insta.png);
    /* -webkit-mask-image: url(../resources/icon/ic-insta.png);
    mask-image: url(../resources/icon/insta.png); */
}