.header-img {
    width: 100%;
}

.header-img .bg-wrap {
    width: 100%;
}

.header-img .bg-box {
    position: relative;

    padding-bottom: 30%;
    width: 100%;
    height: 0;
}

.header-img .bg-box .bg-inner {
    display: flex;

    flex-direction: column;
    align-items: center;
    justify-content: center;

    position: absolute;

    width: 100%;
    height: 100%;

    /*background-color: #9F9F9F;*/
}

.header-img .bg-box .name {
    width: 100%;

    text-align: center;
    font-size: 40px;
}

.header-img .bg-box .trade {
    margin-top: 25px;
    width: 100%;

    text-align: center;
    font-size: 25px;
}

.header-img .bg-box .txt {
    margin-top: 55px;
    box-sizing: border-box;
    padding: 0 10%;
    width: 100%;

    font-size: 18px;
    line-height: 1.8;
    text-align: center;
}
/*左右切换*/
.tp {
    display: flex;

    align-items: flex-start;
    justify-content: space-between;

    position: fixed;
    top: 50%;
    z-index: 8;

    box-sizing: border-box;
    padding: 0 5%;
    width: 100%;

    transform: translateY(-50%);
}

.tp .tp-left {
    position: relative;

    width: 40px;
    height: 100px;
}

.tp .tp-left img {
    position: absolute;
    top: 0;
    left: 0;

    width: 100%;
    height: 100%;

    opacity: .8;

    transition: all .3s;
}

.tp .tp-left img:last-child {
    opacity: 0;
}

.tp .tp-right {
    position: relative;

    width: 40px;
    height: 100px;
}

.tp .tp-right img {
    position: absolute;
    top: 0;
    right: 0;
    z-index: 8;

    width: 100%;
    height: 100%;

    opacity: .8;

    transition: all .3s;
}

.tp .tp-right img:last-child {
    opacity: 0;
}

.tp .tp-right:hover img:last-child {
    opacity: 1;
}

.tp .tp-right:hover img:first-child {
    opacity: 0;
}

.tp .tp-left:hover img:last-child {
    opacity: 1;
}

.tp .tp-left:hover img:first-child {
    opacity: 0;
}
/*详情列表*/
.case-container {
    position: relative;

    width: 100%;
}

.case-detail {
    width: 100%;
}

.case-detail .lst-wrap {
    position: relative;

    margin: 0 auto;
    width: 70%;
}

.case-detail .lst-box {
    width: 100%;
}

.case-detail .lst-box .lst-item {
    display: flex;

    flex-direction: column;
    align-items: center;

    width: 100%;
}

.case-detail .lst-box .btn-wrap {
    display: flex;

    align-items: center;
    justify-content: center;

    margin-top: 100px;
    width: 100%;
}

.case-detail .lst-box .btn-box {
    border: 1px solid #000;
    border-radius: 25px;
    padding: 10px 25px;

    font-size: 18px;
    z-index: 21;
    color: #000;

    transition: all .3s;
}

.case-detail .lst-box .btn-box:hover {
    border: 1px solid #c7000c;

    color: #fff;
    background-color: #c7000c;
}

.case-detail .lst-box .qr-wrap {
    margin: 0 5%;
    width: 15%;
}

.case-detail .lst-box .qr-box {
    position: relative;

    padding-bottom: 100%;
    width: 100%;
    height: 0;
}

.case-detail .lst-box .qr-box .qr-inner {
    position: absolute;

    width: 100%;
    height: 100%;
}

.case-detail .lst-box .qr-box img {
    width: 100%;
    height: 100%;
}

.case-detail .lst-box .info-wrap {
    display: flex;

    align-items: center;
    justify-content: center;

    margin-top: 40px;
    width: 100%;
}

.case-detail .lst-box .info-wrap lable {
    font-weight: 600;
}

.case-detail .lst-box .info-wrap .type {
    display: flex;

    align-items: center;

    margin-right: 40px;

    font-size: 20px;
}

.case-detail .lst-box .info-wrap .time {
    display: flex;

    align-items: center;

    font-size: 20px;
}

@media screen and (max-width: 1023px) {
    .tp .tp-left {
        width: 2rem;
        height: 4rem;
    }

    .tp .tp-right {
        width: 2rem;
        height: 4rem;
    }

    .header-img .bg-box {
        padding-bottom: 100% !important;
        height: 0 !important;
    }

    .case-container > .name {
        margin-top: 2rem;
        font-size: 2.2rem !important;
    }

    .case-container > .trade {
        margin-top: 1.2rem !important;
        font-size: 1.6rem !important;
    }

    .case-container > .txt {
        margin-bottom: 2rem !important;
        margin-top: 2rem !important;
        box-sizing: border-box !important;
        padding: 0 2% !important;
        width: 100% !important;
        font-size: 1.5rem !important;
        line-height: 1.8 !important;
        text-align: center !important;
        word-break: break-all;
        overflow: hidden !important;
        text-overflow: ellipsis !important;
        display: block !important;
        -webkit-line-clamp: initial !important;
        -webkit-box-orient: vertical !important;
    }

    .case-detail .lst-wrap {
        width: 100%;
    }

    .case-container {
        box-sizing: border-box;
        padding: initial;
    }

    .case-detail .lst-box .btn-wrap {
        justify-content: space-between;
        margin-top: 3rem;
        box-sizing: border-box;
        padding: 0 3%;
    }

    .case-detail .lst-box .btn-box {
        flex-shrink: 0;
        margin-right: initial;
        padding: .5rem 2rem;
        font-size: 1.2rem;
        z-index: 8;
    }

    .case-detail .lst-box .qr-wrap {
        margin: initial;
        width: 32%;
    }

    .case-detail .lst-box .info-wrap .type {
        margin-right: 20px;
        font-size: 1.3rem;
        line-height: 1.5;
    }

    .case-detail .lst-box .info-wrap .time {
        font-size: 1.3rem;
        line-height: 1.5;
    }

    .case-detail .lst-box .info-wrap {
        flex-wrap: wrap;
        margin-top: 30px;
        font-size: 1.3rem !important;
        text-align: center;
    }

    .content img {
        width: 100%;
        height: initial;
        object-fit: contain;
    }

    .forge_body {
        padding-bottom: 30px !important;
    }
}
