body {
    background: #f9f9f9;
}

.header {
    display: flex;
    justify-content: space-around;
    height: 50px;
    background: #1F212E;
    color: #FFFFFF;
    line-height: 50px;
    cursor: pointer;
}

.header a {
    color: #b4b4b4;
    margin-right: 10px;
    text-decoration: none;
}

.header a:hover {
    color: #FFFFFF;
}

.header .center .user {
    display: flex;
    align-items: center;
}

.header .center img {
    width: 30px;
    height: 30px;
    border-radius: 5px;
    margin-right: 6px;
}

.header /deep/ .dropdown .item {
    width: 158px;
    height: 32px;
    line-height: 32px;
    padding: 0 20px;
    border-bottom: 1px solid #efefef;
}

.header .dropdown .item:last-child {
    border-bottom: none;
}

.wrap {
    width: 1200px;
    position: relative;
    left: 50%;
    transform: translateX(-50%);
    padding-bottom: 200px;
}

@media (max-width: 768px) {
    .wrap {
        width: 100%;
    }
}

.content {
    background: #FFFFFF;
    padding: 26px 32px 100px;
}

@media (max-width: 768px) {
    .content {
        padding: 15px 15px 50px;
        margin-top: 20px;
    }
}


.content .tab_list {
    padding: 20px 0 0;
    color: #999999;
    display: flex;
    justify-content: space-around;
    align-items: center;
    border-bottom: 1px solid #efefef;
    cursor: pointer;
}

.content .tab_list .tab {
    padding-bottom: 20px;
}

.content .tab_list .active {
    color: #e93323;
    border-bottom: 2px solid #e93323;
    /*transition: all .3s cubic-bezier(.25, .5, .5, .9);*/
}

@media (max-width: 768px) {
    .content .tab_list .tab {
        padding-bottom: 10px;
        font-size: 14px;
    }
}

.content .list {
    padding: 0 40px;
}

@media (max-width: 768px) {
    .content .list {
        padding: 0 15px;
    }
}

.content .list .item {
    padding: 30px 0 26px;
    border-bottom: 1px solid #ececec;
}

.content .list .item .head {
    display: flex;
    justify-content: space-between;
    font-size: 14px;
}

.content .list .item .head span {
    padding: 2px 6px;
    border-radius: 4px;
    font-size: 12px;
    color: #FFFFFF;
    background-color: #e93323;
    margin-right: 4px;
}

.content .list .item .product {
    display: flex;
    align-items: center;
    margin-top: 20px;
    font-size: 14px;
    border-bottom: 1px dashed #e1e1e1;
    padding-bottom: 20px;
}

.content .list .item .product img {
    width: 120px;
    height: 120px;
}

.content .list .item .product .name {
    margin-left: 24px;
}

.content .list .item .product .name p {
    margin: 10px 0;
}

.content .list .item .product .name .red {
    color: #e93323;
}

.content .list .item .product .num {
    margin-left: 45px;
    color: #999999;
}

.content .total {
    padding: 15px 0;
    text-align: right;
    color: #666;
    font-size: 14px;
}

.content .total span {
    color: #e93323;
    margin: 0 5px;
}

.content .btn_line {
    display: flex;
    justify-content: flex-end;
    margin-top: 10px;
}

.content .btn_line .btn {
    width: 110px;
    height: 36px;
    background: #e93323;
    color: #fff;
    border-radius: 4px;
    margin-left: 10px;
    font-size: 14px;
    text-align: center;
    line-height: 36px;
    cursor: pointer;
}

.content .btn_line .gray {
    border: 1px solid #999;
    color: #000000;
    background-color: #FFFFFF;
}

.content .pagination {
    display: flex;
    justify-content: flex-end;
    margin-top: 40px;
}


