.paper-list-view,
.case-list-view {
    width: 100%;
    padding: 80px 0;
    position: relative;
    background-color: #F4F7FF;
}

.paper-list-view .plv-tit,
.case-list-view .case-tit {
    font-size: 42px;
    font-weight: bold;
    color: #333;
    text-align: center;
}

.swiper-content {
    width: 1245px;
    height: 100%;
    margin: 0 auto;
    position: relative;
}

.swiper-content .swiper-button-prev {
    left: -80px;
    top: 140px;
}

.swiper-content .swiper-button-next {
    right: -80px;
    top: 140px;
}

.swiper-content .plv-list,
.swiper-content .case-list {
    width: 1290px;
    margin: 40px auto 0;
    display: flex;
    justify-content: flex-start;
    align-items: flex-start;
    flex-flow: row wrap;
    gap: 24px;
    padding-bottom: 20px;
}

.swiper-content .plv-list .list-item {
    width: 293px;
    padding: 15px;
    border: 1px solid transparent;
    border-radius: 8px;
    display: flex;
    justify-content: space-between;
    align-items: flex-start;
    flex-direction: row;
    flex: 0 0 auto;
    transition: box-shadow 0.5s cubic-bezier(.34, .69, .74, 1.4);
}

.swiper-content .plv-list .list-item .hq-img {
    width: 130px;
    height: 170px;
    overflow: hidden;
}

.swiper-content .plv-list .list-item .hq-info {
    width: 128px;
    height: 170px;
    display: flex;
    justify-content: space-between;
    align-items: flex-start;
    flex-direction: column;
}

.swiper-content .plv-list .list-item .hq-info .hq-name {
    width: 100%;
    font-size: 18px;
    color: #333;
    position: relative;
}

.swiper-content .plv-list .list-item .hq-info .hq-name a {
    color: #333;
    display: -webkit-box;
    -webkit-box-orient: vertical;
    -webkit-line-clamp: 2;
    overflow: hidden;
    text-overflow: ellipsis;
}

.swiper-content .plv-list .list-item .hq-info .hq-name::after {
    content: '';
    width: 90%;
    height: 3px;
    background-color: #F0F0F0;
    position: absolute;
    bottom: -6px;
    left: 0;
    /* transition: all 0.5s cubic-bezier(.23, -0.41, .76, .23); */
    transition: all 0.5s cubic-bezier(.34, .69, .74, 1.4);
}

.swiper-content .plv-list .list-item .hq-info .hq-value {
    width: 100%;
    font-size: 12px;
    display: flex;
    justify-content: flex-start;
    align-items: flex-start;
    flex-direction: row;
}

.swiper-content .plv-list .list-item .hq-info .hq-value span.lab {
    color: #686869;
    flex: 0 0 auto;
}

.swiper-content .plv-list .list-item .hq-info .hq-value span.txt {
    color: #333;
    white-space: nowrap;
    overflow: hidden;
    text-overflow: ellipsis;
}

.swiper-content .plv-list .list-item:hover {
    background-color: #fff;
    border-color: rgba(0, 0, 0, 0.15);
    box-shadow: 0px 6px 10px 0px rgba(0, 0, 0, 0.15);
}

.swiper-content .plv-list .list-item:hover .hq-info .hq-name,
.swiper-content .plv-list .list-item:hover .hq-info .hq-name a {
    color: #2884DA;
}

.swiper-content .plv-list .list-item:hover .hq-info .hq-name::after {
    width: 0;
    background-color: #2884DA;
}


.swiper-content .case-list .list-item {
    width: 293px;
    padding: 15px;
    border: 1px solid transparent;
    border-radius: 8px;
    display: flex;
    justify-content: space-between;
    align-items: flex-start;
    flex-direction: column;
    flex: 0 0 auto;
    transition: box-shadow 0.5s cubic-bezier(.34, .69, .74, 1.4);
}

.swiper-content .case-list .list-item:hover {
    background-color: #fff;
    border-color: rgba(0, 0, 0, 0.15);
    box-shadow: 0px 6px 10px 0px rgba(0, 0, 0, 0.15);
}

.swiper-content .case-list .list-item:hover .hq-name,
.swiper-content .case-list .list-item:hover .hq-name a {
    color: #2884DA;
}

.swiper-content .case-list .list-item:hover .hq-name::after {
    width: 0;
    background-color: #2884DA;
}

.swiper-content .case-list .list-item .hq-img {
    width: 100%;
    /*height: calc(9/16*293px);*/
    border-radius: 8px;
    overflow: hidden;
}

.swiper-content .case-list .list-item .hq-name {
    width: 100%;
    font-size: 18px;
    color: #333;
    text-align: center;
    position: relative;
    padding: 6px 0 0;
    white-space: nowrap;
    overflow: hidden;
    text-overflow: ellipsis;
}

.swiper-content .case-list .list-item .hq-name a {
    color: #333;
    text-align: center;
    white-space: nowrap;
    overflow: hidden;
    text-overflow: ellipsis;
}