:root {
    --mb-red: #ff4b4b;
    --mb-red-dark: #d83f3f;
    --mb-text: #333333;
    --mb-muted: #777777;
    --mb-line: #eeeeee;
}

.mb-reference-home,
.mb-reference-home * ,
.mb-public-header,
.mb-public-header *,
.mb-public-footer,
.mb-public-footer * {
    box-sizing: border-box;
    letter-spacing: 0;
}

.mb-reference-home {
    margin: 0;
    padding-top: 80px;
    color: var(--mb-text);
    background: #ffffff;
    font-family: "Microsoft YaHei", "PingFang SC", Arial, sans-serif;
    font-size: 14px;
    line-height: 1.6;
    overflow-x: hidden;
}

.mb-reference-home a,
.mb-public-header a,
.mb-public-footer a {
    color: inherit;
    text-decoration: none;
}

.mb-reference-home img {
    max-width: 100%;
}

/* Public header, closely following the reference site's proportions. */
.page-header.mb-public-header {
    position: sticky;
    top: 0;
    z-index: 9999;
    width: 100%;
    height: 80px;
    border: 0;
    background: #ffffff;
    box-shadow: 0 3px 7px rgba(180, 187, 193, .21);
}

.mb-reference-home .page-header.mb-public-header {
    position: fixed;
}

.mb-public-header .header-card {
    display: grid;
    width: min(1440px, calc(100% - 48px));
    height: 80px;
    margin: 0 auto;
    grid-template-columns: 340px minmax(0, 1fr) 126px;
    align-items: center;
    gap: 22px;
}

.mb-public-header .logo-img {
    min-width: 0;
}

.mb-public-brand {
    display: flex;
    min-width: 0;
    align-items: center;
    color: #272727 !important;
}

.mb-public-brand__mark {
    display: inline-flex;
    width: 52px;
    height: 52px;
    flex: 0 0 52px;
    align-items: center;
    justify-content: center;
    border-radius: 50%;
    color: #ffffff;
    background: #c83232;
    font-family: STSong, SimSun, serif;
    font-size: 27px;
    line-height: 1;
}

.mb-public-brand__name {
    display: flex;
    min-width: 105px;
    margin-left: 10px;
    flex-direction: column;
    align-items: flex-start;
    justify-content: center;
}

.mb-public-brand__name strong {
    color: #2f2f2f;
    font-size: 22px;
    font-weight: 700;
    line-height: 1.22;
    white-space: nowrap;
}

.mb-public-brand__name small {
    color: #5c5c5c;
    font-size: 11px;
    line-height: 1.2;
}

.mb-public-brand__tagline {
    margin-left: 14px;
    padding-left: 18px;
    border-left: 1px solid #b7b7b7;
    color: #333333;
    font-size: 15px;
    line-height: 1.25;
    white-space: nowrap;
}

.mb-public-header .navs {
    width: 100%;
    height: 80px;
}

.mb-public-header .navs > ul {
    display: flex;
    width: 100%;
    height: 80px;
    margin: 0;
    padding: 0;
    align-items: stretch;
    justify-content: center;
    gap: 22px;
    list-style: none;
}

.mb-public-header .navs > ul > li {
    position: relative;
    display: flex;
    height: 80px;
    align-items: center;
    color: #333333;
    font-size: 16px;
    white-space: nowrap;
}

.mb-public-header .navs > ul > li > a {
    display: inline-flex;
    height: 80px;
    align-items: center;
    color: #333333;
    font-weight: 600;
}

.mb-public-header .navs > ul > li.active > a,
.mb-public-header .navs > ul > li:hover > a,
.mb-public-header .navs > ul > li:focus-within > a {
    color: var(--mb-red);
}

.mb-nav-caret {
    width: 7px;
    height: 7px;
    margin: -4px 0 0 7px;
    border-right: 1px solid currentColor;
    border-bottom: 1px solid currentColor;
    transform: rotate(45deg);
}

.mb-public-header .dropDown {
    position: absolute;
    top: calc(100% - 1px);
    left: 50%;
    z-index: 10000;
    display: none;
    width: 290px;
    padding: 16px;
    border: 1px solid #f1f1f1;
    border-radius: 12px;
    background: #ffffff;
    box-shadow: 0 8px 30px rgba(103, 114, 129, .18);
    transform: translateX(-50%);
}

.mb-public-header .navs li:hover .dropDown,
.mb-public-header .navs li:focus-within .dropDown {
    display: block;
}

.mb-public-header .mb-nav-parent > a {
    cursor: pointer;
}

.mb-public-header .dropDownBTN {
    display: flex;
    flex-direction: column;
    gap: 8px;
}

.mb-public-header .mb-drop-link {
    display: flex;
    min-height: 72px;
    align-items: center;
    padding: 6px 10px;
    border-radius: 8px;
    line-height: 1.35;
    white-space: normal;
}

.mb-public-header .mb-drop-link:hover {
    background: #f7f8fa;
}

.mb-public-header .mb-drop-link > span:last-child {
    display: flex;
    min-width: 0;
    flex-direction: column;
    line-height: 1.35;
    white-space: normal;
}

.mb-public-header .mb-drop-link strong {
    color: #3b3b3b;
    font-size: 16px;
    font-weight: 500;
    line-height: 1.35;
}

.mb-public-header .mb-drop-link small {
    display: block;
    margin-top: 2px;
    color: #999999;
    font-size: 12px;
    line-height: 1.35;
}

.mb-drop-icon {
    width: 60px;
    height: 60px;
    flex: 0 0 60px;
    margin-right: 10px;
    background-image: url("/static/home/reference/v2023/images/2025/topicon/css_sprites_topicon.png");
}

.mb-drop-icon--media { background-position: -50px -210px; }
.mb-drop-icon--wemedia { background-position: -370px -210px; }
.mb-drop-icon--writer { background-position: -50px -370px; }
.mb-drop-icon--member { background-position: -530px -50px; }
.mb-drop-icon--register { background-position: -530px -370px; }
.mb-drop-icon--academy { background-position: -210px -50px; }
.mb-drop-icon--help { background-position: -210px -210px; }

.mb-public-header .loginBox {
    display: flex;
    height: 80px;
    align-items: center;
    justify-content: flex-end;
}

.mb-public-header .loginBox .hover {
    display: inline-flex;
    width: 118px;
    height: 40px;
    align-items: center;
    justify-content: center;
    border-radius: 10px;
    color: #ffffff;
    background: var(--mb-red);
    font-size: 16px;
    font-weight: 600;
}

.mb-public-header .loginBox .hover:hover {
    background: var(--mb-red-dark);
}

.mb-public-menu {
    display: none;
    width: 42px;
    height: 42px;
    padding: 9px;
    border: 0;
    background: transparent;
}

.mb-public-menu span {
    display: block;
    height: 2px;
    margin: 5px 0;
    background: #333333;
}

/* Reference carousel and promotional resource bar. */
.mb-reference-banner {
    position: relative;
    display: block !important;
    min-height: 764px;
    padding-bottom: 64px;
    background: #f5f7fa;
}

.mb-reference-banner .bannerCarousel {
    position: relative;
    width: 100%;
    height: 700px;
    overflow: hidden;
}

.mb-ref-slides,
.mb-ref-slide,
.mb-ref-slide a,
.mb-ref-slide img {
    width: 100%;
    height: 100%;
}

.mb-ref-slide {
    position: absolute;
    inset: 0;
    z-index: 0;
    opacity: 0;
    transition: opacity .45s ease;
}

.mb-ref-slide.is-active {
    z-index: 1;
    opacity: 1;
}

.mb-ref-slide a {
    display: block;
}

.mb-ref-slide img {
    display: block;
    object-fit: cover;
    object-position: center;
}

.mb-ref-dots {
    position: absolute;
    right: 0;
    bottom: 84px;
    left: 0;
    z-index: 4;
    display: flex;
    justify-content: center;
    gap: 8px;
}

.mb-ref-dots button {
    width: 50px;
    height: 6px;
    padding: 0;
    border: 0;
    border-radius: 3px;
    background: rgba(248, 52, 84, .23);
    cursor: pointer;
}

.mb-ref-dots button.is-active {
    background: #f83454;
}

.mb-reference-banner .user {
    position: absolute;
    top: 616px;
    left: 50%;
    z-index: 8;
    display: flex;
    width: min(1200px, calc(100% - 48px));
    height: 128px;
    padding: 18px 22px;
    align-items: center;
    justify-content: space-between;
    border: 1px solid #ffffff;
    border-radius: 10px;
    background: rgba(255, 255, 255, .97);
    box-shadow: 0 8px 26px rgba(83, 83, 83, .18);
    transform: translateX(-50%);
}

.mb-reference-banner .user_left {
    width: 410px;
    flex: 0 0 410px;
    padding-right: 24px;
}

.mb-reference-banner .user h2 {
    margin: 0 0 7px;
    color: #ef2e2e;
    font-size: 24px;
    font-weight: 700;
    line-height: 1.3;
    text-align: center;
}

.mb-reference-banner .user h2 #mb-current-date {
    font-size: 26px;
}

.mb-reference-banner .user_right {
    min-width: 0;
    flex: 1;
    padding: 10px 18px 8px;
    border-radius: 8px;
    background: #fff0f0;
}

.mb-claim-form {
    display: grid;
    grid-template-columns: minmax(0, 1fr) minmax(0, 1fr) 180px;
    gap: 14px;
}

.mb-claim-form label {
    position: relative;
    display: block;
}

.mb-claim-form label strong {
    position: absolute;
    top: 0;
    bottom: 0;
    left: 15px;
    display: flex;
    align-items: center;
    color: #444444;
    font-size: 15px;
    font-weight: 700;
}

.mb-claim-form label strong span {
    color: #ef2e2e;
}

.mb-claim-form input {
    width: 100%;
    height: 46px;
    margin: 0;
    padding: 0 14px 0 62px;
    border: 1px solid #e4e4e4;
    border-radius: 5px;
    outline: none;
    background: #ffffff;
    font-size: 15px;
}

.mb-claim-form input:focus {
    border-color: #ff6c6c;
}

.mb-claim-form button {
    height: 46px;
    border: 0;
    border-radius: 8px;
    color: #ffffff;
    background: linear-gradient(166deg, #ff1446 0%, #fe5c37 100%);
    box-shadow: 0 1px 9px rgba(179, 29, 29, .34);
    font-size: 17px;
    cursor: pointer;
}

.mb-claim-links {
    display: flex;
    margin: 6px 0 0;
    justify-content: center;
    gap: 18px;
    color: #ae7777;
    font-size: 12px;
}

.mb-claim-links span {
    width: 1px;
    background: #d8bcbc;
}

.mb-reference-home .user_left .p_box {
    margin: 0;
}

.mb-compliance-note {
    position: fixed;
    bottom: 24px;
    left: 24px;
    z-index: 998;
    width: 230px;
    padding: 18px 20px;
    border-radius: 10px;
    background: linear-gradient(11deg, #fff5f5 0%, #ffffff 75%);
    box-shadow: 0 5px 10px rgba(206, 206, 206, .74);
}

.mb-compliance-note strong {
    display: block;
    margin-bottom: 8px;
    color: #bd4551;
    font-size: 18px;
    text-align: center;
}

.mb-compliance-note p {
    margin: 0;
    color: #333333;
    font-size: 13px;
    line-height: 1.75;
}

/* Reference section corrections and local content. */
.mb-reference-home .v2025A_content,
.mb-reference-home .v2025B_content,
.mb-reference-home .v2025C_content,
.mb-reference-home .v2025D_img_box,
.mb-reference-home .v2025E_content,
.mb-reference-home .v2023E .process_img,
.mb-reference-home .v2023G .center_con {
    width: min(1200px, calc(100% - 48px));
}

.mb-reference-home .v2025A_content_right {
    width: 100%;
}

.mb-reference-home .v2025A_content_right .right_bottom {
    width: 560px;
}

.mb-brand-showcase {
    position: relative;
    display: flex;
    width: 100%;
    height: 100%;
    min-height: 242px;
    align-items: center;
    justify-content: center;
    flex-direction: column;
    overflow: hidden;
    border-radius: 8px;
    background:
        linear-gradient(125deg, rgba(239, 209, 162, .45), transparent 32%),
        linear-gradient(310deg, rgba(236, 191, 119, .35), transparent 38%),
        #fffaf6;
}

.mb-brand-showcase::before,
.mb-brand-showcase::after {
    position: absolute;
    width: 380px;
    height: 90px;
    border: 1px solid rgba(213, 155, 95, .22);
    border-radius: 50%;
    content: "";
    transform: rotate(-14deg);
}

.mb-brand-showcase::before { top: -30px; left: -95px; }
.mb-brand-showcase::after { right: -100px; bottom: -22px; }

.mb-brand-showcase__logo {
    position: relative;
    z-index: 1;
    display: flex;
    align-items: center;
}

.mb-brand-showcase__logo > span {
    display: inline-flex;
    width: 78px;
    height: 78px;
    align-items: center;
    justify-content: center;
    border-radius: 50%;
    color: #ffffff;
    background: #c82e36;
    font-family: STSong, SimSun, serif;
    font-size: 40px;
}

.mb-brand-showcase__logo strong {
    display: flex;
    margin-left: 18px;
    color: #333333;
    flex-direction: column;
    font-size: 34px;
    line-height: 1.2;
}

.mb-brand-showcase__logo small {
    font-size: 15px;
    font-weight: 400;
}

.mb-brand-showcase p {
    position: relative;
    z-index: 1;
    width: 82%;
    margin: 22px 0 0;
    padding: 7px 12px;
    color: #8a4c28;
    background: rgba(206, 150, 102, .16);
    font-size: 18px;
    font-weight: 700;
    text-align: center;
}

.mb-reference-home .v2025A_content_right .right_top {
    flex: 1;
}

.mb-device-art {
    position: relative;
    width: 100%;
}

.mb-device-art > img {
    display: block;
    width: 100%;
}

.mb-device-art__brand {
    position: absolute;
    top: 3.5%;
    left: 61%;
    z-index: 2;
    width: 20%;
    padding: 5px 8px;
    color: #333333;
    background: rgba(255, 250, 251, .96);
    font-size: 13px;
    font-weight: 700;
    text-align: center;
}

.mb-device-art__code {
    position: absolute;
    right: 6.2%;
    bottom: 8.5%;
    z-index: 2;
    display: flex;
    width: 17%;
    height: 43%;
    align-items: center;
    justify-content: center;
    flex-direction: column;
    border-radius: 12px;
    background: rgba(255, 255, 255, .98);
    box-shadow: 0 5px 18px rgba(219, 130, 144, .16);
}

.mb-device-art__code strong {
    display: inline-flex;
    width: 54px;
    height: 54px;
    align-items: center;
    justify-content: center;
    border-radius: 50%;
    color: #ffffff;
    background: #c82e36;
    font-family: STSong, SimSun, serif;
    font-size: 28px;
}

.mb-device-art__code span {
    margin-top: 7px;
    color: #333333;
    font-size: 17px;
    font-weight: 700;
}

.mb-device-art__code small {
    color: #777777;
    font-size: 11px;
}

.mb-device-art__code em {
    margin-top: 9px;
    color: #2196f3;
    font-size: 13px;
    font-style: normal;
    font-weight: 700;
}

.mb-reference-home .v2025C_content_top .item a,
.mb-reference-home .v2025C_content_bottom .item_box a,
.mb-reference-home .v2025E_content .item_box a {
    color: inherit;
}

.mb-reference-home .v2025C_content_bottom .item_box .item_content {
    min-height: 480px;
}

.mb-reference-home .v2025C_content_bottom .item_box .rightsAndInterests_box:last-child {
    margin-bottom: 30px !important;
}

.mb-reference-home .v2025E_content .item_box .item_content {
    min-height: 390px;
}

.mb-reference-home .v2025E_btn {
    height: 52px;
}

.mb-reference-home .v2025D_img01 {
    display: block;
    width: 100%;
}

.mb-reference-home .v2023E {
    padding-top: 1px;
    text-align: center;
}

.mb-reference-home .v2023E .process_img img {
    width: 100%;
}

.mb-client-section {
    padding: 76px 24px 86px;
    background: #ffffff;
    text-align: center;
}

.mb-client-section .mask_title {
    color: #333333;
    font-size: 40px;
    font-weight: 700;
}

.mb-client-section .mask_msg {
    margin: 18px auto 34px;
    color: #666666;
    font-size: 16px;
}

.mb-client-logos {
    display: grid;
    width: min(1200px, 100%);
    margin: 0 auto;
    border-top: 1px solid #eeeeee;
    border-left: 1px solid #eeeeee;
    grid-template-columns: repeat(6, minmax(0, 1fr));
}

.mb-client-logos img {
    width: 100%;
    height: 105px;
    padding: 28px;
    border-right: 1px solid #eeeeee;
    border-bottom: 1px solid #eeeeee;
    background: #ffffff;
    object-fit: contain;
}

.mb-academy-section {
    padding: 72px 0 84px;
    background: #f8f9fb;
}

.mb-reference-home .v2023G .center_title {
    margin-top: 0;
}

.mb-reference-home .v2023G .center_con {
    margin-right: auto;
    margin-left: auto;
}

.mb-reference-home .v2023G .info_msg {
    display: block !important;
}

.mb-reference-home .v2023G .msg_one img {
    object-fit: cover;
}

.mb-reference-home .v2023G .more_btns {
    border: 0;
    cursor: pointer;
}

/* Footer and service tools. */
.page-footer.mb-public-footer {
    position: relative;
    z-index: 20;
    display: block;
    width: 100%;
    color: #ffffff;
    background: #171717;
}

.mb-footer-inner {
    width: min(1200px, calc(100% - 48px));
    margin: 0 auto;
}

.mb-footer-brand-row {
    display: flex;
    padding: 38px 0 28px;
    align-items: center;
    justify-content: space-between;
    border-bottom: 1px solid #353535;
}

.mb-public-brand--footer .mb-public-brand__name strong,
.mb-public-brand--footer .mb-public-brand__name small,
.mb-public-brand--footer .mb-public-brand__tagline {
    color: #ffffff;
}

.mb-public-brand--footer .mb-public-brand__tagline {
    border-color: #575757;
}

.mb-footer-contact {
    display: flex;
    align-items: center;
    gap: 18px;
}

.mb-footer-contact span {
    color: #999999;
}

.mb-footer-contact strong {
    font-size: 24px;
}

.mb-footer-contact button {
    height: 40px;
    padding: 0 22px;
    border: 0;
    border-radius: 8px;
    color: #ffffff;
    background: var(--mb-red);
    cursor: pointer;
}

.mb-footer-columns {
    display: grid;
    padding: 38px 0;
    grid-template-columns: repeat(4, minmax(0, 1fr));
    gap: 70px;
}

.mb-footer-columns > div {
    display: flex;
    flex-direction: column;
    align-items: flex-start;
}

.mb-footer-columns h2 {
    margin: 0 0 13px;
    color: #ffffff;
    font-size: 18px;
    font-weight: 600;
}

.mb-footer-columns a {
    margin: 5px 0;
    color: #999999;
    font-size: 14px;
}

.mb-footer-columns a:hover {
    color: #ffffff;
}

.mb-footer-bottom {
    padding: 20px 0 28px;
    border-top: 1px solid #353535;
    color: #777777;
    font-size: 12px;
    text-align: center;
}

.mb-footer-bottom p {
    margin: 5px 0;
}

.mb-footer-bottom a {
    color: #aaaaaa;
}

.mb-floating-service {
    position: fixed;
    top: 44%;
    right: 0;
    z-index: 1100;
    display: flex;
    width: 74px;
    flex-direction: column;
    border: 1px solid #eeeeee;
    border-radius: 10px 0 0 10px;
    overflow: hidden;
    background: #ffffff;
    box-shadow: 0 4px 18px rgba(62, 62, 62, .14);
}

.mb-floating-service button,
.mb-floating-service a {
    display: flex;
    width: 74px;
    height: 66px;
    padding: 0 8px;
    align-items: center;
    justify-content: center;
    border: 0;
    border-bottom: 1px solid #eeeeee;
    color: #555555;
    background: #ffffff;
    font-size: 13px;
    cursor: pointer;
}

.mb-floating-service button:hover,
.mb-floating-service a:hover {
    color: #ffffff;
    background: var(--mb-red);
}

.contact-container {
    display: none;
}

.mb-contact-card {
    width: min(420px, 90vw);
    padding: 32px;
    color: #333333;
    background: #ffffff;
}

.mb-contact-kicker {
    color: var(--mb-red);
    font-size: 12px;
    font-weight: 700;
}

.mb-contact-card h3 {
    margin: 8px 0 18px;
    color: #222222;
    font-size: 24px;
}

.mb-contact-card p {
    margin: 9px 0;
}

/* Legacy catalog filters use the same controls as the public navigation. */
.mb-catalog-page {
    min-width: 0;
    margin: 0;
    color: #333333;
    background: #f6f7f9;
}

.mb-catalog-page .selectBox {
    display: flex;
    min-width: 0;
    gap: 10px;
}

.mb-catalog-page .selectBox .unit {
    min-width: 0;
    margin-right: 0;
    z-index: 2;
}

.mb-catalog-page .selectBox .unit.is-open {
    z-index: 30;
}

.mb-catalog-page .selectBox .unit > i {
    overflow: hidden;
    color: #4f555b;
    background-color: #ffffff;
    border-color: #dfe3e7;
    text-overflow: ellipsis;
    white-space: nowrap;
}

.mb-catalog-page .selectBox .unit > i:hover,
.mb-catalog-page .selectBox .unit.is-open > i {
    color: var(--mb-red-dark);
    border-color: #ff9b9b;
    box-shadow: 0 0 0 3px rgba(255, 75, 75, .08);
}

.mb-catalog-page .selectBox .unit > ul {
    top: 42px;
    width: 100%;
    max-height: 232px;
    margin: 0;
    padding: 7px;
    overflow-y: auto;
    border: 1px solid #e2e5e8;
    border-radius: 7px;
    background: #ffffff;
    box-shadow: 0 10px 24px rgba(34, 43, 52, .13);
}

.mb-catalog-page .selectBox .unit.is-open > ul {
    display: block;
}

.mb-catalog-page .selectBox .unit > ul li.filter-option {
    height: 32px;
    margin: 0;
    padding: 0 9px;
    color: #646b72;
    border-radius: 5px;
    line-height: 32px;
}

.mb-catalog-page .selectBox .unit > ul li.filter-option a {
    display: block;
    color: inherit;
}

.mb-catalog-page .selectBox .unit > ul li.filter-option.active,
.mb-catalog-page .selectBox .unit > ul li.filter-option:hover {
    color: #ffffff;
    background: var(--mb-red);
}

.mb-catalog-page .table_box {
    overflow-x: auto;
    border-radius: 8px;
}

.mb-catalog-page .table_box table {
    min-width: 1120px;
}

/* Public catalog tables use the same quiet red system as the navigation. */
.mb-catalog-page .tableSection {
    width: min(1200px, calc(100% - 48px));
    margin: 28px auto 0;
    overflow: visible;
}

.mb-catalog-page .table-list {
    overflow: hidden;
    border: 1px solid #f0e2e2;
    border-radius: 10px;
    background: #ffffff;
    box-shadow: 0 8px 24px rgba(106, 67, 67, .07);
}

.mb-catalog-page .table_box {
    border-radius: 0;
    background: #ffffff;
}

.mb-catalog-page .table_box thead {
    height: 56px;
    line-height: 56px;
    background: #fff3f3;
}

.mb-catalog-page .table_box thead tr th {
    color: #5b4e4e;
    font-size: 13px;
    font-weight: 700;
}

.mb-catalog-page .table_box tbody tr td {
    color: #555555;
    line-height: 76px;
    border-bottom: 1px solid #f2eaea;
}

.mb-catalog-page .table_box tbody tr:last-child td {
    border-bottom: 0;
}

.mb-catalog-page .table_box tbody tr:nth-of-type(odd) {
    background: #ffffff;
}

.mb-catalog-page .table_box tbody tr:nth-of-type(even) {
    background: #fffafa;
}

.mb-catalog-page .table_box tbody tr:hover {
    background: #fff2f2;
}

.mb-catalog-page .table_box tbody tr .td2 a,
.mb-catalog-page .table_box tbody tr .td3 a {
    color: var(--mb-red-dark);
}

.mb-catalog-page .table_box tbody tr .td6,
.mb-catalog-page .table_box tbody tr .td7 {
    color: var(--mb-red-dark);
    background: none;
}

.mb-catalog-page .table_box tbody tr .td6 span,
.mb-catalog-page .table_box tbody tr .td7 span {
    display: inline-flex;
    width: auto;
    min-width: 32px;
    height: 24px;
    padding: 0 8px;
    align-items: center;
    justify-content: center;
    color: var(--mb-red-dark);
    background: #fff0f0;
    border: 1px solid #ffbaba;
    border-radius: 12px;
    line-height: 22px;
}

.mb-catalog-page .page {
    margin-top: 28px;
}

.mb-catalog-page .page .pagination li a,
.mb-catalog-page .page .pagination li.active,
.mb-catalog-page .page .pagination li.disabled span {
    border-color: #f0d7d7;
    border-radius: 5px;
    background: #ffffff;
}

.mb-catalog-page .page .pagination li.active,
.mb-catalog-page .page .pagination li a:hover {
    color: #ffffff;
    border-color: var(--mb-red);
    background: var(--mb-red);
}

@media (max-width: 760px) {
    .mb-catalog-page .tableSection {
        width: calc(100% - 20px);
        margin-top: 18px;
    }

    .mb-catalog-page .table-list {
        border-radius: 8px;
    }

    .mb-catalog-page .m-zyhd {
        display: block;
        height: 34px;
        margin: 0;
        color: #888888;
        font-size: 12px;
        line-height: 34px;
        text-align: center;
    }

    .mb-catalog-page .selectBox {
        display: block;
    }

    .mb-catalog-page .selectBox .unit {
        width: 100%;
        margin-bottom: 10px;
    }

    .mb-catalog-page .selectBox .unit > ul {
        width: 100%;
    }
}

@media (max-width: 1360px) {
    .mb-public-header .header-card {
        grid-template-columns: 255px minmax(0, 1fr) 116px;
        gap: 14px;
    }

    .mb-public-brand__tagline {
        display: none;
    }

    .mb-public-header .navs > ul {
        gap: 17px;
    }

    .mb-public-header .navs > ul > li,
    .mb-public-header .navs > ul > li > a {
        font-size: 14px;
    }
}

@media (max-width: 1100px) {
    .mb-public-header .header-card {
        grid-template-columns: minmax(0, 1fr) auto auto;
    }

    .mb-public-menu {
        display: block;
    }

    .mb-public-header .navs {
        position: fixed;
        top: 80px;
        right: 0;
        left: 0;
        display: none;
        width: 100%;
        height: auto;
        max-height: calc(100vh - 80px);
        overflow-y: auto;
        background: #ffffff;
        box-shadow: 0 8px 20px rgba(0, 0, 0, .1);
    }

    .mb-public-header .navs.is-open {
        display: block;
    }

    .mb-public-header .navs > ul {
        display: grid;
        width: min(720px, calc(100% - 32px));
        height: auto;
        margin: 0 auto;
        padding: 14px 0 22px;
        grid-template-columns: repeat(2, minmax(0, 1fr));
        gap: 0;
    }

    .mb-public-header .navs > ul > li,
    .mb-public-header .navs > ul > li > a {
        height: 48px;
    }

    .mb-public-header .navs > ul > li {
        justify-content: center;
    }

    .mb-public-header .dropDown {
        display: none !important;
        position: static;
        width: 100%;
        padding: 0 0 8px;
        border: 0;
        border-radius: 0;
        box-shadow: none;
        transform: none;
    }

    .mb-public-header .navs > ul > li.is-open > .dropDown {
        display: block !important;
    }

    .mb-public-header .navs > ul > li.is-open {
        display: block;
        height: auto;
        grid-column: 1 / -1;
        text-align: center;
    }

    .mb-public-header .navs > ul > li.is-open > a {
        display: flex;
        justify-content: center;
    }

    .mb-public-header .navs > ul > li.is-open > a {
        color: var(--mb-red);
    }

    .mb-public-header .navs > ul > li.is-open .mb-nav-caret {
        transform: rotate(225deg);
        margin-top: 4px;
    }

    .mb-public-header .dropDownBTN {
        width: min(360px, calc(100% - 28px));
        margin: 0 auto;
        padding: 8px 0;
        border-top: 1px solid #f0f1f3;
    }

    .mb-public-header .mb-drop-link {
        min-height: 58px;
    }

    .mb-public-header .mb-drop-icon {
        width: 48px;
        height: 48px;
        flex-basis: 48px;
        transform: scale(.8);
        transform-origin: center;
    }

    .mb-reference-home .v2025A_content_right {
        flex-direction: column;
    }

    .mb-reference-home .v2025A_content_right .right_bottom {
        width: 100%;
        max-width: 560px;
        margin: 0 auto;
    }

    .mb-reference-home .v2025A_content_right .right_top {
        margin: 24px 0 0;
    }

    .mb-reference-home .v2025B_content_top,
    .mb-reference-home .v2025C_content_top,
    .mb-reference-home .v2025C_content_bottom {
        display: grid;
        grid-template-columns: repeat(2, minmax(0, 1fr));
        gap: 24px;
    }

    .mb-reference-home .v2025B_content_top .item,
    .mb-reference-home .v2025C_content_top .item,
    .mb-reference-home .v2025C_content_bottom .item_box,
    .mb-reference-home .v2025C_content_bottom .item_box .item_content {
        width: 100%;
    }

    .mb-reference-home .v2025C_content_top .item {
        max-width: 360px;
        justify-self: center;
    }

    .mb-reference-home .v2025E_content {
        display: grid;
        grid-template-columns: repeat(3, minmax(0, 1fr));
        gap: 18px;
        align-items: stretch;
    }

    .mb-reference-home .v2025E_content .item_box,
    .mb-reference-home .v2025E_content .item_box .item_content {
        width: 100%;
    }

    .mb-reference-home .v2025E_content .item_box .Price_btn {
        width: calc(100% - 40px);
    }
}

@media (max-width: 760px) {
    .mb-reference-home {
        padding-top: 64px;
    }

    .page-header.mb-public-header,
    .mb-public-header .header-card {
        height: 64px;
    }

    .mb-public-header .header-card {
        width: calc(100% - 24px);
        grid-template-columns: minmax(0, 1fr) 42px;
        gap: 8px;
    }

    .mb-public-header .loginBox {
        display: none;
    }

    .mb-public-brand__mark {
        width: 42px;
        height: 42px;
        flex-basis: 42px;
        font-size: 22px;
    }

    .mb-public-brand__name {
        min-width: 0;
        margin-left: 8px;
    }

    .mb-public-brand__name strong {
        font-size: 18px;
    }

    .mb-public-header .navs {
        top: 64px;
        max-height: calc(100vh - 64px);
    }

    .mb-reference-banner {
        min-height: 0;
        padding-bottom: 34px;
    }

    .mb-reference-banner .bannerCarousel {
        height: 260px;
    }

    .mb-ref-slide img {
        object-position: center;
    }

    .mb-ref-dots {
        bottom: 16px;
    }

    .mb-ref-dots button {
        width: 34px;
        height: 5px;
    }

    .mb-reference-banner .user {
        position: relative;
        top: auto;
        left: auto;
        display: block;
        width: calc(100% - 24px);
        height: auto;
        margin: -4px auto 0;
        padding: 18px 14px;
        transform: none;
    }

    .mb-reference-banner .user_left {
        width: 100%;
        padding: 0;
    }

    .mb-reference-banner .user h2,
    .mb-reference-banner .user h2 #mb-current-date {
        font-size: 20px;
    }

    .mb-reference-banner .user_right {
        margin-top: 12px;
        padding: 12px;
    }

    .mb-claim-form {
        grid-template-columns: 1fr;
        gap: 10px;
    }

    .mb-claim-links {
        gap: 10px;
    }

    .mb-compliance-note,
    .mb-floating-service {
        display: none;
    }

    .mb-reference-home .v2025A,
    .mb-reference-home .v2025B,
    .mb-reference-home .v2025C,
    .mb-reference-home .v2025D,
    .mb-reference-home .v2025E {
        background-size: auto 100%;
    }

    .mb-reference-home .v2025A {
        padding-bottom: 58px;
    }

    .mb-reference-home .v2025A_title,
    .mb-reference-home .v2025C_title,
    .mb-reference-home .v2025E_title {
        padding: 52px 16px 30px;
    }

    .mb-reference-home .v2025A_title .title_text,
    .mb-reference-home .v2025B_title .title_text,
    .mb-reference-home .v2025C_title .title_text,
    .mb-reference-home .v2025E_title .title_text,
    .mb-client-section .mask_title,
    .mb-reference-home .v2023G .center_title {
        width: auto;
        height: auto;
        font-size: 27px;
        line-height: 1.4;
    }

    .mb-reference-home .v2025A_title .fun_title_msg {
        font-size: 15px;
        line-height: 1.7;
    }

    .mb-reference-home .v2025A_content,
    .mb-reference-home .v2025B_content,
    .mb-reference-home .v2025C_content,
    .mb-reference-home .v2025D_img_box,
    .mb-reference-home .v2025E_content,
    .mb-reference-home .v2023E .process_img,
    .mb-reference-home .v2023G .center_con {
        width: calc(100% - 24px);
    }

    .mb-reference-home .v2025A_content {
        padding: 22px;
        border-radius: 24px;
    }

    .mb-reference-home .v2025A_content_right .right_top {
        font-size: 15px;
        line-height: 1.8;
    }

    .mb-reference-home .v2025B_title {
        padding: 0 16px 30px;
    }

    .mb-reference-home .v2025B_content_top,
    .mb-reference-home .v2025C_content_top,
    .mb-reference-home .v2025C_content_bottom,
    .mb-reference-home .v2025E_content {
        grid-template-columns: 1fr;
        gap: 20px;
    }

    .mb-reference-home .v2025B_content_top .item,
    .mb-reference-home .v2025C_content_top .item,
    .mb-reference-home .v2025C_content_bottom .item_box,
    .mb-reference-home .v2025E_content .item_box {
        max-width: 380px;
        margin: 0 auto;
    }

    .mb-reference-home .v2025B_content_bottom {
        width: 100%;
        margin-top: 22px;
    }

    .mb-reference-home .v2025D .quantity_box {
        height: auto;
        padding: 34px 12px 24px;
    }

    .mb-reference-home .v2025D .quantity {
        position: static;
        display: grid;
        width: 100%;
        height: auto;
        margin: 0;
        padding: 22px 12px;
        grid-template-columns: repeat(2, minmax(0, 1fr));
        gap: 22px 10px;
    }

    .mb-reference-home .v2025D .quantity_Divider {
        display: none;
    }

    .mb-reference-home .v2025D .quantity_item .item_top .item_left {
        font-size: 34px;
    }

    .mb-reference-home .v2025D_img_box .v2025D_title {
        top: 0;
    }

    .mb-reference-home .v2025D_img_box .v2025D_title .title_text {
        font-size: 27px;
    }

    .mb-reference-home .v2025D_img_box .v2025D_btn {
        right: 20px;
        bottom: 22px;
        left: 20px;
        width: auto;
    }

    .mb-reference-home .v2025E_content .item_box .item_content {
        min-height: 0;
    }

    .mb-reference-home .v2023E .process_title {
        width: auto;
        height: auto;
        margin: 52px auto 32px;
        font-size: 27px;
    }

    .mb-reference-home .to_web {
        margin-bottom: 70px;
    }

    .mb-client-section {
        padding: 54px 12px;
    }

    .mb-client-section .mask_msg {
        font-size: 14px;
        line-height: 1.8;
    }

    .mb-client-logos {
        grid-template-columns: repeat(2, minmax(0, 1fr));
    }

    .mb-client-logos img {
        height: 90px;
        padding: 22px;
    }

    .mb-academy-section {
        padding: 52px 0 64px;
    }

    .mb-reference-home .v2023G .center_con_title {
        display: grid;
        grid-template-columns: repeat(2, minmax(0, 1fr));
    }

    .mb-reference-home .v2023G .center_con li {
        width: auto;
    }

    .mb-reference-home .v2023G .info_content {
        display: block;
    }

    .mb-reference-home .v2023G .msg_one,
    .mb-reference-home .v2023G .msg_right {
        width: 100%;
    }

    .mb-reference-home .v2023G .msg_right {
        margin-top: 20px;
    }

    .mb-footer-inner {
        width: calc(100% - 32px);
    }

    .mb-footer-brand-row {
        align-items: flex-start;
        flex-direction: column;
        gap: 24px;
    }

    .mb-footer-contact {
        width: 100%;
        align-items: flex-start;
        flex-direction: column;
        gap: 7px;
    }

    .mb-footer-columns {
        grid-template-columns: repeat(2, minmax(0, 1fr));
        gap: 34px 24px;
    }
}

@media (max-width: 420px) {
    .mb-public-header .navs > ul {
        grid-template-columns: 1fr;
    }

    .mb-public-header .navs > ul > li,
    .mb-public-header .navs > ul > li > a {
        height: 44px;
    }

    .mb-reference-banner .bannerCarousel {
        height: 220px;
    }

    .mb-claim-links {
        flex-wrap: wrap;
    }

    .mb-footer-columns {
        grid-template-columns: 1fr;
    }
}

/* The reference stylesheet keeps several desktop-width descendants.  Keep
   those sections fluid on phones after the reference rules are loaded. */
@media (max-width: 760px) {
    .mb-reference-home .v2025C .v2025C_content .v2025C_content_top {
        display: grid;
        grid-template-columns: repeat(2, minmax(0, 1fr));
        gap: 16px;
        align-items: stretch;
    }

    .mb-reference-home .v2025C .v2025C_content .v2025C_content_top .item {
        width: 100%;
        max-width: none;
        height: 360px;
        margin: 0;
    }

    .mb-reference-home .v2025C .v2025C_content .v2025C_content_top .item:hover {
        transform: none;
    }

    .mb-reference-home .v2025C .v2025C_content .v2025C_content_top .item .item_content .item_title {
        padding: 22px 14px 0;
        font-size: 20px;
        line-height: 1.25;
    }

    .mb-reference-home .v2025C .v2025C_content .v2025C_content_top .item .item_content .item_title_en {
        overflow: hidden;
        padding: 0 14px 12px;
        font-size: 11px;
        line-height: 1.4;
        text-overflow: ellipsis;
        white-space: nowrap;
    }

    .mb-reference-home .v2025C .v2025C_content .v2025C_content_top .item .item_content .item_bottm_box {
        margin: 0 8px 10px;
        padding: 16px 12px 10px;
        border-radius: 14px;
    }

    .mb-reference-home .v2025C .v2025C_content .v2025C_content_top .item .item_content .item_bottm_box .bottm_item {
        align-items: flex-start;
        padding-bottom: 12px;
    }

    .mb-reference-home .v2025C .v2025C_content .v2025C_content_top .item .item_content .item_bottm_box .bottm_item .bottm_item_text {
        font-size: 13px;
        line-height: 1.45;
    }

    .mb-reference-home .v2025C .v2025C_content .v2025C_content_top .item .item_content .item_btn {
        width: calc(100% - 24px);
        height: 36px;
        line-height: 36px;
        font-size: 13px;
    }

    .mb-reference-home .v2025A .v2025A_content .v2025A_content_right {
        width: 100%;
        flex-direction: column;
        align-items: stretch;
    }

    .mb-reference-home .v2025A .v2025A_content .v2025A_content_right .right_top {
        width: 100%;
        height: auto;
        margin: 0 0 18px;
    }

    .mb-reference-home .v2025A .v2025A_content .v2025A_content_right .right_bottom {
        width: 100%;
        max-width: none;
        height: auto;
        margin: 0;
    }

    .mb-reference-home .v2025B .v2025B_content .v2025B_content_bottom {
        width: 100%;
    }

    .mb-reference-home .v2025B .v2025B_content .v2025B_content_bottom .mb-device-art,
    .mb-reference-home .v2025B .v2025B_content .v2025B_content_bottom .mb-device-art > img {
        width: 100%;
        height: auto;
    }

    .mb-reference-home .v2023G .center_con .info_msg {
        width: 100%;
    }

    .mb-reference-home .v2023G .center_con .info_msg .info_content {
        display: block;
        width: 100%;
    }

    .mb-reference-home .v2023G .center_con .info_msg .info_content .msg_one,
    .mb-reference-home .v2023G .center_con .info_msg .info_content .msg_right {
        width: 100%;
        height: auto;
    }

    .mb-reference-home .v2023G .center_con .info_msg .info_content .msg_one img {
        width: 100%;
        height: auto;
    }

    .mb-reference-home .v2023G .center_con .info_msg .info_content .msg_one .article_info,
    .mb-reference-home .v2023G .center_con .info_msg .info_content .msg_right .article_info {
        width: auto;
        min-width: 0;
        margin-right: 16px;
        margin-left: 16px;
        padding-right: 0;
        padding-left: 0;
    }

    .mb-reference-home .v2023G .center_con .info_msg .info_content .article_title {
        min-width: 0;
        width: auto;
    }
}

/* Generated Media Box visual system. Keep the page's own imagery and copy
   separate so the brand stays sharp at every viewport size. */
:root {
    --mb-cobalt: #2f64de;
    --mb-teal: #16a6a4;
    --mb-ink: #20252b;
    --mb-soft-line: #e5e9ef;
}

.mb-public-brand__mark {
    overflow: visible;
    border-radius: 0;
    background: transparent;
}

.mb-public-brand__mark img {
    display: block;
    width: 100%;
    height: 100%;
    object-fit: contain;
}

.mb-public-header .mb-drop-icon {
    position: relative;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    border-radius: 8px;
    background-image: none;
    color: #ffffff;
    font-size: 22px;
    font-weight: 700;
}

.mb-public-header .mb-drop-icon::after {
    content: "";
}

.mb-public-header .mb-drop-icon--media { background: var(--mb-cobalt); }
.mb-public-header .mb-drop-icon--wemedia { background: #ef6b55; }
.mb-public-header .mb-drop-icon--writer { background: #7555db; }
.mb-public-header .mb-drop-icon--member { background: var(--mb-teal); }
.mb-public-header .mb-drop-icon--register { background: #e5a32e; }
.mb-public-header .mb-drop-icon--academy { background: #3979c9; }
.mb-public-header .mb-drop-icon--help { background: #d95367; }

.mb-public-header .mb-drop-icon--media::after { content: "闻"; }
.mb-public-header .mb-drop-icon--wemedia::after { content: "号"; }
.mb-public-header .mb-drop-icon--writer::after { content: "写"; }
.mb-public-header .mb-drop-icon--member::after { content: "台"; }
.mb-public-header .mb-drop-icon--register::after { content: "注"; }
.mb-public-header .mb-drop-icon--academy::after { content: "学"; }
.mb-public-header .mb-drop-icon--help::after { content: "联"; }

.mb-reference-banner {
    min-height: 620px;
    padding-bottom: 0;
    background: #f3f6fa;
}

.mb-reference-banner .bannerCarousel {
    height: 520px;
    background: #f3f6fa;
}

.mb-ref-slide a,
.mb-ref-slide picture {
    position: relative;
    display: block;
    width: 100%;
    height: 100%;
}

.mb-ref-slide img {
    object-position: center center;
}

.mb-hero-copy {
    position: absolute;
    top: 50%;
    left: max(32px, calc((100% - 1200px) / 2));
    width: min(570px, 44vw);
    color: var(--mb-ink);
    transform: translateY(-50%);
}

.mb-hero-kicker,
.mb-section-kicker {
    display: block;
    color: var(--mb-cobalt);
    font-size: 12px;
    font-weight: 800;
    letter-spacing: 1.5px;
    line-height: 1.4;
}

.mb-hero-copy h1,
.mb-hero-copy h2 {
    margin: 12px 0 16px;
    color: var(--mb-ink);
    font-size: 52px;
    font-weight: 800;
    line-height: 1.15;
}

.mb-hero-copy p {
    max-width: 500px;
    margin: 0 0 26px;
    color: #4e5964;
    font-size: 18px;
    line-height: 1.75;
}

.mb-hero-link,
.mb-advantages-link {
    display: inline-flex;
    min-height: 44px;
    padding: 0 18px;
    align-items: center;
    gap: 8px;
    border-radius: 6px;
    color: #ffffff;
    background: var(--mb-ink);
    font-size: 15px;
    font-weight: 700;
}

.mb-reference-home a.mb-hero-link,
.mb-reference-home a.mb-advantages-link,
.mb-reference-home .mb-device-art__copy a,
.mb-reference-home .v2023E a.to_web {
    color: #ffffff;
}

.mb-hero-link b,
.mb-advantages-link b,
.mb-device-art__copy a b {
    font-size: 23px;
    font-weight: 400;
    line-height: 1;
}

.mb-ref-dots {
    bottom: 54px;
}

.mb-ref-dots button {
    width: 38px;
    height: 4px;
    border-radius: 2px;
    background: rgba(47, 100, 222, .24);
}

.mb-ref-dots button.is-active {
    background: var(--mb-cobalt);
}

.mb-reference-banner .user {
    top: 456px;
    height: 132px;
    border-radius: 8px;
    box-shadow: 0 10px 28px rgba(30, 44, 60, .14);
}

.mb-reference-banner .user_right {
    background: #fff7f6;
}

.mb-claim-form button {
    background: var(--mb-red);
    box-shadow: none;
}

.mb-compliance-note {
    position: static;
    display: flex;
    width: min(1200px, calc(100% - 48px));
    min-height: 48px;
    margin: 0 auto;
    padding: 10px 16px;
    align-items: center;
    gap: 14px;
    border-left: 3px solid var(--mb-red);
    border-radius: 0;
    background: #fff7f6;
    box-shadow: none;
}

.mb-compliance-note strong {
    margin: 0;
    flex: 0 0 auto;
    font-size: 14px;
    text-align: left;
}

.mb-compliance-note p {
    font-size: 12px;
    line-height: 1.5;
}

.mb-reference-home .v2025A,
.mb-reference-home .v2025B,
.mb-reference-home .v2025C,
.mb-reference-home .v2025D,
.mb-reference-home .v2025E {
    background-image: none !important;
}

.mb-reference-home .v2025A { background: #ffffff; }
.mb-reference-home .v2025B { background: #f7f9fc; }
.mb-reference-home .v2025C { background: #ffffff; }
.mb-reference-home .v2025D { background: #f5f8fb; }
.mb-reference-home .v2025E { background: #fffaf8; }

.mb-brand-showcase {
    min-height: 220px;
    border: 1px solid #eee2dc;
    border-radius: 8px;
    background: #fffaf7;
}

.mb-reference-home .v2025A {
    padding-bottom: 80px;
}

.mb-reference-home .v2025A .v2025A_content {
    padding: 0;
    border-radius: 0;
    background: transparent;
}

.mb-reference-home .v2025A .v2025A_content .v2025A_content_right {
    display: grid;
    grid-template-columns: minmax(0, 1fr) minmax(0, 1fr);
    gap: 64px;
    align-items: center;
}

.mb-reference-home .v2025A .v2025A_content .v2025A_content_right .right_top {
    width: auto;
    margin: 0;
    grid-column: 2;
    grid-row: 1;
    color: #56616c;
    line-height: 1.9;
}

.mb-reference-home .v2025A .v2025A_content .v2025A_content_right .right_bottom {
    width: 100%;
    height: auto;
    margin: 0;
    grid-column: 1;
    grid-row: 1;
    border: 0;
    border-radius: 0;
    background: transparent;
}

.mb-brand-showcase::before,
.mb-brand-showcase::after {
    display: none;
}

.mb-brand-showcase__logo > span {
    width: 72px;
    height: 72px;
    background: transparent;
}

.mb-brand-showcase__logo > span img {
    display: block;
    width: 100%;
    height: 100%;
    object-fit: contain;
}

.mb-brand-showcase__logo strong {
    margin-left: 14px;
    color: var(--mb-ink);
    font-size: 30px;
}

.mb-brand-showcase p {
    color: #8a4c28;
    background: #f8e9df;
    font-size: 16px;
}

.mb-reference-home .v2025B_content_bottom {
    width: min(1200px, calc(100% - 48px));
}

.mb-device-art {
    display: grid;
    min-height: 360px;
    grid-template-columns: minmax(0, .82fr) minmax(0, 1.18fr);
    align-items: stretch;
    border: 1px solid #e2e8f0;
    border-radius: 8px;
    overflow: hidden;
    background: #f7f9fc;
}

.mb-device-art__copy {
    display: flex;
    padding: 44px 40px;
    flex-direction: column;
    justify-content: center;
}

.mb-device-art__copy > span {
    color: var(--mb-teal);
    font-size: 12px;
    font-weight: 800;
    letter-spacing: 1.4px;
}

.mb-device-art__copy h3 {
    margin: 12px 0 14px;
    color: var(--mb-ink);
    font-size: 30px;
    line-height: 1.3;
}

.mb-device-art__copy p {
    max-width: 370px;
    margin: 0 0 22px;
    color: #63707d;
    font-size: 15px;
    line-height: 1.8;
}

.mb-device-art__copy a {
    display: inline-flex;
    width: fit-content;
    min-height: 40px;
    padding: 0 15px;
    align-items: center;
    gap: 7px;
    border-radius: 5px;
    color: #ffffff;
    background: var(--mb-cobalt);
    font-size: 14px;
    font-weight: 700;
}

.mb-device-art__visual {
    display: flex;
    min-height: 360px;
    align-items: center;
    justify-content: center;
    background: #e7f5fb;
}

.mb-device-art__visual img {
    display: block;
    width: 100%;
    height: 100%;
    object-fit: cover;
}

.mb-device-art__code,
.mb-device-art__brand {
    display: none;
}

.mb-reference-home .v2025B_btn {
    background: var(--mb-ink);
}

.mb-reference-home .v2025C_btn,
.mb-reference-home .v2025E_btn {
    background: var(--mb-ink);
}

.mb-reference-home .v2025C_content_top .item {
    overflow: hidden;
    border-radius: 8px;
    box-shadow: 0 12px 26px rgba(32, 53, 80, .13);
}

.mb-reference-home .v2025C_content_top .item > img {
    display: block;
    object-fit: cover;
    object-position: center;
}

.mb-reference-home .v2025C_content_top .item:hover {
    transform: translateY(-4px);
}

.mb-reference-home .v2025C_content_top .item .item_content .item_title {
    text-shadow: 0 1px 3px rgba(0, 0, 0, .24);
}

.mb-reference-home .v2025C_content_top .item .item_content .item_bottm_box {
    border-radius: 8px;
    background: rgba(255, 255, 255, .94);
}

.mb-reference-home .v2025C_content_top .item .item_content .item_btn {
    border-radius: 5px;
    background: #ffffff;
}

.mb-reference-home .v2025C_content_top [class*="bg-3_icon"] {
    position: relative;
    display: inline-flex;
    width: 18px;
    height: 18px;
    flex: 0 0 18px;
    margin-right: 8px;
    align-items: center;
    justify-content: center;
    border-radius: 50%;
    background: #eaf1ff !important;
}

.mb-reference-home .v2025C_content_top [class*="bg-3_icon"]::after,
.mb-reference-home [class*="bg-4_icon"],
.mb-reference-home [class*="bg-6_icon"] {
    background-image: none !important;
}

.mb-reference-home .v2025C_content_top [class*="bg-3_icon"]::after {
    width: 7px;
    height: 4px;
    border-bottom: 2px solid var(--mb-cobalt);
    border-left: 2px solid var(--mb-cobalt);
    content: "";
    transform: rotate(-45deg) translate(1px, -1px);
}

.mb-reference-home .v2025C_content_top .bg-3_icon2 { background: #fff0eb !important; }
.mb-reference-home .v2025C_content_top .bg-3_icon2::after { border-color: #ef6b55; }
.mb-reference-home .v2025C_content_top .bg-3_icon3 { background: #f1ebff !important; }
.mb-reference-home .v2025C_content_top .bg-3_icon3::after { border-color: #7555db; }
.mb-reference-home .v2025C_content_top .bg-3_icon4 { background: #e7f8f8 !important; }
.mb-reference-home .v2025C_content_top .bg-3_icon4::after { border-color: var(--mb-teal); }

.mb-reference-home [class*="bg-4_icon"],
.mb-reference-home [class*="bg-6_icon"] {
    position: relative;
    display: inline-flex;
    width: 16px;
    height: 16px;
    flex: 0 0 16px;
    align-items: center;
    justify-content: center;
    border-radius: 50%;
    background: #eaf1ff !important;
}

.mb-reference-home [class*="bg-4_icon"]::after,
.mb-reference-home [class*="bg-6_icon"]::after {
    width: 6px;
    height: 3px;
    border-bottom: 2px solid var(--mb-cobalt);
    border-left: 2px solid var(--mb-cobalt);
    content: "";
    transform: rotate(-45deg) translate(1px, -1px);
}

.mb-reference-home .v2025D {
    overflow: hidden;
}

.mb-reference-home .v2025D .quantity_box {
    background: #ffffff;
}

.mb-reference-home .v2025D_img_box {
    display: grid;
    padding-top: 72px;
    padding-bottom: 88px;
    grid-template-columns: minmax(0, .95fr) minmax(0, 1.05fr);
    gap: 48px;
    align-items: center;
}

.mb-advantages-copy {
    grid-column: 1;
}

.mb-reference-home .v2025D .v2025D_img_box .mb-advantages-copy .v2025D_title {
    position: static;
    top: auto;
    right: auto;
    bottom: auto;
    left: auto;
    margin: 12px 0 14px;
}

.mb-reference-home .v2025D .v2025D_img_box .mb-advantages-copy .v2025D_title .title_text {
    width: auto;
    height: auto;
    color: var(--mb-ink);
    font-size: 40px;
    line-height: 1.25;
}

.mb-advantages-copy > p {
    max-width: 480px;
    margin: 0 0 22px;
    color: #63707d;
    font-size: 15px;
    line-height: 1.8;
}

.mb-advantages-list {
    display: grid;
    margin: 0 0 26px;
    padding: 0;
    grid-template-columns: repeat(2, minmax(0, 1fr));
    gap: 0 24px;
    list-style: none;
}

.mb-advantages-list li {
    position: relative;
    min-height: 62px;
    padding: 11px 0 10px 18px;
    border-top: 1px solid var(--mb-soft-line);
}

.mb-advantages-list li::before {
    position: absolute;
    top: 18px;
    left: 0;
    width: 7px;
    height: 7px;
    border-radius: 50%;
    background: var(--mb-red);
    content: "";
}

.mb-advantages-list strong,
.mb-advantages-list span {
    display: block;
}

.mb-advantages-list strong {
    color: var(--mb-ink);
    font-size: 14px;
}

.mb-advantages-list span {
    margin-top: 3px;
    color: #7b8792;
    font-size: 12px;
}

.mb-reference-home .v2025D_img01 {
    grid-column: 2;
    width: 100%;
    height: auto;
    aspect-ratio: 16 / 9;
    border-radius: 8px;
    object-fit: cover;
}

.mb-reference-home .v2023E {
    display: block;
    padding: 64px 0 72px;
    background: #ffffff;
}

.mb-reference-home .v2023E .process_title {
    width: auto;
    height: auto;
    margin: 0 auto 42px;
    line-height: 1.25;
}

.mb-process-steps {
    position: relative;
    display: grid;
    width: min(1200px, calc(100% - 48px));
    margin: 0 auto 34px;
    padding: 0;
    grid-template-columns: repeat(7, minmax(0, 1fr));
    gap: 12px;
    list-style: none;
}

.mb-process-steps li {
    min-height: 130px;
    padding: 16px 12px 14px;
    border: 1px solid var(--mb-soft-line);
    border-top: 3px solid var(--mb-cobalt);
    border-radius: 6px;
    background: #ffffff;
    text-align: left;
}

.mb-process-steps li:nth-child(2n) {
    border-top-color: var(--mb-red);
}

.mb-process-steps li > span {
    display: block;
    margin-bottom: 12px;
    color: var(--mb-cobalt);
    font-size: 12px;
    font-weight: 800;
    letter-spacing: 1px;
}

.mb-process-steps li:nth-child(2n) > span {
    color: var(--mb-red);
}

.mb-process-steps strong,
.mb-process-steps small {
    display: block;
}

.mb-process-steps strong {
    color: var(--mb-ink);
    font-size: 15px;
}

.mb-process-steps small {
    margin-top: 7px;
    color: #7b8792;
    font-size: 12px;
    line-height: 1.5;
}

.mb-reference-home .v2023E .to_web {
    display: inline-flex;
    min-height: 44px;
    margin: 0 auto;
    padding: 0 20px;
    align-items: center;
    border-radius: 6px;
    color: #ffffff;
    background: var(--mb-ink);
    font-size: 15px;
}

.mb-reference-home .v2023G .center_title {
    width: auto;
    height: auto;
    text-align: center;
    color: var(--mb-ink);
}

.mb-reference-home .v2023G .center_con .info_msg .info_content .msg_one,
.mb-reference-home .v2023G .center_con .info_msg .info_content .msg_right {
    border: 1px solid var(--mb-soft-line);
    border-radius: 8px;
    background: #ffffff;
    box-shadow: 0 8px 24px rgba(32, 53, 80, .06);
}

.mb-reference-home .v2023G .center_con .info_msg .info_content .msg_one img {
    width: 100%;
    height: 225px;
    object-fit: cover;
}

.mb-reference-home .v2023G .center_con li {
    border-radius: 5px;
    background: #eef3f8;
    color: #5d6b78;
}

.mb-reference-home .v2023G .center_con .actived {
    background: var(--mb-cobalt);
    color: #ffffff;
    box-shadow: none;
}

@media (max-width: 760px) {
    .mb-reference-banner {
        min-height: 0;
        padding-bottom: 20px;
    }

    .mb-reference-banner .bannerCarousel {
        height: 360px;
    }

    .mb-hero-copy {
        top: 28px;
        right: 20px;
        left: 20px;
        width: auto;
        transform: none;
    }

    .mb-hero-copy h1,
    .mb-hero-copy h2 {
        max-width: 280px;
        margin: 9px 0 12px;
        font-size: 30px;
        line-height: 1.25;
    }

    .mb-hero-copy p {
        max-width: 255px;
        margin-bottom: 17px;
        font-size: 14px;
        line-height: 1.65;
    }

    .mb-hero-link {
        min-height: 38px;
        padding: 0 13px;
        font-size: 13px;
    }

    .mb-ref-dots {
        bottom: 14px;
    }

    .mb-reference-banner .user {
        position: relative;
        top: auto;
        left: auto;
        width: calc(100% - 24px);
        height: auto;
        margin: -4px auto 0;
        transform: none;
    }

    .mb-compliance-note {
        display: block;
        width: calc(100% - 24px);
        margin: 0 auto;
        padding: 10px 12px;
    }

    .mb-compliance-note strong {
        margin-bottom: 4px;
    }

    .mb-brand-showcase {
        min-height: 190px;
    }

    .mb-reference-home .v2025A .v2025A_content .v2025A_content_right {
        display: flex;
        flex-direction: column;
        gap: 20px;
    }

    .mb-reference-home .v2025A .v2025A_content .v2025A_content_right .right_top,
    .mb-reference-home .v2025A .v2025A_content .v2025A_content_right .right_bottom {
        width: 100%;
        margin: 0;
    }

    .mb-device-art {
        grid-template-columns: 1fr;
    }

    .mb-device-art__copy {
        min-height: 240px;
        padding: 28px 24px;
    }

    .mb-device-art__copy h3 {
        font-size: 25px;
    }

    .mb-device-art__visual {
        min-height: 300px;
    }

    .mb-reference-home .v2025D_img_box {
        display: flex;
        padding-top: 48px;
        padding-bottom: 64px;
        flex-direction: column;
        gap: 30px;
    }

    .mb-advantages-copy,
    .mb-reference-home .v2025D_img01 {
        width: 100%;
    }

    .mb-advantages-copy .v2025D_title .title_text {
        font-size: 28px;
    }

    .mb-advantages-list {
        grid-template-columns: 1fr;
    }

    .mb-reference-home .v2025D_img01 {
        order: 2;
        aspect-ratio: 4 / 3;
    }

    .mb-process-steps {
        width: calc(100% - 24px);
        grid-template-columns: repeat(2, minmax(0, 1fr));
        gap: 10px;
    }

    .mb-process-steps li {
        min-height: 122px;
    }

    .mb-process-steps li:last-child {
        grid-column: 1 / -1;
    }

    .mb-reference-home .v2023G .center_con .info_msg .info_content .msg_one img {
        height: 210px;
    }
}

@media (max-width: 420px) {
    .mb-reference-banner .bannerCarousel {
        height: 330px;
    }

    .mb-hero-copy h1,
    .mb-hero-copy h2 {
        font-size: 28px;
    }

    .mb-hero-copy p {
        max-width: 230px;
        font-size: 13px;
    }
}

/* Original Media Box coverage and catalog presentation. */
.mb-coverage-grid {
    display: grid;
    width: min(1200px, 100%);
    margin: 0 auto;
    border-top: 1px solid #e7e9ec;
    border-left: 1px solid #e7e9ec;
    grid-template-columns: repeat(3, minmax(0, 1fr));
}

.mb-coverage-grid > div {
    position: relative;
    min-height: 146px;
    padding: 30px 28px 26px 78px;
    border-right: 1px solid #e7e9ec;
    border-bottom: 1px solid #e7e9ec;
    text-align: left;
}

.mb-coverage-grid span {
    position: absolute;
    top: 32px;
    left: 28px;
    color: var(--mb-red);
    font-size: 13px;
    font-weight: 800;
}

.mb-coverage-grid strong,
.mb-coverage-grid small {
    display: block;
}

.mb-coverage-grid strong {
    color: var(--mb-ink);
    font-size: 19px;
}

.mb-coverage-grid small {
    margin-top: 9px;
    color: #737c85;
    font-size: 13px;
    line-height: 1.6;
}

.mb-catalog-page .inside-banner {
    min-height: 710px;
    background-size: cover !important;
    background-position: center top !important;
}

.mb-catalog-page .inside-meiti {
    padding-top: 96px;
}

.mb-catalog-heading {
    margin: 0 auto 24px;
    color: #ffffff;
    text-align: center;
    text-shadow: 0 1px 10px rgba(0, 0, 0, .28);
}

.mb-catalog-heading span {
    display: block;
    font-size: 12px;
    font-weight: 800;
}

.mb-catalog-heading h1 {
    margin: 8px 0 5px;
    padding: 0;
    color: inherit;
    font-size: 32px;
    line-height: 1.25;
}

.mb-catalog-heading p {
    margin: 0;
    font-size: 14px;
}

.mb-catalog-page .meiti-search {
    background: rgba(22, 25, 28, .28);
    backdrop-filter: blur(5px);
}

.mb-catalog-page .meiti-search-condition {
    min-height: 0;
    border: 1px solid rgba(255, 255, 255, .72);
    border-radius: 8px;
    box-shadow: 0 12px 34px rgba(26, 31, 36, .18);
}

.mb-catalog-page .meiti-search-condition .condition ul li.active,
.mb-catalog-page .meiti-search-condition .condition ul li:hover {
    background: var(--mb-red);
}

.mb-filter-toggle,
.mb-mobile-media-list {
    display: none;
}

.mb-catalog-page .mtzy_bottom {
    height: 96px;
    background: #f6f7f9;
}

@media (max-width: 760px) {
    .mb-catalog-page {
        padding-top: 0;
    }

    .mb-catalog-page .inside-banner {
        min-height: 0;
        padding: 26px 0 16px;
        background-position: 72% center !important;
    }

    .mb-catalog-page .inside-meiti {
        width: calc(100% - 24px);
        padding-top: 0;
    }

    .mb-catalog-heading {
        margin-bottom: 18px;
        text-align: left;
    }

    .mb-catalog-heading h1 {
        display: block;
        margin-top: 6px;
        font-size: 27px;
    }

    .mb-catalog-heading p {
        font-size: 13px;
    }

    .mb-catalog-page .meiti-search {
        width: 100%;
        height: 44px;
        padding: 0 8px 0 14px;
        border-color: rgba(255, 255, 255, .8);
    }

    .mb-catalog-page .meiti-search .inptext {
        width: calc(100% - 44px);
        line-height: 42px;
    }

    .mb-catalog-page .ipt_button {
        width: 42px;
        height: 42px;
    }

    .mb-filter-toggle {
        display: block;
        width: 100%;
        height: 44px;
        margin-top: 10px;
        border: 1px solid rgba(255, 255, 255, .8);
        border-radius: 6px;
        color: #ffffff;
        background: rgba(22, 25, 28, .48);
        font-size: 14px;
        font-weight: 700;
    }

    .mb-catalog-page .meiti-search-condition {
        display: none;
        max-height: 62vh;
        margin-top: 10px;
        padding: 14px 12px 4px;
        overflow-y: auto;
        border-radius: 6px;
    }

    .mb-catalog-page .meiti-search-condition.is-expanded {
        display: block;
    }

    .mb-catalog-page .meiti-search-condition .condition {
        padding-bottom: 12px;
    }

    .mb-catalog-page .meiti-search-condition .condition .leiming {
        float: none;
        width: 100%;
        height: auto;
        margin-bottom: 5px;
        color: #333333;
        font-size: 14px;
        font-weight: 700;
        line-height: 1.5;
        text-align: left;
    }

    .mb-catalog-page .meiti-search-condition .condition ul {
        display: flex;
        margin-left: 0;
        flex-wrap: wrap;
        gap: 4px 2px;
    }

    .mb-catalog-page .meiti-search-condition .condition ul li {
        float: none;
        height: 28px;
        margin: 0;
        padding: 0 7px;
        font-size: 12px;
        line-height: 28px;
    }

    .mb-catalog-page .selectBox,
    .mb-catalog-page .zimeiti-selectBox {
        display: grid;
        margin-left: 0;
        grid-template-columns: repeat(2, minmax(0, 1fr));
        gap: 8px;
    }

    .mb-catalog-page .selectBox .unit,
    .mb-catalog-page .zimeiti-selectBox .unit {
        width: 100%;
        margin: 0;
    }

    .mb-catalog-page .table-list,
    .mb-catalog-page .tabBtn {
        display: none;
    }

    .mb-mobile-media-list {
        display: grid;
        gap: 10px;
    }

    .mb-mobile-media-item {
        padding: 16px;
        border: 1px solid #eceff2;
        border-radius: 7px;
        background: #ffffff;
        box-shadow: 0 5px 16px rgba(32, 42, 52, .05);
    }

    .mb-mobile-media-item header {
        display: grid;
        grid-template-columns: minmax(0, 1fr) auto;
        gap: 12px;
        align-items: start;
    }

    .mb-mobile-media-type {
        display: inline-block;
        margin-bottom: 6px;
        color: var(--mb-red-dark);
        font-size: 11px;
        font-weight: 700;
    }

    .mb-mobile-media-item h2 {
        margin: 0;
        color: #222831;
        font-size: 17px;
        line-height: 1.4;
        word-break: break-word;
    }

    .mb-mobile-media-price {
        min-width: 70px;
        text-align: right;
    }

    .mb-mobile-media-price small,
    .mb-mobile-media-price strong {
        display: block;
    }

    .mb-mobile-media-price small {
        color: #8a929a;
        font-size: 10px;
    }

    .mb-mobile-media-price strong {
        margin-top: 2px;
        color: var(--mb-red);
        font-size: 19px;
    }

    .mb-mobile-media-meta {
        display: grid;
        margin-top: 13px;
        padding: 10px 0;
        border-top: 1px solid #f0f1f3;
        border-bottom: 1px solid #f0f1f3;
        grid-template-columns: repeat(3, minmax(0, 1fr));
        gap: 7px;
    }

    .mb-mobile-media-meta span,
    .mb-mobile-media-meta b {
        display: block;
        overflow: hidden;
        font-size: 11px;
        text-overflow: ellipsis;
        white-space: nowrap;
    }

    .mb-mobile-media-meta span {
        color: #8a929a;
    }

    .mb-mobile-media-meta b {
        margin-top: 3px;
        color: #3e464e;
        font-weight: 600;
    }

    .mb-mobile-media-item > p {
        min-height: 20px;
        margin: 11px 0 0;
        color: #737b83;
        font-size: 12px;
        line-height: 1.65;
    }

    .mb-mobile-media-item footer {
        display: flex;
        margin-top: 12px;
        align-items: center;
        justify-content: flex-end;
        gap: 14px;
    }

    .mb-mobile-media-item footer a {
        color: #5f6871;
        font-size: 12px;
    }

    .mb-mobile-media-item footer .mb-mobile-media-primary {
        display: inline-flex;
        min-height: 34px;
        padding: 0 13px;
        align-items: center;
        border-radius: 5px;
        color: #ffffff;
        background: var(--mb-red);
        font-weight: 700;
    }

    .mb-catalog-page .mtzy_bottom {
        height: 36px;
        background: #f6f7f9;
    }

    .mb-coverage-grid {
        grid-template-columns: 1fr;
    }

    .mb-coverage-grid > div {
        min-height: 106px;
        padding: 24px 22px 20px 68px;
    }

.mb-coverage-grid span {
    top: 26px;
    left: 22px;
}
}

/* Final responsive corrections for the legacy content blocks. */
.mb-floating-service button,
.mb-floating-service a {
    box-sizing: border-box;
    width: 100%;
}

@media (max-width: 760px) {
    .mb-reference-home .v2025B_content_top {
        display: grid !important;
        width: 100%;
        margin-bottom: 22px;
        grid-template-columns: repeat(2, minmax(0, 1fr));
        gap: 12px;
    }

    .mb-reference-home .v2025B_content_top .item {
        width: auto !important;
        min-width: 0;
        min-height: 142px;
        margin: 0;
        padding: 18px 14px;
        border-radius: 7px;
    }

    .mb-reference-home .v2025B_content_top .item .serial_number {
        font-size: 28px;
    }

    .mb-reference-home .v2025B_content_top .item .introduce {
        font-size: 14px;
        line-height: 1.55;
    }

    .mb-reference-home .v2025C_content_top {
        grid-template-columns: 1fr !important;
        gap: 14px;
    }

    .mb-reference-home .v2025C_content_top .item {
        width: 100% !important;
        max-width: none;
        height: 330px;
        margin: 0;
    }

    .mb-reference-home .v2025C_content_bottom {
        display: grid !important;
        width: 100%;
        grid-template-columns: 1fr;
        gap: 14px;
    }

    .mb-reference-home .v2025C_content_bottom .item_box,
    .mb-reference-home .v2025C_content_bottom .item_box .item_content {
        width: 100% !important;
        max-width: none;
        min-width: 0;
        margin: 0;
    }

    .mb-reference-home .v2025C_content_bottom .item_box .item_content {
        min-height: 0;
        padding-top: 24px;
    }

    .mb-reference-home .v2025C_content_bottom .item_box .item_content .Price_btn {
        width: calc(100% - 36px);
    }

    .mb-reference-home .v2025C_content_bottom .item_box .item_content .item_content_item {
        padding-right: 18px;
        padding-left: 18px;
    }

    .mb-reference-home .v2025D_img_box {
        width: calc(100% - 24px);
        min-width: 0;
    }

    .mb-reference-home .v2025D_img01 {
        width: 100% !important;
        max-width: 100%;
        aspect-ratio: 16 / 10;
        object-fit: cover;
    }

    .mb-catalog-page .inside-meiti {
        box-sizing: border-box;
    }

    .mb-catalog-page .meiti-search {
        box-sizing: border-box;
        width: 100%;
        margin-right: 0;
    }

    .mb-catalog-page .meiti-search form {
        box-sizing: border-box;
        width: 100%;
    }

    .mb-catalog-page .meiti-search .inptext {
        box-sizing: border-box;
        width: calc(100% - 42px);
    }

    .mb-catalog-page .tableSection {
        box-sizing: border-box;
        width: calc(100% - 20px);
    }

    .mb-mobile-media-item footer {
        flex-wrap: wrap;
    }

    .mb-reference-home .v2023G .center_con .info_msg .info_content .article_info {
        display: flex;
        min-width: 0;
    }

    .mb-reference-home .v2023G .center_con .info_msg .info_content .article_title {
        min-width: 0;
        width: auto;
        flex: 1 1 auto;
        overflow: hidden;
    }

    .mb-reference-home .v2023G .center_con .info_msg .info_content .article_title a {
        display: block;
        max-width: 100%;
        overflow: hidden;
        text-overflow: ellipsis;
        white-space: nowrap;
    }
}
