zhaoxiaoqiang1
2026-01-04 f1d30d03186c79ca2cbcfe60d6d2ce7d73fba97b
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
<template>
    <div class="header">
        世联支付路由平台
    </div>
</template>
 
<style lang="less" scoped>
    .header {
        width: 100%;
        height: 60px;
        position: absolute;
        top: 0px;
        left: 0px;
        margin-bottom: 16px;
        transition: padding-left 0.1s linear;
        box-shadow: 0 1px 4px rgba(0,21,41,.08);
        background-color: #2e384a;
        text-align: center;
        line-height: 60px;
        font-weight: 700;
        font-size: 20px;
        color: #d7dee6;
        z-index: 888;
    }
</style>