main {
    margin: 0 auto;
    padding: 20px;
    background: url('../images/匠人故事/bg.png') no-repeat top;
    background-size: cover;
}

.title-container {
    max-width: 657px;
    height: 125px;
    text-align: center;
    position: relative;
    margin: 10px auto;
    padding: 6px;
    background: url("../images/shouye/_1编组_.png") no-repeat center;
    background-size: contain;
}

.pattern .content-item ul {
    width: 100%;
    display: flex;
    flex-direction: column;
    align-items: flex-end;
    padding: 10px 130px;
}

.pattern .content-item ul li {
    width: 400px;
    height: 400px;
    background-color: #044e73;
    color: #b8a091;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 60px;
    border-radius: 20px;
    margin: 10px;
}

.pattern .content-item ul li:nth-child(odd) {
    align-self: flex-start;
}

.bottom-box {
    width: 300px;
    height: 70px;
    background-color: #00324e;
    margin: 0 auto;
    border-radius: 60px;
}

/* 超小屏幕（手机竖屏） */
@media (max-width: 480px) {
    main {
        padding: 5px;
    }

    .title-container {
        height: 40px;
        font-size: 16px;
        padding: 1px;
    }

    .pattern .content-item ul {
        padding: 5px 10px;
    }

    .pattern .content-item ul li {
        width: 95vw;
        height: 80px;
        font-size: 20px;
        border-radius: 8px;
    }

    .bottom-box {
        width: 80vw;
        height: 30px;
        font-size: 12px;
        border-radius: 20px;
    }
}

/* 中等屏幕（如平板） */
@media (min-width: 481px) and (max-width: 1024px) {

    .title-container {
        height: 80px;
        font-size: 22px;
    }

    .pattern .content-item ul {
        padding: 10px 30px;
    }

    .pattern .content-item ul li {
        width: 60vw;
        height: 200px;
        font-size: 36px;
        border-radius: 16px;
    }

    .bottom-box {
        width: 60vw;
        height: 50px;
        font-size: 18px;
        border-radius: 40px;
    }
}