.logistics-ul {
    /* display: flex;
    flex-wrap: wrap;
    justify-content: space-between; */
}

.logistics-li {
    width: 24%;
    text-align: center;
    margin-top: 1.44rem;
}

.logistics-card {
    height: 9.94rem;
    display: flex;
    align-items: center;
    justify-content: center;
    box-shadow: 0 2px 10px 0 rgba(28, 117, 231, 0.1);
    transition: transform 0.5s ease;
}

.logistics-card img {
    max-width: 100%;
    height: 100%;
}

.hidden-logistics-li {
    display: none;
}

.logistics-li span {
    margin: 1.44rem 0;
    display: block;
    color: #000;
}

.logistics-card:hover {
    transform: translate(0, -15px);

    /*border: 0.06rem solid #1740B5;*/
}

.logistics-card:hover+span {
    color: #1740B5;
}

.store {
    cursor: pointer;
    margin-top: 2.44rem;
}

.store-card {
    width: 30.5%;
    height: 17.13rem;
    background: #FFFFFF;
}

.store-card img {
    width: 100%;
    height: 11.5rem;
}

.store-card span {
    display: block;
    margin: 2rem 0 2rem 2.75rem;
    font-size: 1.25rem;
    color: #000;
}

.store-card:hover {
    background-color: #1740B5;
}

.store-card:hover a span {
    color: #FFFFFF;
}

table {
    /* max-width: 600px; 设置表格的最大宽度为 600 像素 */
    width: 100%; /* 让表格在父容器中填充满 */
    border-collapse: collapse; /* 合并单元格边框 */
  }
  th, td {
    /*border: 1px solid #ddd;  设置单元格边框样式 */
    padding: 8px; /* 设置单元格内边距 */
    text-align: left; /* 文本左对齐 */
  }