| 12345678910111213141516171819202122232425262728293031323334353637383940414243444546474849505152535455565758596061626364656667686970717273747576777879808182 |
- <template>
- <div>
- <div class="topBanner">
- <h2 class="msg">关于我们</h2>
- </div>
- <div class="msgWrap">
- <div class="msgInfo">
- <h3>什么是酷乐秀</h3>
- <p>酷乐秀是武汉市景明云乐科技有限公司研发的专为为全国音乐等级考试和音乐比赛提供线上服务,是全国首家拥有音乐类专业直播技术的服务平台。独有“音乐演奏模式”高保真还原乐器演奏的现场感及音色,为远程视频直播、录播考级提供技术支持,考生可通过酷乐秀实现考级完整生命周期。同步还原线下考级场景,为合作机构和考生提供公平公正,省时省力的考试体验。</p>
- <p>酷乐秀提供全流程线上考级方案,考生可通过酷乐秀APP实现线上报名缴费,远程视频直播录播考试,查询考试结果流程。合作机构通过管理后台完成前期推广,线上考试,数据统计等,让合作机构轻松运营。 </p>
- <p>景明云乐汇聚了在音乐在线教育,云计算,AI智能行业的顶尖人才 ,运用在音乐教育行业积累的十八年经验结合在语音视频领域多年研究,高度还原了乐器线上演奏场景,并已成功平稳运行二十多万课时。</p>
- <img src='@/assets/images/aboutUs/about.png'
- width="100%"
- alt />
- </div>
- </div>
- <silder />
- </div>
- </template>
- <script>
- import silder from '@/components/silder.vue'
- export default {
- components: { silder },
- data () {
- return {
- showForm: false
- }
- },
- methods: {
- changeStatus () { }
- }
- };
- </script>
- <style lang="less" scoped>
- .topBanner {
- background: url("../../assets/images/aboutUs/about-banner.png") center;
- background-size: cover;
- background-repeat: no-repeat;
- position: relative;
- height: 458px;
- display: flex;
- flex-direction: column;
- align-items: center;
- .msg {
- margin-top: 194px;
- font-size: 50px;
- font-family: PingFangSC-Semibold, PingFang SC;
- font-weight: 600;
- color: #ffffff;
- line-height: 70px;
- text-shadow: 0px 2px 4px rgba(0, 0, 0, 0.32);
- }
- }
- .msgWrap {
- margin-top: 100px;
- display: flex;
- flex-direction: column;
- align-items: center;
- margin-bottom: 370px;
- .msgInfo {
- width: 950px;
- h3 {
- font-size: 36px;
- font-family: PingFangSC-Medium, PingFang SC;
- font-weight: 500;
- color: #000000;
- line-height: 50px;
- margin-bottom: 78px;
- }
- p {
- font-size: 16px;
- font-family: PingFangSC-Regular, PingFang SC;
- font-weight: 400;
- color: #1a1a1a;
- line-height: 36px;
- margin-bottom: 30px;
- text-indent: 32px;
- text-align: left;
- }
- }
- }
- </style>
|