40 lines
785 B
Vue
40 lines
785 B
Vue
|
|
<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>
|