|
@@ -246,21 +246,518 @@ const startUsing = () => {
|
|
|
</script>
|
|
</script>
|
|
|
|
|
|
|
|
<style scoped lang="scss">
|
|
<style scoped lang="scss">
|
|
|
|
|
+/* ===============================
|
|
|
|
|
+ WORKFLOW DETAIL - MODERN UI REFACTORING
|
|
|
|
|
+ Based on ui_refactoring_plan.md specifications
|
|
|
|
|
+ =============================== */
|
|
|
|
|
+
|
|
|
.workflow-detail {
|
|
.workflow-detail {
|
|
|
- .weiguanzhu{
|
|
|
|
|
- padding: 8px 12px;
|
|
|
|
|
- background: #FCEBEB;
|
|
|
|
|
- border-radius: 8px 8px 8px 8px;
|
|
|
|
|
- color: #E43434 ;
|
|
|
|
|
- font-weight: bold;
|
|
|
|
|
- font-size: 14px;
|
|
|
|
|
- }
|
|
|
|
|
- .yiguanzhu{
|
|
|
|
|
- padding: 8px 12px;
|
|
|
|
|
- border-radius: 8px 8px 8px 8px;
|
|
|
|
|
- font-weight: bold;
|
|
|
|
|
- font-size: 14px;
|
|
|
|
|
- }
|
|
|
|
|
-
|
|
|
|
|
|
|
+ /* Container Styling */
|
|
|
|
|
+ min-height: 100vh;
|
|
|
|
|
+ background: linear-gradient(135deg, #F9FAFB 0%, #F3F4F6 50%, #E5E7EB 100%);
|
|
|
|
|
+ padding: 24px;
|
|
|
|
|
+ position: relative;
|
|
|
|
|
+
|
|
|
|
|
+ &::before {
|
|
|
|
|
+ content: '';
|
|
|
|
|
+ position: fixed;
|
|
|
|
|
+ top: -50%;
|
|
|
|
|
+ right: -20%;
|
|
|
|
|
+ width: 800px;
|
|
|
|
|
+ height: 800px;
|
|
|
|
|
+ background: radial-gradient(circle, rgba(79, 70, 229, 0.08) 0%, transparent 70%);
|
|
|
|
|
+ pointer-events: none;
|
|
|
|
|
+ z-index: 0;
|
|
|
|
|
+ }
|
|
|
|
|
+
|
|
|
|
|
+ &::after {
|
|
|
|
|
+ content: '';
|
|
|
|
|
+ position: fixed;
|
|
|
|
|
+ bottom: -30%;
|
|
|
|
|
+ left: -15%;
|
|
|
|
|
+ width: 600px;
|
|
|
|
|
+ height: 600px;
|
|
|
|
|
+ background: radial-gradient(circle, rgba(124, 58, 237, 0.06) 0%, transparent 70%);
|
|
|
|
|
+ pointer-events: none;
|
|
|
|
|
+ z-index: 0;
|
|
|
|
|
+ }
|
|
|
|
|
+
|
|
|
|
|
+ /* Enhanced Typography */
|
|
|
|
|
+ .bold {
|
|
|
|
|
+ font-weight: 800 !important;
|
|
|
|
|
+ letter-spacing: -0.02em;
|
|
|
|
|
+ }
|
|
|
|
|
+
|
|
|
|
|
+ .font_size30 {
|
|
|
|
|
+ font-size: 32px !important;
|
|
|
|
|
+ color: #111827 !important;
|
|
|
|
|
+ line-height: 1.3;
|
|
|
|
|
+ margin-bottom: 12px;
|
|
|
|
|
+ }
|
|
|
|
|
+
|
|
|
|
|
+ .font_size20 {
|
|
|
|
|
+ font-size: 22px !important;
|
|
|
|
|
+ color: #1F2937 !important;
|
|
|
|
|
+ font-weight: 700 !important;
|
|
|
|
|
+ }
|
|
|
|
|
+
|
|
|
|
|
+ .font_size18 {
|
|
|
|
|
+ font-size: 17px !important;
|
|
|
|
|
+ font-weight: 600 !important;
|
|
|
|
|
+ }
|
|
|
|
|
+
|
|
|
|
|
+ .font_size16 {
|
|
|
|
|
+ font-size: 15px !important;
|
|
|
|
|
+ line-height: 1.6;
|
|
|
|
|
+ }
|
|
|
|
|
+
|
|
|
|
|
+ .font_size14 {
|
|
|
|
|
+ font-size: 14px !important;
|
|
|
|
|
+ line-height: 1.6;
|
|
|
|
|
+ }
|
|
|
|
|
+
|
|
|
|
|
+ .font_size32 {
|
|
|
|
|
+ font-size: 36px !important;
|
|
|
|
|
+ font-weight: 900 !important;
|
|
|
|
|
+ background: linear-gradient(135deg, #4F46E5, #7C3AED);
|
|
|
|
|
+ -webkit-background-clip: text;
|
|
|
|
|
+ -webkit-text-fill-color: transparent;
|
|
|
|
|
+ background-clip: text;
|
|
|
|
|
+ }
|
|
|
|
|
+
|
|
|
|
|
+ .gray {
|
|
|
|
|
+ color: #6B7280 !important;
|
|
|
|
|
+ line-height: 1.8;
|
|
|
|
|
+ }
|
|
|
|
|
+
|
|
|
|
|
+ .color_price span:not(.font_size32) {
|
|
|
|
|
+ color: #9CA3AF !important;
|
|
|
|
|
+ font-weight: 500;
|
|
|
|
|
+ }
|
|
|
|
|
+
|
|
|
|
|
+ /* Glassmorphism Cards */
|
|
|
|
|
+ .bg_color_fff {
|
|
|
|
|
+ background: rgba(255, 255, 255, 0.85) !important;
|
|
|
|
|
+ backdrop-filter: blur(20px);
|
|
|
|
|
+ -webkit-backdrop-filter: blur(20px);
|
|
|
|
|
+ border: 1px solid rgba(79, 70, 229, 0.12) !important;
|
|
|
|
|
+ box-shadow:
|
|
|
|
|
+ 0 8px 32px rgba(79, 70, 229, 0.08),
|
|
|
|
|
+ 0 2px 8px rgba(0, 0, 0, 0.04) !important;
|
|
|
|
|
+ transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
|
|
|
|
|
+
|
|
|
|
|
+ &:hover {
|
|
|
|
|
+ transform: translateY(-4px);
|
|
|
|
|
+ box-shadow:
|
|
|
|
|
+ 0 20px 48px rgba(79, 70, 225, 0.15),
|
|
|
|
|
+ 0 8px 16px rgba(0, 0, 0, 0.06) !important;
|
|
|
|
|
+ border-color: rgba(79, 70, 229, 0.2) !important;
|
|
|
|
|
+ }
|
|
|
|
|
+ }
|
|
|
|
|
+
|
|
|
|
|
+ /* Border Radius Enhancement */
|
|
|
|
|
+ .border_radius_16 {
|
|
|
|
|
+ border-radius: 20px !important;
|
|
|
|
|
+ }
|
|
|
|
|
+
|
|
|
|
|
+ .border_radius_10 {
|
|
|
|
|
+ border-radius: 16px !important;
|
|
|
|
|
+ }
|
|
|
|
|
+
|
|
|
|
|
+ .border_radius_8 {
|
|
|
|
|
+ border-radius: 12px !important;
|
|
|
|
|
+ }
|
|
|
|
|
+
|
|
|
|
|
+ /* Spacing System */
|
|
|
|
|
+ .padding16 {
|
|
|
|
|
+ padding: 24px !important;
|
|
|
|
|
+ }
|
|
|
|
|
+
|
|
|
|
|
+ .padding8 {
|
|
|
|
|
+ padding: 12px 16px !important;
|
|
|
|
|
+ }
|
|
|
|
|
+
|
|
|
|
|
+ .mt10 {
|
|
|
|
|
+ margin-top: 16px !important;
|
|
|
|
|
+ }
|
|
|
|
|
+
|
|
|
|
|
+ .mt20 {
|
|
|
|
|
+ margin-top: 28px !important;
|
|
|
|
|
+ }
|
|
|
|
|
+
|
|
|
|
|
+ .mr20 {
|
|
|
|
|
+ margin-right: 28px !important;
|
|
|
|
|
+ }
|
|
|
|
|
+
|
|
|
|
|
+ .ml10 {
|
|
|
|
|
+ margin-left: 12px !important;
|
|
|
|
|
+ }
|
|
|
|
|
+
|
|
|
|
|
+ .gap20 {
|
|
|
|
|
+ gap: 16px !important;
|
|
|
|
|
+ display: grid !important;
|
|
|
|
|
+ grid-template-columns: repeat(auto-fit, minmax(200px, 1fr));
|
|
|
|
|
+ }
|
|
|
|
|
+
|
|
|
|
|
+ .gap10 {
|
|
|
|
|
+ gap: 12px !important;
|
|
|
|
|
+ align-items: center;
|
|
|
|
|
+ }
|
|
|
|
|
+
|
|
|
|
|
+ .gap5 {
|
|
|
|
|
+ gap: 8px !important;
|
|
|
|
|
+ display: inline-flex !important;
|
|
|
|
|
+ align-items: center;
|
|
|
|
|
+ }
|
|
|
|
|
+
|
|
|
|
|
+ /* Meta Information Items */
|
|
|
|
|
+ .gap5 img {
|
|
|
|
|
+ width: 18px !important;
|
|
|
|
|
+ height: 18px !important;
|
|
|
|
|
+ filter: grayscale(20%) brightness(0.85);
|
|
|
|
|
+ transition: all 0.2s ease;
|
|
|
|
|
+ }
|
|
|
|
|
+
|
|
|
|
|
+ .gap5:hover img {
|
|
|
|
|
+ filter: grayscale(0%) brightness(1);
|
|
|
|
|
+ transform: scale(1.1);
|
|
|
|
|
+ }
|
|
|
|
|
+
|
|
|
|
|
+ .gap5 span {
|
|
|
|
|
+ color: #4B5563 !important;
|
|
|
|
|
+ font-weight: 500 !important;
|
|
|
|
|
+ transition: color 0.2s ease;
|
|
|
|
|
+ }
|
|
|
|
|
+
|
|
|
|
|
+ .gap5:hover span {
|
|
|
|
|
+ color: #4F46E5 !important;
|
|
|
|
|
+ }
|
|
|
|
|
+
|
|
|
|
|
+ /* Vertical Accent Line */
|
|
|
|
|
+ .line_vertical {
|
|
|
|
|
+ width: 4px !important;
|
|
|
|
|
+ height: 24px !important;
|
|
|
|
|
+ background: linear-gradient(180deg, #4F46E5, #7C3AED) !important;
|
|
|
|
|
+ border-radius: 4px !important;
|
|
|
|
|
+ box-shadow: 0 0 12px rgba(79, 70, 229, 0.3);
|
|
|
|
|
+ }
|
|
|
|
|
+
|
|
|
|
|
+ /* Preview Images */
|
|
|
|
|
+ .mt20 img {
|
|
|
|
|
+ border-radius: 12px !important;
|
|
|
|
|
+ border: 1px solid rgba(79, 70, 229, 0.08);
|
|
|
|
|
+ transition: all 0.3s ease;
|
|
|
|
|
+
|
|
|
|
|
+ &:hover {
|
|
|
|
|
+ transform: scale(1.02);
|
|
|
|
|
+ box-shadow: 0 12px 32px rgba(79, 70, 229, 0.15);
|
|
|
|
|
+ border-color: rgba(79, 70, 229, 0.2);
|
|
|
|
|
+ }
|
|
|
|
|
+ }
|
|
|
|
|
+
|
|
|
|
|
+ /* Right Sidebar */
|
|
|
|
|
+ .detail_right {
|
|
|
|
|
+ width: 380px;
|
|
|
|
|
+ flex-shrink: 0;
|
|
|
|
|
+ }
|
|
|
|
|
+
|
|
|
|
|
+ .detail_right_content {
|
|
|
|
|
+ position: sticky;
|
|
|
|
|
+ top: 90px;
|
|
|
|
|
+ max-height: calc(100vh - 110px);
|
|
|
|
|
+ overflow-y: auto;
|
|
|
|
|
+ scrollbar-width: thin;
|
|
|
|
|
+ scrollbar-color: rgba(79, 70, 229, 0.3) transparent;
|
|
|
|
|
+
|
|
|
|
|
+ &::-webkit-scrollbar {
|
|
|
|
|
+ width: 6px;
|
|
|
|
|
+ }
|
|
|
|
|
+
|
|
|
|
|
+ &::-webkit-scrollbar-track {
|
|
|
|
|
+ background: transparent;
|
|
|
|
|
+ }
|
|
|
|
|
+
|
|
|
|
|
+ &::-webkit-scrollbar-thumb {
|
|
|
|
|
+ background: rgba(79, 70, 229, 0.3);
|
|
|
|
|
+ border-radius: 6px;
|
|
|
|
|
+
|
|
|
|
|
+ &:hover {
|
|
|
|
|
+ background: rgba(79, 70, 229, 0.5);
|
|
|
|
|
+ }
|
|
|
|
|
+ }
|
|
|
|
|
+ }
|
|
|
|
|
+
|
|
|
|
|
+ .box_shadow_card {
|
|
|
|
|
+ box-shadow:
|
|
|
|
|
+ 0 8px 32px rgba(79, 70, 229, 0.1),
|
|
|
|
|
+ 0 2px 8px rgba(0, 0, 0, 0.04) !important;
|
|
|
|
|
+ }
|
|
|
|
|
+
|
|
|
|
|
+ /* Price Section */
|
|
|
|
|
+ .flex-center-between {
|
|
|
|
|
+ align-items: center !important;
|
|
|
|
|
+ }
|
|
|
|
|
+
|
|
|
|
|
+ .flex-column {
|
|
|
|
|
+ display: flex !important;
|
|
|
|
|
+ flex-direction: column;
|
|
|
|
|
+ gap: 8px;
|
|
|
|
|
+ }
|
|
|
|
|
+
|
|
|
|
|
+ /* Buttons - Modern Gradient Style */
|
|
|
|
|
+ :deep(.el-button--primary) {
|
|
|
|
|
+ background: linear-gradient(135deg, #4F46E5 0%, #7C3AED 100%) !important;
|
|
|
|
|
+ border: none !important;
|
|
|
|
|
+ border-radius: 14px !important;
|
|
|
|
|
+ font-weight: 700 !important;
|
|
|
|
|
+ letter-spacing: 0.01em;
|
|
|
|
|
+ box-shadow: 0 8px 24px rgba(79, 70, 229, 0.35);
|
|
|
|
|
+ transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
|
|
|
|
|
+
|
|
|
|
|
+ &:hover {
|
|
|
|
|
+ transform: translateY(-2px);
|
|
|
|
|
+ box-shadow: 0 12px 32px rgba(79, 70, 229, 0.45) !important;
|
|
|
|
|
+ }
|
|
|
|
|
+
|
|
|
|
|
+ &:active {
|
|
|
|
|
+ transform: translateY(0);
|
|
|
|
|
+ }
|
|
|
|
|
+ }
|
|
|
|
|
+
|
|
|
|
|
+ :deep(.el-button--success) {
|
|
|
|
|
+ background: linear-gradient(135deg, #10B981, #059669) !important;
|
|
|
|
|
+ border: none !important;
|
|
|
|
|
+ border-radius: 999px !important;
|
|
|
|
|
+ font-weight: 700 !important;
|
|
|
|
|
+ padding: 8px 16px !important;
|
|
|
|
|
+ box-shadow: 0 4px 12px rgba(16, 185, 129, 0.25);
|
|
|
|
|
+ }
|
|
|
|
|
+
|
|
|
|
|
+ /* Tags - Pill Style */
|
|
|
|
|
+ :deep(.el-tag--primary) {
|
|
|
|
|
+ background: linear-gradient(135deg, rgba(99, 102, 241, 0.1), rgba(124, 58, 237, 0.1)) !important;
|
|
|
|
|
+ border: 1px solid rgba(99, 102, 241, 0.2) !important;
|
|
|
|
|
+ border-radius: 999px !important;
|
|
|
|
|
+ color: #4F46E5 !important;
|
|
|
|
|
+ font-weight: 600 !important;
|
|
|
|
|
+ padding: 4px 12px !important;
|
|
|
|
|
+ font-size: 12px !important;
|
|
|
|
|
+ }
|
|
|
|
|
+
|
|
|
|
|
+ :deep(.el-tag--primary.el-tag--large) {
|
|
|
|
|
+ background: rgba(99, 102, 241, 0.08) !important;
|
|
|
|
|
+ border: 2px dashed rgba(99, 102, 241, 0.3) !important;
|
|
|
|
|
+ border-radius: 14px !important;
|
|
|
|
|
+ color: #4F46E5 !important;
|
|
|
|
|
+ font-weight: 700 !important;
|
|
|
|
|
+ cursor: pointer;
|
|
|
|
|
+ transition: all 0.3s ease;
|
|
|
|
|
+
|
|
|
|
|
+ &:hover {
|
|
|
|
|
+ background: rgba(99, 102, 241, 0.15) !important;
|
|
|
|
|
+ border-style: solid !important;
|
|
|
|
|
+ transform: translateY(-2px);
|
|
|
|
|
+ box-shadow: 0 8px 24px rgba(99, 102, 241, 0.2);
|
|
|
|
|
+ }
|
|
|
|
|
+ }
|
|
|
|
|
+
|
|
|
|
|
+ /* Avatar Enhancement */
|
|
|
|
|
+ :deep(.el-avatar) {
|
|
|
|
|
+ border: 3px solid rgba(255, 255, 255, 0.9);
|
|
|
|
|
+ box-shadow: 0 4px 12px rgba(0, 0, 0, 0.1);
|
|
|
|
|
+ transition: all 0.3s ease;
|
|
|
|
|
+
|
|
|
|
|
+ &:hover {
|
|
|
|
|
+ transform: scale(1.05);
|
|
|
|
|
+ box-shadow: 0 6px 16px rgba(79, 70, 229, 0.2);
|
|
|
|
|
+ }
|
|
|
|
|
+ }
|
|
|
|
|
+
|
|
|
|
|
+ /* Contact Info Background */
|
|
|
|
|
+ .contactInfo_bg {
|
|
|
|
|
+ background: linear-gradient(135deg, rgba(99, 102, 241, 0.05), rgba(124, 58, 237, 0.05)) !important;
|
|
|
|
|
+ border: 1px solid rgba(79, 70, 229, 0.1) !important;
|
|
|
|
|
+ transition: all 0.3s ease;
|
|
|
|
|
+
|
|
|
|
|
+ &:hover {
|
|
|
|
|
+ background: linear-gradient(135deg, rgba(99, 102, 241, 0.1), rgba(124, 58, 237, 0.1)) !important;
|
|
|
|
|
+ border-color: rgba(79, 70, 229, 0.2) !important;
|
|
|
|
|
+ }
|
|
|
|
|
+ }
|
|
|
|
|
+
|
|
|
|
|
+ /* Action Buttons */
|
|
|
|
|
+ .weiguanzhu,
|
|
|
|
|
+ .yiguanzhu {
|
|
|
|
|
+ backdrop-filter: blur(10px);
|
|
|
|
|
+ -webkit-backdrop-filter: blur(10px);
|
|
|
|
|
+ transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
|
|
|
|
|
+ }
|
|
|
|
|
+
|
|
|
|
|
+ .weiguanzhu {
|
|
|
|
|
+ background: linear-gradient(135deg, rgba(239, 68, 68, 0.1), rgba(220, 38, 38, 0.1)) !important;
|
|
|
|
|
+ border: 1px solid rgba(239, 68, 68, 0.2) !important;
|
|
|
|
|
+ color: #DC2626 !important;
|
|
|
|
|
+
|
|
|
|
|
+ &:hover {
|
|
|
|
|
+ background: linear-gradient(135deg, rgba(239, 68, 68, 0.15), rgba(220, 38, 38, 0.15)) !important;
|
|
|
|
|
+ transform: translateY(-2px);
|
|
|
|
|
+ box-shadow: 0 8px 16px rgba(239, 68, 68, 0.2);
|
|
|
|
|
+ }
|
|
|
|
|
+ }
|
|
|
|
|
+
|
|
|
|
|
+ .yiguanzhu {
|
|
|
|
|
+ background: linear-gradient(135deg, rgba(99, 102, 241, 0.1), rgba(124, 58, 237, 0.1)) !important;
|
|
|
|
|
+ border: 1px solid rgba(99, 102, 241, 0.2) !important;
|
|
|
|
|
+ color: #4F46E5 !important;
|
|
|
|
|
+
|
|
|
|
|
+ &:hover {
|
|
|
|
|
+ background: linear-gradient(135deg, rgba(99, 102, 241, 0.15), rgba(124, 58, 237, 0.15)) !important;
|
|
|
|
|
+ transform: translateY(-2px);
|
|
|
|
|
+ box-shadow: 0 8px 16px rgba(99, 102, 241, 0.2);
|
|
|
|
|
+ }
|
|
|
|
|
+ }
|
|
|
|
|
+
|
|
|
|
|
+ /* Cursor Pointer Enhancement */
|
|
|
|
|
+ .cursor-pointer {
|
|
|
|
|
+ cursor: pointer !important;
|
|
|
|
|
+ }
|
|
|
|
|
+
|
|
|
|
|
+ /* Flex Utilities */
|
|
|
|
|
+ .flex-between {
|
|
|
|
|
+ display: flex !important;
|
|
|
|
|
+ justify-content: space-between !important;
|
|
|
|
|
+ align-items: flex-start !important;
|
|
|
|
|
+ gap: 28px;
|
|
|
|
|
+ }
|
|
|
|
|
+
|
|
|
|
|
+ .flex_1 {
|
|
|
|
|
+ flex: 1 !important;
|
|
|
|
|
+ min-width: 0; /* Prevent flex items from overflowing */
|
|
|
|
|
+ }
|
|
|
|
|
+
|
|
|
|
|
+ .flex-center-between {
|
|
|
|
|
+ display: flex !important;
|
|
|
|
|
+ align-items: center !important;
|
|
|
|
|
+ justify-content: space-between !important;
|
|
|
|
|
+ }
|
|
|
|
|
+}
|
|
|
|
|
+
|
|
|
|
|
+/* ===============================
|
|
|
|
|
+ RESPONSIVE DESIGN
|
|
|
|
|
+ =============================== */
|
|
|
|
|
+
|
|
|
|
|
+/* Tablet */
|
|
|
|
|
+@media (max-width: 1200px) {
|
|
|
|
|
+ .workflow-detail {
|
|
|
|
|
+ .detail_right {
|
|
|
|
|
+ width: 340px;
|
|
|
|
|
+ }
|
|
|
|
|
+
|
|
|
|
|
+ .mr20 {
|
|
|
|
|
+ margin-right: 24px !important;
|
|
|
|
|
+ }
|
|
|
|
|
+ }
|
|
|
|
|
+}
|
|
|
|
|
+
|
|
|
|
|
+/* Small Tablet */
|
|
|
|
|
+@media (max-width: 900px) {
|
|
|
|
|
+ .workflow-detail {
|
|
|
|
|
+ padding: 16px;
|
|
|
|
|
+
|
|
|
|
|
+ .flex-between {
|
|
|
|
|
+ flex-direction: column;
|
|
|
|
|
+ }
|
|
|
|
|
+
|
|
|
|
|
+ .mr20 {
|
|
|
|
|
+ margin-right: 0 !important;
|
|
|
|
|
+ margin-bottom: 24px;
|
|
|
|
|
+ }
|
|
|
|
|
+
|
|
|
|
|
+ .detail_right {
|
|
|
|
|
+ width: 100%;
|
|
|
|
|
+ order: -1;
|
|
|
|
|
+ }
|
|
|
|
|
+
|
|
|
|
|
+ .detail_right_content {
|
|
|
|
|
+ position: static;
|
|
|
|
|
+ max-height: none;
|
|
|
|
|
+ display: grid;
|
|
|
|
|
+ grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
|
|
|
|
|
+ gap: 20px;
|
|
|
|
|
+ }
|
|
|
|
|
+
|
|
|
|
|
+ .font_size30 {
|
|
|
|
|
+ font-size: 28px !important;
|
|
|
|
|
+ }
|
|
|
|
|
+
|
|
|
|
|
+ .font_size20 {
|
|
|
|
|
+ font-size: 20px !important;
|
|
|
|
|
+ }
|
|
|
|
|
+
|
|
|
|
|
+ .gap20 {
|
|
|
|
|
+ grid-template-columns: repeat(auto-fit, minmax(150px, 1fr));
|
|
|
|
|
+ }
|
|
|
|
|
+ }
|
|
|
|
|
+}
|
|
|
|
|
+
|
|
|
|
|
+/* Mobile */
|
|
|
|
|
+@media (max-width: 600px) {
|
|
|
|
|
+ .workflow-detail {
|
|
|
|
|
+ padding: 12px;
|
|
|
|
|
+
|
|
|
|
|
+ .padding16 {
|
|
|
|
|
+ padding: 18px !important;
|
|
|
|
|
+ }
|
|
|
|
|
+
|
|
|
|
|
+ .border_radius_16 {
|
|
|
|
|
+ border-radius: 16px !important;
|
|
|
|
|
+ }
|
|
|
|
|
+
|
|
|
|
|
+ .border_radius_10 {
|
|
|
|
|
+ border-radius: 12px !important;
|
|
|
|
|
+ }
|
|
|
|
|
+
|
|
|
|
|
+ .font_size30 {
|
|
|
|
|
+ font-size: 24px !important;
|
|
|
|
|
+ }
|
|
|
|
|
+
|
|
|
|
|
+ .font_size20 {
|
|
|
|
|
+ font-size: 18px !important;
|
|
|
|
|
+ }
|
|
|
|
|
+
|
|
|
|
|
+ .font_size18 {
|
|
|
|
|
+ font-size: 16px !important;
|
|
|
|
|
+ }
|
|
|
|
|
+
|
|
|
|
|
+ .font_size32 {
|
|
|
|
|
+ font-size: 30px !important;
|
|
|
|
|
+ }
|
|
|
|
|
+
|
|
|
|
|
+ .mt20 {
|
|
|
|
|
+ margin-top: 20px !important;
|
|
|
|
|
+ }
|
|
|
|
|
+
|
|
|
|
|
+ .mt10 {
|
|
|
|
|
+ margin-top: 12px !important;
|
|
|
|
|
+ }
|
|
|
|
|
+
|
|
|
|
|
+ .gap20 {
|
|
|
|
|
+ grid-template-columns: 1fr !important;
|
|
|
|
|
+ gap: 12px !important;
|
|
|
|
|
+ }
|
|
|
|
|
+
|
|
|
|
|
+ .detail_right_content {
|
|
|
|
|
+ grid-template-columns: 1fr;
|
|
|
|
|
+ }
|
|
|
|
|
+
|
|
|
|
|
+ :deep(.el-button--large) {
|
|
|
|
|
+ height: 44px !important;
|
|
|
|
|
+ }
|
|
|
|
|
+
|
|
|
|
|
+ :deep(.el-avatar) {
|
|
|
|
|
+ width: 40px !important;
|
|
|
|
|
+ height: 40px !important;
|
|
|
|
|
+ }
|
|
|
|
|
+ }
|
|
|
}
|
|
}
|
|
|
</style>
|
|
</style>
|