* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}
body {
    font-family:pingfang SC,helvetica neue,arial,hiragino sans gb,microsoft yahei ui,microsoft yahei,simsun,sans-serif!important;
    line-height: 1.6;
}

/* 通用容器 */
.solutions-container {
    max-width: 1350px;
    margin: 0 auto;
    padding: 0 15px;
}

/* 区块背景 & 内边距 */
.solutions-section-white {
    background-color: #ffffff;
    padding: 90px 0;
    transition: all 0.3s ease;
}

.solutions-section-blue {
    background-color: #f7f9ff;
    padding: 90px 0;
}

/* 大标题 */
.solutions-title {
    font-size: 30px;
    text-align: center;
    margin-bottom: 40px;
    color: #000;
    font-weight: 700;
}

/* 正文描述文本 */
.solutions-desc {
    font-size: 14px;
    color: #666666;
    line-height: 1.8;
    margin-bottom: 0px;
    text-indent: 2em;
}

/* Banner 区域 */
.solutions-banner {
    padding: 90px 0;
    position: relative;
    background-image: url(../images/hwyx-banner.png);
    background-size: cover;
    background-position: center;
    background-repeat: no-repeat;
    transition: all 0.3s ease;
    margin-top: 60px;
}
.fzjh-banner{ background-image: url(../images/fzjh-banner.png);}
.zx-banner{background-image: url(../images/zx-banner.png);}
.fwqaq-banner{background-image: url(../images/fwqaq-banner.png);}
.jsfw-banner{background-image: url(../images/jsfw-banner.png);}
.zq-banner{background-image: url(../images/zq-banner.png);}

.solutions-banner-inner {
    position: relative;
    z-index: 1;
    text-align: left;
}
.solutions-banner-title {
    font-size: 36px;
    color: #000;
    margin-bottom: 20px;
    font-weight: 700;
}
.solutions-banner-text {
    font-size: 16px;
    color: #666;
    opacity: 0.95;
    margin-bottom: 30px;
}

/* 主按钮 - 蓝色实心 */
.solutions-btn-primary {
    background-color: #0066ff;
    color: #ffffff;
    border: none;
    padding: 10px 30px;
    border-radius: 5px;
    text-decoration: none;
    display: inline-block;
    transition: all 0.3s ease;
    font-size: 14px;
}
.solutions-btn-primary:hover {
    background-color: #0052cc;
    color: #ffffff;
    text-decoration: none;
}

/* 边框按钮 */
.solutions-btn-outline {
    background-color: #ffffff;
    color: #0066ff;
    border: 1px solid #0066ff;
    padding: 10px 30px;
    border-radius: 5px;
    text-decoration: none;
    display: inline-block;
    transition: all 0.3s ease;
    font-size: 14px;
}
.solutions-btn-outline:hover {
    background-color: #0066ff;
    color: #ffffff;
    text-decoration: none;
}

/* 小尺寸按钮 */
.solutions-btn-sm {
    padding: 15px 45px;
    font-size: 14px;
}
.solutions-btn-gap {
    margin-left: 10px;
}

/* 功能卡片 */
.solutions-card {
    background-color: #ffffff;
    border-radius: 8px;
    padding: 30px;
    text-align: center;
    box-shadow: 0 2px 30px rgba(0,102,255,0.05);
    transition: all 0.3s ease;
    height: 100%;
}
.solutions-card:hover {
    transform: translateY(-5px);
    box-shadow: 0 5px 50px rgba(0,102,255,0.2);
}
.solutions-card-icon {
    width: 62px;
    height: 62px;
    margin: 0 auto 15px;
    background-color: #f0f5ff;
    border-radius: 10px;
    display: flex;
    align-items: center;
    justify-content: center;
    color: #0066ff;
}
.solutions-value-icon {
    width: 62px;
    height: 62px;
    margin: 0 auto 15px;
    background-color: #f0f5ff;
    border-radius: 100px;
    display: flex;
    align-items: center;
    justify-content: center;
    color: #0066ff;
}
.solutions-card-title {
    font-size: 18px;
    color: #000;
    margin-bottom: 10px;
    font-weight: 700;
}
.solutions-card-title-sm {
    font-size: 18px;
}
.solutions-card-text {
    font-size: 14px;
    color: #666666;
    margin: 0;
}

/* 架构图容器 */
.solutions-img-wrap {
    background-color: #ffffff;
    border-radius: 8px;
    /*box-shadow: 0 2px 10px rgba(0,0,0,0.05); */
    transition: all 0.3s ease;
    margin-bottom: 40px;
    padding: 10px 0;
    max-width: 1350px; /* 限制容器最大宽度，防止拉伸文字 */
    margin-left: auto;
    margin-right: auto;
}
.solutions-main-img {
    width: 100%;
    height: auto;
    display: block;
    image-rendering: crisp-edges;
    object-fit: scale-down;
    max-width: 100%;
}

/* 表格标题 */
.solutions-table-tit {
    font-size: 20px;
    color: #000;
    margin-top: 50px;
    margin-bottom: 15px;
    font-weight: 800;
    text-align: center;
}

/* 表格容器 */
.solutions-table-wrap {
    background-color: #ffffff;
    border-radius: 15px;
    overflow: hidden;
    box-shadow: 0 2px 10px rgba(0,0,0,0.05);
    transition: all 0.3s ease;
}
.solutions-table-wrap:hover {
    box-shadow: 0 5px 20px rgba(0,0,0,0.1);
}
.solutions-table-wrap th {
    background-color: #0066ff;
    color: #ffffff;
    padding: 22px 35px;
    font-size: 15px;
}
.solutions-table-wrap td {
    padding: 22px 30px;
    font-size: 14px;
    border-bottom: 1px solid #eee;
    vertical-align: middle;
}

/* 移动端适配 */
/* 移动端适配 */
@media (max-width: 768px) {
    .solutions-title {
        font-size: 24px;
        margin-bottom: 20px;
    }
    .solutions-section-white,
    .solutions-section-blue,
    .solutions-banner {
        padding: 50px 0;
    }
    .solutions-banner-title {
        font-size: 28px;
    }
    /* 移动端表格单元格内边距缩小，更紧凑 */
    .solutions-table-wrap th {
        padding: 12px 10px;
        font-size: 13px;
    }
    .solutions-table-wrap td {
        padding: 12px 10px;
        font-size: 13px;
    }
    /* 移动端小按钮尺寸微调 */
    .solutions-btn-sm {
        padding: 8px 18px;
        font-size: 12px;
    }
    .solutions-btn-gap {
        margin-left: 5px;
    }
}
