.top-header {
    background-image: url('../imgs/cases-bg.png'); /* 设置背景图片 */
    background-repeat: no-repeat; /* 防止图片平铺 */
    background-position: center center; /* 你可以根据需要调整图片的位置 */
    background-size: cover; /* 如果想要背景图片覆盖整个元素区域，同时不失真，可以使用cover */
}
.news-box {
    max-width: 1000px;
    max-height: 300px;
    border-radius: 10px;
    background: #FFFFFF;
    /* 阴影/弥散阴影 */
    box-shadow: 0px 8px 32px 0px rgba(0, 0, 0, 0.16);
    margin: 0 auto;
}
.what-news-box {
    border-radius: 10px;
    background: #FFFFFF;
    /* 阴影/弥散阴影 */
    box-shadow: 0px 8px 32px 0px rgba(0, 0, 0, 0.16);
}
.dw-box {
    position: absolute;
    left: 50%;
    top: 50%;
    transform: translate(-50%, -50%);
    display: flex;
    justify-content: center;
    align-items: center;
}
.dw-title {
    font-family: Source Han Sans;
    font-size: 16px;
    font-weight: bold;
    line-height: normal;
    letter-spacing: 0em;
    font-variation-settings: "opsz" auto;
    font-feature-settings: "kern" on;
    color: #FFFFFF;
    margin-left: 5px;
}
.dw-bg-box {
    position: absolute;
    left: 0;
    top: 0;
    width: 100%;
    height: 100%;
    border-radius: 10px;
    background: rgba(0, 0, 0, 0.3);
}
.read-now-btn {
    border-radius: 10px;
    opacity: 1;
    width: 140px;
    background: #FFFFFF;
    /* 阴影/弥散阴影 */
    box-shadow: 0px 8px 32px 0px rgba(0, 0, 0, 0.16);
}

.frige-item {
    border-radius: 10px;
    opacity: 1;
    background: #EEEEEE;
    box-shadow: 0px 4px 10px 0px rgba(0, 0, 0, 0.3);
}
.bg-img {
    background-image: url("../imgs/fridge-bg.png");
    background-size: cover;
    background-position: center;
}
.bg2 {
    background: rgba(205, 225, 253, 0.5);
}
.bg3 {
    background: #E2E4E6;
}
.disc-list {
    list-style-type: disc; /* 实心圆 */
    color: black; /* 小圆圈颜色（与文字颜色一致，若需单独改颜色，见进阶用法） */
    padding-left: 20px; /* 调整左侧间距，控制小圆圈与文字的距离 */
}
.bradius {
    border-radius: 25px;
}
.solution-box {
    display: flex;
    flex-direction: row;
}
.solution-left-box {
    display: flex;
    flex-direction: column;
}

.sodexo-con-box {
    border-radius: 25px;
}
.bg4 {
    background: rgba(205, 225, 253, 0.5);
}
@media screen and (min-width: 1024px) {
    .transform50 {
        transform: translateX(50%);
    }
}