h2.package-title{
    font-size: 32px;
    line-height: 1.2;
    font-weight: 500;
    margin: 80px auto;
}

.package-wrapper{
    font-size: 0;
}

.package-wrapper img{
    width: 100%;
    height: 100%;
    object-fit: cover;
}

.package-service{
    background: #f5f5f5;
    padding: 80px 0;
}

.service-wrapper{
    display: flex;
    flex-direction: row;
    align-items: stretch;
    gap: 40px;
    font-size: 0;
}

.service-item{
    flex: 0 0 50%;
    overflow: hidden;
    display: flex;
    flex-direction: column;
    align-items: center;
    font-size: 0;
    position: relative;
    border-radius: 8px;
    box-shadow: 0 4px 15px rgba(0, 0, 0, 0.1);
    transition: box-shadow 0.3s ease;
}

.service-item:hover{
    box-shadow: 0 8px 25px rgba(0, 0, 0, 0.15);
}

.service-item .service-img{
    width: 100%;
    height: auto;
    transition: transform 0.3s ease;
}

.service-item .service-img img{
    width: 100%;
    height: auto;
    transition: transform 0.3s ease;
}

.service-item .service-content{
    flex: 0 0 50%;
    padding: 8% 8%;
    background: #fff;
    color: #000;
}

.service-item .service-content .title{
    font-size: 32px;
    font-weight: bold;
    margin-bottom: 20px;
}

.service-item .service-content .desc{
    font-size: 16px;
    line-height: 1.6;
    margin-top: 40px;
}

section.awards{
    padding: 80px 0;
}

.service-desc{
    font-size: 18px;
    padding: 60px 0;
}

.award-wrapper .title{
    font-size: 48px;
    text-align: center;
    margin-bottom: 20px;
}

.award-desc{
    text-align: left;
    font-size: 18px;
    line-height: 1.6;
    color: #666;
    margin-bottom: 60px;
    /* max-width: 800px; */
    margin-left: auto;
    margin-right: auto;
}

.award-desc p{
    margin-bottom: 20px;
}

.award-desc p:last-child{
    margin-bottom: 0;
}

.award-list{
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 40px;
    justify-items: center;
    align-items: center;
    max-width: 800px;
    margin: 0 auto;
}

.award-item{
    flex: 0 0 auto;
    cursor: pointer;
    transition: all 0.3s ease;
    border-radius: 10px;
    overflow: hidden;
    box-shadow: 0 4px 15px rgba(0, 0, 0, 0.1);
    display: flex;
    flex-direction: column;
    align-items: center;
    text-align: center;
    padding: 15px;
    background: #fff;
    height: 250px !important;
    width: 100% !important;
    min-height: 250px !important;
    max-height: 250px !important;
    flex-shrink: 0 !important;
    justify-content: flex-start;
}

.award-item:hover{
    transform: translateY(-5px);
    box-shadow: 0 8px 25px rgba(0, 0, 0, 0.15);
}

.award-item img{
    width: 160px;
    height: 160px;
    display: block;
    object-fit: contain;
    transition: transform 0.3s ease;
}

.award-item:hover img{
    transform: scale(1.05);
}

.award-name{
    font-size: 14px;
    font-weight: 600;
    color: #666;
    margin-top: 15px;
    line-height: 1.4;
    text-align: center;
    flex-shrink: 0;
}

/* 图片放大模态框 */
.award-modal {
    display: none;
    position: fixed;
    z-index: 9999;
    left: 0;
    top: 0;
    width: 100%;
    height: 100%;
    background-color: rgba(0, 0, 0, 0.8);
    backdrop-filter: blur(5px);
}

.award-modal-content {
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    max-width: 90vw;
    max-height: 90vh;
    background: #fff;
    border-radius: 15px;
    padding: 20px;
    box-shadow: 0 20px 60px rgba(0, 0, 0, 0.3);
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
}

.award-modal-content img {
    max-width: 100%;
    max-height: calc(90vh - 80px);
    width: auto;
    height: auto;
    border-radius: 10px;
    object-fit: contain;
}

.award-modal-close {
    position: absolute;
    top: 10px;
    right: 15px;
    font-size: 30px;
    font-weight: bold;
    color: #aaa;
    cursor: pointer;
    transition: color 0.3s ease;
}

.award-modal-close:hover {
    color: #000;
}

/* 响应式设计 */
@media (max-width: 768px) {

    .banner-section .banner-img img{
        height: 50vh;
        object-fit: cover;
    }

    /* Package Title */
    .package-title {
        font-size: 24px;
        padding: 0 20px;
        margin-bottom: 40px;
        margin:20px auto;
    }

    /* Package Wrapper */
    /* .package-wrapper {
      padding: 0 20px;
    } */

    .package-wrapper img {
        max-width: 100%;
        height: auto;
    }

    /* Service Section */
    .package-service {
        padding: 40px 0;
    }

    .service-wrapper {
        flex-direction: column;
        gap: 30px;
        padding: 0 20px;
    }

    .service-item {
        flex: none;
        width: 100%;
    }

    /* .service-item .service-img {
      width: 100%;
      height: 200px;
      margin-bottom: 20px;
    } */

    .service-item .service-img img {
        width: 100%;
        height: 100%;
        object-fit: cover;
    }

    h2.package-title{
        font-size: 26px;
        margin: 20px auto;
    }

    section.awards{
        padding: 20px 0;
    }

    .service-item .service-content {
        padding: 20px;
    }

    .service-item .service-content .title {
        font-size: 24px;
        margin-bottom: 15px;
    }

    .service-item .service-content .desc {
        font-size: 14px;
        line-height: 1.5;
    }

    /* Service Description */
    .service-desc {
        padding: 40px 20px;
        font-size: 16px;
        line-height: 1.6;
    }

    /* Awards Section */
    .award-wrapper .title {
        font-size: 36px;
    }

    .award-desc {
        font-size: 16px;
        margin-bottom: 40px;
        padding: 0 20px;
    }

    .award-list {
        grid-template-columns: repeat(3, 1fr);
        gap: 20px;
        padding: 0 20px;
    }

    .award-item {
        height: 200px !important;
        width: 100% !important;
        min-height: 200px !important;
        max-height: 200px !important;
        flex-shrink: 0 !important;
    }

    .award-item img {
        width: 100px;
        height: 100px;
    }

    .award-name {
        font-size: 12px;
    }

    .award-modal-content {
        max-width: 95vw;
        max-height: 95vh;
        padding: 15px;
    }

    .award-modal-content img {
        max-height: calc(95vh - 60px);
    }

    .award-modal-close {
        font-size: 24px;
        top: 5px;
        right: 10px;
    }

    /* 强化：移动端award图标强制等宽等高，避免被其他规则覆盖 */
    .award-list .award-item img {
        width: 100px !important;
        height: 100px !important;
        min-width: 100px !important;
        min-height: 100px !important;
        max-width: 100px !important;
        max-height: 100px !important;
        display: block !important;
        margin: 0 auto !important;
        object-fit: contain !important;
        flex-shrink: 0 !important;
    }
}

@media (max-width: 480px) {
    /* Package Title */
    .package-title {
        font-size: 20px;
        padding: 0 15px;
        margin-bottom: 30px;
        margin:20px auto;
    }

    /* Package Wrapper */
    /* .package-wrapper {
      padding: 0 15px;
    } */

    /* Service Section */
    .package-service {
        padding: 30px 0;
    }

    .service-wrapper {
        gap: 20px;
        padding: 0 15px;
    }

    /* .service-item .service-img {
      height: 150px;
    } */

    .service-item .service-content {
        padding: 15px;
    }

    .service-item .service-content .title {
        font-size: 20px;
        margin-bottom: 10px;
    }

    .service-item .service-content .desc {
        font-size: 13px;
        line-height: 1.4;
    }

    /* Service Description */
    .service-desc {
        padding: 30px 15px;
        font-size: 14px;
        line-height: 1.5;
    }

    /* Awards Section */
    .award-wrapper .title {
        font-size: 28px;
    }

    .award-desc {
        font-size: 14px;
        padding: 0 15px;
    }

    .award-list {
        grid-template-columns: repeat(2, 1fr);
        gap: 15px;
        padding: 0 15px;
    }

    .award-item {
        height: 180px !important;
        width: 100% !important;
        min-height: 180px !important;
        max-height: 180px !important;
        flex-shrink: 0 !important;
        padding: 10px;
    }

    .award-item img {
        width: 80px;
        height: 80px;
    }

    .award-name {
        font-size: 14px;
        margin-top: 10px;
    }

    /* 强化：小屏award图标强制等宽等高，避免被其他规则覆盖 */
    .award-list .award-item img {
        width: 80px !important;
        height: 80px !important;
        min-width: 80px !important;
        min-height: 80px !important;
        max-width: 80px !important;
        max-height: 80px !important;
        display: block !important;
        margin: 0 auto !important;
        object-fit: contain !important;
        flex-shrink: 0 !important;
    }
}
