/* 售货机详情页 - 手机端布局修复 */

/* 基础容器修复 - 防止横向溢出 */
@media (max-width: 768px) {
    /* 确保所有容器不超出屏幕宽度 */
    .detail-container,
    .detail-container *,
    .inner,
    .header-content-wrap,
    .content-section,
    .left-content,
    .album-wrap,
    .detail-info,
    .project-title,
    .project-info,
    .project-desc,
    .bottom-layout,
    .tab-navigation,
    .tab-content,
    .recommended-projects,
    .guide-menu-title {
        max-width: 100%;
        overflow-x: hidden;
        box-sizing: border-box;
    }
    
    /* 主容�?*/
    .detail-container {
        width: 100%;
        padding: 0;
        margin: 0;
    }
    
    .detail-container .inner {
        width: 100%;
        max-width: 100%;
        padding: 0 15px;
        margin: 0 auto;
    }
    
    /* 面包屑导�?*/
    .i-link-wrap {
        width: 100%;
        max-width: 100%;
        overflow-x: auto;
        overflow-y: hidden;
        white-space: nowrap;
        padding: 10px 0;
        margin-bottom: 15px;
        -webkit-overflow-scrolling: touch;
        display: flex;
        flex-wrap: nowrap;
    }
    
    .i-link-wrap::-webkit-scrollbar {
        height: 3px;
    }
    
    .i-link-wrap::-webkit-scrollbar-thumb {
        background: #AB47BC;
        border-radius: 3px;
    }
    
    .i-link-item {
        flex-shrink: 0;
        display: inline-flex;
        align-items: center;
        gap: 5px;
        font-size: 13px;
    }
    
    .i-link-item a,
    .i-link-item span {
        white-space: nowrap;
        max-width: 150px;
        overflow: hidden;
        text-overflow: ellipsis;
    }
    
    .i-link-item.last-item a,
    .i-link-item.last-item span {
        max-width: 200px;
    }
    
    .link-arrow {
        flex-shrink: 0;
        width: 12px;
        height: 12px;
    }
    
    /* 头部内容区域 */
    .header-content-wrap {
        display: flex;
        flex-direction: column;
        gap: 20px;
        width: 100%;
        margin-bottom: 20px;
    }
    
    /* 相册区域 */
    .album-wrap {
        width: 100%;
        padding: 0;
        margin: 0;
        border-radius: 8px;
    }
    
    .main-image-container {
        width: 100%;
        max-width: 100%;
        aspect-ratio: 1;
        margin-bottom: 15px;
    }
    
    .main-image-container img {
        width: 100%;
        height: 100%;
        object-fit: contain;
    }
    
    .thumbnail-list {
        display: flex;
        gap: 8px;
        overflow-x: auto;
        overflow-y: hidden;
        padding: 10px 0;
        width: 100%;
        -webkit-overflow-scrolling: touch;
        scrollbar-width: none;
        -ms-overflow-style: none;
    }
    
    .thumbnail-list::-webkit-scrollbar {
        display: none;
    }
    
    .thumbnail-list-wrapper {
        width: 100%;
        overflow: hidden;
    }
    
    .thumbnail-item {
        flex-shrink: 0;
        width: 60px !important;
        height: 60px !important;
        min-width: 60px !important;
        max-width: 60px !important;
    }
    
    .thumbnail-item img {
        width: 100% !important;
        height: 100% !important;
        max-width: 100% !important;
        object-fit: cover !important;
    }
    
    /* 详情信息区域 */
    .detail-info {
        width: 100%;
        padding: 0;
        background: #fff;
        border-radius: 8px;
    }
    
    .project-title {
        width: 100%;
        margin-bottom: 15px;
    }
    
    .project-title .name {
        font-size: 20px;
        line-height: 1.4;
        word-wrap: break-word;
        overflow-wrap: break-word;
    }
    
    /* 项目信息 */
    .project-info {
        width: 100%;
    }
    
    .project-info .row {
        display: flex;
        flex-direction: column;
        gap: 10px;
        margin-bottom: 15px;
    }
    
    .project-info .row-item {
        width: 100%;
    }
    
    .project-info-item {
        display: flex;
        flex-direction: column;
        gap: 5px;
    }
    
    .project-info-item .item-type {
        font-size: 13px;
        font-weight: 600;
        color: #666;
    }
    
    .project-info-item .item-value {
        font-size: 14px;
        color: #333;
        word-wrap: break-word;
        overflow-wrap: break-word;
    }
    
    /* 项目优势 */
    .project-advantages {
        width: 100%;
        margin-top: 20px;
    }
    
    .advantages-list {
        display: flex;
        flex-direction: column;
        gap: 12px;
    }
    
    .advantage-item {
        width: 100%;
        padding: 12px;
        display: flex;
        gap: 10px;
        align-items: flex-start;
    }
    
    .advantage-icon {
        flex-shrink: 0;
        width: 20px;
        height: 20px;
        font-size: 14px;
    }
    
    .advantage-text {
        flex: 1;
        font-size: 14px;
        word-wrap: break-word;
        overflow-wrap: break-word;
    }
    
    /* 底部操作按钮 */
    .bottom-layout {
        width: 100%;
        margin-top: 20px;
    }
    
    .operation-container {
        display: flex;
        flex-direction: column;
        gap: 10px;
        width: 100%;
    }
    
    .inquiry-btn,
    .custom-btn {
        width: 100%;
        padding: 12px 20px;
        font-size: 15px;
        border-radius: 6px;
        border: none;
        cursor: pointer;
        transition: all 0.3s;
    }
    
    .inquiry-btn {
        background: #AB47BC;
        color: #fff;
    }
    
    .custom-btn {
        background: #fff;
        color: #AB47BC;
        border: 2px solid #AB47BC;
    }
    
    /* 内容区域 */
    .content-section {
        width: 100%;
        display: flex;
        flex-direction: column;
        gap: 20px;
        margin-top: 20px;
    }
    
    /* 左侧内容 */
    .left-content {
        width: 100%;
    }
    
    /* 标签导航 */
    .tab-navigation {
        display: flex;
        gap: 5px;
        overflow-x: auto;
        overflow-y: hidden;
        white-space: nowrap;
        padding: 10px 0;
        margin-bottom: 15px;
        width: 100%;
        -webkit-overflow-scrolling: touch;
    }
    
    .tab-navigation::-webkit-scrollbar {
        height: 3px;
    }
    
    .tab-item {
        flex-shrink: 0;
        padding: 10px 15px;
        font-size: 14px;
        background: #f8f9fa;
        border: none;
        border-radius: 6px;
        cursor: pointer;
        transition: all 0.3s;
    }
    
    .tab-item.active {
        background: #AB47BC;
        color: #fff;
    }
    
    /* 标签内容 */
    .tab-content {
        width: 100%;
        padding: 0;
        background: #fff;
        border-radius: 8px;
        display: none;
    }
    
    .tab-content.active {
        display: block;
    }
    
    .section-title {
        font-size: 18px;
        margin-bottom: 15px;
        word-wrap: break-word;
        overflow-wrap: break-word;
    }
    
    /* 项目介绍 */
    .project-introduction {
        width: 100%;
    }
    
    .project-introduction h2,
    .project-introduction h3 {
        font-size: 16px;
        margin: 15px 0 10px 0;
        word-wrap: break-word;
        overflow-wrap: break-word;
    }
    
    .project-introduction p {
        font-size: 14px;
        line-height: 1.6;
        margin-bottom: 10px;
        word-wrap: break-word;
        overflow-wrap: break-word;
    }
    
    .project-introduction ul,
    .project-introduction ol {
        padding-left: 20px;
        margin-bottom: 15px;
    }
    
    .project-introduction li {
        font-size: 14px;
        line-height: 1.6;
        margin-bottom: 8px;
        word-wrap: break-word;
        overflow-wrap: break-word;
    }
    
    .project-introduction img {
        width: 100%;
        height: auto;
        max-width: 100%;
        border-radius: 8px;
        margin: 15px 0;
    }
    
    /* 相关文章 */
    .related-articles {
        width: 100%;
        display: flex;
        flex-direction: column;
        gap: 15px;
    }
    
    .article-item {
        display: flex;
        gap: 12px;
        width: 100%;
        padding: 12px;
        background: #f8f9fa;
        border-radius: 8px;
        text-decoration: none;
    }
    
    .article-thumb {
        flex-shrink: 0;
        width: 80px;
        height: 80px;
        border-radius: 6px;
        overflow: hidden;
    }
    
    .article-thumb img {
        width: 100%;
        height: 100%;
        object-fit: cover;
    }
    
    .article-info {
        flex: 1;
        display: flex;
        flex-direction: column;
        gap: 5px;
        min-width: 0;
    }
    
    .article-title {
        font-size: 14px;
        font-weight: 600;
        color: #333;
        word-wrap: break-word;
        overflow-wrap: break-word;
        display: -webkit-box;
        -webkit-line-clamp: 2;
        -webkit-box-orient: vertical;
        overflow: hidden;
    }
    
    .article-meta {
        font-size: 12px;
        color: #999;
        display: flex;
        gap: 10px;
    }
    
    /* 推荐项目 */
    .guide-menu-title {
        width: 100%;
        margin-bottom: 15px;
    }
    
    .guide-menu-title .title {
        display: flex;
        align-items: center;
        gap: 10px;
        margin-bottom: 10px;
    }
    
    .menu-title {
        font-size: 16px;
        font-weight: 600;
    }
    
    .guide-menu-tab {
        display: flex;
        gap: 8px;
        overflow-x: auto;
        overflow-y: hidden;
        white-space: nowrap;
        padding: 10px 0;
        list-style: none;
        margin: 0;
        width: 100%;
        -webkit-overflow-scrolling: touch;
    }
    
    .guide-menu-tab::-webkit-scrollbar {
        height: 3px;
    }
    
    .menu-item {
        flex-shrink: 0;
    }
    
    .menu-txt {
        display: block;
        padding: 8px 15px;
        background: #f8f9fa;
        border-radius: 6px;
        font-size: 13px;
        text-decoration: none;
        color: #333;
    }
    
    .recommended-projects {
        display: grid;
        grid-template-columns: 1fr;
        gap: 15px;
        width: 100%;
    }
    
    .project-card {
        display: flex;
        flex-direction: column;
        background: #fff;
        border-radius: 8px;
        overflow: hidden;
        box-shadow: 0 2px 8px rgba(0, 0, 0, 0.05);
        text-decoration: none;
        width: 100%;
    }
    
    .project-card-thumb {
        width: 100%;
        aspect-ratio: 16/10;
        overflow: hidden;
    }
    
    .project-card-thumb img {
        width: 100%;
        height: 100%;
        object-fit: cover;
    }
    
    .project-card-info {
        padding: 15px;
    }
    
    .project-card-title {
        font-size: 15px;
        font-weight: 600;
        color: #333;
        margin-bottom: 8px;
        word-wrap: break-word;
        overflow-wrap: break-word;
        display: -webkit-box;
        -webkit-line-clamp: 2;
        -webkit-box-orient: vertical;
        overflow: hidden;
    }
    
    .project-card-desc {
        font-size: 13px;
        color: #666;
        word-wrap: break-word;
        overflow-wrap: break-word;
        display: -webkit-box;
        -webkit-line-clamp: 2;
        -webkit-box-orient: vertical;
        overflow: hidden;
    }
    
    /* 右侧边栏 - 手机端隐藏或移到底部 */
    .content-section {
        display: flex;
        flex-direction: column;
    }
    
    /* 侧边栏在手机端的样式 */
    .vending-sidebar {
        width: 100%;
        max-width: 100%;
        margin-top: 20px;
    }
    
    .vending-sidebar .widget {
        width: 100%;
        max-width: 100%;
        margin-bottom: 20px;
        padding: 0;
        background: #fff;
        border-radius: 8px;
        box-shadow: 0 2px 8px rgba(0, 0, 0, 0.05);
    }
    
    .widget-title {
        font-size: 16px;
        margin-bottom: 15px;
        padding-bottom: 10px;
        border-bottom: 2px solid #AB47BC;
    }
    
    .widget-title h5 {
        font-size: 16px;
        margin: 0;
    }
    
    .hot-projects-list {
        display: flex;
        flex-direction: column;
        gap: 12px;
    }
    
    .hot-project-item {
        width: 100%;
    }
    
    .hot-project-link {
        display: flex;
        gap: 12px;
        text-decoration: none;
        width: 100%;
    }
    
    .hot-project-image {
        flex-shrink: 0;
        width: 80px;
        height: 80px;
        border-radius: 6px;
        overflow: hidden;
    }
    
    .hot-project-image img {
        width: 100%;
        height: 100%;
        object-fit: cover;
    }
    
    .hot-project-info {
        flex: 1;
        display: flex;
        flex-direction: column;
        gap: 5px;
        min-width: 0;
    }
    
    .hot-project-title {
        font-size: 14px;
        margin: 0;
        word-wrap: break-word;
        overflow-wrap: break-word;
        display: -webkit-box;
        -webkit-line-clamp: 2;
        -webkit-box-orient: vertical;
        overflow: hidden;
    }
    
    .hot-project-category,
    .hot-project-date {
        font-size: 12px;
        color: #999;
    }
    
    .ad-banner {
        width: 100%;
    }
    
    .ad-banner a {
        display: block;
        width: 100%;
    }
    
    .ad-banner img {
        width: 100%;
        height: auto;
        max-width: 100%;
        border-radius: 6px;
    }
    
    /* 确保body和html不会横向滚动 */
    html,
    body {
        overflow-x: hidden;
        max-width: 100%;
    }
    
    /* 修复可能导致溢出的元�?*/
    img,
    video,
    iframe,
    table {
        max-width: 100%;
        height: auto;
    }
    
    /* 修复长文本溢�?*/
    h1, h2, h3, h4, h5, h6,
    p, span, div, a {
        word-wrap: break-word;
        overflow-wrap: break-word;
        hyphens: auto;
    }
    
    /* 修复表格溢出 */
    table {
        display: block;
        overflow-x: auto;
        -webkit-overflow-scrolling: touch;
    }
    
    /* 修复预格式化文本溢出 */
    pre,
    code {
        overflow-x: auto;
        -webkit-overflow-scrolling: touch;
        max-width: 100%;
    }
}

/* 额外的安全措�?- 适用于所有屏幕尺�?*/
* {
    box-sizing: border-box;
}

/* 防止特定元素造成溢出 */
@media (max-width: 768px) {
    /* 强制所有容器不超出视口 */
    body,
    html {
        overflow-x: hidden !important;
        max-width: 100vw !important;
        position: relative;
    }
    
    /* 修复可能的固定宽度元�?*/
    [style*="width"] {
        max-width: 100% !important;
    }
    
    /* 重置所有可能导致溢出的元素 */
    .detail-container,
    .detail-container *:not(svg):not(path):not(use) {
        max-width: 100%;
        box-sizing: border-box;
    }
    
    /* 修复可能的负边距 */
    .detail-container > * {
        margin-left: 0 !important;
        margin-right: 0 !important;
    }
    
    /* 允许内部元素有边距，但限制在父容器内 */
    .detail-container .inner > * {
        margin-left: 0;
        margin-right: 0;
    }
    
    /* 修复可能的padding导致的溢�?*/
    .detail-container .inner {
        padding-left: 15px !important;
        padding-right: 15px !important;
    }
    
    /* 修复grid布局可能的溢�?*/
    .content-section,
    .header-content-wrap {
        grid-template-columns: 1fr !important;
        width: 100% !important;
    }
    
    /* 修复flex布局可能的溢�?*/
    .i-link-wrap,
    .tab-navigation,
    .guide-menu-tab,
    .thumbnail-list {
        flex-wrap: nowrap;
        overflow-x: auto;
        overflow-y: hidden;
        -webkit-overflow-scrolling: touch;
    }
    
    /* 隐藏可能导致溢出的滚动条 */
    .i-link-wrap::-webkit-scrollbar,
    .tab-navigation::-webkit-scrollbar,
    .guide-menu-tab::-webkit-scrollbar {
        height: 2px;
    }
    
    /* 修复SVG图标可能的溢�?*/
    svg {
        max-width: 100%;
        height: auto;
    }
    
    /* 修复按钮可能的溢�?*/
    button,
    .btn,
    .inquiry-btn,
    .custom-btn {
        max-width: 100%;
        white-space: normal;
        word-wrap: break-word;
    }
    
    /* 修复输入框可能的溢出 */
    input,
    textarea,
    select {
        max-width: 100%;
    }
    
    /* 修复iframe和embed元素 */
    iframe,
    embed,
    object {
        max-width: 100%;
    }
    
    /* 修复可能的绝对定位元�?*/
    .detail-container [style*="position: absolute"],
    .detail-container [style*="position:absolute"] {
        max-width: 100%;
    }
    
    /* 确保所有文本内容不会溢�?*/
    .detail-container p,
    .detail-container h1,
    .detail-container h2,
    .detail-container h3,
    .detail-container h4,
    .detail-container h5,
    .detail-container h6,
    .detail-container span,
    .detail-container div,
    .detail-container a,
    .detail-container li {
        word-wrap: break-word !important;
        overflow-wrap: break-word !important;
        hyphens: auto;
        max-width: 100%;
    }
    
    /* 修复可能的min-width导致的溢�?*/
    * {
        min-width: 0 !important;
    }
    
    /* 但保留某些元素的最小宽�?*/
    .thumbnail-item,
    .advantage-icon,
    .hot-project-image {
        min-width: auto !important;
    }
    
    .thumbnail-item {
        min-width: 60px !important;
    }
    
    .advantage-icon {
        min-width: 20px !important;
    }
    
    .hot-project-image {
        min-width: 80px !important;
    }
}

/* 针对特别小的屏幕（如iPhone SE�?*/
@media (max-width: 375px) {
    .detail-container .inner {
        padding-left: 10px !important;
        padding-right: 10px !important;
    }
    
    .album-wrap,
    .detail-info,
    .tab-content,
    .vending-sidebar .widget {
        padding: 0 !important;
    }
    
    .thumbnail-item {
        width: 50px !important;
        height: 50px !important;
        min-width: 50px !important;
        max-width: 50px !important;
    }
    
    .thumbnail-item img {
        width: 100% !important;
        height: 100% !important;
        max-width: 100% !important;
        object-fit: cover !important;
    }
    
    .hot-project-image {
        width: 70px !important;
        height: 70px !important;
        min-width: 70px !important;
    }
}



/* ========================================
   产品核心优势模块样式
   ======================================== */

/* 产品优势容器 */
.product-highlights {
    width: 100%;
    margin: 20px 0;
    padding: 0;
}

/* 优势标题区域 */
.highlights-header {
    text-align: center;
    margin-bottom: 30px;
    padding: 0 15px;
}

.highlights-title {
    font-size: 24px;
    font-weight: 700;
    color: #2c3e50;
    margin: 0 0 10px 0;
    line-height: 1.3;
}

.highlights-subtitle {
    font-size: 14px;
    color: #7f8c8d;
    margin: 0;
    font-weight: 400;
}

/* 优势网格布局 */
.highlights-grid {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 20px;
    width: 100%;
}

/* 优势卡片 */
.highlight-card {
    background: linear-gradient(135deg, #ffffff 0%, #f8f9fa 100%);
    border-radius: 12px;
    padding: 24px;
    box-shadow: 0 4px 12px rgba(0, 0, 0, 0.08);
    transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
    border: 1px solid rgba(171, 71, 188, 0.1);
    position: relative;
    overflow: hidden;
}

.highlight-card::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    height: 3px;
    background: linear-gradient(90deg, #AB47BC 0%, #7B1FA2 100%);
    transform: scaleX(0);
    transform-origin: left;
    transition: transform 0.3s ease;
}

.highlight-card:hover {
    transform: translateY(-5px);
    box-shadow: 0 8px 24px rgba(171, 71, 188, 0.15);
}

.highlight-card:hover::before {
    transform: scaleX(1);
}

/* 优势图标 */
.highlight-icon {
    font-size: 36px;
    line-height: 1;
    margin-bottom: 16px;
    display: inline-block;
    animation: iconFloat 3s ease-in-out infinite;
}

@keyframes iconFloat {
    0%, 100% {
        transform: translateY(0);
    }
    50% {
        transform: translateY(-5px);
    }
}

/* 优势标题 */
.highlight-title {
    font-size: 20px;
    font-weight: 600;
    color: #2c3e50;
    margin: 0 0 12px 0;
    line-height: 1.4;
    word-wrap: break-word;
    overflow-wrap: break-word;
}

/* 优势内容 */
.highlight-content {
    font-size: 16px;
    line-height: 1.7;
    color: #555;
    margin: 0 0 16px 0;
    word-wrap: break-word;
    overflow-wrap: break-word;
}

/* 数据支撑 */
.highlight-data {
    display: flex;
    align-items: center;
    gap: 8px;
    padding: 10px 12px;
    background: rgba(171, 71, 188, 0.05);
    border-radius: 8px;
    border-left: 3px solid #AB47BC;
}

.data-icon {
    font-size: 16px;
    flex-shrink: 0;
}

.data-text {
    font-size: 14px;
    color: #AB47BC;
    font-weight: 500;
    word-wrap: break-word;
    overflow-wrap: break-word;
}

/* 平板端适配 (768px - 1024px) */
@media (max-width: 1024px) and (min-width: 769px) {
    .highlights-grid {
        grid-template-columns: repeat(2, 1fr);
        gap: 18px;
    }
    
    .highlight-card {
        padding: 15px;
    }
    
    .highlights-title {
        font-size: 22px;
    }
}

/* 手机端适配 (最大768px) */
@media (max-width: 768px) {
    .product-highlights {
        margin: 15px 0;
    }
    
    .highlights-header {
        margin-bottom: 20px;
        padding: 0;
    }
    
    .highlights-title {
        font-size: 20px;
        margin-bottom: 8px;
    }
    
    .highlights-subtitle {
        font-size: 13px;
    }
    
    /* 手机端单列布局 */
    .highlights-grid {
        grid-template-columns: 1fr;
        gap: 15px;
    }
    
    .highlight-card {
        padding: 12px;
    }
    
    .highlight-icon {
        font-size: 32px;
        margin-bottom: 12px;
    }
    
    .highlight-title {
        font-size: 15px;
        margin-bottom: 10px;
    }
    
    .highlight-content {
        font-size: 13px;
        line-height: 1.6;
        margin-bottom: 12px;
    }
    
    .highlight-data {
        padding: 8px 10px;
    }
    
    .data-icon {
        font-size: 14px;
    }
    
    .data-text {
        font-size: 11px;
    }
}

/* 小屏手机适配 (最大375px) */
@media (max-width: 375px) {
    .highlights-header {
        margin-bottom: 15px;
    }
    
    .highlights-title {
        font-size: 18px;
    }
    
    .highlights-subtitle {
        font-size: 12px;
    }
    
    .highlight-card {
        padding: 12px;
    }
    
    .highlight-icon {
        font-size: 28px;
        margin-bottom: 10px;
    }
    
    .highlight-title {
        font-size: 14px;
    }
    
    .highlight-content {
        font-size: 12px;
        margin-bottom: 10px;
    }
}

/* 打印样式 */
@media print {
    .highlight-card {
        break-inside: avoid;
        box-shadow: none;
        border: 1px solid #ddd;
    }
    
    .highlight-card:hover {
        transform: none;
    }
}

/* 深色模式支持（可选） */
@media (prefers-color-scheme: dark) {
    .highlight-card {
        background: #ffffff;
        border: 1px solid #e5e7eb;
        border-color: #e5e7eb;
    }
    
    .highlight-title {
        color: #2c3e50;
    }
    
    .highlight-content {
        color: #555555;
    }
    
    .highlight-data {
        background: #f9fafb;
    }
    
    .data-text {
        color: #BB86FC;
    }
}


/* ========================================
   产品基本信息 - 内联在 project-info 中
   ======================================== */

/* 信息项样式增强 */
.project-info .aap-info-item {
    display: flex;
    align-items: center;
    gap: 12px;
    padding: 12px 16px;
    background: linear-gradient(135deg, #f8f9fa 0%, #ffffff 100%);
    border-radius: 8px;
    border-left: 3px solid #AB47BC;
}

.project-info .aap-info-label {
    font-size: 14px;
    font-weight: 600;
    color: #666;
    min-width: 80px;
}

.project-info .aap-info-label i {
    margin-right: 6px;
    color: #AB47BC;
}

.project-info .aap-info-value {
    font-size: 15px;
    color: #2c3e50;
    font-weight: 500;
}

.project-info .aap-price-value {
    font-size: 24px;
    font-weight: 700;
    color: #e74c3c;
}

/* 评分星星 */
.project-info .aap-stars {
    display: inline-flex;
    gap: 2px;
    margin-right: 8px;
}

.project-info .aap-star-filled {
    color: #f39c12;
    font-size: 16px;
}

.project-info .aap-star-empty {
    color: #ddd;
    font-size: 16px;
}

.project-info .aap-rating-text {
    font-size: 15px;
    color: #2c3e50;
    font-weight: 600;
}

.project-info .aap-review-count {
    color: #7f8c8d;
    font-weight: 400;
}

/* 产品特性内联样式 */
.project-info .full-width {
    width: 100%;
}

.aap-product-features-inline {
    background: linear-gradient(135deg, #f8f9fa 0%, #ffffff 100%);
    border-radius: 8px;
    padding: 20px;
    border: 1px solid #e8e8e8;
    margin-top: 10px;
}

.aap-features-title-inline {
    font-size: 20px;
    font-weight: 600;
    color: #2c3e50;
    margin: 0 0 15px 0;
}

.aap-features-title-inline i {
    color: #AB47BC;
    margin-right: 8px;
}

.aap-features-list-inline {
    list-style: none;
    padding: 0;
    margin: 0;
    display: flex;
    flex-direction: column;
    gap: 10px;
}

.aap-feature-item-inline {
    display: flex;
    align-items: flex-start;
    gap: 12px;
    padding: 10px;
    background: #fff;
    border-radius: 6px;
    transition: all 0.3s;
}

.aap-feature-item-inline:hover {
    transform: translateX(5px);
    box-shadow: 0 2px 8px rgba(171, 71, 188, 0.1);
}

.aap-feature-item-inline .aap-feature-icon {
    color: #AB47BC;
    font-size: 12px;
    margin-top: 4px;
    flex-shrink: 0;
}

.aap-feature-item-inline span {
    font-size: 14px;
    line-height: 1.6;
    color: #555;
}

/* 手机端适配 */
@media (max-width: 768px) {
    .project-info .aap-info-item {
        flex-direction: column;
        align-items: flex-start;
        gap: 8px;
        padding: 12px;
    }
    
    .project-info .aap-info-label {
        min-width: auto;
        font-size: 13px;
    }
    
    .project-info .aap-info-value {
        font-size: 14px;
    }
    
    .project-info .aap-price-value {
        font-size: 20px;
    }
    
    .aap-product-features-inline {
        padding: 10px;
    }
    
    .aap-features-title-inline {
        font-size: 15px;
    }
    
    .aap-feature-item-inline {
        padding: 8px;
    }
    
    .aap-feature-item-inline span {
        font-size: 13px;
    }
}

/* 小屏手机 */
@media (max-width: 375px) {
    .project-info .aap-price-value {
        font-size: 18px;
    }
    
    .aap-product-features-inline {
        padding: 8px;
    }
    
    .aap-features-title-inline {
        font-size: 14px;
        margin-bottom: 12px;
    }
    
    .aap-feature-item-inline span {
        font-size: 12px;
    }
}
