expericeVideo.vue 2.1 KB

123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990
  1. <template>
  2. <div id="dream_together_wrap">
  3. <div class="dream_together_box">
  4. <div class="dream_together_title_box">
  5. <div class="dream_together_titleC">
  6. <h2>2018梦想同行</h2>
  7. </div>
  8. <div class="dream_together_titleE">
  9. <p>Dream Together</p>
  10. </div>
  11. <div class="dream_together_title_desc">
  12. <p>我们所有的努力,旨在打造一个宾至如归的理想状态。</p>
  13. <p>我们推崇简单、自然、环保健康的生活方式,这即是Olivelife---生态生活的意义</p>
  14. </div>
  15. </div>
  16. <div class="dream_together_video">
  17. <video id="story-video" width="1200px" height="600px" controls="controls" preload="auto">
  18. <source src="http://img.visney.cn/img/video/dream_together_video.mp4">
  19. </video>
  20. </div>
  21. </div>
  22. </div>
  23. </template>
  24. <script>
  25. export default {
  26. name: 'expericeVideo'
  27. }
  28. </script>
  29. <style scoped>
  30. /*Dream Together start*/
  31. div#dream_together_wrap {
  32. width: 100%;
  33. background: #f9f9fa;
  34. }
  35. .dream_together_box {
  36. overflow: hidden;
  37. width: 1200px;
  38. margin: 0 auto;
  39. padding: 150px 0;
  40. }
  41. .dream_together_title_box {
  42. width: 100%;
  43. padding-bottom: 70px;
  44. text-align: center;
  45. }
  46. .dream_together_titleC {
  47. overflow: hidden;
  48. height: 40px;
  49. }
  50. .dream_together_titleC h2 {
  51. font-size: 40px;
  52. font-family: 'Noto Serif CJK SC', 'Source Han Serif SC', 'Source Han Serif', 'source-han-serif-sc','STZhongsong','宋体', 'serif';
  53. font-weight: 900;
  54. color: #22202b;
  55. line-height: 40px;
  56. }
  57. .dream_together_titleE {
  58. overflow: hidden;
  59. width: 100%;
  60. height: 26px;
  61. color: #858585;
  62. font-size: 14px;
  63. line-height: 26px;
  64. text-align: center;
  65. }
  66. .dream_together_title_desc {
  67. overflow: hidden;
  68. width: 100%;
  69. height: auto;
  70. padding-top: 20px;
  71. color: #858585;
  72. font-size: 14px;
  73. line-height: 24px;
  74. text-align: center;
  75. }
  76. .dream_together_video {
  77. overflow: hidden;
  78. width: 100%;
  79. height: 600px;
  80. background: #000;
  81. }
  82. /*Dream Together end*/
  83. </style>