.page {
    width: 100%;
    max-width: 1920px;
    margin: 0 auto;
}
html, body {
    font-size: 14px;
}
/* 顶部图片样式 */
.header-image {
    width: 100%;
    /*height: 600px;*/
    margin-bottom: 52px;
}

.header-image img {
    width: 100%;
    height: auto;
    object-fit: cover;
}


/* 主容器 */
.detail-container {
    max-width: 1440px;
    margin: 0 auto;
    box-sizing: border-box;
}

/* 选项卡样式 */
.tabs {
    display: flex;
    /*margin-bottom: 30px;*/
    flex-wrap: wrap;
    border-radius: 10px;
    /*padding: 10px;*/
    margin-bottom: 63px;
}

.tab {
    padding: 13px 24px;
    text-align: center;
    margin: 0 8px;
    cursor: pointer;
    font-size: 14px;
    color: #000000;
    border-radius: 100px;
    border: 1px solid #E5E5E5;
    box-sizing: border-box;
}

.tab:first-child {
    margin-left: 0;
}

.tab:hover {
    background: #f0f0f0;
}

.tab.active {
    background: #EA5B15;
    color: #fff;
}

/* 介绍区域样式 */
.introduce {
    width: 100%;
    /*margin-bottom: 231px;*/
    /*margin-top: 132px;*/

}

.introduce .name {
    width: 100%;
    font-size: 48px;
    color: #1A1A1A;
    height: 44px;
    line-height: 44px;
    margin-bottom: 48px;
}

.introduce .richText {
    min-height: 356px;
    box-sizing: border-box;
}

.introduce .richText img {
    width: 100%;
}

.introduce .left {
    width: 50%;
}

.introduce .left .details {
    width: 523px;
    height: 130px;
    padding-top: 10px;
    box-sizing: border-box;
    font-size: 14px;
    color: #999999;
    line-height: 20px;
    /* 多行省略号 */
    display: -webkit-box;
    -webkit-box-orient: vertical;
    -webkit-line-clamp: 6;
    /* 显示6行 */
    overflow: hidden;
    text-overflow: ellipsis;
}

.introduce .left .more {
    margin-top: 55px;
    width: 523px;
    height: 40px;
    line-height: 40px;
    font-weight: 500;
    font-size: 18px;
    color: #1A1A1A;
}

.introduce .left .more img {
    width: 40px;
    height: 40px;
    vertical-align: middle;
    transform: translateY(-3px);
    margin-right: 16px;
}

.introduce .right {
    margin-top: 75px;
}

.introduce .right .dataItem {
    margin: 0 auto;
    display: flex;
    justify-content: space-between;
    align-items: center;
    width: 520px;
    height: 92px;
    border-bottom: 1px solid #E5E5E5;
}

.introduce .right .dataItem:last-child {
    border-bottom: none;
}

.introduce .right .dataItem .num {
    font-weight: bold;
    font-size: 42px;
    color: #EA5B15;
    width: 240px;
}

.introduce .right .dataItem .Size {
    width: 280px;
    font-size: 28px;
    color: #1A1A1A;
}

/* 底部图片 */
.header-image.bottom {
    margin-bottom: 112px;
}

@media (max-width: 1440px) {
    .header-image {
        margin-bottom: 20px;
    }

    .detail-container {
        padding: 20px;
    }

    .tabs {
        margin-bottom: 20px;
    }

    .richText {
        width: 100%;

    }

    .crumbs {
        margin-bottom: 30px !important;
    }

    .status {
        margin-bottom: 30px;
    }
}