/* 全局重置 */
* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

body {
    /* font-family: "Microsoft YaHei", "Heiti SC", sans-serif; */
    color: #333;
    overflow-x: hidden;
    /* background: url("/{ms:global.style/}ui/zu_01_2x.png") no-repeat top center; */
    /* background-size: 100% auto; */
    font-family: 'Source Han Serif CN', serif;
}

/* 颜色变量 */
:root {
    --primary: #1bbab8;
    /* 青绿色 */
    --primary-teal: #1bbab8;
    --text-dark: #333;
    --text-gray: #666;
    --gold: #956B39;
}

/* 通用 Flex 类 */
.flex-row {
    display: flex;
    flex-direction: column;
}

.flex-col {
    display: flex;
    flex-direction: column;
}

.flex-center {
    display: flex;
    justify-content: center;
    align-items: center;
}

.flex-between {
    display: flex;
    justify-content: space-between;
    align-items: center;
}

.flex-start {
    display: flex;
    justify-content: flex-start;
    align-items: center;
}

/* 通用标题样式 */
.section-title {
    margin: 0 auto;
    margin-top: calc(50 / 1920 * 100vw);
    margin-bottom: calc(50 / 1920 * 100vw);

    width: calc(354 / 1920 * 100vw);
    height: calc(51 / 1920 * 100vw);
    font-family: 'Source Han Serif CN', serif;
    font-weight: 800;
    font-size: calc(52 / 1920 * 100vw);
    color: #000000;
    line-height: calc(56 / 1920 * 100vw);
    text-align: center;
    font-style: normal;
    text-transform: none;
}

.section-title span {
    color: var(--primary);
}

/* ---------------- HEADER ---------------- */
header {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: calc(15/1920*100vw) 3vw;
    border-bottom: 1px solid #eee;
    background: #fff;
    width: 100%;
    height: calc(100/1920*100vw);
}

.header-actions {
    display: flex;
    align-items: center;
    gap: 20px;
}

.search-container {
    position: relative;
}

.search-container input {
    padding: calc(8/1920*100vw) calc(10/1920*100vw);
    padding-right: calc(35/1920*100vw);
    border-radius: calc(20/1920*100vw);
    border: 1px solid #ddd;
    font-size: 14px;
    width: calc(135/1920*100vw);
    outline: none;
    transition: border-color 0.3s;
}

.search-container input:focus {
    border-color: var(--primary-teal);
}

.search-icon {
    position: absolute;
    right: 12px;
    top: 57%;
    transform: translateY(-50%);
    color: #999;
    cursor: pointer;
}

nav ul {
    display: flex;
    list-style: none;
    gap: calc(14/1920*100vw);
    align-items: center;
    font-size: 14px;
    flex-wrap: nowrap;
}

nav li {
    display: flex;
    align-items: center;
}

nav a {
    text-decoration: none;
    color: var(--text-dark);
    font-weight: 500;
    display: block;
}

nav a.menu-item-box {
    width: 100px;
    height: 40px;
    border-radius: 20px;
    text-align: center;
    line-height: 40px;
    color: var(--text-dark);
    text-decoration: none;
    font-weight: 800;
}

nav a.active {
    background-color: var(--primary-teal);
    color: white;
    border-radius: 20px;
    text-align: center;
}

/* --- Dropdown Menu Styles --- */
nav li {
    position: relative;
}

.dropdown-menu {
    display: none;
    position: absolute;
    top: 100%;
    left: 50%;
    transform: translateX(-50%);
    background-color: #fff;
    box-shadow: 0 4px 10px rgba(0, 0, 0, 0.1);
    border-radius: 4px;
    padding: 5px 0;
    z-index: 1000;
    min-width: 120px;
}

.dropdown-menu a {
    display: block;
    padding: 8px 15px;
    color: #333;
    text-decoration: none;
    text-align: center;
    white-space: nowrap;
    width: 100%;
    font-weight: 400;
    height: auto;
    line-height: normal;
}

.dropdown-menu a:hover {
    background-color: #f5f5f5;
    color: var(--primary-teal);
}

.dropdown-menu.show {
    display: block;
}

.logo-area {
    display: flex;
    align-items: center;
    gap: 15px;
    padding-left: 5.4vw;
    flex-shrink: 0;
}

.logo-area img {
    height: calc(68/1920*100vw);
    width: calc(362/1920*100vw);
}

.fake-logo {
    font-weight: bold;
    font-size: 18px;
    display: flex;
    align-items: center;
    gap: 10px;
}

/* ---------------- BANNER ---------------- */
.banner {
    width: 100%;
    height: calc(500 / 1920 * 100vw);
    background-size: 100%;
    position: relative;
    color: white;
}

.banner-text {
    position: absolute;
    left: calc(165 / 1920 * 100vw);
    top: 40%;

    /*width: calc(516 / 1920 * 100vw);*/
    height: calc(29 / 1920 * 100vw);
    font-family: 'Source Han Serif CN', serif;
    font-weight: 800;
    font-size: calc(36 / 1920 * 100vw);
    color: #FFFFFF;
    line-height: calc(46 / 1920 * 100vw);
    text-align: left;
    font-style: normal;
    text-transform: none;
}

.banner h1 {
    font-size: calc(48 / 1920 * 100vw);
    border-left: calc(5 / 1920 * 100vw) solid white;
    padding-left: calc(20 / 1920 * 100vw);
    line-height: 1.2;
    text-transform: uppercase;
}

/* ---------------- SECTION 1: ENTERPRISE INTRO ---------------- */
.intro-section {
    width: calc(1400 / 1920 * 100vw);
    margin: 0 auto;
    /* padding: calc(50 / 1920 * 100vw) 0; */
    gap: calc(40 / 1920 * 100vw);
    /*align-items: flex-start;*/

    position: relative;
}

.intro-text-box {
    flex: 1;
    /*padding-top: calc(40 / 1920 * 100vw);*/

    width: calc(619 / 1920 * 100vw);
    height: calc(300 / 1920 * 100vw);
    font-family: 'Source Han Serif CN', serif;
    font-weight: bold;
    font-size: calc(20 / 1920 * 100vw);
    color: #78552B;
    text-align: justify;
    font-style: normal;
    text-transform: none;
    line-height: calc(35 / 1920 * 100vw);
    letter-spacing: calc(3/1920*100vw);
}

.intro-section-botton {
    width: calc(1399 / 1920 * 100vw);
    height: calc(125 / 1920 * 100vw);
    background: #00A9A5;
    /*width: 559px;*/
    /*height: 91px;*/
    font-family: 'Source Han Serif CN', serif;
    font-weight: bold;
    font-size: calc(20 / 1920 * 100vw);
    color: #FFFFFF;
    text-align: left;
    font-style: normal;
    text-transform: none;

    display: flex;
    align-items: center;
    justify-content: start;

    position: absolute;
    left: 0;
    bottom: calc(-34/1920*100vw);
    z-index: 4;
}

.intro-section-text {
    /*width: calc(619 / 1920 * 100vw);*/
    display: flex;
    justify-content: start;
    padding: 0 calc(20/1920* 100vw);
    flex-direction: column;
    align-items: start;
    gap: calc(4/1920*100vw);

    height: calc(91 / 1920 * 100vw);
    font-weight: bold;
    font-size: calc(20 / 1920 * 100vw);
    color: #FFFFFF;
    text-align: left;
    font-style: normal;
    text-transform: none;
    letter-spacing: calc(5/1920*100vw);
}

.intro-text-box p {
    font-size: calc(16 / 1920 * 100vw);
    line-height: 1.8;
    color: #666;
    margin-bottom: calc(20 / 1920 * 100vw);
    text-align: justify;
}

.intro-btn {
    display: inline-block;
    background-color: var(--primary);
    color: white;
    padding: calc(10 / 1920 * 100vw) calc(30 / 1920 * 100vw);
    border-radius: 20px;
    text-decoration: none;
    font-size: calc(16 / 1920 * 100vw);
    margin-top: calc(20 / 1920 * 100vw);
}

.intro-img-box {
    flex: 1.2;
}

.intro-img-box img {
    width: calc(664 / 1920 * 100vw);
    /*border-radius: 10px;*/
    height: calc(406 / 1920 * 100vw);
}

/* ---------------- SECTION 2: FOUNDER ---------------- */
.founder-section {
    background-color: var(--primary);
    width: calc(720 / 1920 * 100vw);
    height: calc(519 / 1920 * 100vw);
    color: white;
    position: relative;
    transform: translateX(calc(70 / 1920 * 100vw)) translateY(calc(12 / 1920 * 100vw));

    /*overflow: hidden;*/
    /*margin-top: calc(60 / 1920 * 100vw);*/
}

.founder-section-box {
    display: flex;
    align-items: center;
    justify-content: space-between;
    width: calc(1402/1920*100vw);
    height: calc(712/1920*100vw);
    padding: calc(70/1920*100vw) calc(50/1920*100vw);
    /*background: #FFFFFF;*/
    border: 1px solid #E0C99C;
    margin: 0 auto;
}

.founder-section-right {
    display: flex;
    justify-content: space-between;
    align-items: center;
    flex-direction: column;
    gap: calc(12/1920*100vw);
}

.fmr-section {
    width: calc(601 / 1920 * 100vw);
    height: calc(366 / 1920 * 100vw);
}

.founder-container {
    width: calc(1400 / 1920 * 100vw);
    margin: 0 auto;
    height: 100%;
    display: flex;
    align-items: center;
}

.founder-img {
    width: calc(500 / 1920 * 100vw);
    height: 100%;
    object-fit: cover;
    /* Placeholder for founder image */
    background-color: #ccc;
}

.founder-container-img {
    width: calc(359 / 1920 * 100vw);
    height: calc(538 / 1920 * 100vw);
    /*margin-top: calc(-80/1920*100vw);*/
    /*margin-left: calc(-80/1920*100vw);*/
    transform: translateX(-57px) translateY(-29px);
}

.founder-container-img-2 {
    width: calc(601 / 1920 * 100vw);
    height: calc(366 / 1920 * 100vw);
}

.founder-info {
    flex: 1;
    padding-left: calc(60 / 1920 * 100vw);
    /*border: 1px solid red;*/
}

.founder-info h2 {
    font-size: calc(40 / 1920 * 100vw);
    margin-bottom: calc(20 / 1920 * 100vw);
    font-family: serif;
}

.founder-info p {
    font-size: calc(16 / 1920 * 100vw);
    line-height: 2;
    opacity: 0.9;
    margin-bottom: calc(20 / 1920 * 100vw);
}

.founder-quote {
    font-size: calc(24 / 1920 * 100vw);
    font-family: serif;
    font-weight: bold;
    writing-mode: vertical-rl;
    position: absolute;
    right: calc(100 / 1920 * 100vw);
    top: 50%;
    transform: translateY(-50%);
    letter-spacing: calc(10 / 1920 * 100vw);
    height: 60%;
}

/* ---------------- SECTION 3: INVENTOR ---------------- */
.inventor-section {
    width: calc(1200 / 1920 * 100vw);
    margin: calc(80 / 1920 * 100vw) auto;
}

.inventor-container {
    display: flex;
    align-items: center;
    gap: calc(40 / 1920 * 100vw);
}

.inventor-img {
    width: calc(600 / 1920 * 100vw);
    height: calc(400 / 1920 * 100vw);
    background-color: #eee;
    object-fit: cover;
}

.inventor-info {
    flex: 1;
}

.inventor-info h3 {
    font-size: calc(30 / 1920 * 100vw);
    color: var(--primary);
    margin-bottom: calc(20 / 1920 * 100vw);
}

.inventor-info p {
    font-size: calc(16 / 1920 * 100vw);
    line-height: 1.8;
    color: #666;
    margin-bottom: calc(20 / 1920 * 100vw);
}

/* ---------------- SECTION 4: TECH INNOVATION ---------------- */
.tech-section {
    width: 100%;
    height: calc(984 / 1920 * 100vw);
    position: relative;
    background-color: #eee;
    overflow: hidden;
    margin-bottom: calc(50 / 1920 * 100vw);
}

.tech-bg {
    width: 100%;
    height: 100%;
    object-fit: cover;
}

.tech-overlay {
    position: absolute;
    bottom: 0;
    left: 0;
    width: calc(1223 / 1920 * 100vw);
    height: calc(574 / 1920 * 100vw);
    /*background: linear-gradient(to right, rgba(27, 186, 184, 0.9) 30%, transparent);*/
    background: rgba(27, 186, 184, 0.9);
    padding-left: calc(260 / 1920 * 100vw);
    display: flex;
    flex-direction: column;
    justify-content: center;

    font-family: 'Source Han Serif CN', serif;
    font-weight: 800;
    font-size: calc(36 / 1920 * 100vw);
    color: #FFFFFF;
    line-height: calc(56 / 1920 * 100vw);
    text-align: left;
    font-style: normal;
    text-transform: none;
    padding-right: calc(30 / 1920 * 100vw);
    padding-top: calc(90/1920*100vw);
}

.tech-overlay h3 {
    font-size: calc(36 / 1920 * 100vw);
    margin-bottom: calc(30 / 1920 * 100vw);
}

.tech-overlay p {
    font-size: calc(16 / 1920 * 100vw);
    line-height: 2;
    max-width: calc(500 / 1920 * 100vw);
}

.cert-items-text {
    /*width: calc(318 / 1920 * 100vw);*/
    /*height: calc(38 / 1920 * 100vw);*/
    font-family: 'Source Han Serif CN', serif;
    font-weight: 500;
    font-size: calc(14 / 1920 * 100vw);
    color: #78552B;
    line-height: calc(24 / 1920 * 100vw);
    text-align: center;
    font-style: normal;
    text-transform: none;
    /*padding: calc(10/1920*100vw) 0;*/
    padding: calc(6 / 1920 * 100vw);
}

.cert-item-text {
    width: calc(318 / 1920 * 100vw);
    height: calc(38 / 1920 * 100vw);
    font-family: 'Source Han Serif CN', serif;
    font-weight: 500;
    font-size: calc(14 / 1920 * 100vw);
    color: #78552B;
    line-height: calc(24 / 1920 * 100vw);
    text-align: center;
    font-style: normal;
    text-transform: none;
    padding: calc(10/1920*100vw) 0;
}

/* ---------------- SECTION 5 & 6: CERTIFICATES ---------------- */
.cert-section {
    width: calc(1450 / 1920 * 100vw);
    margin: 0 auto;
    padding-bottom: calc(80 / 1920 * 100vw);
}

.cert-grid {
    display: flex;
    justify-content: center;
    gap: calc(100 / 1920 * 100vw);
    flex-wrap: wrap;
}

.cert-item {
    width: calc(333 / 1920 * 100vw);
    height: calc(550 / 1920 * 100vw);
    text-align: center;
    background: #FFFFFF;
    border: 1px solid #E0C99C;
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: space-between;
}

.cert-text {
    width: calc(1126 / 1920 * 100vw);
    height: calc(25 / 1920 * 100vw);
    font-family: 'Source Han Serif CN', serif;
    font-weight: bold;
    font-size: calc(22 / 1920 * 100vw);
    color: #78552B;
    line-height: calc(36 / 1920 * 100vw);
    text-align: left;
    font-style: normal;
    text-transform: none;
    margin: calc(30/1920*100vw) auto;
    transform: translateX(calc(30/1920*100vw));
    margin-top: 35px;
    margin-bottom: -10px;
}

.cert-grid-imag {
    width: calc(329/1920*100vw);
    height: calc(466/1920*100vw);
    box-shadow: 0 5px 15px rgba(0, 0, 0, 0.1);
    margin-bottom: calc(0 / 1920 * 100vw);
    border: 5px solid #fff;
}

.cert-img {
    width: calc(219/1920*100vw);
    /* height: calc(136/1920*100vw) ; */
    /* box-shadow: 0 5px 15px rgba(0, 0, 0, 0.1); */
    margin-bottom: calc(0 / 1920 * 100vw);
    /* border: 5px solid #fff; */
    transition: all 0.5s ease-in-out;
    object-fit: contain;
}



.cert-gallery-wrapper {
    width: calc(1250 / 1920 * 100vw);
    /* 约等于 3个item + 2个gap */
    overflow: hidden;
    margin-right: calc(20/1920*100vw);
}

.cert-gallery {
    display: flex;
    justify-content: flex-start;
    /* 覆盖原来的 center */
    flex-wrap: nowrap;
    /* 覆盖原来的 wrap */
    gap: calc(100 / 1920 * 100vw);
    /* 保持原来的间距 */
    width: 100%;
    padding: calc(50 / 1920 * 100vw) 0;
}

.cert-item {
    flex-shrink: 0;
    /* 防止压缩 */
    transition: all 0.5s ease;
    transform-origin: center center;
}

/* 激活状态（中间放大） */
.cert-item.active {
    transform: scale(1.15);
    z-index: 10;
    box-shadow: 0 15px 40px rgba(0, 0, 0, 0.15);
    border-color: var(--primary);
    background-color: #fff;
}

.arrow-btn {
    font-size: 40px;
    color: var(--primary);
    cursor: pointer;
}

.honor-gallery {
    display: flex;
    gap: calc(30/1920*100vw);
    width: max-content;
    /* 关键：让容器宽度根据内容自适应，确保不被压缩 */
    transition: transform 0.5s ease-in-out;
}

.honor-gallery .img-box {
    flex-shrink: 0;
}

.honor-prev,
.honor-next {
    z-index: 100;
    /* 确保箭头可点击 */
    position: relative;
}

/* ---------------- SECTION 7: VISION ---------------- */
.vision-section {
    width: 100%;
    padding: calc(60 / 1920 * 100vw) 0;
    text-align: center;
    /*border: 1px solid red;*/
    display: flex;
    align-items: center;
    justify-content: center;
}

.vision-text-box {
    width: calc(530 / 1920 * 100vw);
    height: calc(476 / 1920 * 100vw);
    background: rgba(48, 177, 174, 0.89);

    /*width: 251px;*/
    /*height: 322px;*/
    font-family: 'Source Han Serif CN', serif;
    font-weight: 800;
    font-size: calc(22 / 1920 * 100vw);
    color: #FFFFFF;
    line-height: calc(60 / 1920 * 100vw);
    text-align: left;
    font-style: normal;
    text-transform: none;
    padding: calc(80 / 1920 * 100vw);
    display: flex;
    flex-direction: column;
    align-items: start;
    justify-content: center;
    margin-right: calc(-100/1920*100vw);
    z-index: 100;
}

.vision-overlay {
    position: absolute;
    left: 0;
    bottom: calc(40 / 1920 * 100vw);
    background: rgba(27, 186, 184, 0.9);
    padding: calc(30 / 1920 * 100vw);
    color: white;
    text-align: left;
    width: calc(400 / 1920 * 100vw);
}

/* ---------------- FOOTER ---------------- */
/* ---------------- FOOTER ---------------- */
footer {
    padding: 40px 0 20px;
    width: 100%;
}

.footer-content {
    width: 90%;
    max-width: 1400px;
    margin: 0 auto;
    padding: 0;
}

.footer-top {
    display: flex;
    justify-content: space-between;
    align-items: flex-start;
    padding-bottom: 30px;
    border-bottom: 1px solid #f0f0f0;
    gap: 40px;
}

.footer-left {
    display: flex;
    flex-direction: column;
    gap: 15px;
    width: calc(694 / 1920 * 100vw);
    
}

.footer-logos {
    display: flex;
    align-items: center;
    flex-wrap: wrap;
}

.footer-logos img {
    max-width: 100%;
    height: auto;
    max-height: 68px;
}

.footer-links {
    height: auto;
    font-family: 'Source Han Serif CN', serif;
    font-weight: 800;
    font-size: 20px;
    color: #85663F;
    letter-spacing: 1px;
    text-align: left;
    font-style: normal;
    text-transform: none;
    display: flex;
    flex-wrap: wrap;
    gap: 5px;
}

.footer-contact {
    display: flex;
    flex-direction: column;
    gap: 10px;
    font-size: 14px;
    color: #78552B;
    font-weight: bold;
    font-family: Source Han Serif CN, serif;
}

.contact-item {
    display: flex;
    align-items: center;
    gap: 10px;
    height: auto;
    font-family: 'Source Han Serif CN', serif;
    font-weight: 800;
    font-size: 16px;
    color: #85663F;
    letter-spacing: 1px;
    text-align: left;
    font-style: normal;
    text-transform: none;
}

.contact-item img.icon {
    width: 25px;
    height: 24px;
    object-fit: contain;
    flex-shrink: 0;
}

.footer-right {
    display: flex;
    gap: 20px;

}

.qr-item {
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 8px;
}

.qr-item img {
    width: 80px;
    height: 80px;
    border: 1px dashed #ccc;
    padding: 2px;
}

.qr-item span {
    font-family: NotoSansHans, NotoSansHans;
    font-weight: bold;
    font-size: calc(20/1920*100vw);
    color: #6D6D6D;
    line-height: calc(46/1920*100vw);
    text-align: left;
    font-style: normal;
    text-transform: none;
}

.footer-bottom {
    padding-top: 20px;
    display: flex;
    justify-content: center;
    align-items: center;
    flex-wrap: wrap;
    gap: 10px;
    height: auto;
    font-family: 'Source Han Serif CN', serif;
    font-weight: 800;
    font-size: 16px;
    color: #956B39;
    letter-spacing: 1px;
    text-align: center;
    font-style: normal;
    text-transform: none;
    line-height: 1.5;
}

.police-icon {
    width: 20px;
    height: 20px;
    margin-right: 5px;
    vertical-align: middle;
}

/* ---------------- FMR SECTION: INVENTOR (ZHOU RAN) ---------------- */
.fmr-container {
    width: calc(1400 / 1920 * 100vw);
    margin: 0 auto;
    display: flex;
    justify-content: space-between;
    align-items: flex-start;
    padding-bottom: calc(80 / 1920 * 100vw);
    gap: calc(80 / 1920 * 100vw);
    /* Increased gap for better spacing */
}

.fmr-left {
    flex: 0 0 calc(600 / 1920 * 100vw);
    position: relative;
}

.fmr-img-wrapper {
    position: relative;
    width: 100%;
}

.fmr-person-img {
    width: calc(601/1920*100vw);
    height: calc(366/1920*100vw);
    display: block;
    border-radius: 4px;
    /* Slight rounding if needed, optional */
}

.fmr-info-card {
    position: absolute;
    bottom: calc(30 / 1920 * 100vw);
    left: 0;
    width: calc(644 / 1920 * 100vw);
    /* Full width of image container */
    background-color: var(--primary-teal);
    padding: calc(30 / 1920 * 100vw);
    color: white;
    box-shadow: 0 10px 20px rgba(0, 0, 0, 0.1);
    transform: translateY(20%);
    /* Push it down a bit to overlap bottom edge like in some designs, or keep inside */
    /* User image shows it AT existing bottom, maybe sticking out slightly? 
       Actually in the image, the card is at the bottom of the photo area. 
       Let's keep it overlapping the bottom edge slightly for dynamic look or just overlay.
       Current implementation: overlay bottom part of image.
    */
    transform: translateY(0);
    bottom: calc(-140/1920*100vw);
    background: rgba(27, 186, 184, 0.95);
    /* Slightly transparent teal */
}

.fmr-name-row {
    display: flex;
    align-items: baseline;
    gap: calc(15 / 1920 * 100vw);
    margin-bottom: calc(15 / 1920 * 100vw);
    /*border-bottom: 1px solid rgba(255, 255, 255, 0.3);*/
    padding-bottom: calc(10 / 1920 * 100vw);
    width: fit-content;
}

.fmr-name {
    font-weight: 800;
    font-size: calc(34 / 1920 * 100vw);
    color: #FFFFFF;
    line-height: calc(56 / 1920 * 100vw);
    text-align: left;
    font-style: normal;
    text-transform: none;
}

.ooo {
    margin-right: calc(140 / 1920 * 100vw);
    transform: translateY(calc(-71 / 1920 * 100vw));
}

.fmr-role {
    font-weight: bold;
    font-size: calc(22 / 1920 * 100vw);
    color: #FFFFFF;
    line-height: calc(36 / 1920 * 100vw);
    text-align: left;
    font-style: normal;
    text-transform: none;
}

.fmr-desc {
    font-size: calc(16 / 1920 * 100vw);
    line-height: 1.6;
    text-align: justify;
    letter-spacing: calc(2/1920*100vw);
}

.fmr-right {
    flex: 1;
    height: calc(511 / 1920* 100vw);
    /* padding-top: calc(10 / 1920* 100vw); */
    transform: translateY(calc(4 / 1920* 100vw));
    display: flex;
    flex-direction: column;
    justify-content: space-between;
}

/*.fmr-right-item {*/
/*    margin-bottom: calc(40 / 1920 * 100vw);*/
/*}*/

.fmr-subtitle {
    font-size: calc(30 / 1920 * 100vw);
    color: #78552B;
    /* Dark Brown */
    font-weight: bold;
    display: flex;
    align-items: center;
    gap: calc(15 / 1920 * 100vw);
    margin-bottom: calc(25 / 1920 * 100vw);

    /*width: 119px;*/
    /*height: 29px;*/
    font-family: 'Source Han Serif CN', serif;
    line-height: calc(36 / 1920 * 100vw);
    text-align: left;
    font-style: normal;
    text-transform: none;
}

.fmr-subtitle img {
    width: calc(36 / 1920 * 100vw);
    height: auto;
}

.fmr-text {
    font-size: calc(20 / 1920 * 100vw);
    color: #78552B;

    width: calc(530/1920*100vw);
    text-align: justify;
    height: auto;
    font-family: 'Source Han Serif CN', serif;
    font-weight: bold;
    line-height: calc(36 / 1920 * 100vw);
    text-align: justify;
    font-style: normal;
    text-transform: none;
    letter-spacing: calc(2.5 / 1920 * 100vw);
}

/*.fmr-sub-item {*/
/*    margin-top: calc(30 / 1920 * 100vw);*/
/*}*/

.fmr-product-title {
    font-size: calc(22 / 1920 * 100vw);
    font-weight: bold;
    color: #956B39;
    /* Gold */
    /*margin-bottom: calc(10 / 1920 * 100vw);*/
    font-family: 'Source Han Serif CN', serif;
}

/* ---------------- HONOR SECTION (NEW) ---------------- */
.honor-section {
    /*background: linear-gradient(180deg, #1cbdbb 0%, #158b89 100%);*/
    
    background-size: 100%;
    padding: calc(50 / 1920 * 100vw) 0 calc(50 / 1920 * 100vw);
    overflow: hidden;
    position: relative;
    width: 100vw;
    height: calc(726/1920*100vw);
    display: flex;
    flex-direction: column;
    justify-content: space-between;
    align-items: center;
}

.honor-section::before {
    content: "";
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: repeating-linear-gradient(90deg,
            transparent,
            transparent calc(40 / 1920 * 100vw),
            rgba(255, 255, 255, 0.05) calc(41 / 1920 * 100vw),
            transparent calc(42 / 1920 * 100vw));
    pointer-events: none;
    z-index: 0;
}

.honor-gallery-wrapper {
    width: calc(1400 / 1920 * 100vw);
    overflow: hidden;
    margin: 0 auto;
    padding-top: calc(120 / 1920 * 100vw);
    padding-bottom: calc(120 / 1920 * 100vw);
    margin-top: calc(-120 / 1920 * 100vw);
    margin-bottom: calc(-120 / 1920 * 100vw);
    pointer-events: none;
}

.img-box {
    pointer-events: auto;
}

.honor-gallery {
    display: flex;
    gap: calc(30/1920*100vw);
    width: max-content;
    transition: transform 0.5s ease-in-out;
}

.honor-prev,
.honor-next {
    z-index: 100;
    position: relative;
    cursor: pointer;
    width: calc(49/1920*100vw);
    height: calc(91/1920*100vw);
    display: flex;
    align-items: center;
    justify-content: center;
}

.honor-txt {
    /* height: calc(16/1920*100vw); */
    min-height: calc(16/1920*100vw);
    width: 122%;
    font-family: 'Source Han Serif CN', serif;
    font-weight: 500;
    font-size: calc(16/1920*100vw);
    color: #FFFFFF;
    line-height: calc(24/1920*100vw);
    text-align: center;
    font-style: normal;
    text-transform: none;
    margin-bottom: calc(20/1920*100vw);
    transition: all 0.5s ease-in-out;
}



.img-box.special {
    padding-top: calc(3/1920*100vw);
}

.img-box .cert-img {
    height: calc(420/1920*100vw);
    width: auto;
    max-width: 96%;
    object-fit: contain;
}

.img-box.special .cert-img {
    height: calc(440/1920*100vw);
    max-width: 100%;
    margin-bottom: calc(3/1920*100vw);
}

.img-box {
    width: calc(314 / 1920 * 100vw);
    height: calc(480 / 1920 * 100vw);
    background: rgba(255, 255, 255, 0.47);
    border: 1px solid #E0C99C;

    display: flex;
    flex-direction: column;
    justify-content: space-between;
    align-items: center;
    transition: all 0.5s ease-in-out;
    cursor: pointer;
}

.img-box:hover {
    /*transform: scale(1.5);*/
    z-index: 10;
}

/* 针对可见区域的第一张（左侧）和第四张（右侧）调整放大基点，防止溢出遮挡 */
/* 
.honor-gallery .img-box:nth-child(1):hover {
    transform-origin: left center;
}

.honor-gallery .img-box:nth-child(4):hover {
    transform-origin: right center;
} 
*/

.honor-card {
    position: absolute;
    transition: all 0.5s ease;
    text-align: center;
    top: 50%;
    transform: translateY(-50%);
}

.card-inner {
    background: #fff;
    padding: calc(10 / 1920 * 100vw);
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.3);
    border: 1px solid #ccc;
}

.honor-card img {
    display: block;
    width: 100%;
    height: auto;
    object-fit: cover;
}

/* Center Card */
.honor-card.center {
    z-index: 10;
    width: calc(380 / 1920 * 100vw);
    /* Center is largest */
    left: 50%;
    transform: translate(-50%, -50%);
}

.honor-card.center .card-inner {
    border: 4px solid #FAD188;
    /* Gold border for center */
    padding: calc(5 / 1920 * 100vw);
    background: #fff;
}

/* Side Cards */
.honor-card.left-1 {
    z-index: 5;
    width: calc(300 / 1920 * 100vw);
    left: 25%;
    transform: translate(-50%, -50%) scale(0.9);
    opacity: 0.9;
}

.honor-card.left-2 {
    z-index: 1;
    width: calc(260 / 1920 * 100vw);
    left: 8%;
    transform: translate(-50%, -50%) scale(0.8);
    opacity: 0.7;
}

.honor-card.right-1 {
    z-index: 5;
    width: calc(300 / 1920 * 100vw);
    left: 75%;
    transform: translate(-50%, -50%) scale(0.9);
    opacity: 0.9;
}

/* Text Labels */
.card-label,
.card-label-large {
    position: absolute;
    width: 150%;
    left: -25%;
    /* Center text relative to card width */
    bottom: calc(-60 / 1920 * 100vw);
    text-align: center;
    color: rgba(255, 255, 255, 0.8);
    font-family: 'Source Han Serif CN', serif;
    font-weight: 500;
}

.card-label {
    font-size: calc(18 / 1920 * 100vw);
}

.card-label-large {
    font-size: calc(22 / 1920 * 100vw);
    color: #fff;
    font-weight: bold;
    bottom: calc(-80 / 1920 * 100vw);
}

.title-box {
    font-weight: 800;
    font-size: calc(34 / 1920 * 100vw);
    color: #FFFFFF;
    line-height: calc(56 / 1920 * 100vw);
    text-align: left;
    font-style: normal;
    text-transform: none;
}

.title-box span {
    font-weight: bold;
    font-size: calc(22 / 1920 * 100vw);
    color: #FFFFFF;
    line-height: 56px;
    text-align: left;
    font-style: normal;
    text-transform: none;
    margin-left: calc(20 / 1920 * 100vw);

}

.font-style {
    font-weight: 800;
    font-size: calc(36 / 1920 * 100vw);
    color: #FFFFFF;
    line-height: calc(56 / 1920 * 100vw);
    text-align: left;
    font-style: normal;
    text-transform: none;
}


.font-style-1 {
    font-weight: 500;
    font-size: calc(22 / 1920 * 100vw);
    color: #FFFFFF;
    line-height: calc(36 / 1920 * 100vw);
    text-align: left;
    font-style: normal;
    text-transform: none;
    margin-bottom: calc(80 / 1920 * 100vw);
}

.styled-section {
    margin: 0 auto;
    
    background-size: 100% 140%;
    /* padding-top: calc(50 / 1920 * 100vw); */
    padding-top: calc(50 / 1920 * 100vw);
    padding-bottom: calc(50 / 1920 * 100vw);
}

.styled-section .section-title {
    margin-top: 0 !important;
    padding-top: 0;
}