/* 全局样式 */
body {
    font-family: "Helvetica Neue", Helvetica, Arial, sans-serif;
    background: #f5f5f5;
    margin: 0;
    padding: 0;
}

/* 顶部产品名称区域 */
.product-header {
    height: 40px;

    display: flex;
    align-items: center;
    padding: 0 15px;
 
}

.back-arrow {
    color: #e14000;
    font-size: 20px;
    text-decoration: none;
    margin-right: 10px;
}

.product-title {
    font-size: 18px;
    margin: 0;
    flex: 1;
    line-height: 36px;
}

/* 视频展示 */
.product-video {
    width: 100%;
    max-width: 800px;
    margin: 20px auto;
    text-align: center;
}

.product-video video {
    width: 100%;
    height: 300px;
    border-radius: 8px;
}

/* 产品特点参数 */
.product-features {
    display: flex;
    justify-content: space-around;
    /*padding: 20px;*/
    background: white;
    margin: 20px;
    border-radius: 8px;
    box-shadow: 0 2px 8px rgba(0, 0, 0, 0.1);
     align-items: center; 
}

.feature-item {
    text-align: center;
  /*  flex: 1;*/
    padding: 10px;
}

.feature-icon {
    font-size: 24px;
    margin-bottom: 10px;
}
.feature-text {
 display: inline-flex;
 align-items: center;

}

.feature-text span {
    font-size: 14px;
    color: #666;
}

.feature-text p {
    font-size: 14px;
    color: #333;
    margin: 5px 0;
   display: contents;
}

.feature-text .copyable {
    cursor: pointer;
    color: #007BFF;
    text-decoration: underline;
     text-decoration: none;
}

/* 详情内容展示 */
.product-content {
    padding: 20px;
    background: white;
    margin: 20px;
    border-radius: 8px;
    box-shadow: 0 2px 8px rgba(0, 0, 0, 0.1);
}

.product-content h2 {
    font-size: 20px;
    color: #333;
    margin-bottom: 10px;
}

.product-content .content {
    font-size: 16px;
    color: #666;
    line-height: 1.6;
}

.product-content .content img {
   width: 100%;
}

/* 新闻公告 */
.news-bar {
    background: rgb(255, 154, 67);
    padding: 10px 12px;
    color: white;
    font-size: 14px;
    display: flex;
    align-items: center;
}

.news-bar .icon {
    margin-right: 8px;
    font-size: 16px;
}

/* 搜索栏 */
.search-bar {
    padding: 15px;
    background: white;
    display: flex;
     
}

.search-input {
    flex: 1;
    display: flex;
    align-items: center;
    background: #f0f0f0;
    border-radius: 20px;
        width: 30%;
   /* padding: 8px 12px;*/
}

.search-input input {
    border: none;
    background: transparent;
    flex: 1;
   /* margin-left: 8px;*/
    outline: none;
}

.search-btn {
    background: #4CAF50;
    color: white;
    border: none;
   /* padding: 8px 20px;*/
    border-radius: 20px;
    cursor: pointer;
}

/* 下拉菜单 */
.filters {
    background: white;
    padding: 15px;
    display: flex;
    gap: 10px;
    border-bottom: 1px solid #eee;
}

.filter-item {
    flex: 1;
    text-align: center;
    padding: 8px 0;
    cursor: pointer;
    font-size: 14px;
    color: #333;
}

.filter-item .arrow {
    font-size: 12px;
    margin-left: 4px;
}

/* 下拉菜单内容 */
.dropdown-overlay {
    display: none;
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: rgba(0, 0, 0, 0.5);
    justify-content: center;
    align-items: center;
    z-index: 100;
}

.dropdown-content {
    background: white;
    width: 90%;
    max-width: 400px;
    border-radius: 8px;
    padding: 15px;
    box-shadow: 0 4px 12px rgba(0, 0, 0, 0.1);
}

.dropdown-list {
    display: none; /* 默认隐藏 */
    flex-direction: column;
    gap: 10px;
}

.dropdown-list div {
    padding: 10px;
    text-align: center;
    border-bottom: 1px solid #eee;
    cursor: pointer;
}

.dropdown-list div:last-child {
    border-bottom: none;
}

.dropdown-list a {
    color: inherit; /* 继承父元素的颜色 */
    text-decoration: none; /* 去掉下划线 */
}
.item-opt{
    color: #4d7df9;
    font-weight: 700;
    position: relative;
}
.item-opt::after {
    content: "✓";
    font-weight: 700;
    font-size: 18px;
    position: absolute;
    right: 20px;
}


.dropdown-list{
    height: 300px; /* 固定高度 */
    overflow-y: auto; /* 垂直方向超出时显示滚动条 */
  /*   border: 1px solid #ccc; /* 可选：添加边框 */
    padding: 10px; /* 可选：内边距 */
}

/* 产品列表 */

.cx_like i{
    margin-right: 3px;
    color: #FFB2B2;
    
}
.product-list {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 15px;
    padding: 5px;
}

.product-item {
    background: white;
    border-radius: 8px;
    overflow: hidden;
    box-shadow: 0 2px 8px rgba(0, 0, 0, 0.1);
}

.product-img {
    height: 260px;
    background: #f0f0f0;
}

.product-img img {
    width: 100%;
    height: 100%;
    object-fit: cover;
}

.product-info {
    padding: 12px;
    background: #e6efde;
}

.product-listheader {
    display: flex; /* 启用 Flexbox 布局 */
    justify-content: space-between; /* 两端对齐 */
    align-items: center; /* 垂直居中 */
    margin-bottom: 5px; /* 与下方内容保持间距 */
}

.product-name {
    font-weight: bold;
    flex: 1; /* 占据剩余空间 */
    margin-right: 10px; /* 与分类保持间距 */
}

.product-category {
    color: #666;
    font-size: 15px;
   font-weight: bold;
    white-space: nowrap; /* 防止换行 */
}

.product-price {
    color: #e74c3c;
    font-weight: bold;
    margin-bottom: 5px;
}

.product-number {
    background: #e6efde;
   /* padding: 8px;*/
    display: flex;
    justify-content: space-between;
    align-items: center;
    font-size: 12px;
}

.copy-btn {
    background: #4CAF50;
    color: white;
    border: none;
    padding: 4px 8px;
    border-radius: 4px;
    cursor: pointer;
}

/* 加载更多提示 */
.load-more {
    text-align: center;
    padding: 20px;
    color: #999;
    font-size: 14px;
}


.status-container {
        display: flex;
        align-items: center; /* 垂直居中 */
    }

    .status-container h2 {
        margin-right: 10px; /* 调整标题和内容之间的间距 */
    }
.news-bar a {
    color: inherit; /* 继承父元素的颜色 */
    text-decoration: none; /* 移除下划线 */
}

.color-option.忙 {
        color: red;
    }
.color-option.空闲 {
        color: green;
    }
     