Files
ykb-h5/pages/index/msg.vue

40 lines
785 B
Vue
Raw Normal View History

2025-11-19 12:51:13 +08:00
<template>
<view class="service-footer">
<view class="footer-text">
抱歉由于当前访问量激增加载较慢请您耐心等待如有疑问请致电重庆火车北站地区综合管理局
<a class="hotline" href="tel:023-63051362">023-63051362</a>
</view>
</view>
</template>
<script>
</script>
<style lang="scss" scoped>
/* 页脚样式 */
.service-footer {
padding: 32rpx;
// background: #fff;
// text-align: center;
// border-top: 1rpx solid #eee;
.footer-text {
font-size: 24rpx;
// color: #B3B5B9;
display: block;
// margin-bottom: 16rpx;
}
.footer-contacts {
font-size: 24rpx;
color: #B3B5B9;
text-align: center;
}
.hotline {
color: #1E92F0;
font-size: 36rpx;
font-weight: 500;
}
}
</style>