/*浮框*/
.contact-us-box {
    position: fixed;
    left: 4%; /* 使用50%居中 */
    top: 50%;
    transform: translate(-50%, -50%); /* 偏移自身宽高的一半来居中 */
    /*background-color: rgba(255, 255, 255, 0.5); !* 半透明背景 *!*/
    /*background-color: rgba(30, 76, 55, 0.5); !* 半透明背景 *!*/
    border-radius: 5px;
    cursor: pointer; /* 显示手型光标，表示可点击 */
    z-index: 999;
    display: flex; /* 使用flex布局来垂直居中子元素 */
    flex-direction: column; /* 子元素垂直排列 */
    align-items: center; /* 子元素在交叉轴上居中 */
    justify-content: center; /* 子元素在主轴上居中 */
}

.contact-us-box img {
    width: 100%;
    height: 100%;
    margin-bottom: 10px; /* 图片下方添加间距 */
}
