.custom-popup {
    font-size: 14px;
    line-height: 1.5;
}

.custom-popup b {
    color: #333;
}

.custom-popup .company-name {
    font-size: 16px;
    font-weight: bold;
    color: #007BFF;
}

.custom-popup .phone,
.custom-popup .name {
    margin-top: 5px;
    display: block;
}

.fwwl_header {
    position: absolute;
    display: flex;
    height: 70px;
    width: 100%;
    background: rgba(0, 0, 0, 0.432); /* 半透明背景 */
    box-shadow: 0 2px 5px rgba(0, 0, 0, 0.2);
    z-index: 1000; /* 确保它位于地图之上 */
    text-align: center;
    align-items: center; /* 垂直居中 */
    justify-content: space-between; /* 左右对齐 */
    font-size: 16px;
}

.fwwl_left {
    position: absolute;
    height: 710px;
    margin-top: 90px;
    width: 450px;
    background: rgb(255, 255, 255); /* 半透明背景 */
    box-shadow: 0 2px 5px rgba(0, 0, 0, 0.2);
    z-index: 1000; /* 确保它位于地图之上 */
    text-align: left;
    justify-content: space-between; /* 左右对齐 */
    font-size: 16px;
}

.fwwl_left_bottom {
    height: 660px;
    overflow-y: auto; /* 当内容超出容器高度时显示垂直滚动条 */
}

.fwwl_left_top {
    height: 50px;
    width: 100%;
    background-color: #114174;
    display: flex; /* 使用 flexbox 布局 */
    align-items: center; /* 在垂直方向上居中 */
    justify-content: flex-end; /* 在水平方向上右靠 */
    overflow: hidden; /* 清除浮动 */
}

.fwwl_left_top img {
    width: 25px; /* 图片宽度 */
    height: auto; /* 根据宽度自动调整高度 */
    margin-right: 10px; /* 添加右边距 */
}

.fwwl_left_nr {
    width: 350px;
    padding: 30px 30px; /* 设置上下左右内边距 */
    border-bottom: 0.5px solid rgb(196, 190, 190); /* 设置边框的宽度、样式和颜色 */
    position: relative; /* 相对定位的参考点 */
    cursor: pointer;
}



.fwwl_left_nr h1 {
    font-size: 18px; /* 修改字体大小为24像素 */
    font-weight: 400;
}

.fwwl_left_nr p {
    font-size: 14px; /* 修改字体大小为24像素 */
}

.fwwl_left-content {
    margin-right: auto; /* 将右侧内容推到最右边 */
    margin-left: 100px; /* 将右侧内容推到最右边 */
}

.fwwl_left-content p {
    font-size: 32px; /* 修改字体大小为24像素 */
    color: aliceblue;
}

.right-content {
    margin-left: auto; /* 将右侧内容推到最右边 */
    margin-right: 200px; /* 右边距为20像素 */
}


.right-content span {
    color: #ffffff;
    margin-right: 10px; /* 文字解释和输入框之间的间距 */
}

.right-content input {
    margin-right: 10px; /* 输入框和按钮之间的间距 */
}

.right-content .search-input {
    width: 250px;
    height: 30px; /* 修改输入框的高度 */
    margin-right: 10px;
}

.right-content button {
    padding: 5px 20px;
    background-color: #114174;
    color: white;
    border: none;
    cursor: pointer;
}


.zlxz_bottom {
    max-width: 1400px;
    min-height: 300px;
    padding-bottom: 200px;
    margin: 0 auto; /* 水平居中 */
    display: flex;
    flex-wrap: wrap; /* 允许换行 */
}

.zlxz_bottom_nr {
    display: flex;
    align-items: center; /* 在垂直方向上居中 */
    margin-top: 80px;
    background-color: #edebeb;
    width: 600px;
    height: 80px;
    transition: background-color 0.5s;
}

.zlxz_bottom_nr:nth-child(odd) {
    margin-left: 0;
    margin-right: auto;
}

.zlxz_bottom_nr:nth-child(even) {
    margin-right: 0;
    margin-left: auto;
}

.zlxz_bottom_nr:hover {
    background-color: #0a468c; /* Background color on hover */
}

.zlxz_bottom_nr p {
    color: #1a1a1a;
    transition: color 0.5s;
}

.custom-link:hover p {
    color: #ffffff; /* 悬停时文字变色 */
}

.zlxz_bottom_nr img {
    width: 22px;
    height: auto;
    margin-right: 20px;
    margin-left: 20px;
    transition: filter 0.5s;
}

.zlxz_bottom_nr:hover img {
    filter: brightness(0) invert(1); /* Change image to white on hover */
}

.zlxz_bottom_nr img:first-child {
    margin-right: 10px; /* 调整第一个图标与文本之间的间距 */
}

.zlxz_bottom_nr img:last-child {
    margin-left: auto; /* 将第二个图标推到右边 */
}