/* 中部轮播图========================================================================================================= */

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

.left-box {
    width: 50%;
    height: 90%;
    margin: 30px;
    display: flex;
    align-items: center;
    justify-content: center;
    flex-direction: column;
}

.left-box>div {
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: space-around;
}

.left-box>div>div {
    width: 80%;
    font-size: 20px;
    /* 过度 */
    transition: all 0.5s ease-in-out;
}

.left-box>div>div>span {
    display: inline-block;
    font-size: 20px;
    color: yellow;
    font-weight: bold;
}

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

.left-box>div>div:nth-child(4),
.left-box>div>div:nth-child(5) {
    /* 超出部分变成多行 并显示省略号 */
    overflow: hidden;
    display: -webkit-box;
    -webkit-line-clamp: 3;
    -webkit-box-orient: vertical;
    text-overflow: ellipsis;
}

.left-box>div>div:nth-child(6),
.left-box>div>div:nth-child(7) {
    overflow: hidden;
    display: -webkit-box;
    -webkit-line-clamp: 1;
    -webkit-box-orient: vertical;
    text-overflow: ellipsis;
}

.right-box {
    position: relative;
    width: 50%;
    height: 90%;
    margin: 30px;
    display: flex;
    align-items: center;
    justify-content: center;
}

.right-box>.img-box {
    width: 100%;
    height: 100%;
}

.right-box>.img-box>div {
    position: absolute;
    width: 100%;
    height: 100%;
    display: block;
}

.right-box>.img-box>div>a {
    position: absolute;
    width: 100%;
    height: 100%;
    display: none;
}

.right-box>.img-box>div>a>img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    border-radius: 20px;
}

.left-btn,
.right-btn {
    width: 50px;
    height: 50px;
    display: flex;
    align-items: center;
    justify-content: center;
    position: absolute;
    z-index: 998;
    bottom: 10px;
    border-radius: 50%;
}

.left-btn {
    left: 30%;
    bottom: 20px;
}

.right-btn {
    right: 30%;
    bottom: 20px;
}

.left-btn:hover,
.right-btn:hover {
    cursor: pointer;
    border-radius: 50%;
    color: skyblue;
    /* 放大 */
    transform: scale(1.3);
}

/* top10list=================================================================================== */
.top10-box {
    width: 1000px;
    height: 1100px;
    margin: 0 auto;
    display: flex;
    justify-content: space-evenly;
}

.top10-half {
    width: 50%;
    height: 100%;
    padding: 10px;
    display: flex;
    flex-direction: column;
    justify-content: space-between;
}

.about-top10 {
    height: 200px;
    padding: 5px;
    width: 100%;
    display: flex;
    justify-content: space-between;
    align-items: center;
}

.about-top10>.title {
    width: 70px;
    font-size: 30px;
    font-weight: bold;
    display: flex;
    justify-content: center;
    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: 100%;
    margin-left: 10px;
}

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

.about-top10>.text-box {
    padding: 10px;
    margin-left: 10px;
    height: 100%;
    width: 230px;
    font-size: 14px;
    display: flex;
    flex-direction: column;
    justify-content: space-between;
}

.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;
}