/* 全局样式 */
body{
    padding-top: 0!important;
}
.hide {
    display: none;
}

.show {
    display: block;
}
.static-content{
    padding-top: 156px;
}
.index-container {
    /* background-color: #f5f5f5; */
    padding: 0;
    margin: 0;
    min-height: 100vh;
    overflow: hidden;
    /* padding-top: 150px; */
}

.index-container .content-section {
    z-index: 10;
    position: relative;
}



/* award-activity模块布局与样式 */
.award-activity {
    margin-top: 60px;
    padding-left: 180px;
    padding-right: 35px;
}

.award-activity .award-title {
    font-size: 1.35rem;
    font-family: 'fzlt-mid';
}

.award-activity .award-title-des {
    font-size: 1rem;
    color: #898989;
}

.award-activity .award-title-des-footer {
    margin-top: 90px;
    margin-bottom: 90px;
}

.award-layout {
    display: flex;
    align-items: flex-start;
    justify-content: space-between;
    margin: 0 auto;
    background: #fff;
    gap: 48px;
}

.award-tabs {
    display: flex;
    flex-direction: column;
    gap: 15px;
    min-width: 25vw;
}

.award-tab {
    font-size: 1rem;
    color: #898989;
    cursor: pointer;
}

.award-tab.active,
.award-tab:hover {
    color: #000;
    font-family: 'fzlt-mid';
}

.award-images {
    flex: 1;
    /* width: 1250px; */
}

.award-images-list {
    display: none;
}

.award-images-list.show {
    display: block;
}

.award-images-list .award-title {
    margin-bottom: 0.5rem;
}

/* 获奖产品项目样式 */
.list-info {
    margin-top: 2rem;
    display: flex;
    flex-direction: column;
}

.award-item {
    display: flex;
    align-items: flex-end;
    justify-content: space-between;
    gap: 2rem;
    overflow: hidden;
    transition: all 0.3s ease;
}


.award-item-image {
    flex-shrink: 0;
    width: 50%;
    height: auto;
    overflow: hidden;
}

.award-item-image img {
    width: 100%;
    height: auto;
    object-fit: cover;
    transition: transform 0.3s ease;
}

.award-item:hover .award-item-image img {
    transform: scale(1.05);
}

.award-item-content {
    width: 50%;
    ;
    padding: 100px 0;
    display: flex;
    flex-direction: column;
}

.award-item-title {
    font-size: 1.35rem;
    font-family: 'fzlt-mid', 'Arial', sans-serif !important ;
    margin-bottom: 1rem;
    line-height: 1.3;
    display: flex;
    align-items: center;
}

.award-item-title::before {
    content: '';
    width: 10px;
    height: 20px;
    background-image: url(../images/award-activity/icon_tran.png);
    background-size: 100% 100%;
    background-repeat: no-repeat;
    display: inline-block;
    margin-right: 10px;
}

.award-item-description {
    font-size: 1rem;
    color: #898989;
    margin: 0;
}

/* 偶数 */
.award-item:nth-child(even) {
    flex-direction: row-reverse;
}

.award-item:nth-child(even) .award-item-content {
    align-items: flex-end;
}

.award-item:nth-child(even) .award-item-title {
    flex-direction: row-reverse;
    text-align: right;
}

.award-item:nth-child(even) .award-item-title::before {
    transform: rotate(180deg);
    margin-left: 10px;
}

.award-item:nth-child(even) .award-item-description {
    text-align: right;
}

/* pc端适配 */
@media (min-width: 769px) {
    .vv-mob {
        display: none !important;
    }

    .vv-pc {
        display: block !important;
    }
}

@media (max-width: 1450px) {
    .award-tabs {
        min-width: 15vw;
    }
}

@media (max-width: 1250px) {
    .award-tabs {
        min-width: 10vw;
    }
}

@media (max-width: 992px) {
    .index-container {
        padding-top: 3.75rem;
        min-height: 50vh;
    }

    .main-tool-bar .sub-page-title {
        background-color: #fff!important;
        height: auto;
        padding: 0 1.25rem;
        justify-content: center;
    }

    .main-tool-bar .sub-page-title .breadcrumb .breadcrumb-item {
        display: none;
        font-size: 1.25rem;
        padding-left: 0;
    }

    .main-tool-bar .sub-page-title .breadcrumb .breadcrumb-item:last-child {
        display: block;

    }

    .main-tool-bar .sub-page-title .breadcrumb-item+.breadcrumb-item::before {
        content: none;
    }

    .award-tabs {
        min-width: 12vw;
    }
}

/* 移动端样式 */
@media (max-width: 768px) {
    .vv-mob {
        display: block !important;
    }

    .vv-pc {
        display: none !important;
    }

    .static-content{
        padding-top: 28px;
    }
    /* 移动端适配 */
    .award-activity {
        padding-left: 1.25rem;
        padding-right: 1.25rem;
        margin-top: 0;
    }
    .award-activity .award-title-des{
        font-size: 0.9rem;
    }

    .award-layout {
        flex-direction: column;
        gap: 20px;
    }

    .award-tabs {
        width: 100%;
        flex-direction: row;
        justify-content: space-between;
        align-items: center;
        gap: 0;
        padding: 20px 4rem;
        position: fixed;
        z-index: 100;
        left: 0;
        background-color: #fff;
    }

    .award-tabs::before {
        content: '';
        position: absolute;
        bottom: 0;
        left: 0;
        width: 100vw;
        height: 1px;
        background-color: #E5E5E5;
    }

    .award-tabs .award-title {
        display: none;
    }

    .award-tab {
        font-size: 1rem;
        padding: 0;
    }

    .award-images-list {
        margin-top: 6.5rem;
    }

    .award-images-list .award-title {
        text-align: center;
        background-color: #eeeeee;
        padding: 10px 0;
        margin-bottom: 20px;
        font-size: 1.25rem;
    }

    /* 移动端获奖产品项目样式 */
    .list-info {
        margin-top: 1.5rem;
        gap: 1.5rem;
    }

    .award-item {
        flex-direction: column !important;
        gap: 1.25rem;
        position: relative;
        border-bottom: 1px solid #E5E5E5;
    }

    .award-fqt .award-item:last-child {
        border-bottom: none;
    }

    .award-item-image {
        width: 100%;
        height: auto;
    }

    .award-item-content {
        padding: 0;
        width: 100%;
    }

    .award-item-title {
        font-size: 1.25rem;
        margin-bottom: 0.75rem;
        line-height: 1.5;
    }

    .award-item-title::before {
        display: none;
    }

    .award-item-description {
        font-size: 0.9rem;
        margin-bottom: 1rem;
    }

    .award-item:nth-child(even) .award-item-content {
        align-items: flex-start;
    }

    .award-item:nth-child(even) .award-item-title {
        text-align: left;
        width: 100%;
        flex-direction: row;
    }

    .award-item:nth-child(even) .award-item-description {
        text-align: left;
    }

    .award-activity .award-title-des-footer {
        margin-top: 40px;
        margin-bottom: 40px;
        font-size: 0.9rem;
    }
}