
/* 主容器 固定1200px宽 水平居中 */
.mps-value-box {
    width: 1200px;
    margin: 0 auto;
    padding: 60px 0px;
    position: relative;
}
/* 顶部标题区 */
.value-header {
    text-align: center;
    margin-bottom: 50px;
    font-size: 26px;
    font-weight: bold;
}
.header-cn {
    color: #1037f4;
    margin-bottom: 18px;
}
.header-en {
    color: #b9b9b9;
}
/* 五卡片弹性容器 均分宽度 */
.card-wrap {
    display: flex;
    gap: 10px;
    margin-bottom: 60px;
    align-items: flex-start; /* 基准顶部对齐，方便做上下错落 */
}
/* 单个价值观卡片 */
.value-card {
    flex: 1;
    box-sizing: border-box;
    height: 295px;
    /* background: #ffffff; */
    border-radius: 16px;
    padding: 26px 18px;
    padding-bottom: 20px;
    position: relative;
    overflow: visible;
    cursor: pointer;
    /* box-shadow: 0 0 30px 5px #e9efff; */
}
/* 上下交替错落：2、4号卡片向下偏移 */
.card-2, .card-4 {
    margin-top: 80px;
}
/* 卡片底部浅色透明图标水印 */
.value-card::after {
    content: "";
    position: absolute;
    right: 12px;
    bottom: 12px;
    width: 70px;
    height: 70px;
    background-repeat: no-repeat;
    background-size: contain;
    background-position: right bottom;
    opacity: 0.12;
    pointer-events: none;
}
/* 每个卡片单独水印图标 */
.card-1{
    background: url("../images/s3/i1.png") no-repeat center center/100% 100%;
}
.card-2{
    background: url("../images/s3/i2.png") no-repeat center center/100% 100%;
}
.card-3{
    background: url("../images/s3/i3.png") no-repeat center center/100% 100%;
}
.card-4{
    background: url("../images/s3/i4.png") no-repeat center center/100% 100%;
}
.card-5{
    background: url("../images/s3/i5.png") no-repeat center center/100% 100%;
}
/* 卡片标题文字 */
.card-title-cn {
    font-size: 26px;
    color: #2255ee;
    font-weight: bold;
    text-align: center;
    margin-bottom: 8px;
    position: relative;
}
.card-title-en {
    font-size: 16px;
    color: #b9b9b9;
    text-align: center;
    margin-bottom: 20px;
    font-weight: bold;
}
/* 卡片中文描述 */
.card-desc-cn {
    font-size: 14px;
    color: #000;
    line-height: 1.6;
    margin-bottom: 14px;
}
/* 卡片英文描述 */
.card-desc-en {
    font-size: 14px;
    color: #000;
    line-height: 1.6;
    /* word-break: break-all; */
    /* text-align: justify; */
}
/* 底部引言区域 */
.bottom-quote-area {
    position: relative;
    padding: 40px 70px;
    background: url("../images/s3/i6.png") no-repeat center center/100% 100%;
    border-radius: 14px;
}
/* 底部正文文本 */
.bottom-text {
    text-indent: 2em;
    font-size: 20px;
    color: #000;
    line-height: 1.8;
}