.entrance-container {
    display: flex;
    margin: 0.8rem auto;
    max-width: 1920px;
    flex-wrap: wrap;
}

.right-section {
    width: 50%;
    min-width: 490px;
    background-color: white;
    padding: 0 0.3rem 0.1rem;
    background-size: 100% 100%;
}
.left-section {
    width: 50%;
    min-width: 490px;
    min-height: 500px;
    display: flex;
    flex-direction: column;
    padding: 0 0.3rem 0.1rem;
    background-color: white;
    box-shadow: 0 0 10px rgba(0, 0, 0, 0.1);
    /*background-image: linear-gradient(*/
    /*        rgba(255, 255, 255, 0.5),*/
    /*        rgba(255, 255, 255, 0.5)*/
    /*),*/
    /*url("https://files.axshare.com/gsc/I8QS5M/09/01/7c/09017c35c5bf4a389d328fdc7b1ae64a/images/3/u0_div.jpg?pageId=e933c558-5f24-4bf5-84a4-0441bba7895e");*/
    background-size: 100% 100%;
}

.left-section .title {
    text-align: center;
    font-size: 0.28rem;
    margin-bottom: 0.2rem;
    color: var(--el-text-color-primary);
}

.left-section .description {
    text-align: center;
    margin-bottom: 0.3rem;
    color: #555;
    font-size: 0.16rem;
}

.left-section-container {
    width: 100%;
    flex:1;
    background: white;
    margin: 0 auto;
    padding: 0.3rem;
    display: flex;
    justify-content: center;
    flex-direction: column;
    align-items: center;
    box-shadow: 0 5px 10px rgba(0, 0, 0, 0.3);
    border-radius: 8px;
}
.left-section .left-section-detail {
    color: white;
    padding: 0.2rem;
    display: flex;
    justify-content: flex-end;
    align-items: center;
    cursor: pointer;
}

.left-section .left-section-detail .more-arrow {
    display: inline-block;
    width: 0.28rem;
    height: 0.3rem;
    background: url("../images/right-b.png")
    no-repeat right center;
    background-size: contain;
    margin-left: 0.1rem;
}

.left-section .flex-row {
    width: 100%;
    display: flex;
    flex-wrap: wrap; /* 自动换行 */
    gap: 0.2rem; /* 设置卡片间距 */
}

.left-section .flex-item {
    background-color: var(--el-color-red);
    color: white;
    padding: 0.2rem 0;
    border-radius: 8px;
    text-align: center;
    font-size: 0.18rem;
    box-shadow: 0 5px 5px rgba(0, 0, 0, 0.3);
}
.left-section .flex-item:first-child {
    width: 65%;
}
.left-section .flex-item:nth-child(2) {
    width: calc(35% - .2rem);
}
.left-section .flex-item:nth-child(3) {
    width: 55%;
}
.left-section .flex-item:nth-child(4) {
    width: calc(45% - .2rem);
}
.left-section .flex-item:nth-child(5) {
    width: 35%;
}
.left-section .flex-item:nth-child(6) {
    width: calc(65% - .2rem);
}

.left-section .flex-item h3 {
    margin: 0;
    font-size: 0.32rem;
}

.left-section .flex-item span {
    font-size: 0.14rem;
    margin-top: 0.1rem;
}

.right-header {
    text-align: center;
    font-size: 0.38rem;
    font-weight: bold;
    margin: .8rem 0 0.4rem;
    color: var(--el-text-color-primary);
}
.right-section .section-title {
    text-align: left;
    font-size: 0.2rem;
    margin: 0.1rem 0;
    color: #333;
}

.right-section .content-row {
    display: flex;
    justify-content: space-between;
    align-items: center;
    margin-bottom: 0.2rem;
    gap: 0.2rem;
    height: 2.2rem;
}

.right-section .box {
    width: calc(30% - .2rem);
    /* margin-left: .2rem; */
    background-color: var(--el-color-red);
    border-radius: 8px;
    color: white;
    text-align: center;
    display: flex;
    flex-direction: column;
    justify-content: center;
    gap: 0.2rem;
    height: 100%;
    cursor: pointer;
    box-shadow: 0 5px 10px rgba(0, 0, 0, 0.3);
}

.right-section .box.blue {
    background-color: var(--el-color-blue);
}

.right-section .box img {
    width: 0.6rem;
    /*height: 0.4rem;*/
    margin: 0 auto;
}

.right-section .box-title {
    font-size: 0.2rem;
    font-weight: bold;
    margin-top: 0.1rem;
}

.right-section .box-description {
    font-size: 0.16rem;
}

.right-section .image-box {
    width: 70%;
    height: 100%;
    border-radius: 8px;
    overflow: hidden;
}

.right-section .image-box img {
    width: 100%;
    height: 100%;
    object-fit: cover;
}

@media screen and (max-width: 1000px) {
    /* .entrance-container {
        flex-wrap: wrap;
    } */
    .left-section {
        width: 100%;
        margin: 0 0.4rem .8rem;
    }
    .right-section {
        width: 100%;
        margin: 0 .4rem;
        padding-bottom: .7rem;

    }
}
@media screen and (max-width: 768px) {
    .entrance-container {
        flex-wrap: wrap;
    }
    /* .left-section .flex-item {
        width: 100% !important;
    } */
    .right-section .image-box {
        width: calc(100% - 3.4rem);
    }
    .right-section .box {
        width: 3.4rem;
    }
    .right-section {
        min-width: 100px;
    }
    .left-section {
        min-width: 100px;
    }
}
@media screen and (max-width: 600px) {
    .right-section .image-box {
        width: calc(50% - .1rem);
    }
    .right-section .box {
        width: calc(50% - .1rem);

    }
}
@media screen and (max-width: 480px) {

    .left-section .flex-item {
        width: 100% !important;
    }
}