@font-face {
    font-family: 'LeagueGothic';
    src: url('../img/LeagueGothic-Regular-VariableFont_wdth.ttf') format('truetype');
    font-weight: normal;
    font-style: normal;
}
@font-face {
    font-family: 'HarmonyOS';
    src: url('../img/HarmonyOS_Sans_SC_Regular_EN.ttf') format('truetype');
    font-weight: normal;
    font-style: normal;
}
:root{
    --bs-pagination-active-bg: #b65c35;
    --bs-pagination-active-border-color: #c65a1e;
    --bs-pagination-color: #333;
}
.pagination {
    --bs-pagination-active-bg: #b65c35;
    --bs-pagination-active-border-color: #c65a1e;
    --bs-pagination-active-color: #fff; /* 激活时的文字颜色 */
    --bs-pagination-color: #333;        /* 默认文字颜色 */
}
body {
    font-family: "HarmonyOS",-apple-system, BlinkMacSystemFont, "Segoe UI", Roboto, Arial,
    "Helvetica Neue", Helvetica, "Noto Sans", "Microsoft Yahei", sans-serif,
    "Apple Color Emoji", "Segoe UI Emoji", "Segoe UI Symbol", "Noto Color Emoji";
    background: #fff;
    max-width: 2600px;
    margin: 0 auto;
}

h1, h2, h3, h4, h5 {
    font-size: 14px;
}

a {
    color: #333;
    text-decoration: none;
}

a:hover,
a:focus {
    text-decoration: none;
    color: #b65c35;
}

.icon {
    width: 1em;
    height: 1em;
    vertical-align: -0.15em;
    fill: currentColor;
    overflow: hidden;
}
/* 文本1行省略 */
.text-ellipsis {
    display: -webkit-box;
    -webkit-line-clamp: 1;
    -webkit-box-orient: vertical;
    overflow: hidden;
}
/* 文本2行省略 */
.text-multiline-ellipsis {
    display: -webkit-box;
    -webkit-box-orient: vertical;
    -webkit-line-clamp: 2;
    overflow: hidden;
}

ul {
    margin: 0;
    padding: 0;
}

ul li {
    list-style: none;
    margin: 0;
    padding: 0;
}

.site-header {
    background: #fff;
    position: sticky;
    top: 0;
    z-index: 999;
    border-bottom: 1px solid #dfe2e6;
}

.site-header.is-fixed {
    box-shadow: 0 4px 20px rgba(0,0,0,.08);
}

.site-logo img {
    height: 36px;
}

.brand-text {
    font-size: 22px;
    font-weight: 700;
    color: #b65c35;
    margin-left: 8px;
    position: relative;
    padding-left: 10px;
}
.brand-text:before{
    content: '';
    position: absolute;
    width: 1px;
    height: 18px;
    background: #574737;
    display: block;
    left: 1px;
    margin-top: 5px;
}

.navbar-nav {
    gap: 40px;
}
.nav-item{
    height: 40px;
    line-height: 40px;
}
.navbar-nav .nav-link {
    font-weight: 500;
    font-size: 18px;
    padding: 0 18px;
    color: #333;
}

.navbar-nav .nav-link:hover,
.navbar-nav .nav-link.active {
    color: #c65a1e;
}
.btn-contact {
    background: #b65c35;
    color: #fff;
    padding: 8px 16px;
    border-radius: 20px;
    font-weight: 500;
}
.btn-contact:hover{
    background: #be5e29;
    color: #fff;
}
.contact-rightbg{
    background: #efebe7;
}
/* =====================
   Mega Menu - PC
===================== */
.dropdown-mega {
    position: static;
}

.mega-menu {
    position: absolute;
    left: 0;
    width: 100%;
    padding: 20px 0;
    border: none;
    display: none;
    border-radius: 0;
    box-shadow: 0 10px 10px -8px rgba(0,0,0,0.2);
}

.dropdown-mega:hover .mega-menu {
    display: block;
}
.dropdown-mega:hover > .nav-link {
    color: #c65a1e;
}

.mega-item {
    position: relative;
    display: block;
    overflow: hidden;
    border-radius: 6px;
}

.mega-item img {
    width: 100%;
    height: 220px;
    object-fit: cover;
    transition: transform .4s ease;
}

.mega-item span {
    position: absolute;
    left: 20px;
    bottom: 20px;
    font-size: 22px;
    color: #fff;
    font-weight: 600;
    text-shadow: 0 2px 4px rgba(0, 0, 0, 0.18);
}
.mega-item span:after{
    content: '';
    width: 120%;
    height: 3px;
    position: relative;
    margin-top: 5px;
    display: block;
    background: #fff;
}

.mega-item:hover img {
    transform: scale(1.05);
}

.mega-more p {
    font-size: 20px;
    margin-bottom: 8px;
}

.view-more {
    color: #c65a1e;
    font-weight: 600;
    text-decoration: none;
}

/* =====================
   Footer
===================== */
.site-footer {
    background: #f3ede4;
    padding: 40px 0;
    font-size: 14px;
    color: #555;
}

.site-footer h5 {
    font-size: 18px;
    font-weight: 600;
    margin-bottom: 16px;
    color: #333;
}

.footer-col ul {
    list-style: none;
    padding: 0;
    margin: 0;
}

.footer-col ul li {
    margin-bottom: 10px;
}

.footer-col ul li a {
    /*color: #555;*/
    text-decoration: none;
}

.footer-col ul li a:hover {
    color: #c65a1e;
}

/* Contact */
.footer-contact li {
    display: flex;
    align-items: center;
    gap: 8px;
}

.footer-contact i {
    color: #777;
}

/* Social */
.footer-social {
    display: flex;
    gap: 12px;
    margin-bottom: 16px;
}

.footer-social a {
    width: 38px;
    height: 38px;
    border: 1px solid #aaa;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    color: #555;
    font-size: 18px;
    text-decoration: none;
}

.footer-social a:hover {
    background: #c65a1e;
    border-color: #c65a1e;
    color: #fff;
}

/* Subscribe */
.footer-subscribe {
    display: flex;
    margin-bottom: 20px;
}

.footer-subscribe input {
    flex: 1;
    padding: 8px 10px;
    border: 1px solid #ccc;
    outline: none;
}

.footer-subscribe button {
    background: #b65c35;
    color: #fff;
    border: none;
    padding: 0 16px;
    font-weight: 500;
}

/* Brand */
.footer-brand {
    display: flex;
    align-items: center;
    gap: 10px;
}

.footer-brand img {
    height: 32px;
}

.footer-brand span {
    padding-left: 10px;
    display: inline-block;
    font-size: 20px;
    font-weight: 700;
    color: #c65a1e;
    position: relative;
}
.footer-brand span::after{
    content: '';
    position: absolute;
    left: 0;
    width: 1px;
    height: 20px;
    background: #574737;
    top: 6px;
}

/* ===== Banner Swiper ===== */
.banner-swiper {
    width: 100%;
    overflow: hidden;
}

.banner-item {
    height: 80vh;
    min-height: 520px;
    background-size: cover;
    background-position: center;
    position: relative;
}

/* 文案容器 */
.banner-text {
    position: absolute;
    left: 60px;
    bottom: 60px;
    color: #fff;
    max-width: 900px;
}

/* 大标题 */
.banner-title {
    color: #fff;
    font-size: 80px;
    font-weight: bolder;
    line-height: 1.1;
    margin-bottom: 0px;
    opacity: 0;
    transform: translateY(30px);
    text-shadow: 0 2px 4px rgba(0, 0, 0, 0.8);
}

/* 副标题 */
.banner-subtitle {
    font-size: 30px;
    letter-spacing: 0.5px;
    opacity: 0;
    transform: translateY(30px);
    text-shadow: 0 2px 4px rgba(0, 0, 0, 0.18);
}

.banner-title,
.banner-subtitle {
    opacity: 0;
    transform: translateY(30px);
    transition: all 0.8s ease;
}

/* 动画触发态 */
.banner-text.is-animate .banner-title {
    opacity: 1;
    transform: translateY(0);
}

.banner-text.is-animate .banner-subtitle {
    opacity: 1;
    transform: translateY(0);
    transition-delay: 0.2s;
}
.home-pagination{
    text-align: right;
    padding-right: 50px;
}
.home-pagination .swiper-pagination-bullet-active{
    background: #b65c35;
    width: 50px;
    height: 8px;
    border-radius: 0;
}
.certSwiper .swiper-pagination{
    bottom: -5px !important;
}

    /* ===== Products Section ===== */


.products-title::after {
    content: '';
    width: 40px;
    height: 2px;
    background: #c66;
    display: block;
    margin-top: 10px;
}


/* 右侧轮播 */
.productsSwiper {
}

.product-item {
}

.product-item img {
    width: 100%;
    height: 620px;
    object-fit: cover;
}

/* 遮罩层 */
.product-item::after {
    content: "";
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: rgba(0,0,0,0);
    transition: background 0.3s ease;
    pointer-events: none;
}

.product-item:hover::after {
    background: rgba(0,0,0,0.15);
}


.product-name {
    position: absolute;
    bottom: 16px;
    left: 0;
    color: #fff;
    font-size: 28px;
    letter-spacing: 1px;
    z-index: 9;
    text-align: center;
    width: 100%;
    font-family: 'LeagueGothic', sans-serif;
    text-shadow: 0 2px 4px rgba(0, 0, 0, 0.8);
}
.img-link {
    display: block;
    position: relative;
    overflow: hidden;
}

.img-link img {
    transition: transform .4s ease;
}

.img-link::after {
    content: '';
    position: absolute;
    inset: 0;
    background: rgba(0,0,0,.15);
    opacity: 0;
    transition: opacity .3s ease;
}

.img-link:hover img {
    transform: scale(1.05);
}

.img-link:hover::after {
    opacity: 1;
}
a.view-btn{
    display: block;
    font-size: 18px;
    padding: 5px 20px;
    background: #b65c35;
    color: #fff;
    border-radius: 20px;
}
.page-banner {
    position: relative;
    overflow: hidden;
}

/* Banner 图片 */
.page-banner .banner-img {
    width: 100%;
    height: auto;
    display: block;
}

/* 半透明黑色遮罩 */
.page-banner .banner-overlay {
    position: absolute;
    inset: 0;
    background: rgba(0,0,0,0.25);
    z-index: 1;
}

/* 文字层 */
.page-banner .page-name {
    z-index: 2;
    color: #fff;
    text-shadow: 0 2px 8px rgba(0,0,0,0.8);
}

.breadcrumb .breadcrumb-item::before{
    content: '';
}
nav.breadcrumbwhite{
    color: #fff;
}
nav.breadcrumbwhite ol li a{
    color: #fff;
}
.page-name h2,.page-name h1 {
    font-size: 40px;
    text-shadow: 0 2px 4px rgba(0, 0, 0, 0.8);
}
.news-list-tag{
    display: inline-block;
    background: #bf3836;
    padding: 5px 20px;
    color: #fff;
    font-size: 12px;
}
a.read-more{
    background: #b65c35;
    color: #fff;
    padding: 5px 20px;
    display: inline-block;
    border-radius: 5px;
}
a.read-more:hover{
    background: #9b411a;
}
.new-nav a{
    display: inline-block;
    border: 1px solid #dbdcdc;
    border-radius: 20px;
    margin: 5px;
    padding: 5px 15px;
}
.new-nav a:hover,.new-nav a.active{
    background: #b65c35;
    color: #fff;
}
a.view-detail{
    position: relative;
    display: inline-block;
}
a.view-detail::after{
    position: absolute;
    content: "";
    width: 120%;
    height: 2px;
    background: #b65c35;
    left: 0;
    bottom: -5px;
}
.content-tag{
    color: #AF4321;
}
.content-desc{
    border-left: 2px solid #af5935;
    background: #f6f2ea;
    padding-top: 5px;
    padding-bottom: 5px;
}
/* 针对后台输出内容的标准化容器 */
.content-text {
    line-height: 1.75;         /* 黄金行高，提升阅读舒适度 */
    color: #2c3e50;            /* 深灰色字体，比纯黑更护眼 */
    font-size: 16px;           /* 网页正文标准字号 */
    word-wrap: break-word;     /* 强制长单词换行，防止撑破容器 */
    letter-spacing: 0.03em;    /* 微调字间距，更有质感 */
}

/* 标题样式：层次分明，间距合理 */
.content-text h1, .content-text h2, .content-text h3,
.content-text h4, .content-text h5, .content-text h6 {
    color: #111;
    font-weight: 700;
    margin: 1.6em 0 0.8em;     /* 增加标题上方间距，区分章节 */
    line-height: 1.4;
}

.content-text h1 { font-size: 1.85em; }
.content-text h2 { font-size: 1.55em; border-bottom: 1px solid #eaecef; padding-bottom: 0.3em; }
.content-text h3 { font-size: 1.25em; }

/* 段落与文本装饰 */
.content-text p {
    margin: 0 0 1.2em;         /* 控制段落间距 */
}

.content-text strong {
    font-weight: 600;
    color: #000;
}

/* 媒体资源：自适应与居中 */
.content-text img {
    max-width: 100%;           /* 适配手机端，图片不溢出 */
    height: auto;
    display: block;
    margin: 1.5em auto;        /* 图片上下留白并居中 */
    border-radius: 6px;        /* 轻微圆角 */
    box-shadow: 0 2px 10px rgba(0,0,0,0.05); /* 淡淡的阴影提升立体感 */
}

/* 列表样式：修正后台输出常有的对齐问题 */
/* 1. 统一列表基础缩进 */
.content-text ul,
.content-text ol {
    margin: 0 0 1.5em 1.8em; /* 左侧留出足够的空间显示序号 */
    padding: 0;
}

/* 2. 列表项间距 */
.content-text li {
    margin-bottom: 0.8em;   /* 列表项之间不要太挤 */
    line-height: 1.7;
}

/* 3. 无序列表 (ul) - 默认是圆点 */
.content-text ul,.content-text ul li {
    list-style-type: disc;  /* 标准圆点 */
}

/* 4. 有序列表 (ol) - 标准数字序号 */
.content-text ol,.content-text li {
    list-style-type: decimal; /* 1. 2. 3. 序号 */
}

/* 5. 如果你希望 ul 也显示某种自定义序号（比如方块或自定义颜色） */
.content-text ul li::marker {
    color: #1890ff; /* 这里的颜色可以改成你网站的主题色 */
}

/* 6. 嵌套列表处理（防止层级混乱） */
.content-text li > ul,
.content-text li > ol {
    margin-top: 0.5em;
    margin-bottom: 0.5em;
    margin-left: 1.5em;
}

/* 引用块样式 */
.content-text blockquote {
    margin: 1.5em 0;
    padding: 0.8em 1.2em;
    color: #6a737d;
    border-left: 0.3em solid #dfe2e5;
    background-color: #f9f9f9;
}

/* 代码适配 */
.content-text code {
    padding: 0.2em 0.4em;
    margin: 0;
    font-size: 85%;
    background-color: rgba(27,31,35,0.05);
    border-radius: 3px;
    font-family: "SFMono-Regular", Consolas, "Liberation Mono", Menlo, monospace;
}

/* 表格样式：兼容多种后台表格设置 */
.content-text table {
    display: block;            /* 手机端可左右滚动 */
    width: 100%;
    overflow: auto;
    border-spacing: 0;
    border-collapse: collapse;
    margin-bottom: 1.5em;
}

.content-text table th, .content-text table td {
    padding: 8px 15px;
    border: 1px solid #dfe2e5;
}

.content-text table tr:nth-child(2n) {
    background-color: #f6f8fa; /* 隔行变色 */
}
.content-text img {
    /* 1. 核心响应式：确保图片永远不会超出父容器宽度 */
    max-width: 100% !important;
    height: auto !important;

    /* 2. 块级化：消除图片底部的空白缝隙 */
    display: block;

    /* 3. 居中：如果图片比容器窄，自动居中 */
    margin: 1.5rem auto;

    /* 4. 美化：轻微圆角和阴影，增加页面高级感 */
    border-radius: 8px;
    box-shadow: 0 4px 12px rgba(0, 0, 0, 0.08);

    /* 5. 过渡效果：加载时更平滑 */
    transition: transform 0.3s ease;
}

/* 鼠标悬停微调（可选，提升交互感） */
.content-text img:hover {
    transform: scale(1.01);
}

/* 处理有些后台编辑器会给图片加 figure 标签的情况 */
.content-text figure {
    margin: 1.5rem 0;
    text-align: center;
}

/* 图注样式：如果后台有图片说明文字 */
.content-text figcaption,
.content-text .image-caption {
    font-size: 0.9em;
    color: #888;
    margin-top: -1rem;
    margin-bottom: 1.5rem;
    text-align: center;
}
.contact-card .overlay {
    position: absolute;
    inset: 0;
    background: rgba(0,0,0,.55);

    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;

    color: #fff;
    text-align: center;
    opacity: 0;
    pointer-events: none;
    transition: opacity .3s ease;
}
.contact-icon{
    position: absolute;
    bottom: 10%;
    width: 100%;
    text-align: center;
    color: #fff;
    font-size: 40px;
}
.contact-card a:hover .overlay{
    opacity: 1;
}

.contact-card .overlay p {
    opacity: 0;
    transform: translateY(10px);
    transition: all .35s ease;
}

.contact-card a:hover .overlay i,
.contact-card a:hover .overlay p {
    opacity: 1;
    transform: translateY(0);
}
.recommend-news-title::before{
    content: '';
    width: 3px;
    height: 28px;
    position: absolute;
    left: 0;
    background: #A74121;
}
/* 灵感列表悬浮样式 */
.img-link .view-project-btn {
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    background: #FFFFFF;
    color: #A74121;
    padding: 12px 32px;
    border-radius: 20px;
    font-size: 16px;
    font-weight: 600;
    opacity: 0;
    z-index: 10;
    transition: opacity .3s ease, transform .3s ease;
    pointer-events: none;
    white-space: nowrap;
}

.img-link:hover .view-project-btn {
    opacity: 1;
    transform: translate(-50%, -50%) scale(1.05);
    pointer-events: auto;
}

.product-tag{
    background: #b1272a;
    color: #fff;
}
.product-title span{
    display: block;
}
.product-label{
    width: 120px !important;
}
.product-color{
    cursor: pointer;
    margin-bottom: 5px;
    border: 1px solid #dfe2e6;
    padding: 2px;
}
.product-color.active,.product-color:hover{
    border: 1px solid #A74121;
}
.product-color img{
    width: 100%;
}
a.product-contact{
    display: block;
    background: #f3ede4;
    border-radius: 20px;
    text-align: center;
    padding: 10px;
    font-size: 18px;
    font-weight: bolder;
}
a.product-addto{
    display: block;
    background: #b65c35;
    color: #fff;
    border-radius: 20px;
    text-align: center;
    padding: 10px;
    font-size: 18px;
    font-weight: bolder;
}
.product-videobtn{
    width: 80px;
    height: 80px;
    line-height: 80px;
    text-align: center;
    border-radius: 50%;
    background-color: rgba(255,255,255,0.7);
}
.bg-decor{
    background: #f8f6f1;
}
.text-brown {
    background: #faf9f7;
    color: #AF4321 !important; /* 对应图片中的棕红色 */
}


.accordion-button{
    border-bottom: 1px solid #dbdad8;
}
.accordion-button:not(.collapsed) {
    background-color: transparent;
    color: #AF4321;

}

.accordion-button:focus {
    box-shadow: none;
    border-color: rgba(0,0,0,.125);
}

/* 自定义箭头图标颜色 (可选) */
.accordion-button::after {
    filter: sepia(100%) saturate(200%) hue-rotate(330deg);
}

/* 设置圆角 */
.accordion-item {
    border-radius: 8px !important;
    overflow: hidden;
    background: #faf9f7;
    box-shadow: 0 4px 20px rgba(0, 0, 0, .08)
}
.product-nav{
    height:40px;
    line-height: 40px;
}
.product-nav a:hover,.product-nav a.active{
    color: #AF4321;
}
.product-new{
    position: absolute;
    background: #F39800;
    color: #fff;
    top: 5px;
    left: 0;
    z-index: 9;
    height: 30px;
    line-height: 30px;
    width: 60px;
    text-align: center;
    border-radius: 0 20px 20px 0;
}
.contact-title{
    position: relative;
}
.contact-title::after{
    content: '';
    position: absolute;
    width: 120px;
    height: 3px;
    background: #b65c35;
    left: 0;
    bottom: -10px;
}
.about-bg{
    background: url("../img/about-bg.jpg") bottom no-repeat;
    background-size: cover;
}
.about-text{
    color: #004A9D;
}
.about-brand{
    background: url("../img/about-brand-bg.jpg") center no-repeat;
    background-size: cover;
    min-height: 500px;
}
.about-pagename{
    font-family: 'LeagueGothic';
    color: #fff;
    /*font-weight: 600;*/
    text-shadow: 0 2px 4px rgba(0, 0, 0, 0.8);
    font-size: 80px;
    letter-spacing: 0.07em;
}
.about-mapbox{
    position: absolute;
    bottom: 0;
    width: 100%;
}
.about-maptxt{
    text-align: center;
    background: rgba(186,212,231,0.6);
}
.about-maptxt b{
    font-family: 'LeagueGothic';
    font-size: 60px;
    font-weight: bolder;
    color: #004A9D;
}
.about-maptxt sup{
    font-size: 30px;
    font-weight: bolder;
    color: #004A9D;
    padding-left: 10px;
}
.decor-bg{
    background: #faf9f7;
}
.about-certbox{
    max-width: 700px;
}
.certSwiper {
    padding: 40px 0; /* 上下预留间距给缩放效果 */
}
/* 默认状态：缩小并降低透明度（可选，增加层次感） */
.certSwiper .swiper-slide {
    transition: transform 0.4s ease; /* 确保平滑过渡 */
    transform: scale(0.8);
    opacity: 0.5; /* 缩小的时候稍微变暗，效果更明显 */
}

/* 激活状态：放大 */
/* 增加 .swiper-slide-active 的权重，并兼容 loop 模式 */
.certSwiper .swiper-slide-active,
.certSwiper .swiper-slide-duplicate-active {
    transform: scale(1.2) !important; /* 尝试放大到 1.2 观察是否生效 */
    opacity: 1;
    z-index: 10; /* 确保放大的图片在最上层 */
}
.home-factory-txt{
    background: rgba(0,0,0,0.2);
}
.home-factory-txt.active{
    background: rgba(182, 92, 53,0.9);
}
.home-news-btn{
    background: #20499b;
}
.home-news-bg{
    background: #f3ede4;
}
.home-down-btn a{
    display: inline-block;
    border: 1px solid #b65c35;
    padding: 10px 25px;
    background: #fff;
    border-radius: 25px;
}
.home-down-btn a.active{
    background: #b65c35;
    color: #fff;
}
.product-img{
    aspect-ratio: 1 / 1;
    object-fit: contain;
}
/* 限制缩略图容器和图片尺寸 */
#intcocarousel {
    display: flex;
    gap: 10px;
    flex-wrap: nowrap;
    overflow-x: auto;
}

#intcocarousel li {
    flex: 0 0 auto;  /* 防止自动拉伸 */
    width: 100px;    /* 固定宽度 */
    height: 100px;   /* 固定高度 */
    list-style: none;
}

#intcocarousel li img {
    width: 100%;
    height: 100%;
    object-fit: cover;  /* 保持比例裁剪 */
    cursor: pointer;
    border: 2px solid transparent;
    transition: border-color 0.3s;
}

#intcocarousel li img:hover {
    border-color: #007bff;
}
/*心愿单*/
/* 心愿单图标样式 */
.wishlist-icon {
    color: #6a3a2a; /* 深色 */
    text-decoration: none;
    display: block;
    padding: 5px;
}
.wishlist-num{
    border: 1px solid #b65c35;
    background: #fff;
    color: #b65c35;
    margin-top: 10px;
    font-size: 8px;
}
/* 下拉菜单面板 */
.wishlist-menu {
    border: 1px solid #dfe2e6;
    width: 350px;
    right: 0;
    margin-top: 1px !important;
    border-radius: 8px;
    display: block;
    visibility: hidden;
    opacity: 0;
    transform: translateY(10px);
    transition: all 0.3s ease;
    pointer-events: none; /* 隐藏时不可点击 */
}

.dropdown:hover > .wishlist-menu {
    visibility: visible;
    opacity: 1;
    transform: translateY(0);
    pointer-events: auto;
}

/* 小三角形箭头 */
.wishlist-menu::before {
    content: "";
    position: absolute;
    top: -8px;
    right: 15px;
    border-left: 8px solid transparent;
    border-right: 8px solid transparent;
    border-bottom: 8px solid #fff;
}

/* 数量控制按钮 */
.qty-control {
    border-radius: 4px;
    background: #f8f9fa;
}

.qty-control button {
    font-weight: bold;
    color: #333;
}

/* 移除 Bootstrap 默认的 dropdown 箭头 */
.dropdown-toggle::after {
    display: none;
}
/* 图标抖动反馈 */
@keyframes shake-and-scale {
    0% { transform: scale(1); }
    50% { transform: scale(1.3); color: #b65c35; }
    100% { transform: scale(1); }
}

.item-added-shake {
    animation: shake-and-scale 0.5s ease-in-out;
}
.wishlist-step{
    width: 30px;
    height: 30px;
    background: #b65c35;
    display: inline-block;
    line-height: 30px;
    text-align: center;
    color: #fff;
    border-radius: 50%;
    margin-right: 10px;
}
a.wishlist-downbtn{
    text-align: center;
    display: block;
    color: #b65c35;
    height: 42px;
    line-height: 42px;
    font-weight: bold;
    text-decoration: underline;
}
.product-list:hover{
    box-shadow: 0 0 10px rgba(0,0,0,0.2);
}
.product-list-add {
    background: #b65c35;
    display: block;
    height: 32px;
    line-height: 32px;
    color: #fff !important; /* 强制初始文字为白色 */
    text-align: center;
    border: 1px solid #b65c35;
    text-decoration: none; /* 防止出现下划线 */
    transition: all 0.2s ease; /* 增加平滑过渡 */
}
/* 悬停状态：白底橙字 */
.product-list-add:hover {
    background: #fff;
    color: #b65c35 !important;
}

/* 关键修正：点击瞬间的状态，保持和 hover 一致或者微调 */
.product-list-add:active,
.product-list-add:focus {
    background: #f8f8f8; /* 轻微灰色反馈 */
    color: #b65c35 !important;
    outline: none; /* 去除点击时的蓝色边框线 */
}
/* 针对该输入框去掉焦点边框 */
.qty-control input:focus,.list-qty-input:focus {
    outline: none !important;
    box-shadow: none !important;
    background-color: transparent !important; /* 确保背景保持透明 */
}
/* =====================
   Mobile Accordion
===================== */
@media (max-width: 991px) {
    .mobile-menu {
        position: fixed;
        inset: 0;
        background: #f4f0e9;
        z-index: 999;
        transform: translateX(100%);
        transition: transform .35s ease;
    }
    .mobile-menu.open {
        transform: translateX(0);
    }
    .mobile-menu-header {
        position: sticky;
        top: 0;
        height: 72px;
        padding: 0 20px;
        background: #fff;
        display: flex;
        align-items: center;
        justify-content: space-between;
        border-bottom: 1px solid #eee;
        z-index: 10;
    }

    /* Logo */
    .mobile-logo {
        display: flex;
        align-items: center;
        text-decoration: none;
    }

    .mobile-logo img {
        height: 32px;
    }

    .mobile-logo span {
        margin-left: 8px;
        font-size: 20px;
        font-weight: 700;
        color: #c65a1e;
    }


    .mobile-menu-close {
        position: absolute;
        top: 20px;
        right: 20px;
        background: none;
        border: none;
        font-size: 28px;
        z-index: 10;
    }

    .mobile-menu-inner {
        padding: 20px 24px 24px;
        height: 100%;
        overflow-y: auto;
    }

    .mobile-nav {
        list-style: none;
        padding: 0;
        margin: 0;
    }
    .mobile-item {
        padding: 0 15px;
        border-bottom: 1px solid #a9a19c;
    }
    .mobile-item > a,
    .accordion-title {
        display: flex;
        justify-content: space-between;
        align-items: center;
        padding: 18px 0;
        font-size: 20px;
        text-decoration: none;
        color: #333;
    }

    /* Accordion */
    .accordion-content {
        display: none;
        padding-bottom: 16px;
    }
    .accordion-content a {
        display: block;
        padding: 10px 0;
        font-size: 16px;
        color: #666;
    }
    .accordion-item.open .accordion-content {
        display: block;
    }
    .accordion-item.open .bi-chevron-down {
        transform: rotate(180deg);
    }
    .bi-chevron-down {
        transition: transform .3s ease;
    }

    .mobile-contact {
        display: block;
        margin-top: 30px;
        padding: 14px 0;
        text-align: center;
        font-size: 18px;
    }

    .banner-item {
        height: 30vh;
    }

    .banner-text {
        left: 20px;
        bottom: 40px;
    }

    .banner-title {
        font-size: 36px;
    }

    .banner-subtitle {
        font-size: 16px;
    }

    .products-section {
        padding: 50px 0;
    }

    .product-item img {
        height: 180px;
    }

    .page-banner {
        height: 220px;
    }

    .page-banner .banner-img {
        height: 100%;
        width: 100%;
        object-fit: cover;
        object-position: center;
    }
    .about-pagename{
        color: #fff;
        font-weight: 600;
        text-shadow: 0 2px 4px rgba(0, 0, 0, 0.18);
        font-size: 30px;
    }
    .about-maptxt{
        min-height: 180px;
    }
    .about-maptxt b{
        font-size: 24px;
        font-weight: bolder;
        color: #004A9D;
    }
    .about-maptxt sup{
        font-size: 20px;
        font-weight: bolder;
        color: #004A9D;
        padding-left: 10px;
    }
    .product-name{
        font-size: 14px;
    }
}
