﻿/* =========================================================
   Contact page
========================================================= */

.contact-page {
    width: 100%;
    padding: 50px 0;
    overflow: hidden;
}

.contact-box {
    position: relative;
    display: flex;
    align-items: stretch;
    gap: 34px;
}

.contact-box-left,
.contact-feedback-left {
    position: relative;
    flex: 1;
    overflow: hidden;
    border: 1px solid #dce7f3;
    border-radius: 24px;
    background: #ffffff;
    box-shadow: 0 20px 50px rgba(14, 90, 164, 0.10);
}

.contact-box-left {
    padding: 52px 48px;
    color: #333333;
}

.contact-box-left::before {
    content: "";
    position: absolute;
    top: -90px;
    right: -90px;
    width: 220px;
    height: 220px;
    border-radius: 50%;
    background: linear-gradient(
        135deg,
        #0e5aa4 0%,
        #f7b901 100%
    );
    opacity: 0.12;
    pointer-events: none;
}

.contact-box-left::after {
    content: "";
    position: absolute;
    left: -60px;
    bottom: -60px;
    width: 160px;
    height: 160px;
    border-radius: 50%;
    background: linear-gradient(
        135deg,
        #f7b901 0%,
        #0e5aa4 100%
    );
    opacity: 0.08;
    pointer-events: none;
}

.contact-label {
    position: relative;
    z-index: 2;
    display: inline-block;
    margin-bottom: 18px;
    padding: 8px 18px;
    border: 1px solid rgba(247, 185, 1, 0.28);
    border-radius: 30px;
    background: #fffaf0;
    color: #0e5aa4;
    font-size: 13px;
    font-weight: bold;
    letter-spacing: 1.5px;
}

.contact-box-left h2 {
    position: relative;
    z-index: 2;
    margin: 0;
    color: #14243b;
    font-size: 28px;
    line-height: 1.25;
    font-weight: 800;
}

.contact-box-left em {
    position: relative;
    z-index: 2;
    display: block;
    width: 76px;
    height: 5px;
    margin: 24px 0 28px;
    border-radius: 20px;
    background: linear-gradient(
        90deg,
        #f7b901 0%,
        #0e5aa4 100%
    );
}

.contact-box-left-info {
    position: relative;
    z-index: 2;
    color: #666666;
    font-size: 15px;
    line-height: 1.9;
}

.contact-box-left-info p {
    margin-bottom: 12px;
}

.contact-quick-list {
    position: relative;
    z-index: 2;
    margin-top: 34px;
}

.contact-quick-item {
    min-height: 72px;
    display: flex;
    align-items: center;
    gap: 16px;
    padding: 14px 0;
    border-bottom: 1px solid #dce7f3;
}

.contact-quick-item:last-child {
    border-bottom: none;
}

.contact-quick-item span {
    width: 44px;
    height: 44px;
    flex: 0 0 44px;
    display: flex;
    align-items: center;
    justify-content: center;
    border-radius: 12px;
    background: linear-gradient(
        135deg,
        #0e5aa4 0%,
        #2879c4 100%
    );
    color: #ffffff;
    font-size: 18px;
    box-shadow: 0 12px 28px rgba(14, 90, 164, 0.24);
}

.contact-quick-item p {
    margin: 0;
    color: #333333;
    font-size: 16px;
    line-height: 1.7;
}

.contact-quick-item.address {
    align-items: flex-start;
}

.contact-quick-item.address span {
    margin-top: 4px;
}


/* =========================================================
   Contact form
========================================================= */

.contact-feedback-left {
    padding: 48px;
}

.contact-feedback-left::before {
    content: "";
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 8px;
    background: linear-gradient(
        90deg,
        #f7b901 0%,
        #0e5aa4 100%
    );
}

.contact-form-title {
    margin-bottom: 30px;
}

.contact-form-title h3 {
    margin: 0 0 10px;
    color: #14243b;
    font-size: 30px;
    line-height: 1.3;
    font-weight: 800;
}

.contact-form-title p {
    margin: 0;
    color: #777777;
    font-size: 15px;
    line-height: 1.7;
}

.form-box {
    position: relative;
    z-index: 2;
}

.contact-form-row {
    display: flex;
    gap: 18px;
}

.contact-form-row dl {
    width: 50%;
    margin: 0 0 18px;
}

.contact-form-row dt,
.contact-form-item em {
    display: block;
    margin-bottom: 9px;
    color: #333333;
    font-size: 15px;
    line-height: 22px;
    font-weight: bold;
    font-style: normal;
}

.red {
    color: #e5484d;
}

.contact-form-row dd {
    margin: 0;
}

.contact-form-row input,
.contact-form-item input,
.contact-form-item textarea {
    width: 100%;
    box-sizing: border-box;
    border: 1px solid #dce7f3;
    border-radius: 14px;
    outline: none;
    background: #f7faff;
    color: #333333;
    font-size: 15px;
    transition:
        border-color 0.25s ease,
        background-color 0.25s ease,
        box-shadow 0.25s ease;
}

.contact-form-row input,
.contact-form-item input {
    height: 52px;
    padding: 0 17px;
}

.contact-form-item {
    margin-bottom: 18px;
}

.contact-form-item textarea {
    min-height: 148px;
    padding: 16px 17px;
    line-height: 1.7;
    resize: vertical;
}

.contact-form-row input:focus,
.contact-form-item input:focus,
.contact-form-item textarea:focus {
    border-color: #0e5aa4;
    background: #ffffff;
    box-shadow: 0 0 0 4px rgba(14, 90, 164, 0.10);
}

.contact-submit {
    margin-top: 26px;
}

.contact-submit button {
    width: 100%;
    height: 56px;
    border: none;
    border-radius: 16px;
    outline: none;
    background: linear-gradient(
        135deg,
        #0e5aa4 0%,
        #2879c4 100%
    );
    color: #ffffff;
    font-size: 16px;
    font-weight: bold;
    letter-spacing: 0.3px;
    cursor: pointer;
    box-shadow: 0 15px 30px rgba(14, 90, 164, 0.25);
    transition:
        background-color 0.25s ease,
        transform 0.25s ease,
        box-shadow 0.25s ease;
}

.contact-submit button i {
    margin-right: 8px;
}

.contact-submit button:hover {
    background: #f7b901;
    color: #ffffff;
    transform: translateY(-2px);
    box-shadow: 0 20px 38px rgba(247, 185, 1, 0.28);
}


/* =========================================================
   Contact map
========================================================= */

.contact-map-wrap {
    margin-top: 42px;
}

.contact-map-title {
    margin-bottom: 34px;
    text-align: center;
}

.contact-map-title span {
    display: inline-block;
    margin-bottom: 10px;
    color: #0e5aa4;
    font-size: 13px;
    font-weight: bold;
    letter-spacing: 2px;
}

.contact-map-title h2 {
    margin: 0;
    color: #14243b;
    font-size: 34px;
    line-height: 1.3;
    font-weight: 800;
}

.contact-map {
    height: 480px;
    overflow: hidden;
    border: 1px solid #dce7f3;
    border-radius: 26px;
    background: #ffffff;
    box-shadow: 0 20px 55px rgba(14, 90, 164, 0.12);
}


/* =========================================================
   Contact Sourcing Conversion Section
========================================================= */

.contact-sourcing-section {
    width: 100%;
    padding: 76px 0 72px;
}

.contact-sourcing-wrap {
    position: relative;
    display: grid;
    grid-template-columns: minmax(0, 1.65fr) minmax(280px, 0.75fr);
    gap: 48px;
    padding: 48px 50px;
    overflow: hidden;
    border: 1px solid #dce7f3;
    border-radius: 24px;
    background: #ffffff;
    box-shadow: 0 20px 54px rgba(14, 90, 164, 0.10);
}

.contact-sourcing-wrap::before {
    content: "";
    position: absolute;
    top: 0;
    right: 0;
    left: 0;
    height: 7px;
    background: linear-gradient(
        90deg,
        #f7b901 0%,
        #f7b901 36%,
        #0e5aa4 100%
    );
}

.contact-sourcing-wrap::after {
    content: "";
    position: absolute;
    right: -95px;
    bottom: -120px;
    width: 280px;
    height: 280px;
    border-radius: 50%;
    background: rgba(14, 90, 164, 0.05);
}

.contact-sourcing-main {
    position: relative;
    z-index: 2;
    min-width: 0;
}

.contact-sourcing-label {
    display: inline-flex;
    align-items: center;
    min-height: 30px;
    margin-bottom: 15px;
    padding: 5px 14px;
    border: 1px solid rgba(247, 185, 1, 0.45);
    border-radius: 999px;
    background: #fffaf0;
    color: #0e5aa4;
    font-size: 12px;
    line-height: 20px;
    font-weight: 700;
    letter-spacing: 1.2px;
}

.contact-sourcing-main h2 {
    max-width: 760px;
    margin: 0 0 18px;
    color: #101d33;
    font-size: 34px;
    line-height: 1.35;
    font-weight: 800;
}

.contact-sourcing-intro {
    max-width: 820px;
    margin: 0;
    color: #52677f;
    font-size: 15px;
    line-height: 1.9;
}

.contact-sourcing-points {
    display: grid;
    grid-template-columns: repeat(2, minmax(0, 1fr));
    gap: 18px 26px;
    margin-top: 30px;
}

.contact-sourcing-point {
    display: flex;
    align-items: flex-start;
    gap: 12px;
    min-width: 0;
}

.contact-sourcing-point > i {
    flex: 0 0 21px;
    margin-top: 3px;
    color: #f7b901;
    font-size: 21px;
    line-height: 1;
}

.contact-sourcing-point > div {
    min-width: 0;
}

.contact-sourcing-point strong {
    display: block;
    margin-bottom: 4px;
    color: #14243b;
    font-size: 15px;
    line-height: 23px;
    font-weight: 700;
}

.contact-sourcing-point span {
    display: block;
    color: #667085;
    font-size: 13px;
    line-height: 21px;
}

.contact-sourcing-actions {
    display: flex;
    align-items: center;
    flex-wrap: wrap;
    gap: 13px;
    margin-top: 34px;
}

.contact-sourcing-primary,
.contact-sourcing-secondary {
    min-height: 50px;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    gap: 9px;
    padding: 12px 24px;
    border-radius: 10px;
    font-size: 15px;
    line-height: 24px;
    font-weight: 700;
    text-decoration: none;
    transition:
        color 0.25s ease,
        background 0.25s ease,
        border-color 0.25s ease,
        box-shadow 0.25s ease,
        transform 0.25s ease;
}

.contact-sourcing-primary {
    border: 1px solid #f7b901;
    background: #f7b901;
    color: #ffffff;
    box-shadow: 0 12px 26px rgba(247, 185, 1, 0.26);
}

.contact-sourcing-primary:hover {
    border-color: #0e5aa4;
    background: #0e5aa4;
    color: #ffffff;
    box-shadow: 0 14px 28px rgba(14, 90, 164, 0.23);
    transform: translateY(-2px);
}

.contact-sourcing-secondary {
    border: 1px solid #cdddeb;
    background: #ffffff;
    color: #0e5aa4;
}

.contact-sourcing-secondary:hover {
    border-color: #0e5aa4;
    background: #f3f8fd;
    color: #0e5aa4;
    transform: translateY(-2px);
}

.contact-sourcing-side {
    position: relative;
    z-index: 2;
    display: grid;
    grid-template-columns: repeat(2, minmax(0, 1fr));
    align-content: center;
    gap: 14px;
}

.contact-sourcing-stat {
    min-height: 132px;
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    padding: 18px 12px;
    border: 1px solid #dce7f3;
    border-radius: 16px;
    background: #f7faff;
    text-align: center;
}

.contact-sourcing-stat:nth-child(2),
.contact-sourcing-stat:nth-child(3) {
    background: #fffaf0;
}

.contact-sourcing-stat strong {
    display: block;
    margin-bottom: 7px;
    color: #0e5aa4;
    font-size: 27px;
    line-height: 34px;
    font-weight: 800;
}

.contact-sourcing-stat span {
    display: block;
    color: #667085;
    font-size: 13px;
    line-height: 20px;
    font-weight: 600;
}


/* =========================================================
   Blogs page
========================================================= */

.blog-page {
    width: 100%;
}

.blog-main {
    padding: 54px 0 76px;
}

.blog-main-container {
    display: flex;
    align-items: flex-start;
    justify-content: space-between;
    gap: 32px;
}

.blog-main-left {
    width: calc(100% - 350px);
    min-width: 0;
}

.blog-main-right {
    position: sticky;
    top: 90px;
    width: 318px;
    flex-shrink: 0;
    align-self: flex-start;
}


/* =========================================================
   Blog tabs
========================================================= */

.blog-tabs {
    margin-bottom: 26px;
    padding: 12px;
    overflow-x: auto;
    border: 1px solid #dce7f3;
    border-radius: 18px;
    background: #ffffff;
    box-shadow: 0 16px 40px rgba(14, 90, 164, 0.08);
}

.blog-tabs ul {
    display: flex;
    flex-wrap: nowrap;
    gap: 10px;
    margin: 0;
    padding: 0;
}

.blog-tabs ul li {
    flex-shrink: 0;
}

.blog-tabs ul li a {
    display: block;
    height: 44px;
    padding: 0 22px;
    border-radius: 999px;
    background: #f3f8fd;
    color: #0e5aa4;
    font-size: 15px;
    line-height: 44px;
    font-weight: 700;
    text-decoration: none;
    transition:
        color 0.25s ease,
        background 0.25s ease,
        box-shadow 0.25s ease;
}

.blog-tabs ul li a:hover,
.blog-tabs ul li.thistab a,
.blog-tabs ul li.active a {
    background: linear-gradient(
        135deg,
        #0e5aa4 0%,
        #2879c4 100%
    );
    color: #ffffff;
    box-shadow: 0 12px 24px rgba(14, 90, 164, 0.24);
}

.blog-tab-pane {
    width: 100%;
}

.blog-tab-pane-box {
    display: grid;
    grid-template-columns: minmax(0, 1fr) 360px;
    align-items: stretch;
    gap: 24px;
}

.blog-tab-pane-topblog {
    display: grid;
    gap: 18px;
}


/* =========================================================
   Blog cards
========================================================= */

.blog-tab-pane-topblog dl,
.blog-tab-pane-hotblog dl,
.blog-tab-pane-redblog dl {
    margin: 0;
    overflow: hidden;
    border: 1px solid #dce7f3;
    border-radius: 20px;
    background: #ffffff;
    box-shadow: 0 16px 42px rgba(14, 90, 164, 0.08);
    transition:
        transform 0.3s ease,
        box-shadow 0.3s ease,
        border-color 0.3s ease;
}

.blog-tab-pane-topblog dl:hover,
.blog-tab-pane-hotblog dl:hover,
.blog-tab-pane-redblog dl:hover {
    border-color: rgba(247, 185, 1, 0.45);
    transform: translateY(-5px);
    box-shadow: 0 24px 58px rgba(14, 90, 164, 0.14);
}

.blog-tab-pane-topblog dl {
    display: flex;
}

.blog-tab-pane-topblog dl dt {
    width: 260px;
    flex-shrink: 0;
    overflow: hidden;
}

.blog-tab-pane-topblog dl dd {
    flex: 1;
    min-width: 0;
    display: flex;
    flex-direction: column;
    justify-content: center;
    padding: 26px 24px;
}

.blog-tab-pane-hotblog dl dt,
.blog-tab-pane-redblog dl dt {
    position: relative;
    overflow: hidden;
}

.blog-tab-pane-hotblog dl dt img,
.blog-tab-pane-topblog dl dt img,
.blog-tab-pane-redblog dl dt img {
    display: block;
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform 0.45s ease;
}

.blog-tab-pane-topblog dl dt img {
    min-height: 170px;
}

.blog-tab-pane-hotblog dl dt img {
    height: 245px;
}

.blog-tab-pane-redblog dl dt img {
    height: 188px;
}

.blog-tab-pane-topblog dl:hover dt img,
.blog-tab-pane-hotblog dl:hover dt img,
.blog-tab-pane-redblog dl:hover dt img {
    transform: scale(1.06);
}

.blog-tab-pane-hotblog dl dd {
    padding: 24px 24px 26px;
}

.blog-title {
    display: block;
    color: #14243b;
    font-size: 18px;
    line-height: 1.55;
    font-weight: 800;
    text-decoration: none;
    transition: color 0.25s ease;
}

.blog-title:hover {
    color: #f7b901;
}

.blog-tab-pane-hotblog .blog-title {
    font-size: 20px;
}

.blog-tab-pane-topblog em,
.blog-tab-pane-hotblog em,
.blog-tab-pane-redblog em {
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 12px;
    margin-top: 16px;
    color: #667085;
    font-size: 13px;
    line-height: 20px;
    font-style: normal;
}

.blog-tab-pane-topblog em i,
.blog-tab-pane-hotblog em i,
.blog-tab-pane-redblog em i {
    margin-right: 6px;
    color: #0e5aa4;
}

.blog-hot-label {
    position: absolute;
    top: 16px;
    left: 16px;
    height: 32px;
    padding: 0 15px;
    border-radius: 999px;
    background: #f7b901;
    color: #ffffff;
    font-size: 13px;
    line-height: 32px;
    font-weight: 700;
    box-shadow: 0 10px 20px rgba(247, 185, 1, 0.25);
}


/* =========================================================
   Blog section title
========================================================= */

.blog-section-title {
    margin: 38px 0 24px;
    text-align: left;
}

.blog-section-title span {
    display: inline-block;
    margin-bottom: 12px;
    padding: 7px 16px;
    border: 1px solid rgba(247, 185, 1, 0.28);
    border-radius: 999px;
    background: #fffaf0;
    color: #0e5aa4;
    font-size: 12px;
    line-height: 18px;
    font-weight: 700;
    letter-spacing: 1.5px;
    text-transform: uppercase;
}

.blog-section-title h2 {
    margin: 0;
    color: #14243b;
    font-size: 30px;
    line-height: 1.35;
    font-weight: 800;
}

.blog-tab-pane-redblog {
    display: grid;
    grid-template-columns: repeat(3, minmax(0, 1fr));
    gap: 22px;
}

.blog-tab-pane-redblog dl dd {
    padding: 20px 20px 24px;
}

.blog-tab-pane-redblog .blog-title {
    height: 54px;
    margin-top: 10px;
    overflow: hidden;
    font-size: 17px;
}

.blog-desc {
    display: block;
    height: 48px;
    margin-top: 12px;
    overflow: hidden;
    color: #666666;
    font-size: 14px;
    line-height: 1.7;
}


/* =========================================================
   Blog sidebar
========================================================= */

.blog-main-right-cate,
.blog-main-right-parts,
.blog-company-profile {
    overflow: hidden;
    border: 1px solid #dce7f3;
    border-radius: 20px;
    background: #ffffff;
    box-shadow: 0 16px 42px rgba(14, 90, 164, 0.08);
}

.blog-main-right-parts,
.blog-company-profile {
    margin-top: 15px;
}

.blog-main-right-parts-title {
    min-height: 58px;
    display: flex;
    align-items: center;
    justify-content: space-between;
    padding: 0 22px;
    background: linear-gradient(
        135deg,
        #0e5aa4 0%,
        #2879c4 100%
    );
}

.blog-main-right-parts-title b {
    color: #ffffff;
    font-size: 15px;
    line-height: 24px;
}

.blog-main-right-parts-title a {
    color: rgba(255, 255, 255, 0.88);
    font-size: 14px;
    text-decoration: none;
}

.blog-main-right-parts-title a:hover {
    color: #f7b901;
}

.blog-main-right-parts-title a i {
    margin-left: 6px;
}

.blog-main-right-cate > a {
    display: flex;
    align-items: center;
    padding: 15px 22px;
    border-bottom: 1px solid #dce7f3;
    color: #555555;
    font-size: 15px;
    line-height: 22px;
    text-decoration: none;
    transition:
        color 0.25s ease,
        background-color 0.25s ease,
        padding-left 0.25s ease;
}

.blog-main-right-cate > a:last-child {
    border-bottom: none;
}

.blog-main-right-cate > a i {
    width: 22px;
    color: #0e5aa4;
}

.blog-main-right-cate > a:hover {
    padding-left: 28px;
    background: #fffaf0;
    color: #0e5aa4;
}

.blog-main-right-parts-list {
    padding: 12px 18px 18px;
}

.blog-main-right-parts-list dl {
    display: flex;
    align-items: center;
    gap: 14px;
    margin: 0;
    padding: 14px 0;
    border-bottom: 1px solid #dce7f3;
}

.blog-main-right-parts-list dl:last-child {
    border-bottom: none;
}

.blog-main-right-parts-list dl dt {
    width: 74px;
    height: 74px;
    flex-shrink: 0;
    overflow: hidden;
    border: 1px solid #dce7f3;
    border-radius: 14px;
    background: #ffffff;
}

.blog-main-right-parts-list dl dt img {
    width: 100%;
    height: 100%;
    object-fit: contain;
}

.blog-main-right-parts-list dl dd {
    flex: 1;
    min-width: 0;
    margin: 0;
}

.blog-main-right-parts-list dl dd a {
    display: block;
    height: 21px;
    overflow: hidden;
    color: #14243b;
    font-size: 14px;
    line-height: 21px;
    font-weight: 800;
    text-decoration: none;
}

.blog-main-right-parts-list dl dd a:hover {
    color: #f7b901;
}

.blog-main-right-parts-list dl dd em {
    display: block;
    margin-top: 5px;
    color: #667085;
    font-size: 13px;
    line-height: 20px;
    font-style: normal;
}

.blog-company-profile-body {
    padding: 24px 22px 22px;
}

.blog-company-profile-logo {
    min-height: 108px;
    display: flex;
    align-items: center;
    justify-content: center;
    margin-bottom: 10px;
    padding: 18px;
    border: 1px solid #dce7f3;
    border-radius: 16px;
}

.blog-company-profile-logo img {
    display: block;
    width: auto;
    height: auto;
    max-width: 100%;
    max-height: 68px;
    object-fit: contain;
}

.blog-company-profile-content {
    color: #59697c;
    font-size: 14px;
    line-height: 24px;
}

.blog-company-profile-content p {
    margin: 0 0 5px;
}

.blog-company-profile-content p:last-child {
    margin-bottom: 0;
}

.blog-company-profile-content img {
    max-width: 100%;
    height: auto;
}

.blog-company-profile-more {
    min-height: 42px; width:100%;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    gap: 8px;
    margin-top: 6px;
    padding: 9px 18px;
    border: 1px solid #0e5aa4;
    border-radius: 9px;
    background: #0e5aa4;
    color: #ffffff;
    font-size: 14px;
    line-height: 22px;
    font-weight: 700;
    text-decoration: none;
    box-shadow: 0 10px 22px rgba(14, 90, 164, 0.18);
    transition:
        color 0.25s ease,
        background-color 0.25s ease,
        border-color 0.25s ease,
        box-shadow 0.25s ease,
        transform 0.25s ease;
}

.blog-company-profile-more i {
    font-size: 15px;
    transition: transform 0.25s ease;
}

.blog-company-profile-more:hover {
    border-color: #f7b901;
    background: #f7b901;
    color: #ffffff;
    box-shadow: 0 12px 24px rgba(247, 185, 1, 0.24);
    transform: translateY(-2px);
}

.blog-company-profile-more:hover i {
    transform: translateX(3px);
}


/* =========================================================
   News list page
========================================================= */

.news-list-page {
    width: 100%;
    padding: 54px 0 72px;
    background: #f7faff;
}

.news-list-layout {
    align-items: flex-start;
}

.news-list-main {
    min-width: 0;
}

.news-list-head {
    margin-bottom: 28px;
    padding: 30px 32px;
    border: 1px solid #dce7f3;
    border-radius: 20px;
    background: #ffffff;
    box-shadow: 0 16px 42px rgba(14, 90, 164, 0.07);
    text-align: left;
}

.news-list-head span {
    display: inline-block;
    margin-bottom: 12px;
    padding: 7px 16px;
    border: 1px solid rgba(247, 185, 1, 0.28);
    border-radius: 999px;
    background: #fffaf0;
    color: #0e5aa4;
    font-size: 12px;
    line-height: 18px;
    font-weight: 700;
    letter-spacing: 1.5px;
    text-transform: uppercase;
}

.news-list-head h1 {
    margin: 0;
    color: #14243b;
    font-size: 34px;
    line-height: 1.3;
    font-weight: 800;
}

.news-list-head p {
    max-width: 860px;
    margin: 13px 0 0;
    color: #667085;
    font-size: 15px;
    line-height: 1.8;
}

.blog-list {
    display: grid;
    grid-template-columns: repeat(3, minmax(0, 1fr));
    gap: 26px;
}

.news-list-layout .blog-list {
    grid-template-columns: repeat(2, minmax(0, 1fr));
    gap: 22px;
}

.blog-list dl {
    margin: 0;
    overflow: hidden;
    border: 1px solid #dce7f3;
    border-radius: 20px;
    background: #ffffff;
    box-shadow: 0 14px 36px rgba(14, 90, 164, 0.07);
    transition:
        transform 0.3s ease,
        box-shadow 0.3s ease,
        border-color 0.3s ease;
}

.blog-list dl:hover {
    border-color: rgba(247, 185, 1, 0.45);
    transform: translateY(-5px);
    box-shadow: 0 22px 52px rgba(14, 90, 164, 0.13);
}

.blog-list dl dt {
    position: relative;
    width: 100%;
    height: 210px;
    overflow: hidden;
}

.news-list-layout .blog-list dl dt {
    height: 196px;
}

.blog-list dl dt a {
    display: block;
    width: 100%;
    height: 100%;
}

.blog-list dl dt img {
    display: block;
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform 0.45s ease;
}

.blog-list dl:hover dt img {
    transform: scale(1.06);
}

.blog-list dl dd {
    padding: 22px 22px 25px;
}

.blog-list-meta {
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 12px;
    margin-bottom: 12px;
}

.blog-list-meta em {
    display: inline-flex;
    align-items: center;
    color: #667085;
    font-size: 13px;
    line-height: 20px;
    font-style: normal;
}

.blog-list-meta em i {
    margin-right: 6px;
    color: #0e5aa4;
}

.blog-list-title {
    display: block;
    height: 56px;
    overflow: hidden;
    color: #14243b;
    font-size: 18px;
    line-height: 28px;
    font-weight: 800;
    text-decoration: none;
}

.blog-list-title:hover {
    color: #f7b901;
}

.blog-list dl dd p {
    height: 50px;
    margin: 12px 0 0;
    overflow: hidden;
    color: #666666;
    font-size: 14px;
    line-height: 25px;
}

.blog-list-more {
    height: 38px;
    display: inline-flex;
    align-items: center;
    margin-top: 18px;
    padding: 0 18px;
    border: 1px solid #dce7f3;
    border-radius: 999px;
    background: #f3f8fd;
    color: #0e5aa4;
    font-size: 14px;
    line-height: 38px;
    font-weight: 700;
    text-decoration: none;
    transition:
        color 0.25s ease,
        background-color 0.25s ease,
        border-color 0.25s ease;
}

.blog-list-more i {
    margin-left: 7px;
    transition: transform 0.25s ease;
}

.blog-list-more:hover {
    border-color: #f7b901;
    background: #f7b901;
    color: #ffffff;
}

.blog-list-more:hover i {
    transform: translateX(3px);
}

.news-list-main > .default {
    margin-top: 30px;
}


/* =========================================================
   News detail page
========================================================= */

.news-show-page {
    width: 100%;
    padding: 54px 0 72px;
    background: #f7faff;
}

.news-show-layout {
    align-items: flex-start;
}

.news-show-main {
    min-width: 0;
}

.blog-show {
    position: relative;
    padding: 44px 46px 40px;
    overflow: hidden;
    border: 1px solid #dce7f3;
    border-radius: 22px;
    background: #ffffff;
    box-shadow: 0 18px 48px rgba(14, 90, 164, 0.09);
}

.blog-show::before {
    content: "";
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 7px;
    background: linear-gradient(
        90deg,
        #f7b901 0%,
        #0e5aa4 100%
    );
}

.blog-show-head {
    margin-bottom: 34px;
    padding-bottom: 30px;
    border-bottom: 1px solid #dce7f3;
    text-align: center;
}

.blog-show-label {
    display: inline-block;
    margin-bottom: 18px;
    padding: 8px 18px;
    border: 1px solid rgba(247, 185, 1, 0.28);
    border-radius: 999px;
    background: #fffaf0;
    color: #0e5aa4;
    font-size: 13px;
    line-height: 20px;
    font-weight: 700;
    letter-spacing: 2px;
    text-transform: uppercase;
}

.blog-show h1 {
    max-width: 900px;
    margin: 0 auto;
    color: #14243b;
    font-size: 36px;
    line-height: 1.38;
    font-weight: 800;
}

.blog-show-meta {
    display: flex;
    align-items: center;
    justify-content: center;
    flex-wrap: wrap;
    gap: 14px 26px;
    margin-top: 22px;
    color: #667085;
    font-size: 14px;
    line-height: 22px;
}

.blog-show-meta span {
    display: inline-flex;
    align-items: center;
}

.blog-show-meta i {
    margin-right: 7px;
    color: #0e5aa4;
    font-size: 15px;
}

.news-show-layout .relate-blog-list {
    grid-template-columns: repeat(2, minmax(0, 1fr));
    gap: 22px;
}

.news-show-layout .relate-blog-list dl dt {
    height: 190px;
}


/* =========================================================
   Blog detail content
========================================================= */

.blog-info {
    color: #444444;
    font-size: 16px;
    line-height: 1.9;
}

.blog-info h2,
.blog-info h3,
.blog-info h4 {
    margin-top: 28px;
    margin-bottom: 14px;
    color: #14243b;
    font-weight: 800;
}

.blog-info h2 {
    font-size: 28px;
    line-height: 1.4;
}

.blog-info h3 {
    font-size: 23px;
    line-height: 1.4;
}

.blog-info h4 {
    font-size: 19px;
    line-height: 1.4;
}

.blog-info p {
    margin: 0 0 16px;
}

.blog-info a {
    color: #0e5aa4;
    text-decoration: underline;
}

.blog-info a:hover {
    color: #f7b901;
}

.blog-info img {
    max-width: 100%;
    height: auto;
    margin: 18px 0;
    border-radius: 16px;
}

.blog-info ul,
.blog-info ol {
    margin: 16px 0;
    padding-left: 24px;
}

.blog-info ul li {
    list-style: disc;
}

.blog-info ol li {
    list-style: decimal;
}

.blog-info li {
    margin-bottom: 8px;
}


/* =========================================================
   Blog table of contents
========================================================= */

.blog-show-toc,
.posts-info .toc {
    margin: 0 0 34px;
    padding: 22px 26px;
    border: 1px solid #dce7f3;
    border-radius: 18px;
    background: #f3f8fd;
    box-shadow: 0 10px 30px rgba(14, 90, 164, 0.06);
}

.blog-show-toc h2,
.posts-info .toc h2 {
    margin: 0 0 14px;
    color: #14243b;
    font-size: 22px;
    line-height: 1.4;
    font-weight: 800;
}

.blog-show-toc ol,
.posts-info .toc ol {
    margin: 0;
    padding-left: 22px;
}

.blog-show-toc li,
.posts-info .toc li {
    margin-bottom: 8px;
    color: #555555;
}

.blog-show-toc a,
.posts-info .toc a {
    color: #0e5aa4;
    text-decoration: none;
}

.blog-show-toc a:hover,
.posts-info .toc a:hover {
    color: #f7b901;
}


/* =========================================================
   Blog content table
========================================================= */

.blog-info table {
    width: 100%;
    margin: 24px 0;
    overflow: hidden;
    border-collapse: collapse;
    border-radius: 12px;
    font-size: 15px;
}

.blog-info table th {
    padding: 13px 12px;
    border: 1px solid #dce7f3;
    background: linear-gradient(
        135deg,
        #0e5aa4 0%,
        #2879c4 100%
    );
    color: #ffffff;
    font-weight: 700;
    text-align: left;
}

.blog-info table td {
    padding: 12px;
    border: 1px solid #dce7f3;
    color: #444444;
}

.blog-info table tr:nth-child(even) td {
    background: #f7faff;
}


/* =========================================================
   Previous and next article
========================================================= */

.next-prev-single {
    margin-top: 38px;
    padding-top: 26px;
    border-top: 1px solid #dce7f3;
}

.next-prev-single p {
    margin: 0;
    padding: 12px 18px;
    border: 1px solid #dce7f3;
    border-radius: 12px;
    background: #f3f8fd;
    color: #555555;
    font-size: 15px;
    line-height: 24px;
}

.next-prev-single p + p {
    margin-top: 12px;
}

.next-prev-single p span {
    color: #0e5aa4;
    font-weight: 800;
}

.next-prev-single a {
    color: #333333;
    text-decoration: none;
}

.next-prev-single a:hover {
    color: #f7b901;
}


/* =========================================================
   Related blogs
========================================================= */

.relate-blog {
    margin-top: 42px;
}

.relate-blog-title {
    margin-bottom: 28px;
    text-align: center;
}

.relate-blog-title span {
    display: inline-block;
    margin-bottom: 12px;
    padding: 8px 18px;
    border: 1px solid rgba(247, 185, 1, 0.28);
    border-radius: 999px;
    background: #fffaf0;
    color: #0e5aa4;
    font-size: 13px;
    line-height: 20px;
    font-weight: 700;
    letter-spacing: 2px;
    text-transform: uppercase;
}

.relate-blog-title h2 {
    margin: 0;
    color: #14243b;
    font-size: 32px;
    line-height: 1.35;
    font-weight: 800;
}

.relate-blog-list {
    display: grid;
    grid-template-columns: repeat(4, minmax(0, 1fr));
    gap: 24px;
}

.relate-blog-list dl {
    margin: 0;
    overflow: hidden;
    border: 1px solid #dce7f3;
    border-radius: 20px;
    background: #ffffff;
    box-shadow: 0 16px 42px rgba(14, 90, 164, 0.08);
    transition:
        transform 0.3s ease,
        box-shadow 0.3s ease,
        border-color 0.3s ease;
}

.relate-blog-list dl:hover {
    border-color: rgba(247, 185, 1, 0.45);
    transform: translateY(-6px);
    box-shadow: 0 24px 58px rgba(14, 90, 164, 0.14);
}

.relate-blog-list dl dt {
    width: 100%;
    height: 180px;
    overflow: hidden;
}

.relate-blog-list dl dt a {
    display: block;
    width: 100%;
    height: 100%;
}

.relate-blog-list dl dt img {
    display: block;
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform 0.45s ease;
}

.relate-blog-list dl:hover dt img {
    transform: scale(1.06);
}

.relate-blog-list dl dd {
    padding: 20px;
}

.relate-blog-list dl dd em {
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 10px;
    margin-bottom: 10px;
    color: #667085;
    font-size: 13px;
    line-height: 20px;
    font-style: normal;
}

.relate-blog-list dl dd em span {
    display: inline-flex;
    align-items: center;
}

.relate-blog-list dl dd em i {
    margin-right: 6px;
    color: #0e5aa4;
}

.relate-blog-list dl dd > a {
    display: block;
    height: 52px;
    overflow: hidden;
    color: #14243b;
    font-size: 17px;
    line-height: 26px;
    font-weight: 800;
    text-decoration: none;
}

.relate-blog-list dl dd > a:hover {
    color: #f7b901;
}


/* =========================================================
   Brand page
========================================================= */

.brand-page {
    width: 100%;
    background: #f7faff;
}




/* =========================================================
   Brand common title
========================================================= */

.brand-section-title {
    margin-bottom: 34px;
    text-align: center;
}

.brand-section-title span {
    display: inline-block;
    margin-bottom: 12px;
    padding: 8px 18px;
    border: 1px solid rgba(247, 185, 1, 0.28);
    border-radius: 999px;
    background: #fffaf0;
    color: #0e5aa4;
    font-size: 13px;
    line-height: 20px;
    font-weight: 700;
    letter-spacing: 2px;
    text-transform: uppercase;
}

.brand-section-title h2 {
    margin: 0;
    color: #14243b;
    font-size: 34px;
    line-height: 1.35;
    font-weight: 800;
}

.brand-section-title p {
    max-width: 760px;
    margin: 14px auto 0;
    color: #666666;
    font-size: 15px;
    line-height: 1.8;
}


/* =========================================================
   Featured manufacturers
========================================================= */

.brand-feature-box {
    padding: 64px 0 42px;
}

.home-brand-list1 {
    display: grid;
    grid-template-columns: repeat(6, minmax(0, 1fr));
    gap: 18px;
}

.home-brand-list1 a {
    position: relative;
    height: 105px;
    display: flex;
    align-items: center;
    justify-content: center;
    padding: 20px;
    overflow: hidden;
    border: 1px solid #dce7f3;
    border-radius: 18px;
    background: #ffffff;
    box-shadow: 0 14px 34px rgba(14, 90, 164, 0.06);
    transition:
        transform 0.3s ease,
        box-shadow 0.3s ease,
        border-color 0.3s ease;
}

.home-brand-list1 a::before {
    content: "";
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 4px;
    background: linear-gradient(
        90deg,
        #f7b901 0%,
        #0e5aa4 100%
    );
    opacity: 0;
    transition: opacity 0.3s ease;
}

.home-brand-list1 a:hover {
    border-color: rgba(247, 185, 1, 0.55);
    transform: translateY(-5px);
    box-shadow: 0 20px 45px rgba(14, 90, 164, 0.13);
}

.home-brand-list1 a:hover::before {
    opacity: 1;
}

.home-brand-list1 a img {
    width: auto;
    height: auto;
    max-width: 100%;
    max-height: 62px;
    object-fit: contain;
}


/* =========================================================
   Brand A-Z navigation
========================================================= */

.brand-navigation-box {
    padding: 36px 0 76px;
}

.brand-navigation {
    position: sticky;
    top: 88px;
    z-index: 20;
    margin-bottom: 32px;
    padding: 12px 0;
    background: rgba(247, 250, 255, 0.92);
    backdrop-filter: blur(8px);
}

.brand-navigation ul {
    display: flex;
    flex-wrap: wrap;
    justify-content: center;
    gap: 8px;
    margin: 0;
    padding: 14px;
    border: 1px solid #dce7f3;
    border-radius: 18px;
    background: #ffffff;
    box-shadow: 0 14px 34px rgba(14, 90, 164, 0.07);
}

.brand-navigation ul li {
    margin: 0;
}

.brand-navigation ul li a {
    width: 38px;
    height: 38px;
    display: block;
    border-radius: 12px;
    background: #f3f8fd;
    color: #0e5aa4;
    font-size: 14px;
    line-height: 38px;
    font-weight: 700;
    text-align: center;
    text-decoration: none;
    transition:
        color 0.25s ease,
        background-color 0.25s ease,
        box-shadow 0.25s ease,
        transform 0.25s ease;
}

.brand-navigation ul li a:hover,
.brand-navigation ul li a.active,
.brand-navigation ul li a.is-active {
    background: #f7b901;
    color: #ffffff;
    box-shadow: 0 10px 22px rgba(247, 185, 1, 0.25);
    transform: translateY(-2px);
}


/* =========================================================
   Brand A-Z list
========================================================= */

.brand-navigation-list {
    display: grid;
    gap: 20px;
}

.brand-navigation-list dl {
    display: grid;
    grid-template-columns: 82px minmax(0, 1fr);
    gap: 20px;
    margin: 0;
    padding: 24px;
    border: 1px solid #dce7f3;
    border-radius: 22px;
    background: #ffffff;
    box-shadow: 0 16px 40px rgba(14, 90, 164, 0.07);
    transition:
        border-color 0.3s ease,
        box-shadow 0.3s ease,
        transform 0.3s ease;
}

.brand-navigation-list dl:hover {
    border-color: rgba(247, 185, 1, 0.45);
    box-shadow: 0 22px 50px rgba(14, 90, 164, 0.11);
}

.brand-navigation-list dl dt {
    margin: 0;
}

.brand-navigation-list dl dt a {
    width: 64px;
    height: 64px;
    display: block;
    border-radius: 18px;
    background: linear-gradient(
        135deg,
        #0e5aa4 0%,
        #2879c4 100%
    );
    color: #ffffff;
    font-size: 26px;
    line-height: 64px;
    font-weight: 800;
    text-align: center;
    text-decoration: none;
    box-shadow: 0 12px 26px rgba(14, 90, 164, 0.24);
}

.brand-navigation-list dl dd {
    min-width: 0;
    display: grid;
    grid-template-columns: repeat(5, minmax(0, 1fr));
    gap: 12px;
    margin: 0;
}

.brand-navigation-list dl dd a {
    height: 44px;
    padding: 0 16px;
    overflow: hidden;
    border: 1px solid #dce7f3;
    border-radius: 12px;
    background: #f3f8fd;
    color: #333333;
    font-size: 14px;
    line-height: 44px;
    text-overflow: ellipsis;
    white-space: nowrap;
    text-decoration: none;
    transition:
        color 0.25s ease,
        background-color 0.25s ease,
        border-color 0.25s ease,
        transform 0.25s ease;
}

.brand-navigation-list dl dd a em {
    color: #0e5aa4;
}

.brand-navigation-list dl dd a:hover {
    border-color: rgba(247, 185, 1, 0.45);
    background: #fffaf0;
    color: #0e5aa4;
    transform: translateY(-2px);
}

.brand-navigation-list .brand-empty {
    grid-column: 1 / -1;
    color: #999999;
    font-size: 14px;
    line-height: 42px;
}


/* =========================================================
   Brand A-Z active effect
========================================================= */

.brand-navigation-list dl.brand-group-active {
    border-color: rgba(247, 185, 1, 0.55);
    transform: translateY(-4px);
    box-shadow:
        0 0 0 3px rgba(247, 185, 1, 0.18),
        0 24px 56px rgba(14, 90, 164, 0.16);
    animation: brandGroupFlash 1.2s ease;
}

.brand-navigation-list dl.brand-group-active dt a {
    background: #f7b901;
    color: #ffffff;
    box-shadow: 0 14px 30px rgba(247, 185, 1, 0.28);
}

.brand-navigation-list dl.brand-group-active dd a {
    border-color: rgba(247, 185, 1, 0.24);
    background: #fffaf0;
}

@keyframes brandGroupFlash {
    0% {
        box-shadow:
            0 0 0 0 rgba(247, 185, 1, 0.42),
            0 16px 40px rgba(14, 90, 164, 0.08);
    }

    45% {
        box-shadow:
            0 0 0 6px rgba(247, 185, 1, 0.20),
            0 24px 56px rgba(14, 90, 164, 0.16);
    }

    100% {
        box-shadow:
            0 0 0 3px rgba(247, 185, 1, 0.18),
            0 24px 56px rgba(14, 90, 164, 0.16);
    }
}


/* =========================================================
   Brand detail page
========================================================= */

.brand-detail-page {
    width: 100%;
    overflow: hidden;
    background: #f7faff;
}


/* =========================================================
   Brand detail hero
========================================================= */

.brand-detail-hero {
    position: relative;
    padding: 70px 0;
    overflow: hidden;
    background:
        radial-gradient(
            circle at 10% 18%,
            rgba(247, 185, 1, 0.22) 0,
            rgba(247, 185, 1, 0) 28%
        ),
        radial-gradient(
            circle at 88% 18%,
            rgba(255, 255, 255, 0.18) 0,
            rgba(255, 255, 255, 0) 30%
        ),
        linear-gradient(
            270deg,
            #0b4c8c 0%,
            #0e5aa4 55%,
            #2879c4 100%
        );
}

.brand-detail-hero::before {
    content: "";
    position: absolute;
    top: -130px;
    right: -130px;
    width: 380px;
    height: 380px;
    border: 52px solid rgba(247, 185, 1, 0.12);
    border-radius: 50%;
    pointer-events: none;
}

.brand-detail-hero::after {
    content: "";
    position: absolute;
    left: -90px;
    bottom: -120px;
    width: 260px;
    height: 260px;
    border-radius: 50%;
    background: rgba(255, 255, 255, 0.08);
    pointer-events: none;
}

.brand-info-box {
    position: relative;
    z-index: 2;
    display: flex;
    align-items: center;
    gap: 42px;
    padding: 46px;
    border: 1px solid #dce7f3;
    border-radius: 28px;
    background: rgba(255, 255, 255, 0.97);
    box-shadow: 0 24px 70px rgba(14, 90, 164, 0.18);
}

.brand-info-box-left {
    width: 260px;
    flex-shrink: 0;
}

.brand-logo-card {
    position: relative;
    width: 100%;
    min-height: 180px;
    display: flex;
    align-items: center;
    justify-content: center;
    padding: 34px;
    overflow: hidden;
    border: 1px solid #dce7f3;
    border-radius: 24px;
    background: #ffffff;
    box-shadow: 0 16px 38px rgba(14, 90, 164, 0.10);
}

.brand-logo-card::before {
    content: "";
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 5px;
    background: linear-gradient(
        90deg,
        #f7b901 0%,
        #0e5aa4 100%
    );
}

.brand-logo-card img {
    width: auto;
    height: auto;
    max-width: 100%;
    max-height: 100px;
    object-fit: contain;
}

.brand-info-box-right {
    flex: 1;
    min-width: 0;
}

.brand-info-box-right > span {
    display: inline-block;
    margin-bottom: 16px;
    padding: 8px 18px;
    border: 1px solid rgba(247, 185, 1, 0.28);
    border-radius: 999px;
    background: #fffaf0;
    color: #0e5aa4;
    font-size: 13px;
    line-height: 20px;
    font-weight: 700;
    letter-spacing: 2px;
    text-transform: uppercase;
}

.brand-info-box-right h1 {
    margin: 0;
    color: #14243b;
    font-size: 42px;
    line-height: 1.25;
    font-weight: 800;
}

.brand-info-box-right-info {
    margin-top: 18px;
    color: #666666;
    font-size: 16px;
    line-height: 1.85;
}

.brand-info-box-right-info p {
    margin: 0 0 14px;
}

.brand-info-box-right-info p:last-child {
    margin-bottom: 0;
}


/* =========================================================
   Brand detail title
========================================================= */

.brand-detail-title {
    margin-bottom: 34px;
    text-align: center;
}

.brand-detail-title span {
    display: inline-block;
    margin-bottom: 12px;
    padding: 8px 18px;
    border: 1px solid rgba(247, 185, 1, 0.28);
    border-radius: 999px;
    background: #fffaf0;
    color: #0e5aa4;
    font-size: 13px;
    line-height: 20px;
    font-weight: 700;
    letter-spacing: 2px;
    text-transform: uppercase;
}

.brand-detail-title h2 {
    margin: 0;
    color: #14243b;
    font-size: 34px;
    line-height: 1.35;
    font-weight: 800;
}

.brand-detail-title p {
    max-width: 760px;
    margin: 14px auto 0;
    color: #666666;
    font-size: 15px;
    line-height: 1.8;
}


/* =========================================================
   Brand categories
========================================================= */

.brand-category-section {
    padding: 66px 0 34px;
}

.brand-info-list {
    display: grid;
    gap: 20px;
}

.brand-info-list dl {
    display: grid;
    grid-template-columns: 260px minmax(0, 1fr);
    gap: 22px;
    margin: 0;
    padding: 24px;
    border: 1px solid #dce7f3;
    border-radius: 22px;
    background: #ffffff;
    box-shadow: 0 16px 42px rgba(14, 90, 164, 0.07);
    transition:
        border-color 0.3s ease,
        transform 0.3s ease,
        box-shadow 0.3s ease;
}

.brand-info-list dl:hover {
    border-color: rgba(247, 185, 1, 0.45);
    transform: translateY(-4px);
    box-shadow: 0 24px 56px rgba(14, 90, 164, 0.12);
}

.brand-info-list dl dt {
    min-width: 0;
    margin: 0;
}

.brand-info-list dl dt a {
    min-height: 62px;
    display: flex;
    align-items: center;
    justify-content: center;
    padding: 16px 20px;
    overflow: visible;
    border-radius: 18px;
    background: linear-gradient(
        135deg,
        #0e5aa4 0%,
        #2879c4 100%
    );
    color: #ffffff;
    font-size: 18px;
    line-height: 24px;
    font-weight: 800;
    text-align: center;
    text-decoration: none;
    white-space: normal;
    word-break: normal;
    box-shadow: 0 12px 26px rgba(14, 90, 164, 0.22);
}

.brand-info-list dl dt a em {
    margin-left: 5px;
    font-size: 13px;
    font-weight: 700;
    font-style: normal;
    opacity: 0.92;
}

.brand-info-list dl dd {
    min-width: 0;
    display: grid;
    grid-template-columns: repeat(4, minmax(0, 1fr));
    align-content: start;
    gap: 12px;
    margin: 0;
}

.brand-info-list dl dd a {
    min-height: 44px;
    display: flex;
    align-items: center;
    padding: 11px 16px;
    overflow: visible;
    border: 1px solid #dce7f3;
    border-radius: 12px;
    background: #f3f8fd;
    color: #333333;
    font-size: 14px;
    line-height: 22px;
    text-decoration: none;
    white-space: normal;
    word-break: normal;
    transition:
        color 0.25s ease,
        background-color 0.25s ease,
        border-color 0.25s ease,
        transform 0.25s ease;
}

.brand-info-list dl dd a span {
    display: inline;
}

.brand-info-list dl dd a em {
    margin-left: 5px;
    color: #0e5aa4;
    font-size: 12px;
    font-weight: 700;
    font-style: normal;
}

.brand-info-list dl dd a:hover {
    border-color: rgba(247, 185, 1, 0.45);
    background: #fffaf0;
    color: #0e5aa4;
    transform: translateY(-2px);
}

.brand-info-list dl dd a:hover em {
    color: #f7b901;
}


/* =========================================================
   Multi-level brand groups
========================================================= */

.brand-cat-group {
    grid-column: 1 / -1;
    padding: 14px;
    border: 1px solid #dce7f3;
    border-radius: 16px;
    background: linear-gradient(
        180deg,
        #ffffff 0%,
        #f7faff 100%
    );
}

.brand-cat-parent {
    min-height: 38px;
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 12px;
    margin-bottom: 12px;
    padding: 0 14px;
    border: 1px solid rgba(247, 185, 1, 0.22);
    border-radius: 12px;
    background: #fffaf0;
    color: #0e5aa4;
    font-size: 15px;
    font-weight: 800;
}

.brand-cat-parent span {
    min-width: 0;
    overflow: hidden;
    text-overflow: ellipsis;
    white-space: nowrap;
}

.brand-cat-parent em {
    flex: 0 0 auto;
    color: #f7b901;
    font-size: 12px;
    font-weight: 800;
    font-style: normal;
}

.brand-cat-children {
    display: grid;
    grid-template-columns: repeat(4, minmax(0, 1fr));
    gap: 12px;
}

.brand-cat-group .brand-cat-group {
    padding: 12px;
    border-style: dashed;
    background: #ffffff;
}

.brand-cat-group .brand-cat-group .brand-cat-parent {
    min-height: 34px;
    margin-bottom: 10px;
    font-size: 14px;
}

.brand-cat-root-link {
    cursor: pointer;
}

.brand-cat-empty {
    grid-column: 1 / -1;
    display: block;
    min-height: 44px;
    padding: 10px 16px;
    border: 1px dashed #dce7f3;
    border-radius: 12px;
    background: #f3f8fd;
    color: #999999;
    font-size: 14px;
    line-height: 22px;
}


/* =========================================================
   Brand products
========================================================= */

.brand-product-section {
    padding: 38px 0 76px;
}

.brand-pro {
    display: grid;
    grid-template-columns: repeat(6, minmax(0, 1fr));
    gap: 20px;
}

.brand-pro dl {
    margin: 0;
    overflow: hidden;
    border: 1px solid #dce7f3;
    border-radius: 20px;
    background: #ffffff;
    box-shadow: 0 16px 42px rgba(14, 90, 164, 0.07);
    transition:
        border-color 0.3s ease,
        transform 0.3s ease,
        box-shadow 0.3s ease;
}

.brand-pro dl:hover {
    border-color: rgba(247, 185, 1, 0.45);
    transform: translateY(-6px);
    box-shadow: 0 24px 56px rgba(14, 90, 164, 0.13);
}

.brand-pro dl dt {
    height: 170px;
    display: flex;
    align-items: center;
    justify-content: center;
    padding: 22px;
    border-bottom: 1px solid #dce7f3;
    background: #ffffff;
}

.brand-pro dl dt a {
    width: 100%;
    height: 100%;
    display: flex;
    align-items: center;
    justify-content: center;
}

.brand-pro dl dt img {
    width: auto;
    height: auto;
    max-width: 100%;
    max-height: 126px;
    object-fit: contain;
}

.brand-pro dl dd {
    padding: 18px 16px 20px;
}

.brand-pro dl dd > a {
    display: block;
    height: 22px;
    overflow: hidden;
    color: #14243b;
    font-size: 15px;
    line-height: 22px;
    font-weight: 800;
    text-decoration: none;
}

.brand-pro dl dd > a:hover {
    color: #f7b901;
}

.brand-pro dl dd em {
    display: block;
    height: 22px;
    margin-top: 6px;
    overflow: hidden;
    color: #667085;
    font-size: 13px;
    line-height: 22px;
    font-style: normal;
    text-overflow: ellipsis;
    white-space: nowrap;
}

.brand-pro dl dd span {
    display: inline-flex;
    align-items: center;
    margin-top: 12px;
    color: #0e5aa4;
    font-size: 13px;
    line-height: 20px;
    font-weight: 700;
}

.brand-pro dl dd span i {
    margin-left: 6px;
    transition: transform 0.25s ease;
}

.brand-pro dl:hover dd span {
    color: #f7b901;
}

.brand-pro dl:hover dd span i {
    transform: translateX(3px);
}


/* =========================================================
   Franchised brands
========================================================= */

.brand-franchised-box {
    position: relative;
}

.brand-franchised-box h1 {
    margin-bottom: 30px;
    color: #14243b;
    font-size: 1.8rem;
    line-height: 36px;
    text-align: center;
}

.brand-franchised-list dl {
    width: 49.3%;
    margin-bottom: 1.4%;
    padding: 15px;
    border: 1px solid #dce7f3;
    border-radius: 6px;
    background: #ffffff;
    box-shadow: 0 12px 30px rgba(14, 90, 164, 0.06);
}

.brand-franchised-list dl dt {
    width: 120px;
    height: auto;
    text-align: center;
}

.brand-franchised-list dl dt img {
    width: 100%;
    height: auto;
}

.brand-franchised-list dl dd {
    width: calc(100% - 120px);
    padding-left: 15px;
}

.brand-franchised-list dl dd a {
    display: block;
    height: 26px;
    margin-bottom: 5px;
    overflow: hidden;
    color: #14243b;
    font-size: 1rem;
    line-height: 26px;
    font-weight: bold;
}

.brand-franchised-list dl dd a:hover {
    color: #f7b901;
}

.brand-franchised-list dl dd p {
    height: 40px;
    overflow: hidden;
    line-height: 20px;
}


/* =========================================================
   Mobile layout
========================================================= */

@media (max-width: 768px) {
    /* Contact page */
    .contact-page {
        padding: 35px 0;
    }

    .contact-box {
        display: block;
    }

    .contact-box-left,
    .contact-feedback-left {
        border-radius: 18px;
    }

    .contact-box-left {
        padding: 30px 22px;
    }

    .contact-feedback-left {
        margin-top: 20px;
        padding: 30px 22px;
    }

    .contact-label {
        margin-bottom: 14px;
        padding: 7px 15px;
        font-size: 12px;
    }

    .contact-box-left h2 {
        font-size: 26px;
    }

    .contact-box-left em {
        margin: 18px 0 22px;
    }

    .contact-box-left-info {
        font-size: 14px;
        line-height: 1.8;
    }

    .contact-quick-list {
        margin-top: 22px;
    }

    .contact-quick-item {
        gap: 12px;
        padding: 12px 0;
    }

    .contact-quick-item span {
        width: 38px;
        height: 38px;
        flex-basis: 38px;
        border-radius: 12px;
        font-size: 16px;
    }

    .contact-quick-item p {
        font-size: 14px;
    }

    .contact-form-title {
        margin-bottom: 22px;
    }

    .contact-form-title h3 {
        font-size: 24px;
    }

    .contact-form-title p {
        font-size: 14px;
    }

    .contact-form-row {
        display: block;
    }

    .contact-form-row dl {
        width: 100%;
        margin-bottom: 16px;
    }

    .contact-form-row input,
    .contact-form-item input {
        height: 48px;
        border-radius: 12px;
    }

    .contact-form-item textarea {
        min-height: 120px;
        border-radius: 12px;
    }

    .contact-submit button {
        height: 52px;
        border-radius: 14px;
    }

    .contact-map-wrap {
        margin-top: 30px;
    }

    .contact-map {
        height: 320px;
        border-radius: 18px;
    }

    .contact-map-title {
        margin-bottom: 24px;
    }

    .contact-map-title h2 {
        font-size: 25px;
    }
    .contact-sourcing-section {
        padding: 44px 0 46px;
    }

    .contact-sourcing-wrap {
        grid-template-columns: 1fr;
        gap: 30px;
        padding: 34px 20px 28px;
        border-radius: 18px;
    }

    .contact-sourcing-main h2 {
        font-size: 25px;
        line-height: 1.4;
    }

    .contact-sourcing-intro {
        font-size: 14px;
        line-height: 1.8;
    }

    .contact-sourcing-points {
        grid-template-columns: 1fr;
        gap: 17px;
        margin-top: 24px;
    }

    .contact-sourcing-actions {
        display: grid;
        grid-template-columns: 1fr;
        margin-top: 27px;
    }

    .contact-sourcing-primary,
    .contact-sourcing-secondary {
        width: 100%;
        min-height: 48px;
    }

    .contact-sourcing-side {
        grid-template-columns: repeat(2, minmax(0, 1fr));
        gap: 10px;
    }

    .contact-sourcing-stat {
        min-height: 108px;
        padding: 14px 8px;
        border-radius: 13px;
    }

    .contact-sourcing-stat strong {
        font-size: 22px;
        line-height: 29px;
    }

    .contact-sourcing-stat span {
        font-size: 12px;
        line-height: 18px;
    }

    /* Blogs page */
    .blog-main {
        padding: 32px 0 48px;
    }

    .blog-main-container {
        display: block;
    }

    .blog-main-left,
    .blog-main-right {
        width: 100%;
    }

    .blog-tabs {
        margin-bottom: 20px;
        padding: 10px;
        border-radius: 16px;
    }

    .blog-tabs ul {
        flex-wrap: nowrap;
    }

    .blog-tabs ul li a {
        height: 40px;
        padding: 0 16px;
        font-size: 14px;
        line-height: 40px;
    }

    .blog-tab-pane-box {
        grid-template-columns: 1fr;
        gap: 18px;
    }

    .blog-tab-pane-topblog dl {
        display: block;
    }

    .blog-tab-pane-topblog dl dt {
        width: 100%;
    }

    .blog-tab-pane-topblog dl dt img,
    .blog-tab-pane-hotblog dl dt img,
    .blog-tab-pane-redblog dl dt img {
        height: auto;
    }

    .blog-tab-pane-topblog dl dd,
    .blog-tab-pane-hotblog dl dd,
    .blog-tab-pane-redblog dl dd {
        padding: 20px;
    }

    .blog-title,
    .blog-tab-pane-hotblog .blog-title {
        font-size: 17px;
    }

    .blog-tab-pane-redblog {
        grid-template-columns: 1fr;
        gap: 18px;
    }

    .blog-tab-pane-redblog .blog-title,
    .blog-desc {
        height: auto;
    }

    .blog-section-title {
        margin: 30px 0 20px;
    }

    .blog-section-title h2 {
        font-size: 24px;
    }

    .blog-main-right {
        position: static;
        top: auto;
        margin-top: 28px;
    }

    .blog-main-right-parts-title {
        min-height: 54px;
        padding: 0 18px;
    }

    .blog-main-right-parts-title b {
        font-size: 16px;
    }

    .blog-main-right-cate > a {
        padding: 14px 18px;
    }

    .blog-main-right-parts-list {
        padding: 10px 16px 16px;
    }

    .blog-company-profile {
        margin-top: 18px;
    }

    .blog-company-profile-body {
        padding: 20px 18px;
    }

    .blog-company-profile-logo {
        min-height: 96px;
        margin-bottom: 16px;
        padding: 16px;
        border-radius: 14px;
    }

    .blog-company-profile-content {
        font-size: 14px;
        line-height: 1.75;
    }

    .blog-company-profile-more {
        width: 100%;
        min-height: 44px;
        margin-top: 5px;
    }

    .blog-company-profile-more:hover {
        transform: none;
    }

    /* News list page */
    .news-list-page {
        padding: 34px 0 48px;
    }

    .news-list-head {
        margin-bottom: 22px;
        padding: 24px 20px;
        border-radius: 18px;
    }

    .news-list-head span {
        margin-bottom: 10px;
        padding: 7px 15px;
        font-size: 12px;
        letter-spacing: 1.3px;
    }

    .news-list-head h1 {
        font-size: 27px;
    }

    .news-list-head p {
        font-size: 14px;
        line-height: 1.7;
    }

    .blog-list,
    .news-list-layout .blog-list {
        grid-template-columns: 1fr;
        gap: 18px;
    }

    .blog-list dl {
        border-radius: 18px;
    }

    .blog-list dl dt,
    .news-list-layout .blog-list dl dt {
        height: auto;
    }

    .blog-list dl dt img {
        height: auto;
        object-fit: initial;
    }

    .blog-list dl dd {
        padding: 20px;
    }

    .blog-list-meta {
        margin-bottom: 10px;
    }

    .blog-list-title {
        height: auto;
        font-size: 17px;
        line-height: 26px;
    }

    .blog-list dl dd p {
        height: auto;
        font-size: 14px;
        line-height: 24px;
    }

    /* News detail page */
    .news-show-page {
        padding: 34px 0 48px;
    }

    .blog-show {
        padding: 30px 20px 28px;
        border-radius: 18px;
    }

    .blog-show-head {
        margin-bottom: 24px;
        padding-bottom: 22px;
    }

    .blog-show-label {
        margin-bottom: 12px;
        padding: 7px 15px;
        font-size: 12px;
        letter-spacing: 1.5px;
    }

    .blog-show h1 {
        font-size: 27px;
        line-height: 1.35;
    }

    .blog-show-meta {
        display: block;
        margin-top: 16px;
        font-size: 13px;
        line-height: 24px;
    }

    .blog-show-meta span {
        display: flex;
        justify-content: center;
        margin-top: 5px;
    }

    .blog-info {
        font-size: 15px;
        line-height: 1.8;
    }

    .blog-info h2 {
        font-size: 23px;
    }

    .blog-info h3 {
        font-size: 20px;
    }

    .blog-info h4 {
        font-size: 18px;
    }

    .blog-show-toc,
    .posts-info .toc {
        margin-bottom: 24px;
        padding: 18px;
        border-radius: 16px;
    }

    .blog-show-toc h2,
    .posts-info .toc h2 {
        font-size: 20px;
    }

    .blog-info table {
        display: block;
        overflow-x: auto;
        white-space: nowrap;
    }

    .next-prev-single {
        margin-top: 28px;
        padding-top: 22px;
    }

    .next-prev-single p {
        padding: 11px 14px;
        font-size: 14px;
    }

    .relate-blog {
        margin-top: 32px;
    }

    .relate-blog-title {
        margin-bottom: 22px;
    }

    .relate-blog-title h2 {
        font-size: 25px;
    }

    .relate-blog-list,
    .news-show-layout .relate-blog-list {
        grid-template-columns: 1fr;
        gap: 18px;
    }

    .relate-blog-list dl {
        border-radius: 18px;
    }

    .relate-blog-list dl dt,
    .news-show-layout .relate-blog-list dl dt {
        height: auto;
    }

    .relate-blog-list dl dt img {
        height: auto;
        object-fit: initial;
    }

    .relate-blog-list dl dd {
        padding: 18px;
    }

    .relate-blog-list dl dd > a {
        height: auto;
        font-size: 16px;
        line-height: 25px;
    }

    /* Brand page */

    .brand-feature-box {
        padding: 38px 0 30px;
    }

    .brand-section-title {
        margin-bottom: 24px;
    }

    .brand-section-title span {
        margin-bottom: 10px;
        padding: 7px 15px;
        font-size: 12px;
        letter-spacing: 1.5px;
    }

    .brand-section-title h2 {
        font-size: 26px;
    }

    .brand-section-title p {
        padding: 0 8px;
        font-size: 14px;
        line-height: 1.7;
    }

    .home-brand-list1 {
        grid-template-columns: repeat(2, minmax(0, 1fr));
        gap: 14px;
    }

    .home-brand-list1 a {
        height: 90px;
        padding: 16px;
        border-radius: 16px;
    }

    .home-brand-list1 a img {
        max-height: 50px;
    }

    .brand-navigation-box {
        padding: 26px 0 48px;
    }

    .brand-navigation {
        top: 137px;
        margin-bottom: 24px;
        padding: 0;
    }

    .brand-navigation ul {
        justify-content: flex-start;
        flex-wrap: nowrap;
        padding: 12px;
        overflow-x: auto;
        border-radius: 16px;
    }

    .brand-navigation ul li {
        flex-shrink: 0;
    }

    .brand-navigation ul li a {
        width: 36px;
        height: 36px;
        border-radius: 10px;
        line-height: 36px;
    }

    .brand-navigation-list {
        gap: 16px;
    }

    .brand-navigation-list dl {
        display: block;
        padding: 20px;
        border-radius: 18px;
    }

    .brand-navigation-list dl dt {
        margin-bottom: 16px;
    }

    .brand-navigation-list dl dt a {
        width: 54px;
        height: 54px;
        border-radius: 16px;
        font-size: 22px;
        line-height: 54px;
    }

    .brand-navigation-list dl dd {
        grid-template-columns: 1fr;
        gap: 10px;
    }

    .brand-navigation-list dl dd a {
        height: 42px;
        line-height: 42px;
    }


    /* Brand detail page */
    .brand-detail-hero {
        padding: 38px 0;
    }

    .brand-info-box {
        display: block;
        padding: 24px 20px 28px;
        border-radius: 22px;
    }

    .brand-info-box-left {
        width: 100%;
        margin-bottom: 22px;
    }

    .brand-logo-card {
        min-height: 130px;
        padding: 26px;
        border-radius: 18px;
    }

    .brand-logo-card img {
        max-height: 78px;
    }

    .brand-info-box-right > span {
        margin-bottom: 12px;
        padding: 7px 15px;
        font-size: 12px;
        letter-spacing: 1.5px;
    }

    .brand-info-box-right h1 {
        font-size: 30px;
    }

    .brand-info-box-right-info {
        font-size: 14px;
        line-height: 1.75;
    }

    .brand-category-section {
        padding: 42px 0 24px;
    }

    .brand-info-list {
        gap: 16px;
    }

    .brand-info-list dl {
        grid-template-columns: 1fr;
        gap: 14px;
        padding: 16px;
        border-radius: 18px;
    }

    .brand-info-list dl:hover {
        transform: none;
    }

    .brand-info-list dl dt a {
        min-height: 52px;
        padding: 14px 16px;
        border-radius: 14px;
        font-size: 16px;
        line-height: 22px;
    }

    .brand-info-list dl dd,
    .brand-cat-children {
        grid-template-columns: repeat(2, minmax(0, 1fr));
        gap: 10px;
    }

    .brand-info-list dl dd a {
        min-height: 42px;
        padding: 10px 16px;
        border-radius: 10px;
        font-size: 13px;
        line-height: 22px;
    }

    .brand-cat-group {
        padding: 12px;
        border-radius: 14px;
    }

    .brand-cat-parent {
        min-height: 36px;
        padding: 0 12px;
        font-size: 14px;
    }


    /* Brand products */
    .brand-product-section {
        padding: 30px 0 48px;
    }

    .brand-detail-title {
        margin-bottom: 24px;
    }

    .brand-detail-title span {
        margin-bottom: 10px;
        padding: 7px 15px;
        font-size: 12px;
        letter-spacing: 1.5px;
    }

    .brand-detail-title h2 {
        font-size: 25px;
    }

    .brand-detail-title p {
        padding: 0 8px;
        font-size: 14px;
        line-height: 1.7;
    }

    .brand-pro {
        grid-template-columns: repeat(2, minmax(0, 1fr));
        gap: 14px;
    }

    .brand-pro dl {
        border-radius: 18px;
    }

    .brand-pro dl dt {
        height: 138px;
        padding: 18px;
    }

    .brand-pro dl dt img {
        max-height: 96px;
    }

    .brand-pro dl dd {
        padding: 16px 14px 18px;
    }

    .brand-pro dl dd > a {
        height: 21px;
        font-size: 14px;
        line-height: 21px;
    }


    /* Franchised brands */
    .brand-franchised-box h1 {
        font-size: 1.4rem;
    }

    .brand-franchised-list dl {
        width: 100%;
        margin-bottom: 1.4%;
        padding: 10px;
    }

    .blog-hero-inner h1 {
        font-size: 30px;
    }

    .blog-hero-inner p {
        font-size: 14px;
        line-height: 1.7;
    }
}