.show-box {
    width: 90%;
    min-width: 800px;
    max-width: 1200px;
    height: 800px;
    margin: 0 auto;
    margin-bottom: 20px;
    display: flex;
    align-items: center;
    justify-content: center;

}

.show-box>div {
    width: 90%;
    height: 90%;
    display: grid;
    grid-template-columns: 1fr 1fr 1fr 1fr 1fr;
    grid-template-rows: 1fr 1fr 1fr;
    justify-content: center;
    gap: 10px;
    overflow: cover;
    /* 防止内容溢出 */

    /* position: relative; */
    grid-template-areas: 'a b d d f '
        'a b e h h '
        'a c e h h ';
}

.show-box>div>.item {
    width: 100%;
    height: 100%;
    display: flex;
    align-items: center;
    justify-content: center;
    overflow: hidden;
    position: relative;
    /* 防止图片溢出 */
    transition: all 0.1s ease-in-out;
}

.show-box>div>.item:hover {
    transform: scale(0.95);
    cursor: pointer;
}

.show-box>div>.item img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    /* 填满容器并保持比例 */
    display: block;
    /* 去除 inline 元素默认的空白间隙 */
    border-radius: 8px;
}

.show-box>div>.item:nth-child(1) {
    grid-area: a;

}

.show-box>div>.item:nth-child(2) {
    grid-area: b;
}

.show-box>div>.item:nth-child(3) {
    grid-area: c;
}

.show-box>div>.item:nth-child(4) {
    grid-area: d;
}

.show-box>div>.item:nth-child(5) {
    grid-area: e;
}

.show-box>div>.item:nth-child(6) {
    grid-area: f;
    display: flex;
    flex-direction: column;
    justify-content: space-between;
}

.show-box>div>.item:nth-child(6)>.grid-btn {
    width: 100%;
    height: 45%;
    display: flex;
    justify-content: center;
    align-items: center;


}

.show-box>div>.item:nth-child(7) {
    grid-area: h;
}

.brief {
    width: 100%;
    height: 100%;
    background-color: rgba(0, 0, 0, 0.5);
    color: #ffffff;
    font-size: 19px;
    padding: 5px;
    display: flex;
    align-items: center;
    padding-left: 10px;
    bottom: -100%;
    border-radius: 8px;
    position: absolute;
    transition: all 0.2s ease-in-out;

    /* opacity: 0;
    默认隐藏 */
}

.item:hover .brief {
    bottom: 0;
    /* opacity: 1; */
    /* 鼠标悬停时显示 */
}

/* top10list=================================================================================== */
.top10-box {
    width: 80%;
    min-width: 800px;
    max-width: 1200px;
    height: 500px;
    margin: 0 auto;
    display: flex;
    justify-content: space-evenly;
    flex-direction: column;
}

.top10-half {
    width: 100%;
    height: 50%;
    padding: 5px;
    display: flex;
    justify-content: space-evenly;
    align-items: center;
}

.about-top10 {
    height: 100%;
    padding: 5px;
    margin: 5px;
    width: 20%;
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: space-evenly;
}

.about-top10>.title {   
    font-size: 20px;
    font-weight: bold;
    align-items: center;
    transition: all 0.5s;
}

.about-top10>.title:hover {
    color: yellow;
    transform: scale(1.2) rotate(30deg);
    cursor: pointer;
}

.about-top10>.img-box {
    height: 70%;
    width: 80%;
    margin-top: 10px;
}

.about-top10>.img-box>img {
    width: 100%;
    height: 100%;
    border-radius: 0.9rem;
    object-fit: cover;
}

.about-top10>.text-box {
    width: 100%;
    font-size: 14px;
    margin-top: 10px;
    display: flex;
    justify-content: space-evenly;
}

.about-top10>.text-box>div {
    font-size: 20px;
    transition: all 0.5s;
}

.about-top10>.text-box>div>span {
    font-weight: bold;
    font-size: 20px;
    color: yellow;
}

.about-top10>.text-box>div:hover {
    transform: scale(1.1);
    color: skyblue;
    cursor: pointer;
}