App.vue 998 Bytes
<template>
  <div id="app">
    <router-view></router-view>
  </div>
</template>

<script>
  export default {
    name: "App"
  };
</script>

<style rel="stylesheet/less" lang="less">
    .mint-toast-text{
        font-size: 30px !important;
    }
    .mint-indicator-text {
        font-size: 30px !important;
    }
    // 设置播放器的背景颜色
    .video-js{
        background-color: transparent !important;
        .vjs-poster{
        background-color: transparent !important;
        }
    }
    /*设置不同的视频封面*/
    .video1_poster{
        .vjs-poster{
            width: 100%;
            height:401px;
            background-image: url("../static/img/index/video1.png") !important;
            background-size: 100%;
        }
    }
    .video2_poster{
        .vjs-poster{
            width: 100%;
            height:401px;
            background-image: url("../static/img/index/video2.png") !important;
            background-size: 100%;
        }
    }
</style>