body {
    margin: 0;
    padding: 0;
    font-family: Arial, sans-serif;
}

/* 头部样式 */
header {
    position: relative;
    background-color: #3C8DBC;
    color: #fff;
    box-shadow: 0 2px 5px rgba(0, 0, 0, 0.3);
    padding: var(--margin-inside) var(--margin-body);
}
header span {
}
header span img{
    height: 4.95vw;
    width: 15vw;
}
header .label{
    position: absolute;
    bottom: var(--margin-inside);
    font-size: var(--font-20);
    margin-left: var(--margin-inside);
}

/* 内容样式 */
main {
    height: calc(100vh - 10vw - 4.95vw - var(--margin-inside) - var(--margin-inside));
    margin: var(--margin-outside) var(--margin-body);
}
main div{
}
main .title{
    font-size: var(--font-30);
    font-weight: bold;
}

.business_introduction {
    margin-top: 20px; /* 上边距 */
    padding-left: var(--margin-outside); /* 左内边距 */
    font-size: var(--font-20); /* 字体大小 */
    line-height: 1.5; /* 行高 */

    /* 添加其他样式属性根据需要 */
}

.business_introduction > div {
    margin-bottom: 20px; /* 段落之间的下边距 */
}

.business_introduction ul {
    list-style-type: none; /* 移除列表项的默认样式 */
    padding-left: 0; /* 移除列表项的默认内边距 */
}

.business_introduction ul li {
    position: relative; /* 使列表项的内容和图标可以相对定位 */
    padding-left: 20px; /* 左内边距 */
    margin-bottom: 10px; /* 列表项之间的下边距 */
}

.business_introduction ul li:before {
    content: ''; /* 使用伪元素添加列表项的图标 */
    position: absolute;
    top: 50%;
    left: 0;
    transform: translateY(-50%);
    width: 10px; /* 图标宽度 */
    height: 10px; /* 图标高度 */
    background-color: #3C8DBC; /* 图标颜色 */
    border-radius: 50%; /* 图标圆角 */
}

.business_introduction ul li span {
    font-weight: bold; /* 突出显示列表项的标题 */
}

/* 底部样式 */
footer {
    position: fixed;
    bottom: 0;
    background-color: #3C8DBC;
    color: #fff;
    text-align: center;
    box-shadow: 0 -2px 5px rgba(0, 0, 0, 0.3);
    height: 5vw;
    width: 100%; /* 让 footer 宽度铺满整个页面 */
}
footer div{
    display: flex;
    justify-content: center; /* 水平居中 */
    align-items: center; /* 垂直居中 */
    height: 5vw;
}
footer div span{
    margin-left: var(--margin-inside);
}
