.warehouse{
    display: flex;
    justify-content: center;
    margin: auto;
    padding: 16px 32px
}
.warehouse .filter{
    height: calc(100vh - 94px);
    margin-right: 24px;
    overflow-x: hidden;
    overflow-y: scroll;
    position: -webkit-sticky;
    position: sticky;
    top: 79px;
    width: 306px
}
.warehouse .filter .filterSectionTitle{
    border-bottom: 1px solid #d0d1d1;
    font-family: RedHatDisplay,Roboto,sans-serif!important;
    font-size: 15px;
    font-weight: bold;
    letter-spacing: 0;
    line-height: 20px;
    margin-bottom: 16px;
    padding: 8px 0;
    vertical-align: middle
}
.warehouse .filter .editorLabel{
    display: flex;
    flex-direction: column;
    gap: 10px;
}
.warehouse .filter .editorLabel .item-row .checkBox{
    color: #7e8695;
    font-family: RedHatDisplay;
    font-size: 14px;
    font-weight: 400;
    letter-spacing: 0;
    line-height: 22px;
    display: inline-flex;
    cursor: pointer;
    align-items: center;
}
.warehouse .filter .editorLabel .item-row input{
    position: relative;
    visibility: hidden;
    width: 16px;
    height: 16px;
}
.warehouse .filter .editorLabel .item-row input::before{
    position: absolute;
    left: 0;
    top: 0;
    content: "";
    box-sizing: border-box;
    width: 100%;
    height: 100%;
    border: 1px solid #d9d9d9;
    visibility: visible;
    border-radius: 4px;
    transition: all .3s;
}
.warehouse .filter .editorLabel .item-row .checkBox:checked input:checked:before,
.warehouse .filter .editorLabel .item-row:hover .checkBox input::before{
    border-color: #1a3078;
}
.warehouse .filter .editorLabel .item-row .checkBox input:checked:before{
    background: #1a3078;
}
.warehouse .filter .editorLabel .item-row .checkBox input:checked + label{
    color: #1a3078;
}
.warehouse .filter .editorLabel .item-row .checkBox input::after{
    box-sizing: border-box;
    position: absolute;
    top: 50%;
    inset-inline-start: 25%;
    display: table;
    width: 6px;
    height: 8px;
    border: 2px solid #fff;
    border-top: none;
    border-inline-start: none;
    transform: rotate(45deg) scale(0) translate(-50%, -50%);
    opacity: 0;
    content: "";
    transition: all .1s cubic-bezier(0.71, -0.46, 0.88, 0.6),opacity .1s;
    visibility: visible;
}
.warehouse .filter .editorLabel .item-row .checkBox input:checked::after{
    transform: rotate(45deg) scale(1) translate(-50%, -50%);
    opacity: 1;
    transition: all .2s cubic-bezier(0.12, 0.4, 0.29, 1.46) .1s;
}
.warehouse .filter .editorLabel .item-row .checkBox .checkbox-label{
    padding: 0 8px;
}
.warehouse .filter .filter-wrap:not(:last-child){
    margin-bottom: 24px;
}
.warehouse .filter .formItem .input-wrap{
    display: flex;
    flex-direction: row;
    gap: 6px;
}
.warehouse .filter .formItem .input-wrap input{
    flex: 1;
    width: 100%;
}
.warehouse .filter .formItem .input-wrap input{
    border: 1px solid #d9d9d9;
    border-radius: 4px;
    transition: all .2s;
    padding: 4px 11px;
    height: 32px;
    outline: none;
    font-size: 14px;
    color: rgba(0, 0, 0, 0.88);
}
.warehouse .filter .formItem .input-wrap input::placeholder{
    color: rgba(0, 0, 0, 0.25);
}
.warehouse .filter .formItem .input-wrap input:hover{
    border-color: #1a3078;
}
.warehouse .filter .formItem .input-wrap .submit{
    background-color: #f6f4f4;
    width: 49px;
    line-height: 32px;
    text-align: center;
    border-radius: 4px;
    font-size: 14px;
    color: rgba(0, 0, 0, 0.88);
    cursor: pointer;
    box-shadow: 0 2px 0 rgba(0,0,0,0.1);
    transition: all .2s cubic-bezier(0.645, 0.045, 0.355, 1);
}
.warehouse .filter .formItem .input-wrap .submit:hover{
    background-color: #fff;
    color: #1a3078;
}
.warehouse .filter .formItem .recommended-wrap{
    display: flex;
    flex-direction: row;
    flex-wrap: wrap;
    gap: 6px;
    margin-top: 8px;
}
.warehouse .filter .formItem .recommended-wrap .btn{
    padding: 0 7px;
    border-radius: 4px;
    font-size: 14px;
    border: 1px solid #7e8695;
    color: #7e8695;
    line-height: 22px;
    cursor: pointer;
    transition: all .2s cubic-bezier(0.645, 0.045, 0.355, 1);
}
.warehouse .filter .formItem .recommended-wrap .btn:hover{
    border-color: #252525;
    color: #252525;
}
.warehouse .content{
    flex: 1;
}
.warehouse .container{
    position: relative;
    transition: opacity .3s;
}
.warehouse .content-header{
    display: flex;
    justify-content: space-between;
    margin-bottom: 24px;
    width: 100%
}
.warehouse .container .title{
    color: #252525;
    font-size: 40px;
    font-weight: 800;
    line-height: 48px;
    margin-bottom: 0;
}
.warehouse .container .filter-config{
    display: flex;
    gap: 8px;
    flex-wrap: wrap;
}
.warehouse .container .filter-config .tag{
    line-height: 20px;
    padding: 0 7px;
    background-color: rgb(105, 118, 130);
    border-radius: 4px;
    color: #fff;
    margin: 2px 0;
    font-size: 12px;
    cursor: pointer;
}
.warehouse .container .filter-config .tag .anticon{
    font-size: 10px;
    display: inline;
    padding-left: 3px;
}
.warehouse .container .filter-config .clear{
    background-color: transparent;
    border-width: 0;
    color: #161718;
    cursor: pointer;
    font-size: 15px;
    font-weight: 400;
    line-height: 24px;
    padding: 0 6px;
}
.warehouse .container .cardItem{
    grid-gap: 16px;
    display: grid;
    gap: 16px;
    grid-template-columns: repeat(auto-fill,minmax(330px,1fr));
    /* margin-top: 24px; */
}
.warehouse .container .cardItem .warp{
    background-color: #fff;
    border: 1px solid #d5dee5;
    border-radius: 8px;
    cursor: pointer;
    display: flex;
    flex-direction: column;
    gap: 8px;
    padding: 16px;
    transition: all .2s ease-in-out;
}
.warehouse .container .cardItem .warp:hover{
    border-color: #252525;
}
.warehouse .container .cardItem .warp .pic{
    aspect-ratio: 320 / 193;
    border-radius: 4px;
    object-fit: cover;
    overflow: hidden;
    transition: all .3s ease-in-out;
    width: 100%;
}
.warehouse .container .cardItem .warp .hoverLi:hover .imgScale{
    transform: scale(1.2);
}
.warehouse .container .cardItem .warp .hoverLi .imgScale{
    transition: all .3s ease-in-out;
}
.warehouse .container .cardItem .case-title{
     -webkit-line-clamp: 2;
    line-clamp: 2;
    -webkit-box-orient: vertical;
    display: -webkit-box;
    font-size: 20px;
    font-weight: 800;
    height: 56px;
    line-height: 28px;
    overflow: hidden;
    color: #1e1e1e;
}
.warehouse .container .cardItem .blockList{
    display: flex;
    flex-direction: column;
    gap: 16px;
}
.warehouse .container .cardItem .row1{
    display: flex;
    flex-direction: row;
    gap: 4px
}
.warehouse .container .cardItem .row1 .blockItem{
    align-items: center;
    background-color: #f7f9fa;
    border-radius: 4px;
    display: flex;
    flex: 1;
    flex-direction: column;
    height: 96px;
    justify-content: center;
    padding: 20px 8px
}
.warehouse .container .cardItem .row1 .blockItemTitle{
    font-family: RedHatDisplay;
    font-size: 1rem;
    font-weight: 800;
    letter-spacing: 0;
    line-height: 24px;
    text-align: center;
    vertical-align: middle;
    color: #1e1e1e;
}
.warehouse .container .cardItem .row1 .desc{
    color: #697682;
    font-family: RedHatDisplay;
    font-size: 12px;
    font-weight: 500;
    letter-spacing: 0;
    line-height: 16px;
    text-align: center
}
.warehouse .container .cardItem .tag-wrap{
    display: flex;
    flex-direction: row;
    flex-wrap: wrap;
    gap: 4px;
    overflow: hidden
}
.warehouse .container .cardItem .tag-wrap .tag{
    border: 1px solid #d5dee5;
    border-radius: 4px;
    color: #697682;
    font-size: 12px;
    font-weight: 500;
    /* height: 24px; */
    line-height: 24px;
    padding: 0 8px
}
.warehouse .container .cardItem .row2{
    align-items: center;
    border: .5px solid rgba(22,23,24,.102);
    border-radius: 4px;
    display: flex;
    flex-direction: row;
    gap: 4px;
    margin-bottom: 8px;
    padding: 6px 0
}
.warehouse .container .cardItem .row2 .sizeItem{
    flex: 1;
    font-family: Inter;
    font-size: 12px;
    font-weight: 500;
    letter-spacing: 0;
    line-height: 16px;
    text-align: right;
    text-align: center;
    vertical-align: middle;
    color: #1e1e1e;
}
.warehouse .container .cardItem .supply-chain{
    display: flex;
    flex-direction: row;
    gap: 4px;
}
.warehouse .container .cardItem .supply-chain-item{
    align-items: center;
    background: linear-gradient(180deg,#d9872b 50%,#fff 0);
    background-position: 0 100%;
    background-size: 100% 200%;
    border-radius: 3px;
    display: flex;
    height: 32px;
    justify-content: center;
    line-height: 32px;
    padding: 5px;
    position: relative;
    transition: all .1s ease-in-out;
    width: 32px;
    font-size: 14px;
    color: #1e1e1e;
}
.warehouse .container .cardItem .supply-chain-item:hover{
    background-position: 0 0;
    border-color: #fff;
    animation: button-hover .25s ease-in-out;
    transition: all 0s
}
.warehouse .container .cardItem .supply-chain-item:after{
    border: .5px solid rgba(22,23,24,.102);
    border-radius: 3px;
    content: " ";
    float: left;
    height: 100%;
    position: absolute;
    transition: all .3s ease-in-out;
    width: 100%
}
.warehouse .container .cardItem .supply-chain-item:hover:after {
    border-color: #000!important
}
.warehouse .container .cardItem .supply-chain-item .anticon{
    font-size: 28px;
    text-align: center;
    color: #1e1e1e;
}
.warehouse .container .cardItem .supply-chain-item .tooltip{
    position: absolute;
    bottom: calc(100% + 10px);
    left: 50%;
    max-width: 250px;
    line-height: 1.57;
    min-width: 24px;
    min-height: 32px;
    padding: 6px 8px;
    word-break: break-word;
    border-radius: 4px;
    background-color: rgba(0,0,0,.85);
    box-shadow: 0 6px 16px 0 rgba(0, 0, 0, 0.08),
      0 3px 6px -4px rgba(0, 0, 0, 0.12),
      0 9px 28px 8px rgba(0, 0, 0, 0.05);
    font-size: 14px;
    color: #fff;  
    opacity: 0;
    visibility: hidden;
    position: absolute;
    transform: translateX(-50%)scale(.95);
    transform-origin: center bottom;
    transition: all .1s cubic-bezier(.4,0,.2,1);
    white-space: nowrap;
 }
 .warehouse .container .cardItem .supply-chain-item:hover .tooltip{
    opacity: 1;
    visibility: visible;
    transform: translateX(-50%)scale(1);
    pointer-events: inherit;
 }
 .warehouse .container .cardItem .supply-chain-item .tooltip::before{
    position: absolute;
    bottom: 0;
    left: 50%;
    content: '';
    background-color: rgba(0,0,0,.85);
    width: 16px;
    height: 16px;
    transform: translate(-50%,50%) rotate(180deg);
    clip-path: path('M 0 8 A 4 4 0 0 0 2.82842712474619 6.82842712474619 L 7.292893218813452 2.363961030678928 A 1 1 0 0 1 8.707106781186548 2.363961030678928 L 13.17157287525381 6.82842712474619 A 4 4 0 0 0 16 8 Z');
 }
 .warehouse .container .cardItem .supply-chain-item:hover .tooltip{
    display: block;
 }
 .warehouse .container .cardItem .supply-chain-item .tooltip .tooltipWrap{ 
    padding: 14px 12px;
}
  .warehouse .container .cardItem .supply-chain-item .tooltipWrapContent{
    height: 300px;
    max-height: 400px;
    min-height: 200px;
    overflow: scroll;
    overflow-y: scroll;
    scrollbar-width: none;
    -ms-overflow-style: none;
 }
  .warehouse .container .cardItem .supply-chain-item .tooltipWrapContent::-webkit-scrollbar {
    display: none;
 }
 .warehouse .container .cardItem .supply-chain-item .content-title{
    color: hsla(0, 0%, 100%, .502);
    font-size: 12px;
    font-weight: 700;
    line-height: 16px;
 }
 .warehouse .container .cardItem .supply-chain-item .tooltip .cell{
    display: flex;
    padding: 8px;
    color: #fff;
    font-size: 15px;
    font-weight: 400;
    line-height: 32px;
 }
  .warehouse .container .cardItem .supply-chain-item .tooltip .cell .anticon{
    font-size: 32px;
    margin-right: 10px;
    color: #fff;
 }
@media screen and (max-width: 768px) {
    .warehouse .container .title{
         font-size:32px;
        line-height: 38px
    }
    .warehouse .filter{
        display: none;
    }
    .warehouse {
        padding:16px
    }
}