This commit is contained in:
zhangjianjun 2026-04-14 14:01:30 +08:00
parent 62950923a3
commit 569f6bf15d
11 changed files with 41 additions and 15 deletions

View File

@ -89,6 +89,10 @@ ul, li {
.header-row { .header-row {
padding: 0 1rem; padding: 0 1rem;
} }
#root {
width: 100vw;
overflow: hidden;
}
} }
body { body {
@ -122,8 +126,8 @@ body {
font-weight: 400; font-weight: 400;
font-size: 1.125rem; font-size: 1.125rem;
color: #222222; color: #222222;
line-height: 34px; line-height: 2.125rem;
margin-bottom: 20px; margin-bottom: 1.25rem;
} }
/* hover缩放 */ /* hover缩放 */

View File

@ -41,9 +41,9 @@
} }
.honorGridsItemLargeTitle { .honorGridsItemLargeTitle {
font-weight: 600; font-weight: 600;
font-size: 30px; font-size: 1.875rem;
color: #222222; color: #222222;
line-height: 40px; line-height: 2.5rem;
font-family: Source Han Sans, Source Han Sans; font-family: Source Han Sans, Source Han Sans;
} }
@ -53,9 +53,9 @@
.honorGridsItemLargeTitleContent { .honorGridsItemLargeTitleContent {
font-weight: 400; font-weight: 400;
font-size: 16px; font-size: 1rem;
color: #222222; color: #222222;
line-height: 22px; line-height: 1.375rem;
} }
.honorGridsItemBgleft, .honorGridsItemBgleft,
@ -78,3 +78,9 @@
} }
} }
} }
@media (max-width: 768px) {
.honorGridsItems {
width: 100% !important;
}
}

View File

@ -114,7 +114,7 @@
.contentItemContent { .contentItemContent {
font-size: 1rem; font-size: 1rem;
/* margin-top: 2.5rem; */ /* margin-top: 2.5rem; */
line-height: 34px; line-height: 2.125rem;
} }
.contentItemLinks { .contentItemLinks {

View File

@ -265,6 +265,7 @@
@media (max-width: 30rem) { @media (max-width: 30rem) {
.topTabsSection { .topTabsSection {
padding: 3rem 1.25rem 4rem 1.25rem; padding: 3rem 1.25rem 4rem 1.25rem;
height: auto;
} }
.topTabsTabsScroll { .topTabsTabsScroll {
@ -281,6 +282,10 @@
line-height: 2.25rem; line-height: 2.25rem;
} }
.topTabsContentLeft {
width: 100%;
}
.topTabsContentItems { .topTabsContentItems {
grid-template-columns: 1fr; grid-template-columns: 1fr;
} }

View File

@ -40,7 +40,7 @@ html {
} }
svg { svg {
transform: scale(0.5); /* transform: scale(0.5); */
} }
} }

View File

@ -389,6 +389,7 @@
list-style: none; list-style: none;
margin: 0; margin: 0;
padding: 1.5rem 1.25rem; padding: 1.5rem 1.25rem;
margin-top: 3rem;
} }
.mobileNavItem { .mobileNavItem {
@ -461,6 +462,7 @@
@media (max-width: 48rem) { @media (max-width: 48rem) {
.header { .header {
height: 8rem; height: 8rem;
width: 100vw;
} }
.headerInner::after { .headerInner::after {

View File

@ -3,9 +3,9 @@
.businessFeatureContent { .businessFeatureContent {
color: #fff; color: #fff;
font-weight: 400; font-weight: 400;
font-size: 18px; font-size: 1.125rem;
color: #FFFFFF; color: #FFFFFF;
line-height: 34px; line-height: 2.125rem;
text-align: justify; text-align: justify;
font-style: normal; font-style: normal;
text-transform: none; text-transform: none;

View File

@ -257,4 +257,8 @@
align-items: flex-start; align-items: flex-start;
gap: 0.5rem; gap: 0.5rem;
} }
svg {
transform: scale(0.5);
}
} }

View File

@ -21,8 +21,8 @@ export default function PrivacyPolicy() {
<Section background="" maskBackground="#fff"> <Section background="" maskBackground="#fff">
<p className="w-72-inner" <p className="w-72-inner"
style={{ style={{
fontSize: "18px", fontSize: "1.125rem",
lineHeight: "34px", lineHeight: "2.125rem",
color: "#333333", color: "#333333",
}} }}
dangerouslySetInnerHTML={{ __html: content }} dangerouslySetInnerHTML={{ __html: content }}

View File

@ -3,6 +3,7 @@
height: calc(100vh - 50px); height: calc(100vh - 50px);
} }
.topTabsSectionP { .topTabsSectionP {
padding-bottom: 0 !important; padding-bottom: 0 !important;
} }
@ -108,12 +109,16 @@
@media (max-width: 30rem) { @media (max-width: 30rem) {
.informationPublicDataItems { .informationPublicDataItems {
padding: 0 1.25rem 3rem; padding: 0 1.25rem 3rem;
grid-template-columns: 1fr; grid-template-columns: repeat(2, 1fr);
font-size: 1.125rem; font-size: 1.125rem;
line-height: 1.75rem; line-height: 1.75rem;
} }
.partnerItems { .partnerItems {
grid-template-columns: 1fr; grid-template-columns: repeat(3, 1fr);
}
.topTabsSection {
height:auto;
} }
} }

View File

@ -119,7 +119,7 @@ export default function Foundation() {
)) ))
.map((item: any, index: number) => ( .map((item: any, index: number) => (
<div key={index} className={styles.informationPublicDataItem}> <div key={index} className={styles.informationPublicDataItem}>
<li onClick={() => window.open(item.path, '_blank')}> <li onClick={() => item.path.includes("/upload") && window.open(item.path, '_blank')}>
<span>{item.name}</span> <span>{item.name}</span>
</li> </li>
</div> </div>