123456789101112131415161718192021222324252627282930313233343536373839404142434445 |
- <template>
- <div class="content">
- <div class="w1603 h885 bg-white pl50 pt30">
- <div class="flex items-center">
- <div class="vertical-line mr10"></div>
- <span class="font20 font-bold mr15">技巧练习</span>
- <div class="w64 lh34 bg-primary-yellow radius4">试听</div>
- </div>
- </div>
- </div>
- </template>
- <script>
- export default {
- setup() {
- return {};
- },
- };
- </script>
- <style lang="scss" scoped>
- .radius4{
- border-radius: 4px;
- }
- .bg-primary-yellow {
- background-color: #f9de5b;
- }
- .w1603 {
- width: 1603px;
- }
- .content {
- padding: 0 30px;
- padding-top: 21px;
- .vertical-line {
- width: 5px;
- height: 20px;
- background: #f9de5b;
- border-radius: 4px 4px 4px 4px;
- opacity: 1;
- }
- }
- </style>
|