12345678910111213141516171819202122232425262728293031323334 |
- <!-- @format -->
- <script lang="ts" setup></script>
- <template>
- <div>
- <div
- class="py-18px px-24px bg-#FAFAFA b-rd-10px text-#000 text-20px fw-500 mb-20px"
- >
- Notice
- </div>
- <Business-account-notice />
- </div>
- </template>
- <style lang="less" scoped>
- .favorite-tabs {
- background-color: #fafafa;
- border-radius: 10px;
- padding: 20px;
- padding-top: 0px;
- ::v-deep(.el-tabs__header) {
- .el-tabs__item {
- color: #333;
- &.is-active {
- color: #c58c64 !important;
- }
- }
- .el-tabs__active-bar {
- background-color: #c58c64 !important;
- }
- }
- }
- </style>
|