|
@@ -118,6 +118,7 @@ img {
|
|
|
z-index: 1000;
|
|
z-index: 1000;
|
|
|
height: var(--header-height);
|
|
height: var(--header-height);
|
|
|
background: transparent;
|
|
background: transparent;
|
|
|
|
|
+ border-bottom: 1px solid rgba(255,255,255,0.2);
|
|
|
transition: background var(--transition), box-shadow var(--transition);
|
|
transition: background var(--transition), box-shadow var(--transition);
|
|
|
}
|
|
}
|
|
|
|
|
|
|
@@ -143,6 +144,10 @@ img {
|
|
|
margin-left: var(--content-offset-x);
|
|
margin-left: var(--content-offset-x);
|
|
|
}
|
|
}
|
|
|
|
|
|
|
|
|
|
+.header .logo img {
|
|
|
|
|
+ height: 28px;
|
|
|
|
|
+}
|
|
|
|
|
+
|
|
|
.logo-icon {
|
|
.logo-icon {
|
|
|
width: 36px;
|
|
width: 36px;
|
|
|
height: 36px;
|
|
height: 36px;
|
|
@@ -418,7 +423,10 @@ img {
|
|
|
.profile-main {
|
|
.profile-main {
|
|
|
position: relative;
|
|
position: relative;
|
|
|
min-height: 532px;
|
|
min-height: 532px;
|
|
|
- background: var(--color-placeholder);
|
|
|
|
|
|
|
+ background-color: var(--color-placeholder);
|
|
|
|
|
+ background-size: cover;
|
|
|
|
|
+ background-position: center;
|
|
|
|
|
+ background-repeat: no-repeat;
|
|
|
overflow: hidden;
|
|
overflow: hidden;
|
|
|
}
|
|
}
|
|
|
|
|
|
|
@@ -446,7 +454,7 @@ img {
|
|
|
}
|
|
}
|
|
|
|
|
|
|
|
.profile-main-text p {
|
|
.profile-main-text p {
|
|
|
- font-size: 14px;
|
|
|
|
|
|
|
+ font-size: 16px;
|
|
|
line-height: 2;
|
|
line-height: 2;
|
|
|
max-width: 420px;
|
|
max-width: 420px;
|
|
|
opacity: 0.95;
|
|
opacity: 0.95;
|
|
@@ -459,58 +467,68 @@ img {
|
|
|
min-height: 532px;
|
|
min-height: 532px;
|
|
|
}
|
|
}
|
|
|
|
|
|
|
|
-.profile-row {
|
|
|
|
|
- display: grid;
|
|
|
|
|
- grid-template-columns: 1fr 1fr;
|
|
|
|
|
- gap: 12px;
|
|
|
|
|
- min-height: 0;
|
|
|
|
|
|
|
+.profile-idea {
|
|
|
|
|
+ position: relative;
|
|
|
|
|
+ min-height: 260px;
|
|
|
|
|
+ background-size: cover;
|
|
|
|
|
+ background-position: center;
|
|
|
|
|
+ background-repeat: no-repeat;
|
|
|
|
|
+ overflow: hidden;
|
|
|
}
|
|
}
|
|
|
|
|
|
|
|
-.profile-philosophy {
|
|
|
|
|
- background: var(--color-primary);
|
|
|
|
|
- color: #ffffff;
|
|
|
|
|
- padding: 28px 24px;
|
|
|
|
|
|
|
+.profile-idea-text {
|
|
|
|
|
+ position: absolute;
|
|
|
|
|
+ inset: 0;
|
|
|
|
|
+ width: 50%;
|
|
|
display: flex;
|
|
display: flex;
|
|
|
flex-direction: column;
|
|
flex-direction: column;
|
|
|
justify-content: center;
|
|
justify-content: center;
|
|
|
- min-height: 100%;
|
|
|
|
|
|
|
+ padding: 28px 24px;
|
|
|
|
|
+ color: #ffffff;
|
|
|
}
|
|
}
|
|
|
|
|
|
|
|
-.profile-philosophy h3 {
|
|
|
|
|
|
|
+.profile-idea-text h3 {
|
|
|
font-size: 22px;
|
|
font-size: 22px;
|
|
|
margin-bottom: 12px;
|
|
margin-bottom: 12px;
|
|
|
font-weight: 600;
|
|
font-weight: 600;
|
|
|
}
|
|
}
|
|
|
|
|
|
|
|
-.profile-philosophy p {
|
|
|
|
|
- font-size: 13px;
|
|
|
|
|
|
|
+.profile-idea-text p {
|
|
|
|
|
+ font-size: 16px;
|
|
|
line-height: 1.9;
|
|
line-height: 1.9;
|
|
|
opacity: 0.92;
|
|
opacity: 0.92;
|
|
|
}
|
|
}
|
|
|
|
|
|
|
|
-.profile-img {
|
|
|
|
|
- min-height: 100%;
|
|
|
|
|
- height: 100%;
|
|
|
|
|
|
|
+.profile-culture-block {
|
|
|
|
|
+ position: relative;
|
|
|
|
|
+ min-height: 260px;
|
|
|
|
|
+ background-size: cover;
|
|
|
|
|
+ background-position: center;
|
|
|
|
|
+ background-repeat: no-repeat;
|
|
|
|
|
+ overflow: hidden;
|
|
|
}
|
|
}
|
|
|
|
|
|
|
|
-.profile-culture {
|
|
|
|
|
- background: var(--color-gold);
|
|
|
|
|
- color: #ffffff;
|
|
|
|
|
- padding: 28px 24px;
|
|
|
|
|
|
|
+.profile-culture-text {
|
|
|
|
|
+ position: absolute;
|
|
|
|
|
+ top: 0;
|
|
|
|
|
+ right: 0;
|
|
|
|
|
+ bottom: 0;
|
|
|
|
|
+ width: 50%;
|
|
|
display: flex;
|
|
display: flex;
|
|
|
flex-direction: column;
|
|
flex-direction: column;
|
|
|
justify-content: center;
|
|
justify-content: center;
|
|
|
- min-height: 100%;
|
|
|
|
|
|
|
+ padding: 28px 24px;
|
|
|
|
|
+ color: #ffffff;
|
|
|
}
|
|
}
|
|
|
|
|
|
|
|
-.profile-culture h3 {
|
|
|
|
|
|
|
+.profile-culture-text h3 {
|
|
|
font-size: 22px;
|
|
font-size: 22px;
|
|
|
margin-bottom: 12px;
|
|
margin-bottom: 12px;
|
|
|
font-weight: 600;
|
|
font-weight: 600;
|
|
|
}
|
|
}
|
|
|
|
|
|
|
|
-.profile-culture p {
|
|
|
|
|
- font-size: 13px;
|
|
|
|
|
|
|
+.profile-culture-text p {
|
|
|
|
|
+ font-size: 16px;
|
|
|
line-height: 1.9;
|
|
line-height: 1.9;
|
|
|
opacity: 0.95;
|
|
opacity: 0.95;
|
|
|
}
|
|
}
|
|
@@ -648,11 +666,13 @@ img {
|
|
|
}
|
|
}
|
|
|
|
|
|
|
|
.scope-text p {
|
|
.scope-text p {
|
|
|
- font-size: 14px;
|
|
|
|
|
|
|
+ font-size: 15px;
|
|
|
color: var(--color-text-light);
|
|
color: var(--color-text-light);
|
|
|
line-height: 2;
|
|
line-height: 2;
|
|
|
margin-bottom: 16px;
|
|
margin-bottom: 16px;
|
|
|
text-align: justify;
|
|
text-align: justify;
|
|
|
|
|
+ font-weight: bold;
|
|
|
|
|
+ color: #000;
|
|
|
}
|
|
}
|
|
|
|
|
|
|
|
.scope-text p:last-child {
|
|
.scope-text p:last-child {
|
|
@@ -660,36 +680,19 @@ img {
|
|
|
}
|
|
}
|
|
|
|
|
|
|
|
.scope-map {
|
|
.scope-map {
|
|
|
- aspect-ratio: 4 / 3;
|
|
|
|
|
- border-radius: 4px;
|
|
|
|
|
- min-height: 360px;
|
|
|
|
|
-}
|
|
|
|
|
-
|
|
|
|
|
-.flag-grid {
|
|
|
|
|
- position: absolute;
|
|
|
|
|
- inset: 0;
|
|
|
|
|
- display: flex;
|
|
|
|
|
- flex-wrap: wrap;
|
|
|
|
|
- align-items: center;
|
|
|
|
|
- justify-content: center;
|
|
|
|
|
- gap: 16px;
|
|
|
|
|
- padding: 40px;
|
|
|
|
|
- z-index: 1;
|
|
|
|
|
-}
|
|
|
|
|
-
|
|
|
|
|
-.flag-item {
|
|
|
|
|
- font-size: 28px;
|
|
|
|
|
- cursor: default;
|
|
|
|
|
- transition: transform var(--transition);
|
|
|
|
|
-}
|
|
|
|
|
-
|
|
|
|
|
-.flag-item:hover {
|
|
|
|
|
- transform: scale(1.2);
|
|
|
|
|
|
|
+ width: 100%;
|
|
|
|
|
+ height: auto;
|
|
|
|
|
+ display: block;
|
|
|
|
|
+ object-fit: contain;
|
|
|
}
|
|
}
|
|
|
|
|
|
|
|
/* ===== 联系我们 ===== */
|
|
/* ===== 联系我们 ===== */
|
|
|
.section-contact {
|
|
.section-contact {
|
|
|
- background: var(--color-bg-section);
|
|
|
|
|
|
|
+ background: #f7f8fc;
|
|
|
|
|
+}
|
|
|
|
|
+
|
|
|
|
|
+.section-contact .section-title-en {
|
|
|
|
|
+ color: #f3f3f3;
|
|
|
}
|
|
}
|
|
|
|
|
|
|
|
.contact-content {
|
|
.contact-content {
|
|
@@ -699,40 +702,43 @@ img {
|
|
|
align-items: start;
|
|
align-items: start;
|
|
|
}
|
|
}
|
|
|
|
|
|
|
|
-.contact-info {
|
|
|
|
|
- display: flex;
|
|
|
|
|
- flex-direction: column;
|
|
|
|
|
- gap: 36px;
|
|
|
|
|
- padding-top: 20px;
|
|
|
|
|
|
|
+.contact-detail {
|
|
|
|
|
+ padding-top: 8px;
|
|
|
}
|
|
}
|
|
|
|
|
|
|
|
-.contact-item {
|
|
|
|
|
- display: flex;
|
|
|
|
|
- gap: 16px;
|
|
|
|
|
- align-items: flex-start;
|
|
|
|
|
|
|
+.contact-greeting {
|
|
|
|
|
+ font-size: 22px;
|
|
|
|
|
+ font-weight: 700;
|
|
|
|
|
+ color: var(--color-text);
|
|
|
|
|
+ margin-bottom: 20px;
|
|
|
}
|
|
}
|
|
|
|
|
|
|
|
-.contact-icon {
|
|
|
|
|
- font-size: 20px;
|
|
|
|
|
- width: 40px;
|
|
|
|
|
- height: 40px;
|
|
|
|
|
- display: flex;
|
|
|
|
|
- align-items: center;
|
|
|
|
|
- justify-content: center;
|
|
|
|
|
- background: var(--color-primary);
|
|
|
|
|
- border-radius: 50%;
|
|
|
|
|
- flex-shrink: 0;
|
|
|
|
|
|
|
+.contact-intro {
|
|
|
|
|
+ font-size: 14px;
|
|
|
|
|
+ line-height: 2;
|
|
|
|
|
+ color: var(--color-text-light);
|
|
|
|
|
+ margin-bottom: 32px;
|
|
|
|
|
+ text-align: justify;
|
|
|
}
|
|
}
|
|
|
|
|
|
|
|
-.contact-item strong {
|
|
|
|
|
- display: block;
|
|
|
|
|
|
|
+.contact-block {
|
|
|
|
|
+ margin-bottom: 28px;
|
|
|
|
|
+}
|
|
|
|
|
+
|
|
|
|
|
+.contact-block:last-child {
|
|
|
|
|
+ margin-bottom: 0;
|
|
|
|
|
+}
|
|
|
|
|
+
|
|
|
|
|
+.contact-block h4 {
|
|
|
font-size: 16px;
|
|
font-size: 16px;
|
|
|
- margin-bottom: 6px;
|
|
|
|
|
|
|
+ font-weight: 700;
|
|
|
color: var(--color-text);
|
|
color: var(--color-text);
|
|
|
|
|
+ margin-bottom: 10px;
|
|
|
}
|
|
}
|
|
|
|
|
|
|
|
-.contact-item p {
|
|
|
|
|
|
|
+.contact-block p {
|
|
|
font-size: 14px;
|
|
font-size: 14px;
|
|
|
|
|
+ line-height: 1.9;
|
|
|
color: var(--color-text-light);
|
|
color: var(--color-text-light);
|
|
|
}
|
|
}
|
|
|
|
|
|
|
@@ -779,53 +785,67 @@ img {
|
|
|
|
|
|
|
|
/* ===== 页脚 ===== */
|
|
/* ===== 页脚 ===== */
|
|
|
.footer {
|
|
.footer {
|
|
|
- background: var(--color-footer);
|
|
|
|
|
- color: rgba(255, 255, 255, 0.7);
|
|
|
|
|
- padding-top: 60px;
|
|
|
|
|
|
|
+ background: #000;
|
|
|
|
|
+ color: rgba(255, 255, 255, 0.65);
|
|
|
|
|
+ padding-top: 48px;
|
|
|
}
|
|
}
|
|
|
|
|
|
|
|
.footer-inner {
|
|
.footer-inner {
|
|
|
- display: flex;
|
|
|
|
|
- justify-content: space-between;
|
|
|
|
|
- padding-bottom: 40px;
|
|
|
|
|
|
|
+ display: grid;
|
|
|
|
|
+ grid-template-columns: 1.2fr 1fr 1.2fr;
|
|
|
|
|
+ gap: 40px;
|
|
|
|
|
+ align-items: start;
|
|
|
|
|
+ padding-bottom: 36px;
|
|
|
}
|
|
}
|
|
|
|
|
|
|
|
.footer-brand .logo {
|
|
.footer-brand .logo {
|
|
|
margin-bottom: 16px;
|
|
margin-bottom: 16px;
|
|
|
}
|
|
}
|
|
|
|
|
|
|
|
|
|
+.footer-brand .logo img {
|
|
|
|
|
+ height: 24px;
|
|
|
|
|
+}
|
|
|
|
|
+
|
|
|
.footer-company-name {
|
|
.footer-company-name {
|
|
|
|
|
+ font-size: 18px;
|
|
|
|
|
+ font-weight: 500;
|
|
|
|
|
+ color: rgba(255, 255, 255, 0.85);
|
|
|
|
|
+ line-height: 1.6;
|
|
|
|
|
+}
|
|
|
|
|
+
|
|
|
|
|
+.footer-nav h4,
|
|
|
|
|
+.footer-contact h4 {
|
|
|
|
|
+ color: rgba(255, 255, 255, 0.45);
|
|
|
font-size: 13px;
|
|
font-size: 13px;
|
|
|
- color: rgba(255, 255, 255, 0.5);
|
|
|
|
|
|
|
+ font-weight: 400;
|
|
|
|
|
+ margin-bottom: 16px;
|
|
|
}
|
|
}
|
|
|
|
|
|
|
|
-.footer-links {
|
|
|
|
|
|
|
+.footer-nav-links {
|
|
|
display: flex;
|
|
display: flex;
|
|
|
- gap: 80px;
|
|
|
|
|
|
|
+ flex-wrap: wrap;
|
|
|
|
|
+ gap: 24px;
|
|
|
}
|
|
}
|
|
|
|
|
|
|
|
-.footer-col h4 {
|
|
|
|
|
- color: #ffffff;
|
|
|
|
|
- font-size: 15px;
|
|
|
|
|
- margin-bottom: 16px;
|
|
|
|
|
- font-weight: 600;
|
|
|
|
|
|
|
+.footer-nav-links a {
|
|
|
|
|
+ font-size: 14px;
|
|
|
|
|
+ color: rgba(255, 255, 255, 0.65);
|
|
|
|
|
+ transition: color var(--transition);
|
|
|
}
|
|
}
|
|
|
|
|
|
|
|
-.footer-col a {
|
|
|
|
|
- display: block;
|
|
|
|
|
- font-size: 13px;
|
|
|
|
|
- color: rgba(255, 255, 255, 0.5);
|
|
|
|
|
- margin-bottom: 10px;
|
|
|
|
|
- transition: color var(--transition);
|
|
|
|
|
|
|
+.footer-nav-links a:hover {
|
|
|
|
|
+ color: rgba(255, 255, 255, 0.95);
|
|
|
}
|
|
}
|
|
|
|
|
|
|
|
-.footer-col a:hover {
|
|
|
|
|
- color: rgba(255, 255, 255, 0.9);
|
|
|
|
|
|
|
+.footer-contact p {
|
|
|
|
|
+ font-size: 14px;
|
|
|
|
|
+ line-height: 2;
|
|
|
|
|
+ color: rgba(255, 255, 255, 0.65);
|
|
|
}
|
|
}
|
|
|
|
|
|
|
|
.footer-bottom {
|
|
.footer-bottom {
|
|
|
border-top: 1px solid rgba(255, 255, 255, 0.08);
|
|
border-top: 1px solid rgba(255, 255, 255, 0.08);
|
|
|
- padding: 20px 0;
|
|
|
|
|
|
|
+ padding: 18px 0 24px;
|
|
|
text-align: center;
|
|
text-align: center;
|
|
|
}
|
|
}
|
|
|
|
|
|
|
@@ -855,3 +875,278 @@ img {
|
|
|
opacity: 1;
|
|
opacity: 1;
|
|
|
transform: translate(-50%, -50%) scale(1);
|
|
transform: translate(-50%, -50%) scale(1);
|
|
|
}
|
|
}
|
|
|
|
|
+
|
|
|
|
|
+/* ===== 独立页 Hero ===== */
|
|
|
|
|
+.page-hero {
|
|
|
|
|
+ position: relative;
|
|
|
|
|
+ height: 420px;
|
|
|
|
|
+ overflow: hidden;
|
|
|
|
|
+}
|
|
|
|
|
+
|
|
|
|
|
+.page-hero__bg {
|
|
|
|
|
+ position: absolute;
|
|
|
|
|
+ inset: 0;
|
|
|
|
|
+ background-size: cover;
|
|
|
|
|
+ background-position: center;
|
|
|
|
|
+ background-repeat: no-repeat;
|
|
|
|
|
+}
|
|
|
|
|
+
|
|
|
|
|
+.page-hero__overlay {
|
|
|
|
|
+ position: absolute;
|
|
|
|
|
+ inset: 0;
|
|
|
|
|
+ background: rgba(8, 18, 34, 0.55);
|
|
|
|
|
+}
|
|
|
|
|
+
|
|
|
|
|
+.page-hero__inner {
|
|
|
|
|
+ position: relative;
|
|
|
|
|
+ z-index: 1;
|
|
|
|
|
+ height: 100%;
|
|
|
|
|
+}
|
|
|
|
|
+
|
|
|
|
|
+.page-hero__content {
|
|
|
|
|
+ display: flex;
|
|
|
|
|
+ flex-direction: column;
|
|
|
|
|
+ justify-content: flex-end;
|
|
|
|
|
+ height: 100%;
|
|
|
|
|
+ padding-bottom: 72px;
|
|
|
|
|
+ margin-left: var(--content-offset-x);
|
|
|
|
|
+}
|
|
|
|
|
+
|
|
|
|
|
+.page-hero__title {
|
|
|
|
|
+ font-size: 42px;
|
|
|
|
|
+ font-weight: 700;
|
|
|
|
|
+ color: #ffffff;
|
|
|
|
|
+ letter-spacing: 2px;
|
|
|
|
|
+ margin-bottom: 16px;
|
|
|
|
|
+}
|
|
|
|
|
+
|
|
|
|
|
+.page-hero__line {
|
|
|
|
|
+ display: block;
|
|
|
|
|
+ width: 48px;
|
|
|
|
|
+ height: 3px;
|
|
|
|
|
+ background: #ffffff;
|
|
|
|
|
+ margin-bottom: 16px;
|
|
|
|
|
+}
|
|
|
|
|
+
|
|
|
|
|
+.page-hero__subtitle {
|
|
|
|
|
+ font-size: 18px;
|
|
|
|
|
+ font-weight: 400;
|
|
|
|
|
+ letter-spacing: 3px;
|
|
|
|
|
+ color: rgba(255, 255, 255, 0.9);
|
|
|
|
|
+}
|
|
|
|
|
+
|
|
|
|
|
+/* ===== 企业概况独立页 ===== */
|
|
|
|
|
+.profile-page-section {
|
|
|
|
|
+ padding: 80px 0 96px;
|
|
|
|
|
+}
|
|
|
|
|
+
|
|
|
|
|
+.profile-page-section--intro {
|
|
|
|
|
+ background: #ffffff;
|
|
|
|
|
+}
|
|
|
|
|
+
|
|
|
|
|
+.profile-page-section--vision {
|
|
|
|
|
+ background: #f7f8fc;
|
|
|
|
|
+}
|
|
|
|
|
+
|
|
|
|
|
+.profile-page-section-header {
|
|
|
|
|
+ text-align: center;
|
|
|
|
|
+ margin-bottom: 56px;
|
|
|
|
|
+}
|
|
|
|
|
+
|
|
|
|
|
+.profile-page-section-header__en {
|
|
|
|
|
+ font-size: 28px;
|
|
|
|
|
+ font-weight: 700;
|
|
|
|
|
+ letter-spacing: 2px;
|
|
|
|
|
+ color: var(--color-text);
|
|
|
|
|
+ margin-bottom: 12px;
|
|
|
|
|
+}
|
|
|
|
|
+
|
|
|
|
|
+.profile-page-section-header__cn {
|
|
|
|
|
+ font-size: 16px;
|
|
|
|
|
+ color: var(--color-text-light);
|
|
|
|
|
+ letter-spacing: 2px;
|
|
|
|
|
+}
|
|
|
|
|
+
|
|
|
|
|
+.profile-page-intro {
|
|
|
|
|
+ display: grid;
|
|
|
|
|
+ grid-template-columns: 1fr 1fr;
|
|
|
|
|
+ gap: 72px;
|
|
|
|
|
+ align-items: center;
|
|
|
|
|
+}
|
|
|
|
|
+
|
|
|
|
|
+.profile-page-intro__visual {
|
|
|
|
|
+ display: flex;
|
|
|
|
|
+ align-items: center;
|
|
|
|
|
+ justify-content: center;
|
|
|
|
|
+}
|
|
|
|
|
+
|
|
|
|
|
+.profile-page-intro__img {
|
|
|
|
|
+ width: 100%;
|
|
|
|
|
+ height: auto;
|
|
|
|
|
+ display: block;
|
|
|
|
|
+ object-fit: contain;
|
|
|
|
|
+}
|
|
|
|
|
+
|
|
|
|
|
+.profile-page-intro__text p {
|
|
|
|
|
+ font-size: 15px;
|
|
|
|
|
+ line-height: 2.1;
|
|
|
|
|
+ color: var(--color-text);
|
|
|
|
|
+ text-align: justify;
|
|
|
|
|
+ margin-bottom: 20px;
|
|
|
|
|
+ font-weight: bold;
|
|
|
|
|
+}
|
|
|
|
|
+
|
|
|
|
|
+.profile-page-intro__text p:last-child {
|
|
|
|
|
+ margin-bottom: 0;
|
|
|
|
|
+}
|
|
|
|
|
+
|
|
|
|
|
+.profile-page-vision-quote {
|
|
|
|
|
+ max-width: 920px;
|
|
|
|
|
+ margin: 0 auto 56px;
|
|
|
|
|
+ text-align: center;
|
|
|
|
|
+ font-size: 18px;
|
|
|
|
|
+ font-weight: 700;
|
|
|
|
|
+ line-height: 1.9;
|
|
|
|
|
+ color: var(--color-text);
|
|
|
|
|
+}
|
|
|
|
|
+
|
|
|
|
|
+.profile-page-vision {
|
|
|
|
|
+ display: grid;
|
|
|
|
|
+ grid-template-columns: 1fr 1fr;
|
|
|
|
|
+ align-items: center;
|
|
|
|
|
+}
|
|
|
|
|
+
|
|
|
|
|
+.profile-page-vision__text p {
|
|
|
|
|
+ font-size: 15px;
|
|
|
|
|
+ line-height: 2.1;
|
|
|
|
|
+ color: var(--color-text);
|
|
|
|
|
+ text-align: justify;
|
|
|
|
|
+ font-weight: bold;
|
|
|
|
|
+ color: #000;
|
|
|
|
|
+}
|
|
|
|
|
+
|
|
|
|
|
+.profile-page-vision__visual {
|
|
|
|
|
+ display: flex;
|
|
|
|
|
+ align-items: center;
|
|
|
|
|
+ justify-content: center;
|
|
|
|
|
+}
|
|
|
|
|
+
|
|
|
|
|
+.profile-page-vision__img {
|
|
|
|
|
+ width: 78%;
|
|
|
|
|
+ max-width: 420px;
|
|
|
|
|
+ height: auto;
|
|
|
|
|
+ display: block;
|
|
|
|
|
+ object-fit: contain;
|
|
|
|
|
+}
|
|
|
|
|
+
|
|
|
|
|
+/* ===== 联系我们独立页 ===== */
|
|
|
|
|
+.contact-page-section {
|
|
|
|
|
+ padding: 72px 0 96px;
|
|
|
|
|
+ background: #ffffff;
|
|
|
|
|
+}
|
|
|
|
|
+
|
|
|
|
|
+.contact-page-section-header {
|
|
|
|
|
+ text-align: center;
|
|
|
|
|
+ margin-bottom: 48px;
|
|
|
|
|
+}
|
|
|
|
|
+
|
|
|
|
|
+.contact-page-section-header__en {
|
|
|
|
|
+ font-size: 28px;
|
|
|
|
|
+ font-weight: 700;
|
|
|
|
|
+ letter-spacing: 2px;
|
|
|
|
|
+ color: var(--color-text);
|
|
|
|
|
+ margin-bottom: 12px;
|
|
|
|
|
+}
|
|
|
|
|
+
|
|
|
|
|
+.contact-page-section-header__cn {
|
|
|
|
|
+ font-size: 16px;
|
|
|
|
|
+ color: var(--color-text-light);
|
|
|
|
|
+ letter-spacing: 2px;
|
|
|
|
|
+ margin-bottom: 20px;
|
|
|
|
|
+}
|
|
|
|
|
+
|
|
|
|
|
+.contact-page-section-header__divider {
|
|
|
|
|
+ display: flex;
|
|
|
|
|
+ align-items: center;
|
|
|
|
|
+ justify-content: center;
|
|
|
|
|
+ gap: 0;
|
|
|
|
|
+ width: 100%;
|
|
|
|
|
+ margin: 0 auto;
|
|
|
|
|
+}
|
|
|
|
|
+
|
|
|
|
|
+.contact-page-section-header__divider span {
|
|
|
|
|
+ display: block;
|
|
|
|
|
+ height: 1px;
|
|
|
|
|
+ flex: 1;
|
|
|
|
|
+ background: #e4e6eb;
|
|
|
|
|
+}
|
|
|
|
|
+
|
|
|
|
|
+.contact-page-section-header__divider span.is-accent {
|
|
|
|
|
+ flex: 0 0 140px;
|
|
|
|
|
+ height: 3px;
|
|
|
|
|
+ background: linear-gradient(135deg, #1fb2f9 0%, #1578e5 100%);
|
|
|
|
|
+}
|
|
|
|
|
+
|
|
|
|
|
+.contact-page-body {
|
|
|
|
|
+ max-width: 920px;
|
|
|
|
|
+ margin: 0 auto;
|
|
|
|
|
+}
|
|
|
|
|
+
|
|
|
|
|
+.contact-page-info {
|
|
|
|
|
+ margin-bottom: 48px;
|
|
|
|
|
+}
|
|
|
|
|
+
|
|
|
|
|
+.contact-page-info__label {
|
|
|
|
|
+ font-size: 18px;
|
|
|
|
|
+ font-weight: 600;
|
|
|
|
|
+ color: #1fb2f9;
|
|
|
|
|
+ margin-bottom: 24px;
|
|
|
|
|
+}
|
|
|
|
|
+
|
|
|
|
|
+.contact-page-info__label span {
|
|
|
|
|
+ font-weight: 600;
|
|
|
|
|
+ letter-spacing: 1px;
|
|
|
|
|
+}
|
|
|
|
|
+
|
|
|
|
|
+.contact-page-info__greeting {
|
|
|
|
|
+ font-size: 18px;
|
|
|
|
|
+ font-weight: 700;
|
|
|
|
|
+ color: var(--color-text);
|
|
|
|
|
+ margin-bottom: 16px;
|
|
|
|
|
+}
|
|
|
|
|
+
|
|
|
|
|
+.contact-page-info__intro {
|
|
|
|
|
+ font-size: 14px;
|
|
|
|
|
+ line-height: 2;
|
|
|
|
|
+ color: var(--color-text-light);
|
|
|
|
|
+ text-align: justify;
|
|
|
|
|
+ margin-bottom: 32px;
|
|
|
|
|
+}
|
|
|
|
|
+
|
|
|
|
|
+.contact-page-info__block {
|
|
|
|
|
+ margin-bottom: 28px;
|
|
|
|
|
+}
|
|
|
|
|
+
|
|
|
|
|
+.contact-page-info__block:last-child {
|
|
|
|
|
+ margin-bottom: 0;
|
|
|
|
|
+}
|
|
|
|
|
+
|
|
|
|
|
+.contact-page-info__block h4 {
|
|
|
|
|
+ font-size: 16px;
|
|
|
|
|
+ font-weight: 700;
|
|
|
|
|
+ color: var(--color-text);
|
|
|
|
|
+ margin-bottom: 10px;
|
|
|
|
|
+}
|
|
|
|
|
+
|
|
|
|
|
+.contact-page-info__block p {
|
|
|
|
|
+ font-size: 14px;
|
|
|
|
|
+ line-height: 1.9;
|
|
|
|
|
+ color: var(--color-text-light);
|
|
|
|
|
+}
|
|
|
|
|
+
|
|
|
|
|
+.contact-page-map {
|
|
|
|
|
+ width: 100%;
|
|
|
|
|
+ height: auto;
|
|
|
|
|
+ display: block;
|
|
|
|
|
+ border: 1px solid #e4e6eb;
|
|
|
|
|
+}
|