/* 解决方案页面专用样式 - 标签页风格 */
/* 使用 .case-container 命名空间避免样式冲突 */

/* ==================== 主内容区 ==================== */
.case-container {
    padding: 40px 0 0 0;
    background-color: #f7fafd;
}

/* 解决方案卡片网格 */
.solution-wrap {
  margin: 0 auto;
  display: grid;
  grid-template-columns: 260px 1fr;
  gap: 12px;
}

/* 左侧切换 */
.solution-tabs {
  min-height: 720px;
  padding: 36px 20px;
  border-radius: 14px;
  background: linear-gradient(180deg, #ffffff 0%, #f8fbff 100%);
  border: 1px solid #dcecff;
  box-shadow: 0 18px 45px rgba(30, 92, 170, .12);
}

.tab {
  height: 68px;
  padding: 0 18px;
  margin-bottom: 24px;
  display: flex;
  align-items: center;
  gap: 18px;
  border-radius: 14px;
  color: #1e3c70;
  font-size: 16px;
  font-weight: 500;
  cursor: pointer;
  position: relative;
}

.tab i {
  width: 42px;
  height: 42px;
  font-size: 18px;
  display: flex;
  align-items: center;
  justify-content: center;
  border-radius: 12px;
  background: #f7fafd;
  color: #1e3c70;
  transition: all 0.3s ease;
}

.tab b {
  font-weight: 500;
}

.tab em {
  margin-left: auto;
  font-style: normal;
  font-size: 26px;
  color: #a8b8ce;
}

.tab.active {
  color: #075bd8;
  background: linear-gradient(90deg, #eaf3ff 0%, #f8fbff 100%);
}

.tab.active i {
  background: linear-gradient(135deg, #075bd8, #0046cc);
  color: #fff;
  box-shadow: 0 6px 16px rgba(0, 98, 255, 0.35);
}

.tab.active::before {
  content: "";
  position: absolute;
  left: -20px;
  top: 0;
  width: 7px;
  height: 68px;
  border-radius: 8px;
  background: #075bd8;
}

/* 右侧主卡片 */
.solution-card {
  min-height: 720px;
  display: none;
  grid-template-columns: 48% 52%;
  border-radius: 14px;
  overflow: hidden;
  position: relative;
 background: url("/skin/keliyue/img/case-bj.jpg") no-repeat center;
 background-size: cover;
  box-shadow: 0 18px 45px rgba(30, 92, 170, .12);
}

.solution-card.active {
  display: grid;
  animation: fadeSlideIn 0.5s ease;
}

@keyframes fadeSlideIn {
  from {
    opacity: 0;
    transform: translateX(20px);
  }
  to {
    opacity: 1;
    transform: translateX(0);
  }
}

/* 左侧文字 */
.solution-info {
  padding: 52px 45px 45px 60px;
  position: relative;
  z-index: 3;
}

.solution-info h1 {
  font-size:25px;
  line-height: 1.2;
  color: #071f54;
  font-weight:500;
  letter-spacing: 1px;
}

.title-line {
  width: 72px;
  height: 5px;
  margin: 22px 0 32px;
  border-radius: 20px;
  background: linear-gradient(90deg, rgba(7, 91, 216, 1), transparent);
}

.info-block {
  display: grid;
  grid-template-columns: 58px 1fr;
  gap: 18px;
  padding-bottom: 24px;
  margin-bottom: 22px;
  border-bottom: 1px solid #d6e5f7;
}

.info-block:last-of-type {
  border-bottom: none;
}

.info-icon {
  width: 50px;
  height: 50px;
  border-radius: 16px;
  background: linear-gradient(180deg, #eef6ff 0%, #ffffff 100%);
  color: #075bd8;
  box-shadow: 0 10px 25px rgba(0, 98, 255, .12);
  display: flex;
  align-items: center;
  justify-content: center;
}

.info-block:nth-child(1) .info-icon {
  color: #ef4444;
  background: linear-gradient(180deg, #fee2e2 0%, #fff 100%);
  box-shadow: 0 10px 25px rgba(239, 68, 68, .12);
}

.info-block:nth-child(2) .info-icon {
  color: #075bd8;
}

.info-block:nth-child(3) .info-icon {
  color: #f59e0b;
  background: linear-gradient(180deg, #fef3c7 0%, #fff 100%);
  box-shadow: 0 10px 25px rgba(245, 158, 11, .12);
}

.info-icon i {
  font-size: 22px;
}

.info-block h3 {
  font-size: 16px;
  color: #071f54;
  margin-bottom: 12px;
}

.info-block ul {
  padding-left: 20px;
}

.info-block li {
  font-size: 14px;
  line-height: 1.7;
  margin-bottom: 5px;
  color: #18386f;
}

.info-block li::marker {
  color: #075bd8;
}

.consult-btn {
  width: 160px;
  height: 48px;
  border-radius: 9px;
  background: linear-gradient(135deg, #086cf5, #0046c0);
  color: #fff;
  font-size: 18px;
  font-weight: 500;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 10px;
  text-decoration: none;
  box-shadow: 0 14px 30px rgba(0, 92, 255, .28);
  transition: color 0.3s ease, transform 0.3s ease;
}
.consult-btn:hover{
    transform: translateY(-3px);
    box-shadow: 0 18px 35px rgba(0, 92, 255, .35);
}
/* 右侧背景和设备 */
.solution-visual {
  position: relative;
  overflow: hidden;
}



.device-img {
  position: absolute;
  right: 75px;
  bottom:75px;
  width: 400px;
  z-index: 3;
  filter: drop-shadow(0 30px 42px rgba(35, 76, 140, .22));
}


/* ==================== 咨询转化路径 ==================== */
.consultation-section {
      margin-top: 40px;
      background: linear-gradient(180deg, #eaf4ff 0%, #f7fbff 100%);
      position:relative}

.consultation-section::after{
    position: absolute;
    right: 0;
    top: 30px;
    width: 300px;
    height: 400px;
    opacity: 0.55;
    background-image:
        radial-gradient(circle, rgba(75, 147, 233, 0.2) 2px, transparent 3px);
    background-size: 18px 18px;
    content: "";}


.consultation-wrapper {
    max-width: 1400px;
    margin: 0 auto;
    padding:60px 0px;
}

.consultation-title {
    font-size: 32px;
    font-weight:500;
    color: var(--text-color);
    text-align: center;
    margin-bottom: 50px;
}

        /* 咨询步骤 */
        .consultation-steps {
        padding:0;
        background:transition;
        display: flex;
        justify-content: space-between;
        align-items: flex-start;
        position: relative;
        }
        .consultation-steps::before {
        content: '';
        position: absolute;
        top: 38px;
        left: 15%;
        right: 15%;
        height: 3px;
        background: linear-gradient(to right, #e6f0ff, var(--primary-color));
        z-index: 0;
        }
        .consultation-steps .step-item {
        flex: 1;
        text-align: center;
        position: relative;
        z-index: 1;
        }
        .step-icon {
        width: 80px;
        height: 80px;
        background: white;
        border-radius: 50%;
        display: flex;
        align-items: center;
        justify-content: center;
        font-size: 36px;
        color: var(--primary-color);
        margin: 0 auto 20px;
        box-shadow: 0 4px 15px rgba(0,0,0,0.1);
        transition: all 0.3s ease;
        position: relative;
        border: 3px solid var(--primary-color);
        }
        .consultation-steps .step-item:hover .step-icon {
        transform: scale(1.1);
        box-shadow: 0 8px 25px rgba(22, 119, 255, 0.3);
        background: var(--primary-color);
        color: white;
        }
        .step-icon::after {
        content: '';
        position: absolute;
        top: -8px;
        left: -8px;
        right: -8px;
        bottom: -8px;
        border: 2px solid rgba(255,255,255,0.5);
        border-radius: 50%;
        }
        .step-content {
        padding: 0 10px;
        }
        .consultation-steps .step-title {
        color: var(--text-color);
        font-size: 20px;
        margin-bottom: 10px;
        font-weight: 500;
        }
        .consultation-steps .step-title b{
            font-size: 30px;
            color: var(--blue);
        }
        .consultation-steps .step-desc {
        color: #1e3c70;
        font-size: 14px;
        line-height: 1.6;
        }
        .step-arrow {
        position: absolute;
        right: -30px;
        top: 30px;
        width: 60px;
        height: 20px;
        display: flex;
        align-items: center;
        justify-content: center;
        font-size: 24px;
        color: var(--primary-color);
        z-index: 1;
        opacity: 0.5;
        }
/* 获取帮助横幅 */


        .help-banner-section {
            background: url('/skin/keliyue/img/zixun-bj.jpg') center no-repeat;
            background-size:cover;
            padding: 60px 10%;
            position: relative;
            overflow: hidden;
            
        }

        .help-banner-content {
            display: flex;
            justify-content: space-between;
            align-items: center;
            position: relative;
            z-index: 1;
            max-width: 1400px;
            margin: 0 auto;
            padding:0 40px ;
        }
        .help-banner-text {
            flex: 1;
           
        }
        .help-banner-text h2 {
            color: white;
            font-size: 32px;
            margin-bottom: 25px;
            position: relative;
        }
         .help-banner-text h2::after {
                content: '';
                position: absolute;
                bottom: -8px;
                left: 0;
                width: 80px;
                height: 3px;
                background: linear-gradient(90deg, rgba(255, 255, 255, 0.8), transparent);
                border-radius: 2px;
            }
       
         .help-banner-text h2 span{
             color: #40a9ff;
         }
        .help-btn {
            display: inline-flex;
            align-items: center;
            justify-content: center;
            gap: 10px;
            background: #fff;
            color:#fff;
            padding: 12px 28px;
            border-radius: 50px;
            text-decoration: none;
            font-size: 18px;
            font-weight: bold;
            color:var(--blue) ;
            transition: all 0.3s ease;
            box-shadow: 0 4px 20px rgba(0,0,0,0.2);
            border:2px solid var(--blue);
        }
        .help-btn:hover {
            transform: translateY(-3px);
            box-shadow: 0 8px 30px rgba(0,0,0,0.3);
            background: var(--blue);
            color:#fff ;
        }
        .help-btn i {
            font-size: 22px;
        }
        
        .cta-main-call {
            font-size: 16px;
            font-weight: 600;
            color: #fff;
            border: none;
            padding: 14px 28px;
            background: linear-gradient(135deg, #F59E0B 0%, #D97706 50%, #F59E0B 100%);
            background-size: 200% 100%;
            box-shadow: 0 4px 20px rgba(245, 158, 11, 0.4);
            animation: ctaCallPulse 2s ease-in-out infinite;
            position: relative;
            overflow: hidden;
            display: inline-flex;
            align-items: center;
            justify-content: center;
            border-radius: 50px;
            margin-left: 20px;
        }
        
        .cta-main-call::before {
            content: '';
            position: absolute;
            top: 0;
            left: -100%;
            width: 100%;
            height: 100%;
            background: linear-gradient(90deg, transparent, rgba(255, 255, 255, 0.3), transparent);
            animation: ctaShine 3s ease-in-out infinite;
        }
        
        @keyframes ctaCallPulse {
        
            0%,
            100% {
                transform: scale(1);
                box-shadow: 0 4px 20px rgba(245, 158, 11, 0.4);
            }
        
            50% {
                transform: scale(1.05);
                box-shadow: 0 8px 30px rgba(245, 158, 11, 0.6);
            }
        }
        
        @keyframes ctaShine {
            0% {
                left: -100%;
            }
        
            50%,
            100% {
                left: 100%;
            }
        }
/* ==================== 联系信息模态框 ==================== */
.contact-modal {
    position: fixed;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    z-index: 9999;
    display: none;
    align-items: center;
    justify-content: center;
    padding: 20px;
}

.contact-modal.active {
    display: flex;
}

.contact-modal-overlay {
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: rgba(0, 0, 0, 0.5);
    backdrop-filter: blur(4px);
}

.contact-modal-content {
    position: relative;
    border-radius: 16px;
    box-shadow: 0 20px 60px rgba(0, 0, 0, 0.3);
    animation: modalSlideIn 0.3s ease;
    width: 400px;
    height: 556px;
    overflow: hidden;
}

@keyframes modalSlideIn {
    from {
        opacity: 0;
        transform: translateY(-20px);
    }
    to {
        opacity: 1;
        transform: translateY(0);
    }
}

.contact-modal-header {
    padding: 0;
    border-bottom: 0;
    display: flex;
    justify-content: space-between;
    align-items: center;
}

.contact-modal-header h4 {
    font-size: 20px;
    font-weight: 700;
    color: var(--text-color);
    margin: 0;
}

.btn-close {
    position: absolute;
    right:10px;
    top:10px;
    background: none;
    border: none;
    padding: 4px;
    cursor: pointer;
    color: var(--text-light);
    transition: var(--transition);
    display: flex;
    align-items: center;
    justify-content: center;
    border-radius: 4px;
    font-size:18px;
}

.btn-close:hover {
    background-color: var(--bg-light);
    color: var(--primary-color);
}

.contact-modal-body {
    padding: 0px;
    width: 400px;
    height: 556px;
    overflow: hidden;
}

.lxwm-img{border-radius:10px; 
            width:400px; 
            height:556px;
            }
            
 .lxwm-img img{
            width:400px; 
            height:556px;
            image-rendering: pixelated;
 }           
.contact-modal-body .contact-item {
    display: flex;
    align-items: center;
    gap: 8px;
    padding: 12px 0;
    border-bottom: 1px solid var(--border-color);
}

.contact-modal-body .contact-item:last-of-type {
    border-bottom: none;
}

.contact-modal-body .contact-label {
    font-size: 14px;
    color: var(--text-light);
    font-weight: 500;
    min-width: 70px;
}

.contact-modal-body .contact-value {
    font-size: 15px;
    color: var(--text-color);
    font-weight: 600;
}

.contact-modal-body .contact-link {
    color: var(--primary-color);
    text-decoration: none;
    transition: var(--transition);
}

.contact-modal-body .contact-link:hover {
    color: var(--primary-dark);
    text-decoration: underline;
}

.contact-modal-body .qrcode-section {
    margin-top: 24px;
    text-align: center;
    padding: 20px;
}

.contact-modal-body .qrcode-img {
    width: 180px;
    height: 180px;
    border-radius: 8px;
    box-shadow: 0 2px 8px rgba(0, 0, 0, 0.1);
}

.contact-modal-body .qrcode-text {
    margin: 12px 0 0;
    font-size: 14px;
    color: var(--text-light);
}

/* ==================== 响应式设计 ==================== */

/* 平板端 (768px - 1199px) */
@media (max-width: 1199px) {
    .case-intro-title {
        font-size: 28px;
    }
    
    .solution-panel-left {
        padding: 40px 30px;
    }
    
    .solution-panel-title {
        font-size: 24px;
    }
    
    .solution-panel-right {
        width: 45%;
        padding: 30px;
    }
    
}

/* 移动端 (<768px) */
@media (max-width: 767px) {
     .solution-grid {
        grid-template-columns: 1fr;
        gap: 20px;
        margin-bottom: 40px;
    }

    .solution-card-header {
        padding: 28px 24px 20px;
    }

    .solution-icon {
        width: 68px;
        height: 68px;
        margin-bottom: 16px;
    }

    .solution-icon i {
        font-size: 26px;
    }

    .solution-card-title {
        font-size: 18px;
    }

    .solution-card-subtitle {
        font-size: 14px;
    }

    .solution-card-body {
        padding: 0 24px 20px;
    }

    .solution-section {
        padding: 16px;
    }

    .solution-section-title {
        font-size: 14px;
    }

    .solution-list li {
        font-size: 13px;
    }

    .solution-card-footer {
        flex-direction: row;
        gap: 12px;
        padding: 18px 24px;
    }

    .solution-btn {
        flex: 1;
        justify-content: center;
    }

    .solution-link {
        flex: 1;
        justify-content: center;
    }

    .process-section {
        padding: 32px 20px;
        border-radius: 24px;
    }

    .section-title {
        font-size: 24px;
        margin-bottom: 36px;
    }

    .case-container {
        padding:20px 0 0 0;
    }
    
    .case-intro {
        margin-bottom: 30px;
    }
    
    .case-intro-title {
        font-size: 24px;
        margin-bottom: 12px;
    }
    
    .case-intro-desc {
        font-size: 14px;
    }
    
    /* 标签页导航移动端 - 显示切换按钮 */
    .tab-nav-btn {
        display: flex;
        align-items: center;
        justify-content: center;
    }
    
    .solutions-tabs-nav {
        overflow-x: auto;
        -webkit-overflow-scrolling: touch;
        scroll-behavior: smooth;
    }
    
    .solution-tab {
        flex: 0 0 auto;
        min-width: 120px;
        padding: 14px 20px;
        font-size: 14px;
    }
    
    /* 方案面板移动端 - 垂直布局 */
    .solution-panel-layout {
        flex-direction: column;
        min-height: auto;
    }
    
    .solution-panel-left {
        padding: 30px 20px;
    }
    
    .solution-panel-title {
        font-size: 22px;
        margin-bottom: 25px;
        padding-bottom: 15px;
    }
    
    .solution-panel-sections {
        gap: 24px;
    }
    
    .section-block-title {
        font-size: 16px;
    }
    
    .section-block-list li {
        font-size: 13px;
    }
    
    .btn-panel-contact {
        width: 100%;
        text-align: center;
        padding: 12px 24px;
        font-size: 14px;
    }
    
    .solution-panel-right {
        width: 100%;
        padding: 30px 20px;
        background-size: 120% auto;
    }
    
    .solution-panel-right img {
        max-width: 100%;
    }
    
    /* 咨询流程移动端 */
    .consultation-section {
        margin-top: 40px;
        padding: 40px 0;
    }
    
    .consultation-wrapper {
        padding: 0 20px;
    }
    
    .consultation-title {
        font-size: 24px;
        margin-bottom: 30px;
    }
    
    .consultation-steps {
        display: flex;
        flex-direction: row;
        gap: 20px;
        flex-wrap: wrap;
        
    }

    .step-item {
      flex: 0 0 calc(50% - 10px) !important;
      box-sizing: border-box;
    }
    
    .step-number {
        font-size: 36px;
        margin-bottom: 10px;
    }
    
    .step-title {
        font-size: 16px;
    }
    
    .step-desc {
        font-size: 12px;
    }
    
    .step-arrow {
        transform: rotate(90deg);
        margin: 0;
    }
    
    .consultation-cta {
        padding: 30px 20px;
    }
    
    .cta-text {
        font-size: 22px;
        margin-bottom: 20px;
    }
    
    .btn-consultation {
        padding: 14px 40px;
        font-size: 15px;
    }
    
    /* 模态框移动端优化 */
    .contact-modal {
        padding: 0;
        align-items: flex-end;
    }
    
    .contact-modal-content {
        max-width: 100%;
        border-radius: 16px 16px 0 0;
        animation: modalSlideUp 0.3s ease;
        position: relative;
    }
    
    @keyframes modalSlideUp {
        from {
            opacity: 0;
            transform: translateY(100%);
        }
        to {
            opacity: 1;
            transform: translateY(0);
        }
    }
    
    .contact-modal-body .qrcode-img {
        width: 160px;
        height: 160px;
    }
    
    .help-banner-section {
        padding: 40px 15px; /* 手机边距缩小 */
    }
    .help-banner-content {
        display: block; /* 手机改为上下排列，不左右 */
        padding: 0;
        text-align: center; /* 文字居中 */
    }
    .help-banner-text h2 {
        font-size: 22px; /* 标题缩小 */
        margin-bottom: 20px;
    }
    .help-banner-text h2::after {
        left: 50%;
        transform: translateX(-50%); /* 手机下划线居中 */
    }
    .consultation-steps::before{
        display: none;
    }
    .step-arrow{
       display: none; 
    }
     .consultation-steps{
      align-items: center;

    }
    /* 按钮手机样式 */
    .help-btn,
    .cta-main-call {
        width: 100%;
        margin: 0 0 15px 0;
        padding: 12px 20px;
        font-size: 16px;
    }
}

/* 补充你缺失的动画 */
@keyframes ctaCallPulse {
    0% { transform: scale(1); }
    50% { transform: scale(1.05); }
    100% { transform: scale(1); }
}
@keyframes ctaShine {
    100% { left: 150%; }
}

/* 超小屏幕 (<480px) */
@media (max-width: 479px) {
    .case-intro-title {
        font-size: 20px;
    }
    
    .solution-panel-title {
        font-size: 20px;
    }
    
    .solution-tab {
        min-width: 100px;
        padding: 12px 16px;
        font-size: 13px;
    }
     .consultation-steps::before{
        display: none;
    }
    .consultation-steps{
      align-items: center;

    }
    .step-arrow{
       display: none; 
    }
}
/* 响应式 */
@media (max-width: 1500px) {
  .breadcrumb,
  .solution-wrap {
    width: 92%;
  }
}

@media (max-width: 1100px) {
  .solution-wrap {
    grid-template-columns: 1fr;
  }

  .solution-tabs {
    min-height: auto;
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 10px;
    padding: 18px;
   
  }

  .tab {
    height: 78px;
    margin: 0;
    font-size: 16px;
  }

  .tab.active::before {
    display: none;
  }

  .solution-card {
    grid-template-columns: 1fr;
  }

  .solution-visual {
    min-height: 460px;
  }
}

/* 响应式 - 平板 */
@media (max-width: 1024px) {
    .solution-wrap {
        width: 100%;
        grid-template-columns: 1fr;
        padding: 0 20px;
        gap: 20px;
    }

    .solution-tabs {
        min-height: auto;
        padding: 16px;
        display: flex;
        flex-direction: row;
        overflow-x: auto;
        gap: 10px;
        border-radius: 14px;
    }

    .tab {
        min-height: auto;
        height: auto;
        padding: 12px 16px;
        margin-bottom: 0;
        flex-shrink: 0;
    }

    .tab::before {
        display: none;
    }

    .tab i {
        width: 36px;
        height: 36px;
        font-size: 15px;
    }

    .tab b {
        font-size: 14px;
    }

    .tab em {
        display: none;
    }

    .solution-card {
        min-height: auto;
        grid-template-columns: 1fr;
    }

    .solution-card.active {
        display: grid;
    }

    .solution-info {
        padding: 28px 24px;
    }

    .solution-info h1 {
        font-size: 28px;
    }

    .title-line {
        width: 60px;
        margin: 16px 0 28px;
    }

    .info-block {
        gap: 14px;
        padding-bottom: 18px;
        margin-bottom: 18px;
    }

    .info-icon {
        width: 44px;
        height: 44px;
    }

    .info-icon i {
        font-size: 18px;
    }

    .info-block h3 {
        font-size: 18px;
    }

    .info-block ul {
        padding-left: 16px;
    }

    .info-block ul li {
        font-size: 14px;
        line-height: 1.7;
    }

    .consult-btn {
        padding: 14px 28px;
        font-size: 15px;
    }

    .solution-visual {
        min-height: 280px;
        padding: 30px;
    }

    .device-img {
        max-height: 260px;
    }
}

/* 响应式 - 手机 */
@media (max-width: 768px) {
    .case-main {
        padding: 30px 0 60px;
    }

    .solution-wrap {
        padding: 0 15px;
        gap: 16px;
    }

    .solution-tabs {
        padding: 12px;
        gap: 8px;
        border-radius: 12px;
         background: none !important;
         box-shadow: none;
         border: 0;
         padding: 0;
    }

    .tab {
        padding: 10px 12px;
        gap: 10px;
        border-radius: 10px;
    }

    .tab i {
        width: 32px;
        height: 32px;
        font-size: 14px;
        border-radius: 8px;
        display: none;
    }

    .tab b {
        font-size: 13px;
    }

    .solution-card {
        border-radius: 14px;
        display: none;
        position: relative;
        min-height: auto;
    }

    .solution-card.active {
        display: block;
    }

    .solution-info {
        padding: 16px 14px;
        padding-bottom: 50px;
    }

    .solution-info h1 {
        font-size: 18px;
    }

    .title-line {
        width: 40px;
        height: 3px;
        margin: 8px 0 14px;
    }

    .info-block {
        gap: 8px;
        padding-bottom: 10px;
        margin-bottom: 10px;
        border-bottom: 1px solid #e8ecf0;
    }

    .info-block:last-of-type {
        margin-bottom: 14px;
    }

    .info-icon {
        width: 32px;
        height: 32px;
        border-radius: 10px;
    }

    .info-icon i {
        font-size: 14px;
    }

    .info-block h3 {
        font-size: 14px;
        margin-bottom: 6px;
    }

    .info-block ul {
        padding-left: 12px;
    }

    .info-block ul li {
        font-size: 12px;
        line-height: 1.5;
        margin-bottom: 2px;
    }

    .consult-btn {
        padding: 10px 18px;
        font-size: 13px;
        border-radius: 8px;
    }

    .solution-visual {
        position: absolute;
        top: 0;
        right: 0;
        bottom: 0;
        width: 200px;
        display: flex;
        align-items: flex-end;
        justify-content:flex-end;
        background-size: cover;
        z-index: 10;
        padding: 0;
    }

    .solution-visual .visual-bg,
    .solution-visual .tech-circle,
    .solution-visual .tech-plate {
        display: none;
    }

    .device-img {
        position: relative;
        max-height: 140px;
        max-width: 140px;
        width: auto;
        height: auto;
        right: 0px;
        bottom: 50px;
    }
}

