
    /* ------------------ 评价瀑布流样式 ------------------ */
#masonry {
    display: flex;
    gap: 16px;
    margin-top: 20px;
    flex-wrap: wrap;
}

#masonry .column {
    flex: 1;
    display: flex;
    flex-direction: column;
    gap: 16px;
    min-width: 0;
}

#masonry .card {
    background: #fff;
    border-radius: 15px;
    overflow: hidden;
    box-shadow: 0 1px 3px rgba(0,0,0,0.05); /* 轻微阴影，几乎看不见黑线 */
    display: flex;
    flex-direction: column;
    transition: transform 0.3s ease, box-shadow 0.3s ease;
    position: relative;
    background-clip: padding-box; /* 避免圆角渲染黑线 */
    border: none; /* 确保没有边框 */
}


#masonry .card:hover {
    box-shadow: 0 10px 20px rgba(0,0,0,0.15);
}

#masonry .img-container {
    width: 100%;
    position: relative;
    overflow: hidden;
}

#masonry .img-container.single img {
    width: 100%;
    display: block;
    object-fit: cover;
    height: auto;
}

#masonry .img-container.multi {
    display: grid;
    grid-gap: 2px;
}

#masonry .img-container.multi.two {
    grid-template-rows: auto auto;
}

#masonry .img-container.multi.three {
    grid-template-columns: 1fr 1fr;
    grid-template-rows: auto auto;
    grid-template-areas:
        "top-left top-right"
        "bottom bottom";
}
#masonry .img-container.multi.three img:nth-child(1) { grid-area: top-left; width: 100%; height: 100%; object-fit: cover; }
#masonry .img-container.multi.three img:nth-child(2) { grid-area: top-right; width: 100%; height: 100%; object-fit: cover; }
#masonry .img-container.multi.three img:nth-child(3) { grid-area: bottom; width: 100%; height:100%; object-fit: cover; }



#masonry .img-container.multi img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    display: block;
}

#masonry .title {
    padding: 8px 12px;
    font-size: 14px;
    color: #333;
}

#masonry .info {
    display: flex;
    align-items: center;
    justify-content: space-between;
    padding: 8px 12px;
}

#masonry .info-left {
    display: flex;
    align-items: center;
}

#masonry .info-left img.avatar {
    width: 30px;
    height: 30px;
    border-radius: 50%;
    margin-right: 8px;
}

#masonry .info-left .name-time {
    display: flex;
    flex-direction: column;
    font-size: 12px;
    color: #666;
}

#masonry .info-left .name-time .name {
    font-weight: bold;
    color: #333;
}

#masonry .work-rating {
    color: #ffc520;
    font-size: 0.9rem;
    position: absolute;
    top: 10px;
    left: 10px;
    background: rgba(255,255,255,0.9);
    padding: 5px 10px;
    border-radius: 12px;
    backdrop-filter: blur(5px);
    box-shadow: 0 2px 5px rgba(0,0,0,0.1);
    z-index: 10;
    display: flex;
    align-items: center;
    pointer-events: none;
}

#masonry .work-rating i {
    color: #FFD600;
    font-size: 1rem;
    margin-right: 2px;
}

@media (max-width: 960px) {
    #masonry {
        gap: 12px;
    }
    #masonry .work-rating {
        font-size: 0.85rem;
        padding: 4px 8px;
    }
}



    .swiper {
      width: 100%;
      height: 100%;
      border-radius: 0.6rem 0.6rem 0 0 ;
    }

    .mySwiper2 {
      height: 33rem;;
      width: 100%;
      overflow: hidden;
      background-color: #f5f5f5;
    }

    .mySwiper2 .swiper-slide {
      display: flex;
      align-items: center;
      justify-content: center;
      height: 100%;
    }

    .mySwiper2 .swiper-slide img {
      display: block;
      width: 100%;
      height: 100%;
      object-fit: cover;
    }

    .mySwiper {
      height: 120px;
      box-sizing: border-box;
      margin-top: 8px;
    }

    .mySwiper .swiper-slide {
      width: 25%;
      height: 100%;
      opacity: 0.6;
      border: 1px solid transparent;
      border-radius:  0 0 0.6rem 0.6rem;
      overflow: hidden;
      background-color: #f5f5f5;
    }

    
    .mySwiper .swiper-slide-thumb-active {
      opacity: 1;
      border-color: #333333;
    }

    .mySwiper .swiper-slide img {
      display: block;
      width: 100%;
      height: 100%;
      object-fit: cover;
    }


