/* 产品信息列表样式 */
.product-info {
    margin: 15px 0;
    padding: 0;
}

.product-info ul {
    list-style: none;
    padding: 0;
    margin: 0;
    border: 1px solid #e0e0e0;
    border-radius: 5px;
    overflow: hidden;
}

.product-info li {
    padding: 12px 15px;
    border-bottom: 1px solid #f0f0f0;
    font-size: 14px;
    line-height: 1.5;
    display: flex;
}

.product-info li:last-child {
    border-bottom: none;
}

.product-info li:nth-child(odd) {
    background-color: #f9f9f9;
}

.product-info li:nth-child(even) {
    background-color: #ffffff;
}

.product-info span {
    color: #333;
}

.product-info span:first-child {
    font-weight: bold;
    color: #666;
    min-width: 80px;
    display: inline-block;
}

/* 数据手册链接样式 */
.datasheet-link {
    margin-top: 20px;
    text-align: center;
}
.breadcrumb{
  color: #000!important;
  margin-top: 15px;
}
.breadcrumb a{
  color: #000!important;
}
.datasheet-link a {
    display: inline-block;
    padding: 10px 20px;
    background-color: #007bff;
    color: white;
    text-decoration: none;
    border-radius: 4px;
    font-size: 14px;
    transition: all 0.3s ease;
    border: 1px solid #007bff;
}

.datasheet-link a:hover {
    background-color: #0056b3;
    border-color: #0056b3;
    transform: translateY(-2px);
    box-shadow: 0 2px 5px rgba(0,0,0,0.2);
}
.clean-block.clean-product .product-info .description{
    overflow: hidden;
    max-width: 990px!important;