/**!
* ÕþÎñÖ±²¥¼ä
* date: 2022-11-09
* author: wangkai;
*/

.main {
    position: relative;
    padding: 16px 40px 40px;
    background: #ffffff;
    box-shadow: 0px 1px 12px #f4eae9;
    border-radius: 6px;
    overflow: hidden;
}

.info-node {
    height: 209px;
    border-bottom: 1px dashed #efe7e8;
}

.info-img {
    float: left;
    margin-top: 24px;
    width: 134px;
    height: 160px;
}

.info-img > img {
    width: 100%;
    height: 100%;
    vertical-align: top;
}

.info-wrap {
    float: left;
    margin-left: 28px;
    padding-top: 18px;
    width: calc(100% - 134px - 28px - 28px - 144px);
}

.info-tt {
    height: 56px;
    line-height: 56px;
    overflow: hidden;
    white-space: nowrap;
    text-overflow: ellipsis;
    font-weight: 500;
    font-size: 20px;
    color: black;
}

.info-content {
    height: 36px;
    line-height: 36px;
    font-size: 16px;
    overflow: hidden;
    white-space: nowrap;
    text-overflow: ellipsis;
}

.info-content > label {
    color: #999;
}

.info-btns {
    float: right;
    width: 144px;
    padding: 80px 0;
    height: 100%;
}

.playback {
    display: block;
    border: 1px solid #e1313f;
    border-radius: 4px;
    height: 48px;
    line-height: 46px;
    text-align: center;
    font-size: 18px;
    color: #e1313f;
}

.playback:hover {
    border: 1px solid #ffffff;
    box-shadow: 0px 1px 27px rgba(255, 172, 172, 0.28);
    background: #EB4F4E;
    background: linear-gradient(to right, #EB4F4E, #FF8E6A);
    background: -webkit-linear-gradient(left, #EB4F4E, #FF8E6A);
    background: -o-linear-gradient(right, #EB4F4E, #FF8E6A);
    background: -moz-linear-gradient(left, #EB4F4E, #FF8E6A);
    font-weight: 500;
    color: #fff;
}

.page-wrap {
    margin-top: 40px;
    text-align: center;
}

@media (max-width:767px) {
    .main {
        padding: 20px 10px;
    }
    .info-node {
        height: auto;
    }
    .info-img {
        width: 100%;
        height: auto;
        text-align: center;
    }
    .info-img > img {
        max-width: 100%;
        width: auto;
        height: auto;
    }
    .info-wrap {
        width: 100%;
        margin: 0;
    }
    .info-btns {
        width: 100%;
        padding: 20px 0;
        height: auto;
    }
    .page-wrap {
        margin-top: 20px;
    }
}