| 1234567891011121314151617181920212223242526272829303132333435 |
- <template>
- <div class="header">
- <h3>账户中心</h3>
- </div>
- </template>
- <script>
- export default {
- name: 'headerMobile'
- }
- </script>
- <style scoped type="text/scss" lang="scss">
- .header{
- text-align: center;
- line-height: 1.7rem;
- h3{
- margin:0;
- color:#333;
- font-weight: bold;
- font-size:.4rem;
- &:before{
- content: '';
- position:relative;
- top:-.04rem;
- display:inline-block;
- width:1.4rem;
- height:.38rem;
- background:url(/img/logo/uas.png)no-repeat center center/100% 100%;
- vertical-align: middle;
- margin-right:.2rem;
- }
- }
- }
- </style>
|