bugfix
This commit is contained in:
parent
7d50586964
commit
d2282c22c8
@ -32,6 +32,7 @@ from bugfix.init import load_bugfix
|
|||||||
from discount.init import load_discount
|
from discount.init import load_discount
|
||||||
from tenant.init import load_tenant
|
from tenant.init import load_tenant
|
||||||
from smssend import load_smssend
|
from smssend import load_smssend
|
||||||
|
from sage_datamart import load_sage_datamart
|
||||||
from ext import *
|
from ext import *
|
||||||
from rf import *
|
from rf import *
|
||||||
__version__ = '0.0.1'
|
__version__ = '0.0.1'
|
||||||
@ -62,6 +63,7 @@ def init():
|
|||||||
load_dashboard_for_sage()
|
load_dashboard_for_sage()
|
||||||
load_reallife_asset()
|
load_reallife_asset()
|
||||||
load_bugfix()
|
load_bugfix()
|
||||||
|
load_sage_datamart()
|
||||||
|
|
||||||
if __name__ == '__main__':
|
if __name__ == '__main__':
|
||||||
webapp(init)
|
webapp(init)
|
||||||
|
|||||||
@ -23,57 +23,57 @@
|
|||||||
.nav-link {
|
.nav-link {
|
||||||
cursor: pointer;
|
cursor: pointer;
|
||||||
font-size: 15px;
|
font-size: 15px;
|
||||||
color: #333;
|
color: #374151;
|
||||||
font-weight: 500;
|
font-weight: 500;
|
||||||
transition: color 0.2s;
|
transition: color 0.2s;
|
||||||
}
|
}
|
||||||
|
|
||||||
.nav-link:hover {
|
.nav-link:hover {
|
||||||
color: #6366f1;
|
color: #3b82f6;
|
||||||
}
|
}
|
||||||
|
|
||||||
.login-btn {
|
.login-btn {
|
||||||
background: #6366f1 !important;
|
background: #3b82f6 !important;
|
||||||
color: #fff !important;
|
color: #fff !important;
|
||||||
border: none !important;
|
border: none !important;
|
||||||
padding: 10px 24px !important;
|
padding: 10px 24px !important;
|
||||||
border-radius: 6px !important;
|
border-radius: 8px !important;
|
||||||
font-size: 14px !important;
|
font-size: 14px !important;
|
||||||
font-weight: 600 !important;
|
font-weight: 600 !important;
|
||||||
cursor: pointer !important;
|
cursor: pointer !important;
|
||||||
}
|
}
|
||||||
|
|
||||||
.login-btn:hover {
|
.login-btn:hover {
|
||||||
background: #5558e3 !important;
|
background: #2563eb !important;
|
||||||
}
|
}
|
||||||
|
|
||||||
.tenant-hero {
|
.tenant-hero {
|
||||||
background: linear-gradient(135deg, #667eea 0%, #764ba2 100%);
|
background: linear-gradient(180deg, #f0f7ff 0%, #fff 60%, #f5f8ff 100%);
|
||||||
min-height: 500px;
|
min-height: 520px;
|
||||||
}
|
}
|
||||||
|
|
||||||
.hero-content {
|
.hero-content {
|
||||||
color: #fff;
|
color: #111827;
|
||||||
}
|
}
|
||||||
|
|
||||||
.hero-title {
|
.hero-title {
|
||||||
font-size: 48px !important;
|
font-size: 56px !important;
|
||||||
font-weight: 700 !important;
|
font-weight: 800 !important;
|
||||||
line-height: 1.2 !important;
|
line-height: 1.15 !important;
|
||||||
color: #fff !important;
|
color: #111827 !important;
|
||||||
}
|
}
|
||||||
|
|
||||||
.hero-subtitle {
|
.hero-subtitle {
|
||||||
font-size: 24px !important;
|
font-size: 22px !important;
|
||||||
color: rgba(255,255,255,0.9) !important;
|
color: #4b5563 !important;
|
||||||
font-weight: 400 !important;
|
font-weight: 400 !important;
|
||||||
}
|
}
|
||||||
|
|
||||||
.hero-btn {
|
.hero-btn {
|
||||||
background: #fff !important;
|
background: #3b82f6 !important;
|
||||||
color: #6366f1 !important;
|
color: #fff !important;
|
||||||
border: none !important;
|
border: none !important;
|
||||||
padding: 14px 32px !important;
|
padding: 14px 36px !important;
|
||||||
border-radius: 8px !important;
|
border-radius: 8px !important;
|
||||||
font-size: 16px !important;
|
font-size: 16px !important;
|
||||||
font-weight: 600 !important;
|
font-weight: 600 !important;
|
||||||
@ -81,7 +81,7 @@
|
|||||||
}
|
}
|
||||||
|
|
||||||
.hero-btn:hover {
|
.hero-btn:hover {
|
||||||
background: #f0f0f0 !important;
|
background: #2563eb !important;
|
||||||
}
|
}
|
||||||
|
|
||||||
.hero-image {
|
.hero-image {
|
||||||
@ -89,14 +89,14 @@
|
|||||||
}
|
}
|
||||||
|
|
||||||
.tenant-solutions {
|
.tenant-solutions {
|
||||||
background: #f8f9fa;
|
background: #fff;
|
||||||
}
|
}
|
||||||
|
|
||||||
.section-title {
|
.section-title {
|
||||||
font-size: 36px !important;
|
font-size: 36px !important;
|
||||||
font-weight: 700 !important;
|
font-weight: 700 !important;
|
||||||
text-align: center !important;
|
text-align: center !important;
|
||||||
color: #1a1a2e !important;
|
color: #111827 !important;
|
||||||
margin-bottom: 20px !important;
|
margin-bottom: 20px !important;
|
||||||
}
|
}
|
||||||
|
|
||||||
@ -108,8 +108,8 @@
|
|||||||
|
|
||||||
.solution-card {
|
.solution-card {
|
||||||
background: #fff;
|
background: #fff;
|
||||||
border-radius: 12px;
|
border-radius: 16px;
|
||||||
box-shadow: 0 4px 20px rgba(0,0,0,0.08);
|
box-shadow: 0 4px 24px rgba(0,0,0,0.06);
|
||||||
transition: transform 0.2s, box-shadow 0.2s;
|
transition: transform 0.2s, box-shadow 0.2s;
|
||||||
}
|
}
|
||||||
|
|
||||||
@ -121,23 +121,23 @@
|
|||||||
.card-title {
|
.card-title {
|
||||||
font-size: 24px !important;
|
font-size: 24px !important;
|
||||||
font-weight: 700 !important;
|
font-weight: 700 !important;
|
||||||
color: #1a1a2e !important;
|
color: #111827 !important;
|
||||||
}
|
}
|
||||||
|
|
||||||
.card-text {
|
.card-text {
|
||||||
font-size: 15px !important;
|
font-size: 15px !important;
|
||||||
color: #666 !important;
|
color: #6b7280 !important;
|
||||||
line-height: 1.6 !important;
|
line-height: 1.6 !important;
|
||||||
}
|
}
|
||||||
|
|
||||||
.card-stat {
|
.card-stat {
|
||||||
font-size: 14px !important;
|
font-size: 14px !important;
|
||||||
color: #6366f1 !important;
|
color: #3b82f6 !important;
|
||||||
font-weight: 600 !important;
|
font-weight: 600 !important;
|
||||||
}
|
}
|
||||||
|
|
||||||
.tenant-cases {
|
.tenant-cases {
|
||||||
background: #fff;
|
background: #f8faff;
|
||||||
}
|
}
|
||||||
|
|
||||||
.case-cards {
|
.case-cards {
|
||||||
@ -148,9 +148,9 @@
|
|||||||
|
|
||||||
.case-card {
|
.case-card {
|
||||||
background: #fff;
|
background: #fff;
|
||||||
border-radius: 12px;
|
border-radius: 16px;
|
||||||
overflow: hidden;
|
overflow: hidden;
|
||||||
box-shadow: 0 4px 20px rgba(0,0,0,0.08);
|
box-shadow: 0 4px 24px rgba(0,0,0,0.06);
|
||||||
transition: transform 0.2s;
|
transition: transform 0.2s;
|
||||||
}
|
}
|
||||||
|
|
||||||
@ -167,26 +167,26 @@
|
|||||||
.case-title {
|
.case-title {
|
||||||
font-size: 20px !important;
|
font-size: 20px !important;
|
||||||
font-weight: 700 !important;
|
font-weight: 700 !important;
|
||||||
color: #1a1a2e !important;
|
color: #111827 !important;
|
||||||
padding: 0 20px !important;
|
padding: 0 20px !important;
|
||||||
}
|
}
|
||||||
|
|
||||||
.case-company {
|
.case-company {
|
||||||
font-size: 14px !important;
|
font-size: 14px !important;
|
||||||
color: #6366f1 !important;
|
color: #3b82f6 !important;
|
||||||
font-weight: 600 !important;
|
font-weight: 600 !important;
|
||||||
padding: 0 20px !important;
|
padding: 0 20px !important;
|
||||||
}
|
}
|
||||||
|
|
||||||
.case-desc {
|
.case-desc {
|
||||||
font-size: 14px !important;
|
font-size: 14px !important;
|
||||||
color: #666 !important;
|
color: #6b7280 !important;
|
||||||
line-height: 1.6 !important;
|
line-height: 1.6 !important;
|
||||||
padding: 0 20px 20px !important;
|
padding: 0 20px 20px !important;
|
||||||
}
|
}
|
||||||
|
|
||||||
.tenant-footer {
|
.tenant-footer {
|
||||||
background: #1a1a2e;
|
background: #111827;
|
||||||
color: #fff;
|
color: #fff;
|
||||||
min-height: 80px;
|
min-height: 80px;
|
||||||
}
|
}
|
||||||
|
|||||||
Loading…
x
Reference in New Issue
Block a user