﻿
.videoRq {
                display: grid;
                grid-template-columns: repeat(4,1fr);
                grid-column-gap: 20px;
            }

            .videoRq .item {
                position: relative;
                cursor: pointer;
            }

            .videoRq .item .img {
                width: 100%;
                padding-top: 56.25%;
                position: relative;
                overflow: hidden;
                z-index: 1;
            }

            .videoRq .item:before {
                content: "";
                position: absolute;
                z-index: 2;
                top: 0;
                left: 0;
                right: 0;
                bottom: 0;
                -moz-transition: all 0.4s ease-in-out;
                -o-transition: all 0.4s ease-in-out;
                -webkit-transition: all 0.4s ease-in-out;
                transition: all 0.4s ease-in-out;
                background: rgba(0,0,0,0)
            }

            .videoRq .item:after {
                content: "";
                position: absolute;
                bottom: 0;
                left: 0;
                width: 0%;
                height: 5px;
                background: #fac716;
                z-index: 3;
                -moz-transition: all 0.4s ease-in-out;
                -o-transition: all 0.4s ease-in-out;
                -webkit-transition: all 0.4s ease-in-out;
                transition: all 0.4s ease-in-out;
            }

            .videoRq .item .bfbtn {
                position: absolute;
                z-index: 5;
                width: 50px;
                height: 50px;
                top: calc(50% - 25px);
                left: calc(50% - 25px);
                text-align: center;
                line-height: 50px;
                border-radius: 50%;
                font-size: 20px;
                color: #fff;
                background: rgba(0,0,0,0.5);
            }

            .videoRq .item .img img {
                position: absolute;
                top: 0;
                left: 0;
                right: 0;
                bottom: 0;
                width: 100%;
                height: 100%;
                object-fit: cover;
                transform: scale(1);
            }

            .videoRq .item:hover:before {
                background: rgba(0,0,0,0.4)
            }

            .videoRq .item:hover:after {
                width: 100%;
            }

            .videoRq .item:hover .img {
                border-radius: 10px;
            }

            .videoRq .item:hover .img img {
                transform: scale(1.1);
            }

.playVideoRq {
            position: fixed;
            top: 0;
            left: 0;
            right: 0;
            bottom: 0;
            z-index: 99999;
            background: rgba(0,0,0,0.7)
        }

        .playVideoRq-box {
            width: 874px;
            height: 500px;
            padding: 10px;
            border-radius: 5px;
            background: #fff;
            position: absolute;
            top: calc(50% - 250px);
            left: calc(50% - 437px)
        }

        .hideVideo {
            position: absolute;
            top: -15px;
            right: -15px;
            cursor: pointer;
            background: #ff6a00;
            font-size: 20px;
            color: #fff;
            border-radius: 50%;
            text-align: center;
            line-height: 32px;
            width: 32px;
            height: 32px;
        }