/* 容器样式，用于包裹标题和卡片列表 */
.container {
}
.banner {
    background: #f1f9f7;
    width: 100%;
    height: 380px;
    padding: 0 12px;
    box-sizing: border-box;
}
.banner-msg {
    max-width: 1200px;

    padding-top: 100px;
}
.banner-msg h1 {
    margin-bottom: 20px;
}
.banner-msg p {
    margin-bottom: 40px;
}
.top1_box {
    max-width: 1200px;
    margin: 0 auto;
    padding-top: 80px;
}
/* 标题样式 */
.title {
    font-size: 24px;
    font-weight: bold;
    margin-bottom: 30px;
    color: #333;
    text-align: center;
}

/* 卡片容器样式，采用弹性布局，适配不同屏幕 */
.cards {
    display: flex;
    flex-wrap: wrap;
    justify-content: center;
    gap: 20px;
}
.card-title1 {
    display: flex;
    align-content: stretch;
    justify-content: flex-start;
    align-items: baseline;
    height: 60px;
}
/* 单个卡片样式 */
.card {
    flex: 1 1 calc(25% - 65px);
    border-radius: 8px;
    padding: 20px;
    box-shadow: 0 2px 4px rgba(0, 0, 0, 0.1);
    text-align: left;
}
.card:nth-child(odd) {
    background: linear-gradient(140.79deg, #fbfdf3 0%, #e8f9f5 100%);
}
.card:nth-child(even) {
    background: linear-gradient(140.79deg, #fef6dc 0%, #fbfdf3 100%);
}

/* 卡片内图标样式，可根据实际替换为图标字体或图片 */
.icon {
    display: inline-block;
    width: 20px;
    height: 20px;

    line-height: 20px;
    text-align: center;
    margin-right: 10px;
}
.icon img {
    margin-top: 1px;
    float: left;
}

/* 卡片标题样式 */
.card-title {
    font-size: 18px;
    font-weight: bold;
    margin-bottom: 10px;
    color: #333;
}

/* 卡片描述文本样式 */
.card-desc {
    font-size: 14px;
    color: #666;
}

/* 媒体查询，适配移动端屏幕 */
@media (max-width: 768px) {
    .card {
        flex: 1 1 calc(50% - 20px);
    }
}

@media (max-width: 480px) {
    .card {
        flex: 1 1 100%;
    }
}
.detail-box {
    margin: 0 auto;
    max-width: 1200px;
    padding-bottom: 100px;
    margin-top: 80px;
}
.service-content {
    width: 100%;
    max-width: 1200px;
    margin: 0 auto;
    display: grid;
    grid-template-columns: 1fr;
    gap: 40px;
}

.service-item {
    display: flex;
    flex-direction: column;
    align-items: flex-start;
    gap: 10px;
}

.service-item img {
    width: 100%;
    height: auto;
    border-radius: 8px;
}

.service-item p {
    font-size: 14px;
    color: #666;
    /* line-height: 1.8; */
}

.service-item a {
    text-decoration: none;
    color: #117865;
    margin-top: 50px;
}
.detail-tip {
    margin-bottom: 20px;
}

.service-item-title{
  margin-top: 20px;
}

/* 自定义实心点样式 */
.custom-dot-paragraph {
    position: relative; /* 作为伪元素的定位容器 */
    padding-left: 1.2rem; /* 给实心点预留空间 */
    margin: 0.5rem 0;
    /* line-height: 1.6;  */
}

.custom-dot-paragraph::before {
    content: ""; /* 伪元素必须有 content（空值也可） */
    position: absolute;
    left: 0; /* 实心点靠最左 */
    top: 0.5em; /* 垂直居中（em 单位适配字体大小） */
    width: 0.5rem; /* 实心点宽度 */
    height: 0.5rem; /* 实心点高度 */
    border-radius: 50%; /* 圆形（改为 0 就是方块） */
    background-color: #000; /* 实心点颜色（可自定义） */
}
