@charset "UTF-8";
/*渐变文字*/
.gradient-text {
  display: inline-block;
  width: auto;
  color: #ff316c;
  background-image: linear-gradient(-90deg, #ff316c 0%, #44D7F6 100%);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent; }

/*盒子布局*/
/*单行省略*/
/*多行省略*/
.video-page .video-list {
  width: 100%;
  padding-bottom: 60px;
  flex-wrap: wrap;
  display: flex;
  -ms-display: flex;
  /* IE 9 */
  -moz-display: flex;
  /* Firefox */
  -webkit-display: flex;
  /* Safari  Chrome */
  -o-display: flex;
  /* Opera */
  align-items: flex-start;
  -ms-align-items: flex-start;
  /* IE 9 */
  -moz-align-items: flex-start;
  /* Firefox */
  -webkit-align-items: flex-start;
  /* Safari  Chrome */
  -o-align-items: flex-start;
  /* Opera */
  justify-content: space-between;
  -ms-justify-content: space-between;
  /* IE 9 */
  -moz-justify-content: space-between;
  /* Firefox */
  -webkit-justify-content: space-between;
  /* Safari  Chrome */
  -o-justify-content: space-between;
  /* Opera */ }
  .video-page .video-list .item-wrap {
    height: 280px;
    background-color: #EEEEEE; }
    .video-page .video-list .item-wrap .img-box {
      width: 100%;
      height: 220px;
      position: relative;
      overflow: hidden; }
      .video-page .video-list .item-wrap .img-box img {
        height: 100%;
        transition: all 0.3s;
        -ms-transition: all 0.3s;
        /* IE 9 */
        -moz-transition: all 0.3s;
        /* Firefox */
        -webkit-transition: all 0.3s;
        /* Safari  Chrome */
        -o-transition: all 0.3s;
        /* Opera */ }
      .video-page .video-list .item-wrap .img-box::after {
        content: '';
        width: 100%;
        height: 100%;
        background-color: rgba(0, 0, 0, 0.5);
        position: absolute;
        top: 0;
        left: 0;
        opacity: 0; }
      .video-page .video-list .item-wrap .img-box .icon-box {
        width: 35px;
        height: 35px;
        background-color: rgba(0, 0, 0, 0.4);
        border: 2px solid rgba(255, 255, 255, 0.6);
        border-radius: 50%;
        position: absolute;
        top: 50%;
        left: 50%;
        z-index: 10;
        display: flex;
        -ms-display: flex;
        /* IE 9 */
        -moz-display: flex;
        /* Firefox */
        -webkit-display: flex;
        /* Safari  Chrome */
        -o-display: flex;
        /* Opera */
        align-items: center;
        -ms-align-items: center;
        /* IE 9 */
        -moz-align-items: center;
        /* Firefox */
        -webkit-align-items: center;
        /* Safari  Chrome */
        -o-align-items: center;
        /* Opera */
        justify-content: center;
        -ms-justify-content: center;
        /* IE 9 */
        -moz-justify-content: center;
        /* Firefox */
        -webkit-justify-content: center;
        /* Safari  Chrome */
        -o-justify-content: center;
        /* Opera */
        transform: translate(-50%, -50%);
        -ms-transform: translate(-50%, -50%);
        /* IE 9 */
        -moz-transform: translate(-50%, -50%);
        /* Firefox */
        -webkit-transform: translate(-50%, -50%);
        /* Safari  Chrome */
        -o-transform: translate(-50%, -50%);
        /* Opera */ }
        .video-page .video-list .item-wrap .img-box .icon-box i {
          font-size: 14px;
          color: #fff;
          margin-left: 3px; }
    .video-page .video-list .item-wrap .video-info {
      width: 100%;
      font-size: 18px;
      color: #2B2B2B;
      text-align: center;
      height: 60px;
      line-height: 60px;
      padding: 0 10px;
      box-sizing: border-box;
      overflow: hidden;
      white-space: nowrap;
      text-overflow: ellipsis; }
    .video-page .video-list .item-wrap:hover .img-box::after {
      opacity: 1; }
    .video-page .video-list .item-wrap:hover .img-box img {
      transform: scale(1.1);
      -ms-transform: scale(1.1);
      /* IE 9 */
      -moz-transform: scale(1.1);
      /* Firefox */
      -webkit-transform: scale(1.1);
      /* Safari  Chrome */
      -o-transform: scale(1.1);
      /* Opera */ }
