.listScreenView {
    width: 1120px;
    padding: 24px 30px;
    background: #FFFFFF;
    box-shadow: 0px 8px 24px rgba(18, 20, 29, 0.04);
    backdrop-filter: blur(20px);
    /* Note: backdrop-filter has minimal browser support */

    border-radius: 20px;
    box-sizing: border-box;
    margin-top: 32px;
}
.screenItem {
    margin-bottom: 8px;
}
.screenTitle {
    width: 56px;
    font-weight: 500;
    font-size: 14px;
    line-height: 24px;
    color: #12141D;
    margin-right: 26px;
    padding: 8px 0;
}
.screenListView {
    flex-wrap: wrap;
    flex: 1;
    overflow: hidden;
}
.screenListView > a{
    position: relative;
    margin-right: 24px;
    font-weight: 400;
    padding: 8px 0;
    font-size: 14px;
    line-height: 24px;
    height: 24px;
    color: #777778;
}
.screenListView > a:last-child {
    margin-right: 0;
}
.screenListView > a.on {
    color: #12141D;
}
.screenListView > a.on::after {
    position: absolute;
    left: 0;
    right: 0;
    bottom: 8px;
    content: "";
    height: 1;
    background: #12141D;
}
.listView {
    margin-top: 40px;
}

.listView .noticeTipView {
    font-weight: 500;
    font-size: 18px;
    line-height: 32px;
    padding: 8px 0;
    color: #23262F;
}
.listView .noticeTipView>span {
    color: #2563EB;
    margin: 0 8px;
}
.listBox {
    margin-top: 40px;
}
.caseListItem {
    float: left;
    width: 256px;
    height: 397px;
    background: #FFFCFC;
    border-radius: 20px;
    margin-right: 32px;
    margin-bottom: 32px;
    overflow: hidden;
}
.caseListItem:nth-child(4n){
    margin-right: 0;
}
.caseListItem .image {
    display: block;
    width: 100%;
    height: 240px;
    overflow: hidden;
}
.caseListItem .detail {
    padding: 24px;
}
.caseListItem .detail .topView {
    padding-bottom: 16px;
    border-bottom: 1px solid #E6E8EC;
}
.caseListItem .detail .topView .desc {
    flex: 1;
    overflow: hidden;
}
.caseListItem .detail .topView .desc .name {
    font-weight: 500;
    font-size: 16px;
    line-height: 24px;
    white-space: nowrap;
    overflow: hidden;
    text-overflow: ellipsis;
    color: #23262F;
}
.caseListItem .detail .topView .desc .label {
    font-weight: 400;
    font-size: 12px;
    line-height: 18px;
    margin-top: 8px;
    color: #777E91;
}
.caseListItem .detail .topView .price {
    padding: 6px 6px 4px;
    height: 44px;
    border: 2px solid #2563EB;
    border-radius: 4px;
    box-sizing: border-box;
}
.caseListItem .detail .topView .price .val {
    font-weight: 700;
    font-size: 12px;
    line-height: 12px;
    text-align: center;
    text-transform: uppercase;
    color: #2563EB;
}
.caseListItem .detail .topView .price .unit {
    font-weight: 700;
    font-size: 12px;
    line-height: 12px;
    margin-top: 6px;
    text-align: center;
    text-transform: uppercase;
    color: #B1B5C4;
}

.caseListItem .detail .bottomView {
    margin-top: 16px;
}
.caseListItem .detail .bottomView .leftView >div {
    width: 24px; 
    height: 24px; 
    border-radius: 50%; 
    overflow: hidden;
}
.caseListItem .detail .bottomView .leftView > span {
    font-size: 12px;
    line-height: 18px;
    margin-left: 8px;
    color: #23262F;
}
.caseListItem .detail .bottomView .rightItem {
    margin-left: 8px;
}
.caseListItem .detail .bottomView .rightItem > span {
    margin-left: 8px;
}


