Files
ykb-h5/pages/index/msg.vue
2025-11-19 12:51:13 +08:00

40 lines
785 B
Vue
Raw Permalink Blame History

This file contains ambiguous Unicode characters

This file contains Unicode characters that might be confused with other characters. If you think that this is intentional, you can safely ignore this warning. Use the Escape button to reveal them.

<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>