/**
 * Theme Name: Blocksy Child
 * Description: Blocksy Child theme
 * Author: Creative Themes
 * Template: blocksy
 * Text Domain: blocksy
 */
/* -----------------------------------------------footer---------------------------------- */
.footer-column h4 {
    font-size: 1.25rem;
    margin-bottom: 2rem;
	color: #ffffff;
}
.footer-column ul li {
    margin-bottom: 0.75rem;
}
.footer-column ul li a {
    color: rgba(255, 255, 255, 0.8);
    transition: 0.3s ease;
}
.footer-column ul li a:hover {
    color: #00843D;
    padding-left: 5px;
}
/* ----------------------------联系区域样式优化-------------------------------- */
.footer-contact .contact-list {
    list-style: none;
    padding: 0;
    margin: 0;
}

.footer-contact .contact-item {
    display: flex;
    align-items: flex-start;
    line-height: 1.6;
}

/* 标签宽度控制，避免内容错乱 */
.footer-contact .contact-label {
    font-weight: 500;
    min-width: 95px;
    color: #ffffff; /* 与主题标题颜色一致（主题未为标签定义颜色） */
    flex-shrink: 0;
}

/* 地址文本样式（主题未覆盖） */
.footer-contact .contact-address .contact-text {
    color: rgba(255, 255, 255, 0.8); /* 与主题链接颜色一致 */
    flex: 1;
}

/* 响应式调整（主题未覆盖） */
@media (max-width: 768px) {
    .footer-contact .contact-item {
        flex-direction: column;
        align-items: flex-start;
        gap: 4px;
    }
    
    .footer-contact .contact-label {
        min-width: auto;
        display: inline-block;
    }
}

/* 社交图标样式 - 统一所有页面 */
.custom-social-links {
    display: flex;
    gap: 16px; /* 图标之间的间距，可调整（如8px/15px） */
    align-items: center;
    margin: 1rem 0; /* 上下外边距，根据布局调整 */
}

.social-icon {
    /* 图标颜色 */
    color: #ffffff !important; /* 默认色，可自定义 */
    /* 图标周围留白（控制点击区域和整体大小） */
    padding: 10px; /* 可调整（如8px/12px） */
    /* 圆形背景（可选，不想要可删除） */
    background-color: transparent;
    border-radius: 50%;
    /* 过渡动画 */
    transition: all 0.3s ease;
    /* 移除默认链接下划线 */
    text-decoration: none;
    /* 确保图标居中 */
    display: inline-flex;
    align-items: center;
    justify-content: center;
}

/* 图标hover效果 */
.social-icon:hover {
    color: #00843D !important; /* Hover颜色，可自定义 */
    transform: scale(1.05); /* 轻微放大，增强交互感（可选） */
}

/* SVG图标核心样式 */
.social-icon svg {
    width: 36px !important; /* 图标大小，可调整（如24px/32px） */
    height: 36px !important; /* 与width一致，避免变形 */
    fill: currentColor !important; /* 继承颜色，无需单独修改 */
}

/* 响应式调整（小屏幕适配） */
@media (max-width: 768px) {
    .custom-social-links {
        gap: 8px; /* 移动端缩小间距 */
    }
    .social-icon {
        padding: 8px; /* 移动端缩小留白 */
    }
    .social-icon svg {
        width: 24px !important; /* 移动端缩小图标 */
        height: 24px !important;
    }
}


/* --------------------------------Home Page---------------------------------------------------- */
.hero-badge-tag-fengxin {
    display: inline-flex;
    align-items: center;
    gap: 0.5rem;
    padding: 0.75rem 1.5rem;
    background: rgba(255, 255, 255, 0.15);
    backdrop-filter: blur(10px);
    border: 1px solid rgba(255, 255, 255, 0.2);
    border-radius: 50px;
    color: #ffffff;
    font-size: 0.875rem;
    font-weight: 500;
    margin-bottom: 2rem;
}

/* 淡绿色文本样式类 */
.text-light-green {
	color: #459236;
}
/* button */
.hero-cta-buttons-fengxin {
    display: flex;
    gap: 1.5rem;
    justify-content: center;
    margin-bottom: 4rem;
    flex-wrap: wrap;
}
.btn-primary-hero-fengxin {
    display: inline-flex;
    align-items: center;
    gap: 0.75rem;
    padding: 1.25rem 2.5rem;
    background: linear-gradient(135deg, #00843D 0%, #7FB545 100%);
    color: #ffffff;
    border-radius: 16px;
    font-size: 1.125rem;
    font-weight: 600;
    text-decoration: none;
    transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
    box-shadow: 0 8px 24px rgba(0, 132, 61, 0.3);
}

.btn-primary-hero-fengxin:hover {
    transform: translateY(-3px);
    box-shadow: 0 12px 32px rgba(0, 132, 61, 0.4);
	color: #ffffff;
}

.btn-primary-hero-fengxin svg {
    transition: transform 0.2s cubic-bezier(0.4, 0, 0.2, 1);
}

.btn-primary-hero-fengxin:hover svg {
    transform: translateX(4px);
}

.btn-secondary-hero-fengxin {
    display: inline-flex;
    align-items: center;
    padding: 1.25rem 2.5rem;
    background: rgba(255, 255, 255, 0.1);
    backdrop-filter: blur(10px);
    color: #ffffff;
    border: 2px solid rgba(255, 255, 255, 0.3);
    border-radius: 16px;
    font-size: 1.125rem;
    font-weight: 600;
    text-decoration: none;
    transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
}

.btn-secondary-hero-fengxin:hover {
    background: rgba(255, 255, 255, 0.2);
    border-color: rgba(255, 255, 255, 0.5);
    transform: translateY(-3px);
	color: #ffffff;
}
@media (max-width: 768px) {    
    .hero-cta-buttons-fengxin {
        flex-direction: column;
        width: 100%;
    }
    
    .btn-primary-hero-fengxin,
    .btn-secondary-hero-fengxin {
        width: 100%;
        justify-content: center;
    }
}
/* stat */
.hero-stats-bar-fengxin {
	backdrop-filter: blur(20px);
}
/* 确保Flexbox布局和间距 */
.hero-stats-bar-fengxin {
    display: flex;
    justify-content: space-around; 
    align-items: center;
    position: relative;
}

.hero-stats-bar-fengxin > .elementor-element {
    flex: 1;
    text-align: center;
    position: relative;
}

.hero-stats-bar-fengxin > .elementor-element:not(:last-child)::after {
    content: '';
    position: absolute;
    top: 50%;
    right: 0;
    transform: translateY(-50%);
    width: 1px;
    height: 40px; /* 分隔线高度，可调整 */
    background-color: #FFFFFF4D;
}

.hero-stats-bar-fengxin > .elementor-element:last-child::after {
    display: none;
}

/* Product Cards Styles */

.products-grid-premium-fengxin {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(380px, 1fr));
    gap: 2.5rem;
}

.product-card-premium-fengxin {
    background: #ffffff;
    border-radius: 24px;
    overflow: hidden;
    box-shadow: 0 2px 12px rgba(0, 0, 0, 0.08);
    transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
    display: flex;
    flex-direction: column;
}

.product-card-premium-fengxin:hover {
    transform: translateY(-8px);
    box-shadow: 0 16px 48px rgba(0, 0, 0, 0.16);
}

.product-image-wrapper-fengxin {
    position: relative;
    width: 100%;
    height: 320px;
    overflow: hidden;
}

.product-image-wrapper-fengxin img {
    width: 100%;
    height: 100% !important;
    object-fit: cover;
    transition: transform 0.5s cubic-bezier(0.4, 0, 0.2, 1);
}

.product-card-premium-fengxin:hover .product-image-wrapper-fengxin img {
    transform: scale(1.1);
}

.product-badge-fengxin {
    position: absolute;
    top: 1.5rem;
    right: 1.5rem;
    padding: 0.5rem 1rem;
    background: linear-gradient(135deg, #00843D 0%, #7FB545 100%);
    color: #ffffff;
    border-radius: 50px;
    font-size: 0.875rem;
    font-weight: 600;
    z-index: 2;
}

.product-badge-fengxin.popular-fengxin {
    background: linear-gradient(135deg, #FF6B6B 0%, #FF8E53 100%);
}

.product-badge-fengxin.luxury-fengxin {
    background: linear-gradient(135deg, #667eea 0%, #764ba2 100%);
}

.product-card-premium-fengxin:hover {
    opacity: 1;
}

.product-content-fengxin {
    padding: 2rem;
    flex-grow: 1;
    display: flex;
    flex-direction: column;
}

.product-title-fengxin {
    font-size: 1.5rem;
    font-weight: 700;
    color: #1a1a1a;
    margin-bottom: 1rem;
}

.product-tagline-fengxin {
    font-size: 1rem;
    color: #666666;
    margin-bottom: 1.5rem;
}

.product-specs-fengxin {
    list-style: none;
    margin-bottom: 1.5rem;
    padding: 0;
}

.product-specs-fengxin li {
    font-size: 0.9375rem;
    color: #666666;
    margin-bottom: 0.5rem;
    padding-left: 1.5rem;
    position: relative;
}

.product-specs-fengxin li::before {
    content: '✓';
    position: absolute;
    left: 0;
    color: #00843D;
    font-weight: 700;
}

.product-features-tags-fengxin {
    display: flex;
    flex-wrap: wrap;
    gap: 0.5rem;
    margin-bottom: 1.5rem;
}

.feature-tag-fengxin {
    padding: 0.375rem 0.75rem;
    background: #f8f9fa;
    color: #666666;
    border-radius: 50px;
    font-size: 0.8125rem;
    font-weight: 500;
}

.product-actions-fengxin {
    display: flex;
    gap: 1rem;
    margin-top: auto;
}

.btn-view-product-fengxin,
.btn-quote-product-fengxin {
    flex: 1;
    padding: 0.875rem 1.5rem;
    border-radius: 8px;
    font-weight: 600;
    text-align: center;
    transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
    text-decoration: none;
}

.btn-view-product-fengxin {
    background: #f8f9fa;
    color: #1a1a1a;
	border: 1px solid #00843D;
}

.btn-view-product-fengxin:hover {
    background: #e5e5e5;
}

.btn-quote-product-fengxin {
    background: linear-gradient(135deg, #00843D 0%, #7FB545 100%);
    color: #ffffff;
}

.btn-quote-product-fengxin:hover {
    transform: translateY(-2px);
    box-shadow: 0 8px 24px rgba(0, 0, 0, 0.12);
}

/* Responsive */
@media (max-width: 768px) {
    .products-grid-premium-fengxin {
        grid-template-columns: 1fr;
    }
    
    .product-actions-fengxin {
        flex-direction: column;
    }
}

/* custom card */
.custom-card-fengxin {
	transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
}
.custom-card-fengxin:hover {
    background: rgba(255, 255, 255, 0.15);
    transform: translateY(-8px);
}

/* step */
.process-steps-fengxin {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
    gap: 2rem;
    align-items: start;
}

.process-step-fengxin {
    text-align: center;
}

.step-number-circle-fengxin {
    width: 100px;
    height: 100px;
    margin: 0 auto 1.5rem;
    border-radius: 50%;
    background: linear-gradient(135deg, #00843D 0%, #7FB545 100%);
    display: flex;
    align-items: center;
    justify-content: center;
    box-shadow: 0 0 0 8px rgba(255, 255, 255, 0.1);
    transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
}

.process-step-fengxin:hover .step-number-circle-fengxin {
    transform: scale(1.1);
    box-shadow: 0 0 0 12px rgba(255, 255, 255, 0.15);
}

.step-number-circle-fengxin span {
    font-size: 2.5rem;
    font-weight: 800;
    color: #ffffff;
}

.step-content-fengxin h3 {
    font-size: 1.375rem;
    font-weight: 700;
    color: #ffffff;
    margin-bottom: 1rem;
}

.step-content-fengxin p {
    font-size: 1rem;
    color: rgba(255, 255, 255, 0.9);
    line-height: 1.7;
}
@media (max-width: 768px) {
    .process-steps-fengxin {
        grid-template-columns: 1fr;
    }
}

.elementor-52 .elementor-element.elementor-element-384179d {
    --display: grid;
    --e-con-grid-template-columns: repeat(3, 1fr);
    --e-con-grid-template-rows: repeat(2, 1fr);
    --grid-auto-flow: row;
    align-items: stretch; /* 确保网格项等高 */
}

/* Project Showcase Styles */
.projects-grid-fengxin {
    display: grid;
    grid-template-columns: repeat(auto-fill, minmax(380px, 1fr));
    gap: 2.5rem;
}

.project-card-fengxin {
    background: #ffffff;
    border-radius: 24px;
    overflow: hidden;
    box-shadow: 0 2px 12px rgba(0, 0, 0, 0.08);
    transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
    height: 100%; /* 确保卡片填充网格单元格高度 */
    display: flex; /* 使用flex布局实现内部内容分布 */
    flex-direction: column; /* 垂直方向排列 */
}

.project-card-fengxin.featured-fengxin {
    grid-column: span 2;
    display: grid;
    grid-template-columns: 1fr 1fr;
}

.project-card-fengxin:hover {
    box-shadow: 0 16px 48px rgba(0, 0, 0, 0.16);
}

.project-image-fengxin {
    position: relative;
    width: 100%;
    height: 300px;
    overflow: hidden;
    flex-shrink: 0; /* 防止图片区域被压缩 */
}

.project-card-fengxin.featured-fengxin .project-image-fengxin {
    height: 100%;
    min-height: 450px;
}

.project-image-fengxin img {
    width: 100%;
    height: 100% !important;
    object-fit: cover;
    transition: transform 0.5s cubic-bezier(0.4, 0, 0.2, 1);
}

.project-card-fengxin:hover .project-image-fengxin img {
    transform: scale(1.1);
}

.project-category-tag-fengxin {
    position: absolute;
    top: 1.5rem;
    left: 1.5rem;
    padding: 0.5rem 1rem;
    background: linear-gradient(135deg, #00843D 0%, #7FB545 100%);
    color: #ffffff;
    border-radius: 50px;
    font-size: 0.875rem;
    font-weight: 600;
}

.project-category-tag-fengxin.commercial-fengxin {
    background: linear-gradient(135deg, #667eea 0%, #764ba2 100%);
}

.project-info-fengxin {
    padding: 2rem;
    display: flex;
    flex-direction: column;
    flex-grow: 1; /* 填充剩余空间 */
}

.project-info-fengxin h3 {
    font-size: 1.5rem;
    font-weight: 700;
    color: #1a1a1a;
    margin-bottom: 1rem;
    flex-shrink: 0; /* 标题不压缩 */
}

.project-meta-fengxin {
    display: flex;
    flex-direction: column;
    align-items: flex-start;
    gap: 0.5rem;
    margin-bottom: 1rem;
    font-size: 0.9375rem;
    color: #666666;
    flex-shrink: 0; /* 元信息不压缩 */
}

.project-location-fengxin,
.project-size-fengxin {
    display: flex;
    align-items: center;
    gap: 0.5rem;
}

.project-location-fengxin svg,
.project-size-fengxin svg {
    color: #00843D;
}

.project-info-fengxin p {
    font-size: 1rem;
    line-height: 1.7;
    color: #666666;
    margin-bottom: 1.5rem;
}

.project-link-fengxin {
    display: inline-flex;
    align-items: center;
    color: #00843D;
    font-weight: 600;
    text-decoration: none;
    transition: gap 0.3s cubic-bezier(0.4, 0, 0.2, 1);
    margin-left: auto; /* 靠右显示 */
    margin-top: auto; /* 推到容器底部 */
    padding-top: 1rem; /* 与上方内容保持间距 */
}

.project-link-fengxin:hover {
    gap: 0.5rem;
}

/* Responsive */
@media (max-width: 1200px) {
    .projects-grid-fengxin {
        grid-template-columns: repeat(auto-fill, minmax(350px, 1fr));
    }
    
    .project-card-fengxin.featured-fengxin {
        grid-column: span 1;
        grid-template-columns: 1fr;
    }
    
    .elementor-52 .elementor-element.elementor-element-384179d {
        --e-con-grid-template-columns: repeat(2, 1fr); /* 中屏幕改为2列 */
    }
}

@media (max-width: 768px) {
    .projects-grid-fengxin {
        grid-template-columns: 1fr;
    }
    
    .elementor-52 .elementor-element.elementor-element-384179d {
        --e-con-grid-template-columns: 1fr; /* 小屏幕改为1列 */
    }
    
    .project-image-fengxin {
        height: 250px; /* 移动端图片高度调整 */
    }
    
    .project-info-fengxin {
        padding: 1.5rem;
    }
}
/* testimonial */
.testimonial-stars {
    font-size: 1.25rem;
    color: #FFD700;
    margin-bottom: 1.5rem;
}
/* contact form */
.form-header-premium {
    text-align: center;
    margin-bottom: 2.5rem;
}
/* cert-highlights-list  */
.cert-highlights-list {
    display: flex;
    flex-direction: column;
    gap: 1rem;
}

.cert-highlight-item-premium {
    display: flex;
    align-items: center;
    gap: 1rem;
    padding: 1rem;
    background: rgba(255, 255, 255, 0.1);
    border-radius: 8px;
}

.cert-highlight-item-premium svg {
    width: 24px;
    height: 24px;
    color: #90EE90;
    flex-shrink: 0;
}

.cert-highlight-item-premium span {
    font-size: 1rem;
    color: rgba(255, 255, 255, 0.9);
}

/*product page quote */
form.variations_form .single_variation :is(p,.price) {
    display: none !important;
}


/* --------------------------------------- mobile -------------------------------------*/
@media (max-width: 767px) {
  .product-features-tags-fengxin, .btn-view-product-fengxin {
    display: none;
  }
	.btn-quote-product-fengxin{
		padding: 0.35rem 1.5rem;
	}
	.product-content-fengxin{
		padding: 0;
	}
	.product-title-fengxin {
		font-size: 1.2rem;
	}
}

/* 
豪华款凉棚落地页
*/

/* WordPress兼容性样式重置 - 避免与主题冲突 */
.alunotec-product-container {
    /* 重置可能被WordPress主题覆盖的样式 */
    margin: 0 !important;
    padding: 0 !important;
    font-family: inherit !important;
    line-height: inherit !important;
    color: inherit !important;
}

/* 强制重置所有子元素样式，确保组件在WordPress中正常显示 */
.alunotec-product-container *, 
.alunotec-product-container *::before, 
.alunotec-product-container *::after {
    box-sizing: border-box !important;
    margin: 0 !important;
    padding: 0 !important;
}

/* 主容器样式 - 限制最大宽度并水平居中 */
.alunotec-product-container {
    max-width: 1200px;
    width: 100%;
    margin: 0 auto !important; /* 水平居中 */
    padding: 20px !important; /* 内边距 */
}

/* 桌面布局 - 使用Flexbox实现左右两列布局 */
.alunotec-options-layout {
    display: flex;
    gap: 30px; /* 两列间距 */
    align-items: stretch; /* 拉伸对齐，使两列高度一致 */
}

/* 左侧选项列表容器 - 优化高度协调 */
.alunotec-options-list {
    width: 280px;
    flex-shrink: 0; /* 固定宽度，不随父容器缩小 */
    border-radius: 10px;
    overflow: hidden;
    background-color: white;
    box-shadow: 0 4px 12px rgba(0, 0, 0, 0.08);
    transition: box-shadow 0.3s ease; /* 悬停时阴影变化动画 */
    overflow-y: auto; /* 添加垂直滚动 */
    position: relative;
}

/* 自定义滚动条样式，提升美观度 */
.alunotec-options-list::-webkit-scrollbar {
    width: 6px; /* 滚动条宽度 */
}

.alunotec-options-list::-webkit-scrollbar-track {
    background: #f1f1f1; /* 滚动条轨道背景 */
}

.alunotec-options-list::-webkit-scrollbar-thumb {
    background: #c1c1c1; /* 滚动条滑块颜色 */
    border-radius: 3px; /* 滚动条滑块圆角 */
    transition: background 0.3s ease;
}

.alunotec-options-list::-webkit-scrollbar-thumb:hover {
    background: #a8a8a8; /* 滚动条滑块悬停颜色 */
}

/* Firefox 滚动条样式 */
.alunotec-options-list {
    scrollbar-width: thin;
    scrollbar-color: #c1c1c1 #f1f1f1;
}

.alunotec-options-list:hover {
    box-shadow: 0 6px 20px rgba(0, 0, 0, 0.12);
}

/* 单个选项项目样式 - 修复PC端样式被覆盖问题 */
.alunotec-option-item {
    padding: 18px 22px !important; /* 强制内边距，防止被覆盖 */
    margin-bottom: 0 !important;
    background-color: #f8f8f8 !important;
    cursor: pointer !important; /* 鼠标指针样式 */
    transition: all 0.3s ease !important; /* 所有变化动画 */
    border-bottom: 1px solid #eee !important;
    position: relative !important;
    font-size: 15px !important;
    font-weight: 400 !important;
    line-height: 1.4 !important;
    user-select: none !important; /* 禁止文本选择 */
    -webkit-user-select: none !important;
    -moz-user-select: none !important;
    -ms-user-select: none !important;
    white-space: normal !important; /* 允许文本换行，解决标签过窄问题 */
    min-height: 60px !important; /* 确保最小高度 */
    display: flex !important;
    align-items: center !important;
    border-radius: 0 !important; /* 确保圆角只在列表容器上显示 */
}

/* 优化首项和末项的边框圆角 */
.alunotec-option-item:first-child {
    border-top-left-radius: 10px;
    border-top-right-radius: 10px;
}

.alunotec-option-item:last-child {
    border-bottom-left-radius: 10px;
    border-bottom-right-radius: 10px;
    border-bottom: none;
}

.alunotec-option-item:last-child {
    border-bottom: none;
}

/* 选项悬停效果 - 优化视觉反馈 */
.alunotec-option-item:hover:not(.active) {
    background-color: #f0f0f0;
    color: #00843D;
    transform: translateX(2px);
    box-shadow: inset 0 0 0 1px rgba(255, 107, 0, 0.1);
}

/* 选项激活状态 - 增强视觉效果 */
.alunotec-option-item.active {
    background-color: #00843D;
    color: #00843D;
    font-weight: 500;
    transform: translateX(0);
    box-shadow: inset 0 0 0 1px rgba(255, 255, 255, 0.2);
    position: relative;
}

/* 激活状态添加微妙的高亮效果 */
.alunotec-option-item.active::before {
    content: '';
    position: absolute;
    left: 0;
    top: 0;
    bottom: 0;
    width: 3px;
    background-color: #00843D;
    border-radius: 0 3px 3px 0;
}

/* 右侧图片展示区域 */
.alunotec-image-display {
    flex: 1; /* 占据剩余空间 */
    min-height: 450px;
    display: flex;
    align-items: center; /* 垂直居中 */
    justify-content: center; /* 水平居中 */
    background-color: #ffffff;
    border-radius: 12px;
    overflow: hidden;
    position: relative;
    box-shadow: 0 6px 20px rgba(0, 0, 0, 0.08);
    transition: all 0.3s ease; /* 所有变化动画 */
}

.alunotec-image-display:hover {
    box-shadow: 0 8px 25px rgba(0, 0, 0, 0.12);
}

/* 图片样式 - WordPress优化版 */
.alunotec-product-image {
    max-width: 100% !important;
    max-height: 550px !important;
    object-fit: contain !important;
    transition: opacity 0.6s ease, transform 0.4s ease !important;
    position: relative !important;
    z-index: 1 !important;
    /* 防止WordPress图像编辑功能干扰 */
    border-radius: 0 !important;
    box-shadow: none !important;
    border: none !important;
    display: block !important;
}

.alunotec-product-image:hover {
    transform: scale(1.03) !important;
}

/* 修复WordPress可能添加的图片链接样式 */
.alunotec-image-display a {
    display: inline-block !important;
    line-height: 0 !important;
    border: none !important;
    text-decoration: none !important;
}

/* 图片加载状态指示器 - 旋转动画效果 */
.alunotec-loading-indicator {
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%); /* 精确居中 */
    width: 40px;
    height: 40px;
    border: 3px solid rgba(255, 107, 0, 0.2); /* 浅色边框 */
    border-top-color: #00843D; /* 主色调旋转边 */
    border-radius: 50%; /* 圆形 */
    animation: alunotec-spin 0.8s linear infinite; /* 旋转动画 */
    z-index: 2; /* 确保在图片上方 */
    display: none; /* 默认隐藏 */
}

@keyframes alunotec-spin {
    to {
        transform: translate(-50%, -50%) rotate(360deg);
    }
}

/* 隐藏元素类 - 用于控制显示/隐藏 */
.alunotec-hidden {
    display: none !important;
}

/* 设备特定显示类 */
.alunotec-pc-only {
    display: block;
}

.alunotec-mobile-only {
    display: none;
}

/* 移动端选项容器 */
.alunotec-mobile-option-item {
    width: 100%;
    border-radius: 8px;
    overflow: hidden;
    margin-bottom: 15px !important;
    background-color: #ffffff;
    box-shadow: 0 2px 8px rgba(0, 0, 0, 0.1);
    transition: all 0.3s ease;
}

/* 移动端选项头部 */
.alunotec-mobile-option-header {
    padding: 18px 20px;
    background-color: #f8f8f8;
    cursor: pointer;
    display: flex;
    justify-content: space-between;
    align-items: center;
    border-bottom: 1px solid #eee;
    -webkit-tap-highlight-color: rgba(255, 107, 0, 0.2);
    font-size: 15px;
    font-weight: 400;
    line-height: 1.4;
}

.alunotec-mobile-option-header.active {
    background-color: #00843D;
    color: white;
    font-weight: 500;
}

.alunotec-mobile-option-header.active::after {
    transform: rotate(180deg);
}

.alunotec-mobile-option-header::after {
    content: '▼';
    font-size: 12px;
    transition: transform 0.3s ease;
    color: inherit;
}

/* 移动端图片容器 */
.alunotec-mobile-image-container {
    max-height: 0;
    overflow: hidden;
    transition: max-height 0.4s ease;
}

.alunotec-mobile-image-container.active {
    max-height: 600px;
}

/* 移动端图片显示区 */
.alunotec-mobile-image-display {
    padding: 15px;
    min-height: 250px;
    display: flex;
    align-items: center;
    justify-content: center;
}

/* 平板设备样式 */
@media (max-width: 1024px) {
    .alunotec-product-container {
        padding: 15px !important;
    }
    
    .alunotec-options-layout {
        gap: 20px;
    }
    
    .alunotec-options-list {
        width: 250px;
    }
    
    .alunotec-option-item {
        padding: 14px 20px;
        font-size: 14px;
    }
    
    .alunotec-image-display {
        min-height: 400px;
    }
    
    .alunotec-product-image {
        max-height: 500px;
    }
}

/* 设备特定响应式显示控制 */
@media (max-width: 768px) {
    /* 显示移动端布局，隐藏PC端布局 */
    .alunotec-pc-only {
        display: none !important;
    }
    
    .alunotec-mobile-only {
        display: block !important;
    }
    
    /* 隐藏PC端选项列表 */
    .alunotec-options-list {
        display: none !important;
    }
    
    /* 移动设备容器样式 */
    .alunotec-product-container {
        padding: 15px !important;
    }
}

/* 手机设备样式优化 */
@media (max-width: 480px) {
    .alunotec-product-container {
        padding: 10px !important;
    }
    
    .alunotec-mobile-option-header {
        padding: 16px 18px !important;
        font-size: 14px !important;
    }
    
    .alunotec-mobile-image-display {
        padding: 10px;
        min-height: 200px;
    }
    
    .alunotec-product-image {
        max-height: 250px !important;
    }
}

/* 平板和桌面设备保持PC端布局 */
@media (min-width: 769px) {
    .alunotec-mobile-only {
        display: none !important;
    }
}

/* contact icon mobile */
button.naibabiji-gch-floating-toggle {
    display: none;
}