﻿.video {
    display: flex;
    align-items: center;
    padding: 9.375rem;
}
.video-container {
    display: flex;
    justify-content: space-between;
}
.video-wrapper {
    position: relative;
    width: 46.25rem;
    height: 27.5rem;
}
.video-wrapper-img {
    width: 100%;
    height: 27.5rem;
}
.video-wrapper-img-bg {
    width: 46.25rem;
    height: 27.5rem;
    position: absolute;
    top:-20px;
    left: -20px;
    z-index: -1;
    background: #FFC081;
}
.video-content {
    height: 27.5rem;
    flex: 1;
    min-width: 400px;
    padding: 1.875rem;
}
.video-content .title {

}
.video-content .content {
    font-weight: 400;
    font-size: 1rem;
    color: #666666;
    line-height: 1.5rem;
    margin-top: 1.625rem;
}

.operation-item-icon {
    width: 1.5rem;
    height: 1.5rem;
    margin-right: 0.75rem;
}

.video-content .operation {
    display: flex;
    flex-direction: row;
    flex-wrap: wrap;
    justify-content: space-between;
    margin-top: 2.5rem;
}

.video-content .operation-item {
    width: 48%;
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 1.25rem;
    border-bottom: 1px solid rgba(0,0,0,.1);
    cursor: pointer;
}

.operation-item:hover{
    padding: 1.25rem;
    border-bottom: 1px solid #FF860B;
    cursor: pointer;
    color: #FF860B!important;
    transition: all .2s linear;
}



.operation-item-left {
    font-size: 1.125rem;
    font-weight: bold;
    display: flex;
    align-items: center;
}

.operation-item-arrow {
    height: 2.625rem;
    width: 2.625rem;
}

@media screen and (max-width: 1280px) {
    .video-wrapper-img-bg {
        display: none;
    }
    .video-container {
        flex-direction: column;
    }
    .video-wrapper {
        width: 100%;
        height: auto;
    }
    .video {
        padding: 0;
    }
    .video-wrapper-img {
        height: 20rem
    }
    .video-content {
        padding: 0;
        min-width: auto;
    }
    .video-content .title-img {
        margin-top: 1rem;
        width: 9.375rem;object-fit: contain;

    }
    .video-content .operation {
        margin-top: 1rem;
    }
}