
body {
    font-family:pingfang SC,helvetica neue,arial,hiragino sans gb,microsoft yahei ui,microsoft yahei,simsun,sans-serif!important;
    margin: 0;
    padding: 0;
}
.fwqyj-wrap {
    max-width: 1350px;
    margin: 0 auto;
    padding: 0 20px;
}
.fwqyj-block {
    padding: 90px 0;
}
.fwqyj-main-title {
    font-size: 30px;
    text-align: center;
    margin-bottom: 50px;
    color: #000;
    font-weight: 600;
}

/* Banner 整区块背景图 */
.fwqyj-banner-block {
    background:  url(images/fwqyj-banner.png) no-repeat center bottom;
    background-size: cover;
    min-height: 520px;
    display: flex;
    text-align: center;
    transition: all 0.3s ease;
    padding-top: 110px;
    margin-top: 60px;
}
.fwqyj-banner-block:hover {
    box-shadow: inset 0 0 80px rgba(0,102,255,0.08);
}
.fwqyj-banner-title {
    font-size: 42px;
    margin-bottom: 12px;
    color: #000;
    font-weight: 600;
}
.fwqyj-banner-desc {
    font-size: 14px;
    color: #666666;
    max-width: 750px;
    margin: 0 auto 30px;
    line-height: 1.7;
}
.fwqyj-banner-btns {
    margin-bottom: 40px;
}

.fwqyj-btn-white {
    background: #ffffff;
    color: #000;
    border: 1px solid #0066ff;
    padding: 10px 44px;
    border-radius: 10px;
    text-decoration: none;
    display: inline-block;
    margin: 0 8px;
    transition: all 0.25s ease;
}
.fwqyj-btn-white:hover {
    background: #0066ff;
    color: #ffffff;
}
.fwqyj-btn-blue {
    background: #0066ff;
    color: #ffffff;
    border: 1px solid #0066ff;
    padding: 10px 44px;
    border-radius: 10px;
    text-decoration: none;
    display: inline-block;
    margin: 0 8px;
    transition: all 0.25s ease;
}
.fwqyj-btn-blue:hover {
    background: #004fcc;
}

/* 产品特性区块 */
.fwqyj-feature-block {
    background-color: #fff;
}
.fwqyj-feature-card {
    background: #ffffff;
    padding: 24px;
    border-radius: 8px;
    height: 100%;
    transition: all 0.3s ease;
    cursor: pointer;
    box-shadow: 0 4px 35px rgba(0,102,255,0.08);
}
.fwqyj-feature-card:hover {
    box-shadow: 0 8px 24px rgba(0,102,255,0.12);
    transform: translateY(-4px);
}
.fwqyj-feature-title {
    font-size: 17px;
    font-weight: 600;
    margin-bottom: 10px;
    display: flex;
    align-items: center;
    gap: 8px;
    color: #333;
}
.fwqyj-feature-text {
    font-size: 13px;
    color: #666;
    line-height: 1.7;
    padding-left: 35px;
}

/* 配置参数区块 */
.fwqyj-param-block {
    background-color: #f7f9ff;
}
.fwqyj-param-table-wrap {
    margin-bottom: 35px;
    border-radius: 8px;
    overflow: hidden;
    transition: all 0.3s ease;
    cursor: pointer;
}
.fwqyj-param-table-wrap:hover {
    box-shadow: 0 8px 24px rgba(0,102,255,0.1);
}
.fwqyj-param-table-title {
    background-color: #0066ff;
    color: #ffffff;
    padding: 20px 16px;
    font-size: 15px;
    font-weight: 600;
}
.fwqyj-param-table {
    width: 100%;
    border-collapse: collapse;
    background: #ffffff;
}
.fwqyj-param-table td {
    border: 1px solid #e9edf5;
    padding: 20px 14px;
    font-size: 14px;
    color: #333;
}
.fwqyj-param-table td:first-child {
    width: 220px;
    font-weight: 600;
}

/* 相关推荐区块 */
.fwqyj-recommend-block {
    background-color: #fff;
}
.fwqyj-recommend-card {
    /* 全局统一卡片背景样式 */
    background: url("images/fwqyj-bg1.png") no-repeat center;
    background-size: cover;
    padding: 30px 20px;
    border-radius: 8px;
    height: 100%;
    /* 文字按钮全部左对齐 */
    display: flex;
    flex-direction: column;
    align-items: flex-start;
    transition: all 0.3s ease;
    cursor: pointer;
    box-shadow: 0 8px 40px rgba(0,102,255,0.1);
}
.fwqyj-recommend-card:hover {
    box-shadow: 0 8px 24px rgba(0,102,255,0.22);
    transform: translateY(-4px);
}
.fwqyj-recommend-name {
    font-size: 17px;
    margin-bottom: 16px;
    text-align: left;
    color: #000;
    font-weight: 600;
}
.fwqyj-recommend-btn {
    background: #0066ff;
    color: #fff;
    padding: 8px 25px;
    border-radius: 8px;
    text-decoration: none;
    font-size: 14px;
    transition: all 0.25s ease;
}
.fwqyj-recommend-btn:hover {
    background: #004fcc;
}

/* 移动端适配 */
@media (max-width: 768px) {
    .fwqyj-block {
        padding: 50px 0;
    }
    .fwqyj-main-title {
        font-size: 24px;
        margin-bottom: 35px;
    }
    .fwqyj-banner-title {
        font-size: 24px;
    }
    .fwqyj-param-table td:first-child {
        width: 130px;
    }
    .fwqyj-banner-block {
        min-height: 420px;
    }
}