body {
    display: flex;
    flex-direction: column;
    min-height: 100vh;
}

.page-content {
    flex: 1;
    margin-top: 120px;
    margin-bottom: 120px;
    min-width: 1440px;
    display: flex;
    justify-content: center;
}

.promotions-section {
    width: 1440px;
    padding: 0px 180px;
    box-sizing: border-box;
}

.promotions-section > h1 {
    font-weight: 700;
    font-size: 24px;
    line-height: 30px;
    color: #272727;
    padding-bottom: 16px;
    border-bottom: 1px solid #272727;
}

.promotion-list {
    list-style: none;
    padding: 0;
    margin-top: 16px;
}

.promotion-item {
    margin-bottom: 16px;
    padding-bottom: 16px;
    border-bottom: 1px solid #e9e9e9;

}

.promotion-item:last-child {
    margin-bottom: 0;
    padding-bottom: 0;
    border-bottom: none;
}

.promotion-item > a {
    display: flex;
    flex-direction: column;
    text-decoration: none;
}

.promotion-banner-image {
    width: 80%;
    max-height: 200px;
    object-fit: cover;
    border-radius: 8px;
    margin-bottom: 16px;
    display: block;
}

.promotion-info {
    display: flex;
    flex-direction: column;
    gap: 6px;
}

.promotion-info > h2 {
    font-weight: 700;
    font-size: 18px;
    line-height: 23px;
    color: #272727;
    margin: 0;
    overflow: hidden;
    text-overflow: ellipsis;
    display: -webkit-box;
    -webkit-line-clamp: 2;
    -webkit-box-orient: vertical;
}

.promotion-info > span {
    font-size: 14px;
    line-height: 18px;
    color: #a8a8a8;
}

.promotions-section > .more-button {
    margin: 60px auto 0;
    width: 196px;
    height: 44px;
    background: #ffffff;
    border: 1px solid #e6e6e6;
    border-radius: 100px;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 13px;
    line-height: 16px;
    text-align: right;
}

.promotions-section > .more-button > img {
    margin-left: 4px;
}