index.vue 2.7 KB

12345678910111213141516171819202122232425262728293031323334353637383940414243444546474849505152535455565758596061626364656667686970717273747576777879808182
  1. <template>
  2. <div>
  3. <div class="topBanner">
  4. <h2 class="msg">关于我们</h2>
  5. </div>
  6. <div class="msgWrap">
  7. <div class="msgInfo">
  8. <h3>什么是酷乐秀</h3>
  9. <p>酷乐秀是武汉市景明云乐科技有限公司研发的专为为全国音乐等级考试和音乐比赛提供线上服务,是全国首家拥有音乐类专业直播技术的服务平台。独有“音乐演奏模式”高保真还原乐器演奏的现场感及音色,为远程视频直播、录播考级提供技术支持,考生可通过酷乐秀实现考级完整生命周期。同步还原线下考级场景,为合作机构和考生提供公平公正,省时省力的考试体验。</p>
  10. <p>酷乐秀提供全流程线上考级方案,考生可通过酷乐秀APP实现线上报名缴费,远程视频直播录播考试,查询考试结果流程。合作机构通过管理后台完成前期推广,线上考试,数据统计等,让合作机构轻松运营。 </p>
  11. <p>景明云乐汇聚了在音乐在线教育,云计算,AI智能行业的顶尖人才 ,运用在音乐教育行业积累的十八年经验结合在语音视频领域多年研究,高度还原了乐器线上演奏场景,并已成功平稳运行二十多万课时。</p>
  12. <img src='@/assets/images/aboutUs/about.png'
  13. width="100%"
  14. alt />
  15. </div>
  16. </div>
  17. <silder />
  18. </div>
  19. </template>
  20. <script>
  21. import silder from '@/components/silder.vue'
  22. export default {
  23. components: { silder },
  24. data () {
  25. return {
  26. showForm: false
  27. }
  28. },
  29. methods: {
  30. changeStatus () { }
  31. }
  32. };
  33. </script>
  34. <style lang="less" scoped>
  35. .topBanner {
  36. background: url("../../assets/images/aboutUs/about-banner.png") center;
  37. background-size: cover;
  38. background-repeat: no-repeat;
  39. position: relative;
  40. height: 458px;
  41. display: flex;
  42. flex-direction: column;
  43. align-items: center;
  44. .msg {
  45. margin-top: 194px;
  46. font-size: 50px;
  47. font-family: PingFangSC-Semibold, PingFang SC;
  48. font-weight: 600;
  49. color: #ffffff;
  50. line-height: 70px;
  51. text-shadow: 0px 2px 4px rgba(0, 0, 0, 0.32);
  52. }
  53. }
  54. .msgWrap {
  55. margin-top: 100px;
  56. display: flex;
  57. flex-direction: column;
  58. align-items: center;
  59. margin-bottom: 370px;
  60. .msgInfo {
  61. width: 950px;
  62. h3 {
  63. font-size: 36px;
  64. font-family: PingFangSC-Medium, PingFang SC;
  65. font-weight: 500;
  66. color: #000000;
  67. line-height: 50px;
  68. margin-bottom: 78px;
  69. }
  70. p {
  71. font-size: 16px;
  72. font-family: PingFangSC-Regular, PingFang SC;
  73. font-weight: 400;
  74. color: #1a1a1a;
  75. line-height: 36px;
  76. margin-bottom: 30px;
  77. text-indent: 32px;
  78. text-align: left;
  79. }
  80. }
  81. }
  82. </style>