/* pl_service2 客服组件样式 */
.pl_service2 {
    position: fixed;
    right: 20px;
    bottom: 20px;
    z-index: 9999;
}

.pl_service2 .service_item {
    position: relative;
    margin-bottom: 10px;
    width: 40px;
    height: 40px;
    display: flex;
    align-items: center;
    justify-content: center;
    /* background: rgba(255, 255, 255, 0.95); */
    background: rgba(38,38,38,.8);
    border-radius: 8px;
    /* box-shadow: 0 4px 12px rgba(0, 0, 0, 0.15); */
    transition: all 0.3s ease;
    cursor: pointer;
}

.pl_service2 .service_item a {
    display: flex;
    align-items: center;
    justify-content: center;
    width: 100%;
    height: 100%;
    text-decoration: none;
}

.pl_service2 .service_item:hover {
    background-color: #d19a5f !important;
    transform: translateY(-2px);
    /* box-shadow: 0 6px 20px rgba(0, 0, 0, 0.2); */
}

.pl_service2 .service_item:hover .service_value_con {
    width: 260px !important;
    opacity: 1;
    visibility: visible;
}

.pl_service2 .service_icon {
    display: flex;
    align-items: center;
    justify-content: center;
    width: 30px;
    height: 30px;
    margin: 0;
    padding: 0;
}

.pl_service2 .service_icon svg {
    width: 20px;
    height: 20px;
    fill: #666;
    transition: all 0.3s ease;
}

.pl_service2 .service_item:hover .service_icon svg {
    fill: #fff;
}

.pl_service2 .service_value_con {
    position: absolute;
    right: 70px;
    top: 50%;
    transform: translateY(-50%);
    width: 0;
    opacity: 0;
    visibility: hidden;
    transition: all 0.3s ease;
    overflow: hidden;
}

.pl_service2 .service_value {
    background-color: #d19a5f !important;
    color: #fff;
    padding: 15px;
    border-radius: 6px;
    min-width: 200px;
    box-shadow: 0 2px 8px rgba(0, 0, 0, 0.1);
}

.pl_service2 .service_value::after {
    content: '';
    position: absolute;
    right: -8px;
    top: 50%;
    transform: translateY(-50%);
    width: 0;
    height: 0;
    border-left: 8px solid #d19a5f !important;
    border-top: 8px solid transparent;
    border-bottom: 8px solid transparent;
}

.pl_service2 .service_value p {
    margin: 5px 0;
    font-size: 14px;
    line-height: 1.4;
}

.pl_service2 .service_value a {
    color: #fff;
    text-decoration: none;
    transition: color 0.3s ease;
}

.pl_service2 .service_value a:hover {
    color: #f0f0f0;
}

.pl_service2 .service_value .iconSpan {
    display: inline-block;
    margin-right: 8px;
    vertical-align: middle;
}

.pl_service2 .service_value .iconSpan svg {
    width: 16px;
    height: 16px;
    fill: #fff;
}

.pl_service2 .service_img {
    display: none;
    position: absolute;
    right: 70px;
    top: 50%;
    transform: translateY(-50%);
    background: #fff;
    padding: 10px;
    border-radius: 6px;
    box-shadow: 0 2px 8px rgba(0, 0, 0, 0.1);
}

.pl_service2 .service_item:hover .service_img {
    display: block;
}

.pl_service2 .service_img img {
    width: 120px;
    height: 120px;
    border-radius: 4px;
}

/* 响应式设计 */
@media (max-width: 768px) {
    .pl_service2 {
        right: 10px;
        bottom: 10px;
    }
    
    .pl_service2 .service_item:hover .service_value_con {
        width: 220px !important;
    }
    
    .pl_service2 .service_value {
        min-width: 180px;
        padding: 10px;
    }
}