.store_header {
    width: 100%;
    background-image: linear-gradient(0deg, #68c4b1 0, #a1eede 99%);
    background-size: cover;
    background-position: 50%;
    background-repeat: no-repeat;
    border-radius: 0 0 15px 15px;position: relative;
}

.store_header .header_box {
    width: 100%;
    height: 250px;
    display: flex;
    align-items: center;
    justify-content: center
}

.store_header .header_box .avatar {
    width: 120px;
    height: 120px;
    border-radius: 50%;
    object-fit: cover;
    margin-right: 15px
}

.store_header .header_box .store_info .name {
    font-size: 20px;
    font-family: Source Han Sans CN;
    font-weight: 500;
    color: #fff;
    display: flex;
    align-items: center
}

.store_header .header_box .store_info .name .attention {
    height: 22px;
    border-radius: 11px;
    padding: 0 10px;
    display: flex;
    align-items: center;
    margin-left: 10px;
    cursor: pointer;
    font-size: 12px;
    font-weight: 500
}

.store_header .header_box .store_info .name .attention.no {
    background-color: #fff;
    color: #68c4b1
}

/*.store_header .header_box .store_info .name .attention.no::before {
    content: '';
    display: block;
    width: 9px;
    height: 8px;
    background: url(../../images/icons.png) no-repeat -93px -129px;
    margin-right: 3px
}*/

.store_header .header_box .store_info .name .attention.yes {
    background-color: #c1c1c1;
    color: #fff;
}

.store_header .header_box .store_info .real_name_location {
    display: flex;
    align-items: center;
    margin-top: 10px;
    color: #fff
}

.store_header .header_box .store_info .real_name_location .real_name {
    margin-right: 10px;
    display: flex;
    align-items: center
}

.store_header .header_box .store_info .real_name_location .real_name::before {
    content: '';
    display: block;
    width: 16px;
    height: 19px;
    margin-right: 5px
}

.store_header .header_box .store_info .real_name_location .real_name.user::before {
    background: url(../../images/icons.png) no-repeat -109px -129px
}

.store_header .header_box .store_info .real_name_location .real_name.company::before {
    background: url(../../images/icons.png) no-repeat -332px -179px
}

.store_header .header_box .store_info .real_name_location .location {
    display: flex;
    align-items: center;
    height: 20px;
    background-color: rgba(255, 255, 255, .2);
    padding: 0 8px;
    border-radius: 2px
}

.store_header .header_box .store_info .real_name_location .location::before {
    content: '';
    display: block;
    width: 9px;
    height: 11px;
    background: url(../../images/icons.png) no-repeat -131px -129px;
    margin-right: 5px
}

.store_header .header_box .store_info .desc {
    margin-top: 16px;
    line-height: 20px;
    opacity: .8;
    font-size: 12px;
    color: #fff
}

.tab_box {
    background-color: #fff;
    height: 78px
}

.tab_box .tab_list {
    width: 100%;
    height: 78px;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 18px;
    color: #666
}

.tab_box .tab_list .tab {
    color: #666;
    height: 100%;
    margin-right: 80px;
    display: flex;
    align-items: center;
    justify-content: center;
    position: relative;
    cursor: pointer
}

.tab_box .tab_list .tab::after {
    content: '';
    display: block;
    width: 100%;
    height: 3px;
    border-radius: 2px;
    position: absolute;
    left: 0;
    bottom: 0
}

.tab_box .tab_list .tab:last-child {
    margin-right: 0
}

.tab_box .tab_list .tab.active {
    color: #68c4b1
}

.tab_box .tab_list .tab.active::after {
    background-color: #68c4b1
}

.goods_content {
    padding-bottom: 40px
}

.goods_content.locked {
    padding: 250px 0
}

.goods_block {
    margin-top: 30px
}

.goods_block .g_title {
    font-size: 22px;
    color: #33383e;
    margin-bottom: 20px;
    display: flex;
    align-items: center
}

.goods_block .g_title::before {
    content: '';
    display: block;
    width: 4px;
    height: 22px;
    background: #68c4b1;
    border-radius: 2px;
    margin-right: 11px
}

.goods_list_box .goods_item {
    width: 262px;
    float: left;
    background-color: #fff;
    box-shadow: 0 0 10px 0 rgba(51, 51, 51, .25);
    border-radius: 4px;
    margin-right: 22px;
    transition: all .3s ease-in-out;
    overflow: hidden
}

.goods_list_box .goods_item:nth-child(5n) {
    margin-right: 0
}

.goods_list_box .goods_item:nth-of-type(n+6) {
    margin-top: 20px
}

.goods_list_box .goods_item .cover {
    width: 100%;
    height: 242px;
    overflow: hidden
}

.goods_list_box .goods_item .cover > img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: all .3s ease-in-out
}

.goods_list_box .goods_item:hover {
    box-shadow: 0 0 20px 0 rgba(51, 51, 51, .3)
}

.goods_list_box .goods_item:hover .cover > img {
    transform: scale(1.1)
}

.goods_list_box .goods_item .bottom {
    display: flex;
    align-content: center;
    justify-content: space-between;
    padding: 18px 14px
}

.goods_list_box .goods_item .bottom .info .title {
    color: #33383e;
    line-height: 15px;
    margin-bottom: 11px
}

.goods_list_box .goods_item .bottom .info .desc {
    color: #c1c1c1;
    font-size: 12px
}

.goods_list_box .goods_item .bottom .right .price {
    color: #68c4b1;
    margin-bottom: 11px;
    text-align: right
}

.goods_list_box .goods_item .bottom .right .collection {
    display: flex;
    align-items: center;
    color: #c1c1c1;
    font-size: 12px;
    cursor: pointer
}

.goods_list_box .goods_item .bottom .right .collection .icon {
    width: 13px;
    height: 13px;
    margin-right: 3px;
    background: url(../../images/icons.png) no-repeat -197px -76px
}

.comment_visitor {
    display: flex;
    justify-content: space-between
}

.comment_visitor > div {
    background-color: #fff;
    box-shadow: 0 0 10px 0 rgba(51, 51, 51, .1);
    border-radius: 4px
}

.comment_visitor .comment {
    flex:1;
    padding: 0 24px;
    margin-right: 2em;
}

.comment_visitor .comment .title {
    font-size: 20px;
    color: #666;
    margin-top: 30px
}

.comment_visitor .comment > textarea {
    width: 100%;
    height: 100px;
    background-color: #f8f8f8;
    border: 1px solid #ededed;
    border-radius: 2px;
    outline: 0;
    padding: 16px;
    resize: none;
    margin-top: 19px
}

.comment_visitor .comment > textarea::placeholder {
    color: #c1c1c1
}

.comment_visitor .comment .comment_submit_btn {
    width: 138px;
    height: 45px;
    background-color: #68c4b1;
    border-radius: 4px;
    color: #fff;
    display: flex;
    align-items: center;
    justify-content: center;
    margin-top: 20px;
    cursor: pointer
}

.comment_visitor .comment .comment_submit_btn:hover {
    background-color: #50c1aa
}

.comment_visitor .visitor {
    width: 394px;
    height: 264px;
}

.comment_visitor .visitor .title {
    width: 100%;
    line-height: 72px;
    padding-left: 25px;
    font-size: 20px;
    color: #666;
    border-bottom: 1px solid rgba(227, 226, 229, .4)
}

.comment_visitor .visitor .visitor_list {
    padding-top: 24px
}

.comment_visitor .visitor .visitor_list .visitor_item {
    width: 33.33%;
    padding: 0 8px;
    float: left
}

.comment_visitor .visitor .visitor_list .visitor_item .avatar {
    width: 50px;
    height: 50px;
    border-radius: 50%;
    object-fit: cover;
    margin: 0 auto
}

.comment_visitor .visitor .visitor_list .visitor_item .name {
    font-weight: 400;
    color: #33383e;
    margin-top: 9px;
    text-align: center
}

.comment_visitor .visitor .visitor_list .visitor_item .min {
    font-size: 12px;
    font-weight: 400;
    color: #c1c1c1;
    margin-top: 8px;
    text-align: center
}

.locked_block .icon {
    width: 110px;
    height: 100px;
    background: url(../../images/user_sotre_no_data.png) no-repeat;
    margin: 0 auto
}

.locked_block .text {
    font-size: 16px;
    font-weight: 400;
    color: #666;
    margin-top: 20px;
    text-align: center
}
.store_header:hover #change_cover{
    display: block;
}
#change_cover{
    position: absolute;
    padding: 7px;
    line-height: 1;
    font-size: 12px;
    color: #fff;
    background: rgba(0,0,0,.7);
    border-radius: 3px;
    text-decoration: none;
    cursor: pointer;
    opacity: 0.9;
    margin-left: 30%;
    display: none;
}
.store_header .upload_progress {
     display: none;
     align-items: center;
     justify-content: space-between;position: absolute;top: 0;left: 0;right: 0;
 }

.store_header .upload_progress .active_progress {
    height: 5px;
    background: linear-gradient(270deg, #71dec8 0, #68c4b1 100%);
    overflow: hidden;
}
#change_cover input{font-size: 0;cursor: pointer;}
#change_cover div:nth-child(2){width:100%!important;height:100%!important;opacity: 0;}
