/* 悬浮框 */
.floatButton {
    position: fixed;
    right: 20px;
    bottom: 200px;
    z-index: 2;
    width: 64px;
    height: 233px;
    font-size: 39px;
    line-height: 55px;
    text-align: center;
    flex-direction: column;
    background: #FFFFFF;
    box-shadow: 0px 2px 8px 0px rgba(39, 74, 208, 0.15);
    animation: flash 1.5s infinite;
    border-radius: 32px;
    cursor: pointer;
    opacity: 1;
    transition: .3s ease-out;
    display: flex !important;
    justify-content: center; /* 水平居中 */
    align-items: center; /* 垂直居中 */
}

@keyframes flash {
    0%, 100% {
        box-shadow: 0px 2px 8px 0px rgba(39, 74, 208, 0.15);
    }
    50% {
        box-shadow: 0px 2px 8px 0px rgba(170, 172, 184, 1);
    }
}

.floatButton .image-top, .floatButton .image-bottom {
    flex: 1; /* 使两个子元素等高 */
    width: 39px;
    height: 39px;
    flex-basis: 39px;
    flex-grow: 0;
    flex-shrink: 0;
    min-width: 39px;
    background-size: cover;
    display: flex !important;
    justify-content: center; /* 水平居中 */
    align-items: center; /* 垂直居中 */
    transition: color 0.3s ease; /* 平滑过渡效果 */
    margin-bottom: 30px;
}

.floatButton hr {
    margin-bottom: 15px;
    margin-top: 15px;
    flex-grow: 0;
    flex-shrink: 0;
}

.floatButton p {
    font-family: PingFangSC-Regular;
    font-size: 12px;
    color: #333333;
    letter-spacing: 0;
    font-weight: 400;
    width: 24px;
    height: 34px;
    line-height: normal;
    flex-grow: 0;
    flex-shrink: 0;
}

.floatButton .image-top:hover p {
    color: #2D8DFD;
}

.floatButton .image-bottom:hover p {
    color: #2D8DFD;
}

/* 悬浮框-End */


/* 联系我们 */
/* 弹出提示框的样式 */
.popup {
    visibility: hidden;
    position: absolute;
    display: flex;
    cursor: pointer;
    width: 276.36px;
    background: #FFFFFF;
    border-radius: 5px;
    box-shadow: 0px 2px 8px 0px rgba(39, 74, 208, 0.15);
    background-repeat: no-repeat;
    z-index: 1;
    opacity: 1;
    transition: opacity 0.3s;
    display: flex !important;
    padding: 24px;

    left: -285px; /* 向左偏移 */

    flex-direction: column;
    justify-content: center; /*垂直居中*/
    align-items: center; /* 水平居中 */

    font-family: PingFangSC-Regular;
    font-size: 12px;
    color: #333333;
    letter-spacing: 0;
    line-height: 17px;
    font-weight: 400;

    text-align: left;
}

.popup .row {
    width: 100%;
    display: flex;
    justify-content: flex-start;
    align-items: center;
}

.popup button, .popup button:hover{
    background-color: #2D8DFD;
    border-color: #2D8DFD;
}

.popup input:focus, .popup textarea:focus {
    border-color: #2D8DFD;
}

/* 添加尖嘴 */
.popup::after {
    content: '';
    position: absolute;
    right: -10px;
    top: 50%;
    margin-top: -5px;
    border-width: 5px;
    border-style: solid;
    border-color: transparent transparent transparent #FFFFFF;
}

.popup .title .image {
    flex-basis: 30px;
    flex-grow: 0;
    flex-shrink: 0;
    min-width: 30px;
    background-size: cover;
    justify-content: flex-start;
    width: 30px;
    height: 30px;
}

.popup .title .text {
    flex: 1;
    margin-left: 15px;
}

.popup .row form {
    width: 100%;
    margin-top: 15px;
}


.phone {
    height: 64px;
    transform: translateY(-50%);
    visibility: hidden;
}

.phonetext {
    margin-left: 15px;
}

.scheme {
    /*height: 355px;*/
    transform: translateY(13%);
}

.schemetext {
    margin-left: 15px;
}
/*联系我们-End*/