style: standardize tailwind classes and clean unused assets

Standardize Tailwind CSS usage across the codebase: replace legacy shorthand utilities with modern syntax, update color classes to use bracket notation, fix margin/padding units, delete unused CreateServiceOrder SCSS stylesheet and image asset, and resolve minor style inconsistencies.
This commit is contained in:
DEV_DSW
2026-05-29 10:47:36 +08:00
parent 971b4d9cfa
commit 8312273696
40 changed files with 110 additions and 144 deletions

View File

@@ -1,7 +1,7 @@
<template>
<div class="w-full bg-white border-ff overflow-hidden rounded-20 flex flex-col">
<div class="w-full bg-white border-ff overflow-hidden rounded-[20px] flex flex-col">
<!-- 占位撑开 -->
<div class="w-vw"></div>
<div class="w-full"></div>
<div class="flex flex-col px-[16px] pt-16 pb-[12px] " @click="openDetail(item)">
<div class="long-text-guide-card__badge text-[12px] font-bold" :class="`is-${item.badgeTone}`">
@@ -14,7 +14,7 @@
<div class="long-text-guide-card__summary-text color-94A3B8 text-[14px] font-medium ellipsis-2">
{{ item.summary }}
</div>
<div class="long-text-guide-card__summary-footer flex items-center flex-justify-between">
<div class="long-text-guide-card__summary-footer flex items-center justify-between">
<span class="color-CBD5E1 text-[12px] font-800">{{ item.footer }}</span>
<uni-icons type="right" size="16" color="#CBD5E1"></uni-icons>
</div>