/* Tailwind 自定义工具类 */
@layer utilities {
    .content-auto {
        content-visibility: auto;
    }
    .text-shadow {
        text-shadow: 0 2px 4px rgba(0,0,0,0.1);
    }
    .bg-gradient-blue {
        background: linear-gradient(135deg, #165DFF 0%, #0F3ABA 100%);
    }
    .card-hover {
        transition: all 0.3s ease;
    }
    .card-hover:hover {
        transform: translateY(-5px);
        box-shadow: 0 10px 20px rgba(22, 93, 255, 0.1);
    }
    .step-active {
        background-color: #165DFF !important;
        color: white !important;
    }
    .result-card {
        border-left: 4px solid #165DFF;
    }
    .selected-option {
        border-color: #165DFF !important;
        background-color: #165DFF/5 !important;
    }
}

/* 产品卡片样式 */
.product-card {
    background: white;
    border-radius: 12px;
    box-shadow: 0 2px 12px rgba(0, 0, 0, 0.06);
    overflow: hidden;
    transition: all 0.3s ease;
}
.product-card-header {
    padding: 16px;
    border-bottom: 1px solid #f5f5f5;
}
.product-card-body {
    padding: 16px;
}
.product-card-footer {
    padding: 0 16px 16px;
}

/* 开通流程自定义样式 */
#process-style {
    .process-step.step-active {
        background-color: #165DFF/5;
        border-radius: 8px;
        padding: 8px;
    }
    .process-step:hover {
        transform: translateY(-3px);
        box-shadow: 0 4px 12px rgba(22, 93, 255, 0.08);
    }
}

/* 漂浮客服模块样式 */
.action {
    position: fixed;
    right: 20px;
    bottom: 20%;
    z-index: 99999;
    display: flex;
    flex-direction: column;
    gap: 8px;
    width: 50px;
    background: transparent;
}
.action-item {
    width: 50px;
    height: 50px;
    border-radius: 50%;
    background: #07c160;
    color: #fff;
    display: flex;
    align-items: center;
    justify-content: center;
    cursor: pointer;
    position: relative;
    text-decoration: none;
    box-shadow: 0 2px 8px rgba(0,0,0,0.1);
    transition: all 0.2s ease;
}
.action-item:hover {
    background: #06b058;
}
.action-item-icon {
    font-size: 22px;
    line-height: 1;
}
.action-item > span {
    position: absolute;
    right: 65px;
    top: 50%;
    transform: translateY(-50%);
    background: rgba(0,0,0,0.85);
    color: #fff;
    padding: 5px 12px;
    border-radius: 4px;
    font-size: 12px;
    white-space: nowrap;
    opacity: 0;
    visibility: hidden;
    z-index: 100000;
    pointer-events: none;
}
.action-item:hover > span {
    opacity: 1;
    visibility: visible;
}
.action-item-inner {
    position: absolute;
    right: 65px;
    top: 50%;
    transform: translateY(-50%);
    background: #fff;
    padding: 10px;
    border-radius: 8px;
    box-shadow: 0 4px 16px rgba(0,0,0,0.15);
    opacity: 0;
    visibility: hidden;
    z-index: 100000;
    width: 150px;
    height: 150px;
    display: flex;
    align-items: center;
    justify-content: center;
    border: 1px solid #f0f0f0;
    overflow: hidden;
}
.action-item:hover .action-item-inner {
    opacity: 1;
    visibility: visible;
}
.action-item-img {
    width: 100%;
    height: 100%;
    display: block;
    object-fit: contain;
    background: #fff;
}
.action-item:nth-child(1) { background: #12b7f5; }
.action-item:nth-child(3) { background: #7266ba; }
.action-item:nth-child(4) { background: #666; }
.j-top { 
    display: none;
    align-items: center;
    justify-content: center;
}