.left-pop {
    position: fixed;
    right: 20px;
    top: 240px;
    width: 54px;
    z-index: 9999;
}

@media (max-width: 1660px) {
    .left-pop {
        top: 140px;
    }
}

a {
    text-decoration: none !important;
}

@media (max-width: 768px) {
    .left-pop {
        display: none !important;
    }
}
.left-pop .online-advice {
    width: 54px;
    height: 146px;
    padding: 4px;
    margin-top: 16px;
    border-radius: 30px;
    background: linear-gradient(180deg, #0069EA 0%, #7BD6F2 100%);
    box-sizing: border-box;
    display: flex;
    flex-direction: column;
    align-items: center;
    cursor: pointer;
}

.left-pop .online-advice .avator-img{
    height: 40px;
    width: 40px;
    border-radius: 50px;
}

.left-pop .online-advice .warn-icon{
    position: relative;
    top: -40px;
    right: -16px;
    height: 12px;
    width: 12px;
    animation: warning-blink 1.5s ease-in-out infinite;
    filter: drop-shadow(0 0 2px rgba(255, 0, 0, 0.5));
}

@keyframes warning-blink {
    0% {
        opacity: 1;
        transform: scale(1);
    }
    50% {
        opacity: 0.4;
        transform: scale(1.1);
        filter: drop-shadow(0 0 4px rgba(255, 0, 0, 0.8));
    }
    100% {
        opacity: 1;
        transform: scale(1);
    }
}

.left-pop .online-advice span {
    position: relative;
    top: -4px;
    width: 16px;
    font-size: 18px;
    font-weight: 500;
    color: #FFFFFF;
    letter-spacing: 6px;
    line-height: 20px;
}

.left-pop .left-pop-function {
    display: flex;
    flex-direction: column;
    align-items: center;
    height: 208px;
    width: 54px;
    padding: 22px 0;
    border-radius: 50px;
    margin-bottom: 6px;
    background: #FFFFFF;
    box-shadow: 0px 4px 20px 0px rgba(195,207,220,0.5);
}

.left-pop .left-pop-function span{
    font-size: 11px;
    color: #484f59;
    cursor: pointer;
    line-height: 22px;
}

.left-pop .left-pop-function .left-pop-box{
    position: relative;
    margin-bottom: 10px;
    display: flex;
    flex-direction: column;
    align-items: center;
    transition: all 0.3s cubic-bezier(0.25, 0.46, 0.45, 0.94);
    transform-origin: center bottom;
}

/* 默认显示图标 */
.left-pop-function .default-icon {
    display: block;
    cursor: pointer;
    margin-bottom: 4px;
}

/* 初始隐藏hover图标 */
.left-pop-function .hover-icon {
    display: none;
    position: absolute;
    top: 0;
    cursor: pointer;
    margin-bottom: 6px;
    opacity: 0;
}

/* Hover状态切换 */
.left-pop-function .left-pop-box:hover {
    transform: scale(1.05);
    filter: drop-shadow(0 2px 6px rgba(0,105,234,0.15));
}
.left-pop-function .left-pop-box:hover .default-icon {
    opacity: 0;
}

.left-pop-function .left-pop-box:hover .hover-icon {
    display: block;
    opacity: 1;
}

.left-pop-function .left-pop-box:hover .left-pop-title{
    transform: scale(1.02);
    display: inline-block;
    color: #0069EA;
}
.left-pop .left-pop-function img {
    height: 16px;
    width: 16px;
}

.top-position {
    display: flex;
    flex-direction: row;
    justify-content: center;
    align-items: center;
    cursor: pointer;
    height: 64px;
    width: 64px;
    background: #FFFFFF;
    border-radius: 50px;
    box-shadow: 0px 4px 20px 0px rgba(195,207,220,0.5);
}

.top-position img {
    height: 32px;
    width: 32px;
}

.float-carousel {
    position: absolute;
    left: -136px;
    bottom: 15px;
    cursor: pointer;
    height: 110px;
    width: 128px;
}

/* Swiper样式覆盖 */
.questionSwiper {
    height: 100%;
    width: 96%;
}

.questionSwiper .swiper-slide {
    height: auto;
}

.carousel-item {
    display: flex;
    flex-direction: row;
    padding: 0 0 0 12px;
    align-items: center;
    width: 100%;
    height: 30px;
    margin: 0;
    box-sizing: border-box;
    border-radius: 50px;
    border: 1px solid #CEDAE6;
    opacity: 1;
    transform: scale(0.90);
    transition: all 0.3s ease;
    background: #fff;
}

.carousel-item img {
    height: 14px;
    width: 14px;
    margin-right: 8px;
}
.carousel-item span {
    font-size: 12px;
    color: #05172E;
}

.swiper-slide-active .carousel-item {
    opacity: 1;
    transform: scale(1);
    background: #D9E8FA;
}

.swiper-slide-active .carousel-item span{
    font-weight: 500;
}


.hover-pop {
    display: block;
    position: absolute;
    left: -300px;
    top: -20px;
    width: 278px;
    height: auto;
    padding: 12px 10px;
    border-radius: 8px;
    background: linear-gradient(180deg, #F1F8FE 0%, #FFFFFF 100%);
    box-shadow: 0px 4px 20px 0px rgba(195,207,220,0.5);
    opacity: 0;
    visibility: hidden;
    transition: all 0.3s ease;
    z-index: 100;
    pointer-events: auto;
}

.hover-pop::after {
    content: '';
    position: absolute;
    right: -8px;
    top: 20px;
    width: 0;
    height: 0;
    border-style: solid;
    border-width: 8px 0 8px 8px;
    border-color: transparent transparent transparent #F1F8FE;
}

.left-pop-box:hover .hover-pop {
    display: block;
    opacity: 1;
    visibility: visible;
    transform: translateX(10px);
}

.hover-pop:hover {
    display: block;
    opacity: 1;
    visibility: visible;
    transform: translateX(10px);
}

.hover-pop .pop-header {
    margin-bottom: 12px;
}

.hover-pop .pop-content {
    margin-bottom: 0;
}

.hover-pop .pop-header {
    display: flex;
    flex-direction: row;
    align-items: center;
    padding: 0 14px 10px 14px;
    margin-bottom: 9px;
    border-bottom: 1px solid #DBE1E8;
}

.hover-pop .pop-header img{
    height: 20px;
    width: 20px;
    margin-right: 10px;
}
.hover-pop .pop-header span{
    font-size: 14px;
    color: #0069EA;
    font-weight: 500;
    line-height: 22px;
}

.left-pop-box .pop-content  {
    display: flex;
    flex-direction: column;
    padding: 0 20px;
}

.left-pop-box .pop-content a {
    color: #0069EA;
    font-size: 14px;
    font-weight: 600;
    text-decoration: none;
    cursor: pointer;
}

.left-pop-box .pop-content div {
    margin-bottom: 10px;
}

.hover-pop .pop-content .pop-title {
    font-size: 12px;
    color: #05172E;
    font-weight: 500;
}

.hover-pop .pop-content .pop-desc {
    font-size: 14px;
    color: #333333;
    font-weight: 600;
}




