* {
    margin: 0;
    padding: 0;
    
    font-family: "Microsoft Yahei", Arial, sans-serif;
}
body {
    background-color: #dae4f0;
    
}
/* 核心卡片样式 - 宽度300px + 强化阴影 */
.product-card {
    background: #ffffff;
    width: 200px;
    padding: 20px 18px;
    border-radius: 2px;
    /* 强化阴影效果：增大模糊+扩展值，提升立体感 */
    box-shadow: 0 4px 12px rgba(0, 0, 0, 0.15), 0 1px 3px rgba(0, 0, 0, 0.1);
}
/* 标题样式 */
.product-title {
    font-size: 20px;
    font-weight: 600;
    color: #222;
    margin-bottom: 6px;
    line-height: 1.1;
}
.product-subtitle {
    font-size: 18px;
    color: #666;
    margin-bottom: 22px;
}
/* 产品图片 */
.product-img {
    width: 100%;
    margin-bottom: 18px;
    text-align: center;
}
.product-img img {
    max-width: 100%;
    height: auto;
}
/* 产品描述 */
.product-desc {
    font-size: 14px;
    color: #555;
    line-height: 1.4;
    margin-bottom: 20px;
}
/* 规格参数栏 - 完全匹配图片布局 */
.spec-row {
    display: flex;
    gap: 6px;
    margin-bottom: 22px;
}
.spec-item {
    flex: 1;
    background-color: #dae4f0;
    padding: 12px 8px;
    text-align: center;
    border-radius: 1px;
}
.spec-label {
    font-size: 13px;
    color: #fd1d05;
    margin-bottom: 4px;
    line-height: 1.2;
}
.spec-value {
    font-size: 15px;
    font-weight: 500;
    color: #333;
}
/* 技术信息 - 匹配图片右侧对齐+小三角 */
.tech-info {
    font-size: 14px;
    color: #333;
    text-align: right;
    cursor: pointer;
    padding-right: 3px;
}
.tech-info::after {
    content: "▲";
    font-size: 11px;
    margin-left: 5px;
    color: #888;
    vertical-align: middle;
}