.card-module {
    display: flex;
    padding: 40px 0;
    border-radius: 5px;
    width: 1200px;
    margin: 0 auto;
    flex-direction: column;
}

/* 第二个模块样式 */
.list-mobile {
    display: flex;
    justify-content: space-between;
    padding: 20px 0 50px;
    gap: 20px;
    width: 1200px;
    margin: 0 auto;
}

.first-module-title {
    background: url(//www.hncehui.cn/file/1/img/dilixinxifuwu1.jpg) no-repeat right center;
    background-size: 100% 100%;
    height: 48px;
    width: 1200px;
    margin: 0 auto;
}

.module-section {
   width: 560px;
}

.section-title {
    height: 29px;
    font-family: MicrosoftYaHei-Bold, 'Microsoft YaHei', sans-serif;
    font-weight: 700;
    font-size: 20px;
    color: #015293;
    letter-spacing: 0;
    line-height: 29px;
    margin-bottom: 20px;
    background: url(//www.hncehui.cn/file/1/img/line-right.png) no-repeat right center;
    background-size: 420px 14px;
    display: block;
}

.news-list {
    list-style: none;
    padding: 0;
    margin: 0;
}

.news-item {
    display: flex;
    justify-content: space-between;
    align-items: center;
    height: 46px;
    line-height: 46px;
}

.news-item::before {
    content: "";
    display: inline-block;
    width: 6px;
    height: 6px;
    background-color: #015293;
    margin-right: 10px;
}

.second-module .news-item a {
    display: flex;
}

.news-content {
    /* flex: 1; */
    font-family: MicrosoftYaHei, 'Microsoft YaHei', sans-serif;
    font-size: 16px;
    color: #121212;
    letter-spacing: 0.44px;
    white-space: nowrap;
    overflow: hidden;
    text-overflow: ellipsis;
    width: 468px;
}

.news-date {
    width: 66px;
    font-family: MicrosoftYaHei, 'Microsoft YaHei', sans-serif;
    font-size: 16px;
    color: #666666;
    letter-spacing: 0.44px;
    text-align: right;
}

.news-subtitle span {
  display: inline-block;
  height: 52px;
  font-family: MicrosoftYaHei-Bold;
  font-weight: 700;
  font-size: 24px;
  color: #015293;
  letter-spacing: 0.8px;
  line-height: 52px;
}

/* 服务卡片样式 */
.first-module-content {
    width: 1200px;
    margin: 0 auto;
    padding: 20px 0;
}

.service-cards {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 20px 50px;
    padding: 20px 0;
}

.service-card {
    border-radius: 8px;
    padding: 20px;
    text-align: left;
    box-shadow: 0 2px 4px rgba(0,0,0,0.1);
    transition: transform 0.3s ease;
    background-image: linear-gradient(119deg, #F0F7FF 0%, #E3F4FE 63%, #C3EFFD 100%);
    height: 210px;
    width: 575px;
}

.service-card:nth-child(1) {
    background: url(//www.hncehui.cn/file/1/img/fuwu-1.png) no-repeat center top;
    background-size: 100% 100%;
}

.service-card:nth-child(2) {
    background: url(//www.hncehui.cn/file/1/img/fuwu-2.png) no-repeat center top;
    background-size: 100% 100%;
}

.service-card:nth-child(3) {
    background: url(//www.hncehui.cn/file/1/img/fuwu-3.png) no-repeat center top;
    background-size: 100% 100%;
}

.service-card:nth-child(4) {
    background: url(//www.hncehui.cn/file/1/img/fuwu-4.png) no-repeat center top;
    background-size: 100% 100%;
}

.service-card:nth-child(5) {
    background: url(//www.hncehui.cn/file/1/img/fuwu-5.png) no-repeat center top;
    background-size: 100% 100%;
}

.service-card:nth-child(6) {
    background: url(//www.hncehui.cn/file/1/img/fuwu-6.png) no-repeat center top;
    background-size: 100% 100%;
}

.service-card:hover {
    transform: translateY(-5px);
}

.service-title {
    font-family: MicrosoftYaHei-Bold, 'Microsoft YaHei', sans-serif;
    font-weight: 700;
    margin-bottom: 14px;
    font-size: 20px;
    color: #121212;
    letter-spacing: 0;
    line-height: 29px;
}

.service-description {
    font-family: MicrosoftYaHei, 'Microsoft YaHei', sans-serif;
    margin-bottom: 20px;
    width: 370px;
    font-size: 15px;
    color: #666666;
    letter-spacing: 0;
    line-height: 28px;
    /* 添加超过两行省略 */
    overflow: hidden;
    text-overflow: ellipsis;
    display: -webkit-box;
    -webkit-line-clamp: 2;
    -webkit-box-orient: vertical;
}

.service-btn {
    display: inline-block;
    padding: 5px 30px;
    color: #015293;
    text-decoration: none;
    font-family: MicrosoftYaHei, 'Microsoft YaHei', sans-serif;
    font-size: 15px;
    border: 1px solid #015293;
}

.service-btn:hover {
    background-color: #003d73;
    color: #fff;
    font-weight: 700;
}