123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657 |
- <template>
- <div class="tips">
- <table>
- <tr>
- <td><div class="tips-t-1">注:</div></td>
- <td></td>
- </tr>
- <tr>
- <td><div class="tips-i-1"></div></td>
- <td><div class="tips-b tips-b-1">必选流程</div></td>
- </tr>
- <tr>
- <td></td>
- <td><div class="tips-b tips-b-2">可选流程</div></td>
- </tr>
- </table>
- </div>
- </template>
- <script>
- export default {}
- </script>
- <style lang="scss" scoped>
- .tips {
- div {
- position: relative !important;
- }
- .tips-b {
- width: 150px;
- height: 50px;
- border-radius: 10px;
- line-height: 50px;
- color: #ffffff;
- text-align: center;
- font-weight: 300;
- font-size: 20px;
- }
- .tips-t-1 {
- font-weight: 400;
- font-size: 25px;
- }
- .tips-i-1 {
- width: 28.79px;
- height: 26.84px;
- margin-top: -20px;
- background-image: url("../../../assets/visual/1.png");
- }
- .tips-b-1 {
- background: #d45a6a;
- margin-bottom: 15px;
- }
- .tips-b-2 {
- background: #3084e5;
- }
- }
- </style>
|