123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596979899100101102103104105106107108109110111112113114115116117118119120121122123124125126127128129130131132133134135136137138139140141142143144145146147148149150151152153154155156157158159160161162163164165166167168169170171172173174175 |
- <template>
- <div>
- <div class="footerSection">
- <div class="footer-info">
- <div class="width1200">
- <div class="attention">
- <div class="qrcode">
- <div class="qrcode-item"
- style="padding-right:50px">
- <img src="../assets/images/logoWhile1.png"
- width="142px"
- height="65px"
- alt="">
- </div>
- </div>
- <div class="qrcode">
- <div class="qrcode-item">
- <img src="../assets/images/public-code.jpg"
- width="74px"
- height="74px"
- alt />
- <p>微信订阅号</p>
- </div>
- </div>
- <div class="qrcode">
- <div class="qrcode-item">
- <img src="../assets/images/download.png"
- width="74px"
- height="74px"
- alt />
- <p>下载地址</p>
- </div>
- </div>
- </div>
- <div class="friend-ship">
- <div class="hotLine">
- <h2>咨询热线</h2>
- <p>400 - 8851569<span>(周一至周五 09:00~21:00)</span></p>
- </div>
- <!-- <div class="line-wrap">
- <h2>友情链接</h2>
- <div class="item-Wrap">
- <div class="friendship-item">
- <a target="view_window"
- href="http://www.chnmusic.org/">中国音乐家协会</a>
- </div>
- <div class="friendship-item">
- <a target="view_window"
- href="https://www.cnorch.com/leaderInfo/list?leaderType=2">中国音协管乐学会低音铜管专业委员会</a>
- </div>
- </div>
- </div> -->
- </div>
- </div>
- </div>
- <div class="footer-coptyright">
- <div class="width1200">
- <p>
- Copyright © 2020 武汉酷乐秀网络科技有限公司
- <br /> All Rights Reserved. <a href="https://beian.miit.gov.cn/">鄂ICP备2021020787号-1</a>
- </p>
- </div>
- </div>
- </div>
- </div>
- </template>
- <script>
- export default {
- name: "footerSection"
- };
- </script>
- <style lang="less" scoped>
- .footerSection {
- overflow: hidden;
- margin: 0 auto;
- background: #262D45;
- }
- .footer-info {
- color: #cecece;
- background: #262D45;
- padding: 77px 0 35px;
- .width1200 {
- display: flex;
- flex-direction: row;
- justify-content: space-between;
- h2 {
- color: #fff;
- font-size: 14px;
- line-height: 31px;
- text-align: left;
- font-weight: 400;
- }
- .attention {
- display: flex;
- flex-direction: row;
- justify-content: space-around;
- .qrcode-item {
- display: inline-block;
- font-size: 0;
- padding-right: 34px;
- p {
- font-size: 12px;
- color: #cecece;
- padding: 8px 0;
- text-align: center;
- margin-top: 10px;
- }
- }
- }
- .friend-ship {
- display: flex;
- flex-direction: row;
- justify-content: flex-start;
- .line-wrap {
- margin-right: 20px;
- }
- .item-Wrap {
- display: flex;
- flex-direction: row;
- justify-content: flex-start;
- .friendship-item {
- a {
- font-size: 12px;
- color: #cecece;
- line-height: 37px;
- margin-right: 30px;
- display: inline-block;
- text-align: left;
- text-decoration: none;
- &:hover,
- &:after {
- color: #cecece;
- }
- }
- }
- }
- .hotLine {
- text-align: left;
- color: #cecece;
- margin-right: 30px;
- p {
- font-size: 16px;
- line-height: 37px;
- span {
- font-size: 12px;
- }
- }
- }
- }
- }
- }
- .footer-coptyright {
- border-top: 1px solid #585858;
- // background: url("../assets/images/footerBg.png") no-repeat center;
- // background-size: cover;
- height: 82px;
- p {
- text-align: center;
- font-size: 12px;
- color: #cecece;
- line-height: 20px;
- padding-top: 21px;
- a{
- color: #cecece;
- }
- }
- }
- </style>
|