﻿/* 立即咨询开始 */
.experienceBox {
    position: fixed;
    top: 0;
    bottom: 0;
    left: 0;
    right: 0;
    z-index: 9998;
    background: rgba(0,0,0,0.4);
    overflow: auto;
}

.experienceCon {
    width: 600px;
    max-width: 100%;
    border-radius: 20px;
    overflow: hidden;
    margin: 100px auto;
}

.experienceHeader {
    position: relative;
    width: 100%;
}

    .experienceHeader > img {
        width: 100%;
        display: block;
    }

.experienceheaderCon {
    position: absolute;
    top: 0;
    left: 20px;
    width: calc(100% - 40px);
    height: 100%;
    display: flex;
    flex-wrap: wrap;
    align-items: center;
    justify-content: space-between;
}

.experienceheaderConTitle {
    width: calc(100% - 20px);
    display: flex;
    flex-wrap: wrap;
    justify-content: center;
}

    .experienceheaderConTitle > p {
        width: 100%;
        font-size: 14px;
    }

        .experienceheaderConTitle > p:first-of-type {
            font-size: 20px;
            font-weight: bold;
            margin-bottom: 10px;
        }

.experienceheaderCon > img {
    width: 20px;
    cursor: pointer;
}

.experienceIframeBox {
    width: 100%;
    padding: 24px 100px 0;
    background: #fff;
    box-sizing: border-box;
}

    .experienceIframeBox > input {
        width: 100%;
        height: 45px;
        border: 1px solid #CFE2DD;
        border-radius: 8px;
        margin-bottom: 14px;
        text-indent: 1em;
    }

        .experienceIframeBox > input:focus {
            outline: none; /* 移除默认的浏览器轮廓线 */
        }

        .experienceIframeBox > input:hover {
            border: 1px solid #117865;
        }
        /* Chrome/Safari */
        .experienceIframeBox > input::-webkit-input-placeholder {
            font-size: 14px;
        }
        /* Firefox */
        .experienceIframeBox > input::-moz-placeholder {
            font-size: 14px;
        }
        /* IE10+ */
        .experienceIframeBox > input:-ms-input-placeholder {
            font-size: 14px;
        }

    .experienceIframeBox > textarea {
        width: 100%;
        height: 92px;
        border: 1px solid #CFE2DD;
        border-radius: 8px;
        text-indent: 1em;
        margin-bottom: 20px;
        padding: 10px 0;
        resize: none;
        font-family: 'HanSansSC';
    }

        .experienceIframeBox > textarea:focus {
            outline: none; /* 移除默认的浏览器轮廓线 */
        }

        .experienceIframeBox > textarea:hover {
            border: 1px solid #117865;
        }
        /* Chrome/Safari */
        .experienceIframeBox > textarea::-webkit-input-placeholder {
            font-size: 14px;
        }
        /* Firefox */
        .experienceIframeBox > textarea::-moz-placeholder {
            font-size: 14px;
        }
        /* IE10+ */
        .experienceIframeBox > textarea:-ms-input-placeholder {
            font-size: 14px;
        }

.experienceButtonBox {
    width: 100%;
    padding: 0 100px 30px;
    background: #fff;
    box-sizing: border-box;
}

    .experienceButtonBox > button {
        width: 100%;
        height: 40px;
        background: linear-gradient(90deg, #117865 0%, #1B9881 100%);
        color: #fff;
        font-size: 16px;
        border: none;
        border-radius: 8px;
        cursor: pointer;
    }

        .experienceButtonBox > button:hover {
            opacity: 0.8;
        }
/* 立即咨询结束 */


.loader-Box {
    width: 600px;
    height: 500px;
    /* margin-top: 40px; */
    display: none;
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    background-color: rgba(255, 255, 255, 0.56);
}

.loader-circle {
    position: absolute;
    top: 50%;
    left: 45%;
    width: 48px;
    height: 48px;
    border: 5px solid #f3f3f3;
    /* 浅色边框 */
    border-top: 5px solid #2df0bf;
    /* 主题色边框 */
    border-radius: 50%;
    /* 圆形 */
    animation: spin 1s linear infinite;
    /* 旋转动画 */
    margin: 0 auto;
}

/* 动画定义 */
@keyframes spin {
    0% {
        transform: rotate(0deg);
    }

    100% {
        transform: rotate(360deg);
    }
}

@keyframes bounce {

    0%,
    100% {
        transform: translateY(0);
    }

    50% {
        transform: translateY(-15px);
    }
}

@keyframes progress {
    0% {
        width: 0;
    }

    80% {
        width: 80%;
    }

    100% {
        width: 100%;
    }
}
.ConfirmmessageBox{
    position: fixed;
    top: 0;
    bottom: 0;
    left: 0;
    right: 0;
    z-index: 9998;
    background: rgba(0, 0, 0, 0.4);
    overflow: auto;
}

.Confirmmessage {
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%,-50%);
    width: 600px;
    height: 125px;
    background-color: #fff;
    border-radius: 10px;
    box-shadow: 0 4px 12px rgba(0, 0, 0, 0.2);
    padding: 40px;
}

.Confirmmessage_title {
    color: #117865;
    font-size: 18px;
    font-weight: 700;
    margin-bottom: 20px;
}

.Confirmmessage_title1 {
    color: #333;
    font-size: 16px;
    margin-bottom: 20px;
}

.Confirmmessage_bts {
    width: 150px;
    height: 40px;
    line-height: 40px;
    text-align: center;
    background: linear-gradient(90deg, #117865 0%, #1b9881 100%);
    color: #fff;
    font-size: 16px;
    border: none;
    border-radius: 8px;
    cursor: pointer;
    float: right;
}