﻿/* ==============================
   About Page
============================== */

.about-page {
    width: 100%;
}


/* ==============================
   Intro
============================== */

.about-intro {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 70px;
    align-items: center;
    padding: 70px 0 60px;
    box-sizing: border-box;
}

.about-intro-img {
    position: relative;
    border-radius: 18px;
    overflow: hidden;
    background: #fff;
    box-shadow: 0 16px 36px rgba(216, 117, 158, .10);
}

.about-intro-img:after {
    content: "";
    position: absolute;
    right: -40px;
    bottom: -40px;
    width: 150px;
    height: 150px;
    border-radius: 50%;
    border: 26px solid rgba(232, 134, 174, .18);
    z-index: 2;
}

.about-intro-img img {
    display: block;
    width: 100%;
    height: auto;
    object-fit: cover;
}

.about-intro-text {
    padding-right: 30px;
}

.about-subtitle {
    display: inline-block;
    margin-bottom: 16px;
    padding: 7px 18px;
    border-radius: 30px;
    background: #fff1f7;
    color: #e886ae;
    font-size: 14px;
    line-height: 22px;
    font-family: myFirstFont1;
}

.about-intro-text h1 {
    margin: 0 0 24px;
    color: #111;
    font-size: 36px;
    line-height: 1.35;
    font-family: myFirstFont1;
}

.about-intro-text p {
    margin: 0 0 18px;
    color: #666;
    font-size: 16px;
    line-height: 1.8;
}


/* ==============================
   Data
============================== */

.about-data-wrap {
    width: 100%;
    background: #fff;
}

.about-data {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 0;
    padding: 36px 0;
}

.about-data-item {
    text-align: center;
    border-right: 1px solid #f1d7e2;
}

.about-data-item:last-child {
    border-right: none;
}

.about-data-item strong {
    display: block;
    margin-bottom: 8px;
    color: #e886ae;
    font-size: 38px;
    line-height: 1.2;
    font-family: myFirstFont1;
}

.about-data-item span {
    display: block;
    color: #666;
    font-size: 15px;
    line-height: 24px;
}


/* ==============================
   Content Sections
============================== */

.about-content {
    padding: 70px 0 80px;
    box-sizing: border-box;
}

.about-section {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 65px;
    align-items: center;
    margin-bottom: 75px;
}

.about-section-text {
    background: #fff;
    border-radius: 16px;
    padding: 45px 42px;
    box-shadow: 0 14px 32px rgba(0, 0, 0, .05);
    box-sizing: border-box;
}

.about-section-title {
    display: flex;
    align-items: center;
    margin-bottom: 22px;
}

.about-section-title b {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    width: 58px;
    height: 58px;
    margin-right: 18px;
    border-radius: 50%;
    background: linear-gradient(270deg, #d8759e 0%, #e886ae 100%);
    color: #fff;
    font-size: 20px;
    line-height: 1;
    font-family: myFirstFont1;
}

.about-section-title h2 {
    margin: 0;
    color: #111;
    font-size: 28px;
    line-height: 1.35;
    font-family: myFirstFont1;
}

.about-section-text p {
    margin: 0 0 18px;
    color: #666;
    font-size: 16px;
    line-height: 1.75;
}

.about-section-text p:last-child {
    margin-bottom: 0;
}

.about-section-img {
    border-radius: 18px;
    overflow: hidden;
    box-shadow: 0 16px 36px rgba(216, 117, 158, .10);
}

.about-section-img img {
    display: block;
    width: 100%;
    height: 420px;
    object-fit: cover;
}

.about-section-img:hover img {
    transform: scale(1.04);
}


/* ==============================
   Application Cards
============================== */

.about-card-grid {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 24px;
    margin-bottom: 75px;
}

.about-card {
    background: #fff;
    border-radius: 16px;
    padding: 34px 26px 32px;
    box-shadow: 0 14px 32px rgba(0, 0, 0, .05);
    box-sizing: border-box;
    transition: all .3s ease;
}

.about-card:hover {
    transform: translateY(-6px);
    box-shadow: 0 18px 40px rgba(216, 117, 158, .14);
}

.about-card-icon {
    display: flex;
    align-items: center;
    justify-content: center;
    width: 64px;
    height: 64px;
    margin-bottom: 22px;
    border-radius: 10px;
}

.about-card-icon img {
    width: 64px;
    height: 64px;
    border-radius: 10px;
}

.about-card h3 {
    margin: 0 0 14px;
    color: #111;
    font-size: 19px;
    line-height: 1.35;
    font-family: myFirstFont1;
}

.about-card p {
    margin: 0;
    color: #666;
    font-size: 15px;
    line-height: 1.7;
}


/* ==============================
   Vision
============================== */

.about-vision {
    position: relative;
    padding: 60px;
    border-radius: 20px;
    background:
        radial-gradient(circle at 88% 18%, rgba(255, 255, 255, .20) 0, rgba(255, 255, 255, 0) 26%),
        linear-gradient(270deg, #d8759e 0%, #e886ae 100%);
    overflow: hidden;
    box-shadow: 0 20px 45px rgba(216, 117, 158, .22);
}

.about-vision:before {
    content: "";
    position: absolute;
    right: -80px;
    top: -90px;
    width: 260px;
    height: 260px;
    border-radius: 50%;
    border: 42px solid rgba(255, 255, 255, .12);
}

.about-vision-inner {
    position: relative;
    z-index: 2;
    max-width: 920px;
}

.about-vision-inner span {
    display: inline-block;
    margin-bottom: 16px;
    color: rgba(255, 255, 255, .65);
    font-size: 42px;
    line-height: 1;
    font-family: myFirstFont1;
}

.about-vision-inner h2 {
    margin: 0 0 18px;
    color: #fff;
    font-size: 32px;
    line-height: 1.35;
    font-family: myFirstFont1;
}

.about-vision-inner p {
    margin: 0;
    color: rgba(255, 255, 255, .92);
    font-size: 16px;
    line-height: 1.8;
}
.about-vision-inner p span{
    margin: 0;
    color: rgba(255, 255, 255, .92);
    font-size: 16px;
    line-height: 1.8;
}
.about-vision-btn {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    min-width: 170px;
    height: 52px;
    margin-top: 32px;
    padding: 0 28px;
    border-radius: 52px;
    background: #fff;
    color: #e886ae;
    font-size: 16px;
    text-decoration: none;
    transition: all .3s ease;
}

.about-vision-btn em {
    display: block;
    width: 0;
    height: 0;
    margin-right: 14px;
    border-top: 7px solid transparent;
    border-bottom: 7px solid transparent;
    border-left: 10px solid #e886ae;
}

.about-vision-btn:hover {
    color: #fff;
    background: #111;
    transform: translateY(-3px);
}

.about-vision-btn:hover em {
    border-left-color: #fff;
}


/* contact page */
.contact-page {
    padding: 50px 0;
    overflow: hidden;
}

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

.contact-box-left,
.contact-feedback-left {
    flex: 1;
    background: #fff;
    border-radius: 24px;
    box-shadow: 0 20px 50px rgba(216, 117, 158, 0.10);
    position: relative;
    overflow: hidden;
}

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

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

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

.contact-label {
    display: inline-block;
    padding: 8px 18px;
    border-radius: 30px;
    background: linear-gradient(270deg, rgba(216,117,158,0.14) 0%, rgba(232,134,174,0.14) 100%);
    color: #e886ae;
    font-size: 13px;
    font-weight: bold;
    letter-spacing: 1.5px;
    margin-bottom: 18px;
}

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

.contact-box-left em {
    display: block;
    width: 76px;
    height: 5px;
    border-radius: 20px;
    background: linear-gradient(270deg, #d8759e 0%, #e886ae 100%);
    margin: 24px 0 28px;
}

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

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

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

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

.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(270deg, #d8759e 0%, #e886ae 100%);
    color: #fff;
    font-size: 18px;
    box-shadow: 0 12px 28px rgba(216, 117, 158, 0.25);
}

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

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

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

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

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

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

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

.contact-form-title p {
    margin: 0;
    color: #777;
    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;
    font-style: normal;
    color: #333;
    font-size: 15px;
    font-weight: bold;
    margin-bottom: 9px;
}

.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 #f5d6e3;
    background: #fff8fb;
    border-radius: 14px;
    outline: none;
    color: #333;
    font-size: 15px;
    transition: all 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;
    resize: vertical;
    padding: 16px 17px;
    line-height: 1.7;
}

.contact-form-row input:focus,
.contact-form-item input:focus,
.contact-form-item textarea:focus {
    border-color: #e886ae;
    background: #fff;
    box-shadow: 0 0 0 4px rgba(232, 134, 174, 0.10);
}

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

.contact-submit button {
    width: 100%;
    height: 56px;
    border: none;
    outline: none;
    cursor: pointer;
    border-radius: 16px;
    background: linear-gradient(270deg, #d8759e 0%, #e886ae 100%);
    color: #fff;
    font-size: 16px;
    font-weight: bold;
    letter-spacing: 0.3px;
    box-shadow: 0 15px 30px rgba(216, 117, 158, 0.28);
    transition: all 0.25s ease;
}

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

.contact-submit button:hover {
    transform: translateY(-2px);
    box-shadow: 0 20px 38px rgba(216, 117, 158, 0.34);
}

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

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

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

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

.contact-map {
    height: 480px;
    border-radius: 26px;
    overflow: hidden;
    background: #fff;
    box-shadow: 0 20px 55px rgba(216, 117, 158, 0.12);
}


/* Blogs */
.blog-page {
    width: 100%;
    overflow: hidden;
}

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

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

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

.blog-main-right {
    width: 318px;
    flex-shrink: 0;
}

.blog-tabs {
    background: #fff;
    border-radius: 18px;
    padding: 12px;
    box-shadow: 0 16px 40px rgba(216, 117, 158, .08);
    margin-bottom: 26px;
    overflow-x: auto;
}

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

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

.blog-tabs ul li a {
    display: block;
    height: 44px;
    line-height: 44px;
    padding: 0 22px;
    border-radius: 999px;
    background: #fff1f7;
    color: #e886ae;
    font-size: 15px;
    font-weight: 700;
    text-decoration: none;
}

.blog-tabs ul li a:hover,
.blog-tabs ul li.thistab a,
.blog-tabs ul li.active a {
    background: linear-gradient(270deg, #d8759e 0%, #e886ae 100%);
    color: #fff;
    box-shadow: 0 12px 24px rgba(216,117,158,.24);
}

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

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

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

.blog-tab-pane-topblog dl,
.blog-tab-pane-hotblog dl,
.blog-tab-pane-redblog dl {
    margin: 0;
    background: #fff;
    border-radius: 20px;
    overflow: hidden;
    box-shadow: 0 16px 42px rgba(216,117,158,.08);
    transition: all .3s ease;
}

.blog-tab-pane-topblog dl:hover,
.blog-tab-pane-hotblog dl:hover,
.blog-tab-pane-redblog dl:hover {
    transform: translateY(-5px);
    box-shadow: 0 24px 58px rgba(216,117,158,.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;
    padding: 26px 24px;
    display: flex;
    flex-direction: column;
    justify-content: center;
}

.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 {
    width: 100%;
    height: 100%;
    display: block;
    object-fit: cover;
}

.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: #111;
    font-size: 18px;
    line-height: 1.55;
    font-weight: 800;
    text-decoration: none;
}

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

.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;
    justify-content: space-between;
    align-items: center;
    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: #e886ae;
}

.blog-hot-label {
    position: absolute;
    left: 16px;
    top: 16px;
    height: 32px;
    line-height: 32px;
    padding: 0 15px;
    border-radius: 999px;
    background: linear-gradient(270deg, #d8759e 0%, #e886ae 100%);
    color: #fff;
    font-size: 13px;
    font-weight: 700;
    box-shadow: 0 10px 20px rgba(216,117,158,.25);
}

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

.blog-section-title span {
    display: inline-block;
    padding: 7px 16px;
    border-radius: 999px;
    background: linear-gradient(270deg, rgba(216,117,158,.16) 0%, rgba(232,134,174,.14) 100%);
    color: #e886ae;
    font-size: 12px;
    line-height: 18px;
    font-weight: 700;
    letter-spacing: 1.5px;
    text-transform: uppercase;
    margin-bottom: 12px;
}

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

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

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

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

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

.blog-main-right-cate,
.blog-main-right-parts {
    background: #fff;
    border-radius: 20px;
    box-shadow: 0 16px 42px rgba(216,117,158,.08);
    overflow: hidden;
}

.blog-main-right-parts {
    margin-top: 24px;
}

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

.blog-main-right-parts-title b {
    color: #fff;
    font-size: 18px;
    line-height: 24px;
    font-weight: 800;
}

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

.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 #f5d6e3;
    color: #555;
    font-size: 15px;
    line-height: 22px;
    text-decoration: none;
}

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

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

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

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

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

.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;
    border: 1px solid #f5d6e3;
    border-radius: 14px;
    overflow: hidden;
    background: #fff;
}

.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;
    color: #111;
    font-size: 14px;
    line-height: 21px;
    font-weight: 800;
    text-decoration: none;
    height: 21px;
    overflow: hidden;
}

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

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


/* news list page */
.news-list-page {
    width: 100%;
    padding: 60px 0 70px;
    background: #fff8fb;
}

.news-list-head {
    text-align: center;
    margin-bottom: 36px;
}

.news-list-head span {
    display: inline-block;
    padding: 8px 18px;
    border-radius: 999px;
    background: linear-gradient(270deg, rgba(216,117,158,.16) 0%, rgba(232,134,174,.14) 100%);
    color: #e886ae;
    font-size: 13px;
    line-height: 20px;
    font-weight: 700;
    letter-spacing: 2px;
    text-transform: uppercase;
    margin-bottom: 14px;
}

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

.news-list-head p {
    max-width: 760px;
    margin: 14px auto 0;
    color: #666;
    font-size: 16px;
    line-height: 1.8;
}

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

.blog-list dl {
    margin: 0;
    background: #fff;
    border-radius: 22px;
    overflow: hidden;
    box-shadow: 0 16px 42px rgba(216,117,158,.08);
    transition: all .3s ease;
}

.blog-list dl:hover {
    transform: translateY(-6px);
    box-shadow: 0 24px 58px rgba(216,117,158,.14);
}

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

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

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

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

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

.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: #e886ae;
}

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

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

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

.blog-list-more {
    display: inline-flex;
    align-items: center;
    height: 38px;
    line-height: 38px;
    margin-top: 18px;
    padding: 0 18px;
    border-radius: 999px;
    background: linear-gradient(270deg, rgba(216,117,158,.16) 0%, rgba(232,134,174,.14) 100%);
    color: #e886ae;
    font-size: 14px;
    font-weight: 700;
    text-decoration: none;
}

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

.blog-list-more:hover {
    background: linear-gradient(270deg, #d8759e 0%, #e886ae 100%);
    color: #fff;
}

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


/* news show page */
.news-show-page {
    width: 100%;
    padding: 58px 0 76px;
    background: #fff8fb;
}

.blog-show {
    background: #fff;
    border-radius: 24px;
    padding: 48px 56px 42px;
    box-shadow: 0 18px 48px rgba(216, 117, 158, 0.09);
    position: relative;
    overflow: hidden;
}

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

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

.blog-show-label {
    display: inline-block;
    padding: 8px 18px;
    border-radius: 999px;
    background: linear-gradient(270deg, rgba(216,117,158,.16) 0%, rgba(232,134,174,.14) 100%);
    color: #e886ae;
    font-size: 13px;
    line-height: 20px;
    font-weight: 700;
    letter-spacing: 2px;
    text-transform: uppercase;
    margin-bottom: 18px;
}

.blog-show h1 {
    max-width: 960px;
    margin: 0 auto;
    color: #111;
    font-size: 40px;
    line-height: 1.35;
    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: #e886ae;
    font-size: 15px;
}

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

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

.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: #e886ae;
    text-decoration: underline;
}

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

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

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

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

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

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

.blog-show-toc,
.posts-info .toc {
    border: 1px solid #f5d6e3;
    border-radius: 18px;
    padding: 22px 26px;
    margin: 0 0 34px;
    background: #fff1f7;
    box-shadow: 0 10px 30px rgba(216,117,158,.06);
}

.blog-show-toc h2,
.posts-info .toc h2 {
    margin: 0 0 14px;
    color: #111;
    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: #555;
}

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

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

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

.blog-info table th {
    background: linear-gradient(270deg, #d8759e 0%, #e886ae 100%);
    color: #fff;
    font-weight: 700;
    padding: 13px 12px;
    border: 1px solid #f5d6e3;
    text-align: left;
}

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

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

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

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

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

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

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

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

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

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

.relate-blog-title span {
    display: inline-block;
    padding: 8px 18px;
    border-radius: 999px;
    background: linear-gradient(270deg, rgba(216,117,158,.16) 0%, rgba(232,134,174,.14) 100%);
    color: #e886ae;
    font-size: 13px;
    line-height: 20px;
    font-weight: 700;
    letter-spacing: 2px;
    text-transform: uppercase;
    margin-bottom: 12px;
}

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

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

.relate-blog-list dl {
    margin: 0;
    background: #fff;
    border-radius: 20px;
    overflow: hidden;
    box-shadow: 0 16px 42px rgba(216,117,158,.08);
    transition: all .3s ease;
}

.relate-blog-list dl:hover {
    transform: translateY(-6px);
    box-shadow: 0 24px 58px rgba(216,117,158,.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 {
    width: 100%;
    height: 100%;
    object-fit: cover;
    display: block;
    transition: all .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: #e886ae;
}

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

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

/* brand page */
.brand-page {
    width: 100%;
    background: #fff8fb;
}


/* brand hero */
.brand-hero {
    height: 255px;
    padding: 0;
    background:url("../images/banner2.jpg") no-repeat center;
    background-size: cover;
    color: #fff;
    position: relative;
    overflow: hidden;
    display: flex;
    align-items: center;
}

.brand-hero:before {
    content: "";
    position: absolute;
    right: -100px;
    top: -120px;
    width: 300px;
    height: 300px;
    border-radius: 50%;
    border: 42px solid rgba(255, 255, 255, .08);
}

.brand-hero:after {
    content: "";
    position: absolute;
    left: -80px;
    bottom: -110px;
    width: 220px;
    height: 220px;
    border-radius: 50%;
    background: rgba(30, 107, 255, .12);
    box-shadow: 0 0 70px rgba(30, 107, 255, .22);
}

.brand-hero-inner {
    position: relative;
    z-index: 2;
    max-width: 920px;
}

.brand-hero-inner span {
    display: inline-block;
    padding: 6px 16px;
    border-radius: 999px;
    background: rgba(255, 255, 255, .16);
    color: #fff;
    font-size: 13px;
    line-height: 20px;
    font-weight: 700;
    letter-spacing: 2px;
    margin-bottom: 14px;
    backdrop-filter: blur(4px);
    border: 1px solid rgba(255, 255, 255, .18);
}

.brand-hero-inner h1 {
    margin: 0;
    color: #fff;
    font-size: 38px;
    line-height: 1.22;
    font-weight: 800;
}

.brand-hero-inner p {
    margin: 14px 0 0;
    color: rgba(255, 255, 255, .9);
    font-size: 16px;
    line-height: 1.7;
}


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

.brand-section-title span {
    display: inline-block;
    padding: 8px 18px;
    border-radius: 999px;
    background: linear-gradient(270deg, rgba(216,117,158,.16) 0%, rgba(232,134,174,.14) 100%);
    color: #e886ae;
    font-size: 13px;
    line-height: 20px;
    font-weight: 700;
    letter-spacing: 2px;
    text-transform: uppercase;
    margin-bottom: 12px;
}

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

.brand-section-title p {
    max-width: 760px;
    margin: 14px auto 0;
    color: #666;
    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, 1fr);
    gap: 18px;
}

.home-brand-list1 a {
    height: 105px;
    background: #fff;
    border: 1px solid #f5d6e3;
    border-radius: 18px;
    padding: 20px;
    display: flex;
    align-items: center;
    justify-content: center;
    box-shadow: 0 14px 34px rgba(216,117,158,.06);
    position: relative;
    overflow: hidden;
    transition: all .3s ease;
}

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

.home-brand-list1 a:hover {
    transform: translateY(-5px);
    box-shadow: 0 20px 45px rgba(216,117,158,.13);
    border-color: rgba(232,134,174,.25);
}

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

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


/* A-Z navigation */
.brand-navigation-box {
    padding: 36px 0 76px;
}

.brand-navigation {
    margin-bottom: 32px;
    position: sticky;
    top: 140px;
    z-index: 20;
    background: rgba(255,248,251,.92);
    backdrop-filter: blur(8px);
    padding: 12px 0;
}

.brand-navigation ul {
    display: flex;
    flex-wrap: wrap;
    justify-content: center;
    gap: 8px;
    margin: 0;
    padding: 14px;
    background: #fff;
    border: 1px solid #f5d6e3;
    border-radius: 18px;
    box-shadow: 0 14px 34px rgba(216,117,158,.07);
}

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

.brand-navigation ul li a {
    width: 38px;
    height: 38px;
    border-radius: 12px;
    background: #fff1f7;
    color: #e886ae;
    font-size: 14px;
    line-height: 38px;
    font-weight: 700;
    text-align: center;
    display: block;
    text-decoration: none;
    transition: all .25s ease;
}

.brand-navigation ul li a:hover {
    background: linear-gradient(270deg, #d8759e 0%, #e886ae 100%);
    color: #fff;
    box-shadow: 0 10px 22px rgba(216,117,158,.24);
}


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

.brand-navigation-list dl {
    display: grid;
    grid-template-columns: 82px 1fr;
    gap: 20px;
    margin: 0;
    padding: 24px;
    background: #fff;
    border: 1px solid #f5d6e3;
    border-radius: 22px;
    box-shadow: 0 16px 40px rgba(216,117,158,.07);
    transition: all .3s ease;
}

.brand-navigation-list dl:hover {
    box-shadow: 0 22px 50px rgba(216,117,158,.11);
}

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

.brand-navigation-list dl dt a {
    width: 64px;
    height: 64px;
    border-radius: 18px;
    background: linear-gradient(270deg, #d8759e 0%, #e886ae 100%);
    color: #fff;
    font-size: 26px;
    line-height: 64px;
    font-weight: 800;
    text-align: center;
    display: block;
    text-decoration: none;
    box-shadow: 0 12px 26px rgba(216,117,158,.24);
}

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

.brand-navigation-list dl dd a {
    height: 44px;
    line-height: 44px;
    padding: 0 16px;
    border-radius: 12px;
    background: #fff1f7;
    border: 1px solid #f5d6e3;
    color: #333;
    font-size: 14px;
    text-decoration: none;
    overflow: hidden;
    text-overflow: ellipsis;
    white-space: nowrap;
    transition: all .25s ease;
}

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

.brand-navigation-list dl dd a:hover {
    background: linear-gradient(270deg, rgba(216,117,158,.16) 0%, rgba(232,134,174,.14) 100%);
    border-color: rgba(232,134,174,.25);
    color: #e886ae;
    transform: translateY(-2px);
}

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


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


/* brand detail hero */
.brand-detail-hero {
    padding: 70px 0;
    background:
        radial-gradient(circle at 10% 18%, rgba(255,255,255,.22) 0, rgba(255,255,255,0) 28%),
        radial-gradient(circle at 88% 18%, rgba(255,255,255,.18) 0, rgba(255,255,255,0) 30%),
        linear-gradient(270deg, #d8759e 0%, #e886ae 100%);
    position: relative;
    overflow: hidden;
}

.brand-detail-hero:before {
    content: "";
    position: absolute;
    right: -130px;
    top: -130px;
    width: 380px;
    height: 380px;
    border-radius: 50%;
    border: 52px solid rgba(255,255,255,.08);
}

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

.brand-info-box {
    position: relative;
    z-index: 2;
    display: flex;
    align-items: center;
    gap: 42px;
    background: rgba(255,255,255,.96);
    border-radius: 28px;
    padding: 46px;
    box-shadow: 0 24px 70px rgba(216,117,158,.18);
}

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

.brand-logo-card {
    width: 100%;
    min-height: 180px;
    border-radius: 24px;
    background: #fff;
    border: 1px solid #f5d6e3;
    box-shadow: 0 16px 38px rgba(216,117,158,.10);
    display: flex;
    align-items: center;
    justify-content: center;
    padding: 34px;
    position: relative;
    overflow: hidden;
}

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

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

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

.brand-info-box-right > span {
    display: inline-block;
    padding: 8px 18px;
    border-radius: 999px;
    background: linear-gradient(270deg, rgba(216,117,158,.16) 0%, rgba(232,134,174,.14) 100%);
    color: #e886ae;
    font-size: 13px;
    line-height: 20px;
    font-weight: 700;
    letter-spacing: 2px;
    text-transform: uppercase;
    margin-bottom: 16px;
}

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

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

.brand-info-box-right-info {
    margin-top: 18px;
    color: #666;
    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;
}


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

.brand-detail-title span {
    display: inline-block;
    padding: 8px 18px;
    border-radius: 999px;
    background: linear-gradient(270deg, rgba(216,117,158,.16) 0%, rgba(232,134,174,.14) 100%);
    color: #e886ae;
    font-size: 13px;
    line-height: 20px;
    font-weight: 700;
    letter-spacing: 2px;
    text-transform: uppercase;
    margin-bottom: 12px;
}

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

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


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

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

.brand-info-list dl {
    display: grid;
    grid-template-columns: 260px 1fr;
    gap: 22px;
    margin: 0;
    padding: 24px;
    background: #fff;
    border: 1px solid #f5d6e3;
    border-radius: 22px;
    box-shadow: 0 16px 42px rgba(216,117,158,.07);
    transition: all .3s ease;
}

.brand-info-list dl:hover {
    transform: translateY(-4px);
    box-shadow: 0 24px 56px rgba(216,117,158,.12);
}

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

.brand-info-list dl dt a {
    min-height: 62px;
    padding: 0 18px;
    border-radius: 18px;
    background: linear-gradient(270deg, #d8759e 0%, #e886ae 100%);
    color: #fff;
    font-size: 18px;
    line-height: 62px;
    font-weight: 800;
    text-align: center;
    display: block;
    text-decoration: none;
    box-shadow: 0 12px 26px rgba(216,117,158,.22);
    overflow: hidden;
    text-overflow: ellipsis;
    white-space: nowrap;
}

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

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

.brand-info-list dl dd a {
    height: 44px;
    line-height: 44px;
    padding: 0 14px;
    border-radius: 12px;
    background: #fff1f7;
    border: 1px solid #f5d6e3;
    color: #333;
    font-size: 14px;
    text-decoration: none;
    overflow: hidden;
    text-overflow: ellipsis;
    white-space: nowrap;
    transition: all .25s ease;
}

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

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

.brand-info-list dl dd a:hover {
    background: linear-gradient(270deg, rgba(216,117,158,.16) 0%, rgba(232,134,174,.14) 100%);
    border-color: rgba(232,134,174,.25);
    color: #e886ae;
    transform: translateY(-2px);
}

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


/* 多层级分组 */
.brand-cat-group {
    grid-column: 1 / -1;
    padding: 14px;
    border-radius: 16px;
    background: linear-gradient(180deg, #fff 0%, #fff8fb 100%);
    border: 1px solid #f5d6e3;
}

.brand-cat-parent {
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 12px;
    min-height: 38px;
    margin-bottom: 12px;
    padding: 0 14px;
    border-radius: 12px;
    background: linear-gradient(270deg, rgba(216,117,158,.13) 0%, rgba(232,134,174,.12) 100%);
    color: #e886ae;
    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: #e886ae;
    font-style: normal;
    font-size: 12px;
    font-weight: 800;
}

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

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

.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;
    height: 44px;
    line-height: 44px;
    padding: 0 16px;
    border-radius: 12px;
    background: #fff1f7;
    border: 1px dashed #f5d6e3;
    color: #999;
    font-size: 14px;
}


/* ===============================
   Brand A-Z 高亮效果
================================ */

.brand-navigation ul li a.active,
.brand-navigation ul li a.is-active {
    background: linear-gradient(270deg, #d8759e 0%, #e886ae 100%) !important;
    color: #fff !important;
    border-color: transparent !important;
    box-shadow: 0 10px 22px rgba(216,117,158,0.28);
    transform: translateY(-2px);
}

.brand-navigation-list dl.brand-group-active {
    border-color: rgba(232,134,174,0.35) !important;
    box-shadow:
        0 0 0 3px rgba(232,134,174,0.20),
        0 24px 56px rgba(216,117,158,0.16) !important;
    transform: translateY(-4px);
}

.brand-navigation-list dl.brand-group-active dt a {
    background: linear-gradient(270deg, #d8759e 0%, #e886ae 100%) !important;
    color: #fff !important;
    box-shadow: 0 14px 30px rgba(216,117,158,0.30) !important;
}

.brand-navigation-list dl.brand-group-active dd a {
    border-color: rgba(232,134,174,0.22);
    background: #fff8fb;
}

.brand-navigation-list dl.brand-group-active {
    animation: brandGroupFlash 1.2s ease;
}

@keyframes brandGroupFlash {
    0% {
        box-shadow:
            0 0 0 0 rgba(232,134,174,0.45),
            0 16px 40px rgba(216,117,158,0.08);
    }

    45% {
        box-shadow:
            0 0 0 6px rgba(232,134,174,0.22),
            0 24px 56px rgba(216,117,158,0.16);
    }

    100% {
        box-shadow:
            0 0 0 3px rgba(232,134,174,0.20),
            0 24px 56px rgba(216,117,158,0.16);
    }
}


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

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

.brand-pro dl {
    margin: 0;
    background: #fff;
    border: 1px solid #f5d6e3;
    border-radius: 20px;
    overflow: hidden;
    box-shadow: 0 16px 42px rgba(216,117,158,.07);
    transition: all .3s ease;
}

.brand-pro dl:hover {
    transform: translateY(-6px);
    box-shadow: 0 24px 56px rgba(216,117,158,.13);
    border-color: rgba(232,134,174,.25);
}

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

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

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

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

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

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

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

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

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

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

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


/* 品牌详情页分类名称完整显示 */
.brand-info-list dl dt a {
    height: auto !important;
    min-height: 62px !important;
    line-height: 24px !important;
    padding: 16px 20px !important;
    white-space: normal !important;
    overflow: visible !important;
    text-overflow: initial !important;
    display: flex !important;
    align-items: center !important;
    justify-content: center !important;
    word-break: normal !important;
}

.brand-info-list dl dd a {
    height: auto !important;
    min-height: 44px !important;
    line-height: 22px !important;
    padding: 11px 16px !important;
    white-space: normal !important;
    overflow: visible !important;
    text-overflow: initial !important;
    display: flex !important;
    align-items: center !important;
    word-break: normal !important;
}


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

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

.brand-franchised-list dl {
    width: 49.3%;
    border-radius: 6px;
    background: #FFFFFF;
    margin-bottom: 1.4%;
    padding: 15px;
    border: 1px solid #f5d6e3;
    box-shadow: 0 12px 30px rgba(216,117,158,.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;
    font-weight: bold;
    font-size: 1rem;
    line-height: 26px;
    height: 26px;
    overflow: hidden;
    margin-bottom: 5px;
}

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

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

@media (max-width: 768px) {
    .about-intro {
        display: block;
        padding: 35px 15px 35px;
    }

    .about-intro-img {
        margin-bottom: 26px;
        border-radius: 12px;
    }

    .about-intro-img img {
        height: 260px;
    }

    .about-intro-text {
        padding-right: 0;
    }

    .about-subtitle {
        margin-bottom: 12px;
        font-size: 13px;
        padding: 6px 15px;
    }

    .about-intro-text h1 {
        margin-bottom: 18px;
        font-size: 25px;
        line-height: 1.35;
    }

    .about-intro-text p {
        font-size: 14px;
        line-height: 1.75;
    }

    .about-data {
        grid-template-columns: repeat(2, 1fr);
        padding: 25px 15px;
    }

    .about-data-item {
        padding: 18px 5px;
        border-right: none;
        border-bottom: 1px solid #f1d7e2;
    }

    .about-data-item:nth-child(1),
    .about-data-item:nth-child(3) {
        border-right: 1px solid #f1d7e2;
    }

    .about-data-item:nth-child(3),
    .about-data-item:nth-child(4) {
        border-bottom: none;
    }

    .about-data-item strong {
        font-size: 30px;
    }

    .about-data-item span {
        font-size: 13px;
    }

    .about-content {
        padding: 38px 15px 45px;
    }

    .about-section,
    .about-section-reverse {
        display: flex;
        flex-direction: column;
        gap: 22px;
        margin-bottom: 38px;
    }

    .about-section-reverse .about-section-text {
        order: 2;
    }

    .about-section-reverse .about-section-img {
        order: 1;
    }

    .about-section-text {
        width: 100%;
        padding: 28px 22px;
        border-radius: 12px;
    }

    .about-section-title {
        align-items: flex-start;
        margin-bottom: 18px;
    }

    .about-section-title b {
        width: 46px;
        height: 46px;
        margin-right: 14px;
        font-size: 16px;
        flex-shrink: 0;
    }

    .about-section-title h2 {
        font-size: 22px;
    }

    .about-section-text p {
        font-size: 14px;
        line-height: 1.75;
    }

    .about-section-img {
        width: 100%;
        border-radius: 12px;
    }

    .about-section-img img {
        height: 235px;
    }

    .about-card-grid {
        grid-template-columns: 1fr;
        gap: 16px;
        margin-bottom: 38px;
    }

    .about-card {
        padding: 26px 22px;
        border-radius: 12px;
    }

    .about-card-icon {
        width: 56px;
        height: 56px;
        margin-bottom: 18px;
        font-size: 24px;
    }

    .about-card h3 {
        font-size: 18px;
    }

    .about-card p {
        font-size: 14px;
    }

    .about-vision {
        padding: 34px 24px;
        border-radius: 14px;
    }

    .about-vision-inner span {
        font-size: 32px;
    }

    .about-vision-inner h2 {
        font-size: 24px;
    }

    .about-vision-inner p {
        font-size: 14px;
        line-height: 1.75;
    }
       .about-vision-inner p span{
        font-size: 14px;
        line-height: 1.75;
    }
    .about-vision-btn {
        min-width: 145px;
        height: 44px;
        margin-top: 24px;
        padding: 0 22px;
        font-size: 14px;
    }

    .about-vision-btn em {
        margin-right: 10px;
        border-top-width: 6px;
        border-bottom-width: 6px;
        border-left-width: 9px;
    }

    /*Contact-Us*/
    .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 {
        padding: 30px 22px;
        margin-top: 20px;
    }

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

    .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;
    }

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

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

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

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

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

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

    .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 {
        height: auto;
    }

    .blog-desc {
        height: auto;
    }

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

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

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

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

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

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

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

    .news-list-page {
        padding: 38px 0 48px;
    }

    .news-list-head {
        margin-bottom: 26px;
    }

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

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

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

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

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

    .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-show-page {
        padding: 36px 0 48px;
    }

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

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

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

    .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 {
        padding: 18px;
        margin-bottom: 24px;
        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 {
        grid-template-columns: 1fr;
        gap: 18px;
    }

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

    .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*/
    .brand-hero {
        padding: 42px 0 46px;
    }

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

    .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;
        line-height: 54px;
        border-radius: 16px;
        font-size: 22px;
    }

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

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

    .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;
        border-radius: 18px;
        padding: 26px;
    }

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

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

    .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;
        line-height: 52px;
        font-size: 16px;
        border-radius: 14px;
    }

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

    .brand-info-list dl dd a {
        height: 40px;
        line-height: 40px;
        padding: 0 12px;
        font-size: 13px;
        border-radius: 10px;
    }

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

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

    .brand-product-section {
        padding: 30px 0 48px;
    }

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

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

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

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

    .brand-pro {
        grid-template-columns: repeat(2, 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;
    }

    .brand-info-list dl dt a {
        height: auto !important;
        min-height: 52px !important;
        line-height: 22px !important;
        padding: 14px 16px !important;
        white-space: normal !important;
        overflow: visible !important;
        text-overflow: initial !important;
    }

    .brand-info-list dl dd a {
        height: auto !important;
        min-height: 42px !important;
        line-height: 22px !important;
        padding: 10px 16px !important;
        white-space: normal !important;
        overflow: visible !important;
        text-overflow: initial !important;
    }

    .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;
    }


    
}

/* =====================================
   Brand Detail / FAQ Rich Content
===================================== */
.brand-extra-section {
    padding: 0 0 54px;
}

.brand-faq-extra {
    padding-bottom: 76px;
}

.brand-extra-card {
    position: relative;
    padding: 42px 46px 46px;
    background: #fff;
    border: 1px solid #f5d6e3;
    border-radius: 24px;
    box-shadow: 0 16px 42px rgba(216, 117, 158, .07);
    overflow: hidden;
}

.brand-extra-card:before {
    content: "";
    position: absolute;
    left: 0;
    top: 0;
    width: 100%;
    height: 4px;
    background: linear-gradient(270deg, #d8759e 0%, #e886ae 100%);
}

.brand-extra-heading {
    padding-bottom: 22px;
    margin-bottom: 26px;
    border-bottom: 1px solid #f5d6e3;
}

.brand-extra-heading span {
    display: inline-block;
    margin-bottom: 9px;
    color: #e886ae;
    font-size: 13px;
    line-height: 20px;
    font-weight: 700;
    letter-spacing: 1.8px;
}

.brand-extra-heading h2 {
    margin: 0;
    color: #111;
    font-size: 30px;
    line-height: 1.35;
    font-weight: 800;
}

.brand-rich-content {
    color: #555;
    font-size: 16px;
    line-height: 1.85;
    word-break: break-word;
}

.brand-rich-content:after {
    content: "";
    display: block;
    clear: both;
}

.brand-rich-content p {
    margin: 0 0 16px;
}

.brand-rich-content p:last-child {
    margin-bottom: 0;
}

.brand-rich-content h2,
.brand-rich-content h3,
.brand-rich-content h4,
.brand-rich-content h5 {
    margin: 28px 0 14px;
    color: #222;
    line-height: 1.4;
    font-weight: 800;
}

.brand-rich-content h2 {
    font-size: 24px;
}

.brand-rich-content h3 {
    font-size: 20px;
}

.brand-rich-content h4,
.brand-rich-content h5 {
    font-size: 17px;
}

.brand-rich-content ul,
.brand-rich-content ol {
    margin: 0 0 18px;
    padding-left: 24px;
}

.brand-rich-content li {
    margin-bottom: 7px;
}

.brand-rich-content a {
    color: #e886ae;
    text-decoration: underline;
}

.brand-rich-content img {
    max-width: 100%;
    height: auto;
    border-radius: 12px;
}

.brand-rich-content table {
    width: 100%;
    margin: 20px 0;
    border-collapse: collapse;
    background: #fff;
}

.brand-rich-content table th,
.brand-rich-content table td {
    padding: 12px 14px;
    border: 1px solid #f1d7e2;
    text-align: left;
    vertical-align: top;
}

.brand-rich-content table th {
    background: #fff1f7;
    color: #333;
    font-weight: 700;
}

/* 编辑 FAQ 时如果使用 details/summary，可直接得到折叠样式 */
.brand-faq-content details {
    margin-bottom: 12px;
    border: 1px solid #f5d6e3;
    border-radius: 14px;
    background: #fff8fb;
    overflow: hidden;
}

.brand-faq-content details:last-child {
    margin-bottom: 0;
}

.brand-faq-content summary {
    position: relative;
    padding: 16px 48px 16px 18px;
    color: #222;
    font-weight: 700;
    cursor: pointer;
    list-style: none;
}

.brand-faq-content summary::-webkit-details-marker {
    display: none;
}

.brand-faq-content summary:after {
    content: "+";
    position: absolute;
    right: 18px;
    top: 50%;
    transform: translateY(-50%);
    color: #e886ae;
    font-size: 22px;
    font-weight: 400;
}

.brand-faq-content details[open] summary:after {
    content: "−";
}

.brand-faq-content details > *:not(summary) {
    margin-left: 18px;
    margin-right: 18px;
}

.brand-faq-content details > p:last-child {
    margin-bottom: 18px;
}

@media screen and (max-width: 767px) {
    .brand-extra-section {
        padding: 0 0 30px;
    }

    .brand-faq-extra {
        padding-bottom: 48px;
    }

    .brand-extra-card {
        padding: 28px 20px 30px;
        border-radius: 18px;
    }

    .brand-extra-heading {
        padding-bottom: 16px;
        margin-bottom: 20px;
    }

    .brand-extra-heading span {
        font-size: 12px;
        letter-spacing: 1.2px;
    }

    .brand-extra-heading h2 {
        font-size: 24px;
    }

    .brand-rich-content {
        font-size: 14px;
        line-height: 1.8;
    }

    .brand-rich-content h2 {
        font-size: 21px;
    }

    .brand-rich-content h3 {
        font-size: 18px;
    }

    .brand-rich-content table {
        display: block;
        overflow-x: auto;
        white-space: nowrap;
    }
}

