/* 头部样式开始 */
.qcy-header,
  .qcy-header * {
    box-sizing: border-box;
  }

  .qcy-header {
    width: 100%;
    height: 64px;
    background: #ffffff;
    border-bottom: 1px solid #eef2f7;
    font-family: -apple-system, BlinkMacSystemFont, "Segoe UI", "PingFang SC", "Hiragino Sans GB", "Microsoft YaHei", Arial, sans-serif;
    position: sticky;
    top: 0;
    z-index: 1000;
  }
  
  .nav-sticky {
      box-shadow: 0 5px 20px rgba(101, 103, 107, 0.3);
  }

  .qcy-header a {
    color: inherit;
    text-decoration: none;
  }

  .qcy-header-inner {
    width: 1344px;
    height: 64px;
    margin: 0 auto;
    display: flex;
    align-items: center;
    justify-content: space-between;
  }

  .qcy-header-logo {
    display: flex;
    align-items: center;
    gap: 12px;
    width: 190px;
    flex: 0 0 auto;
  }

  .qcy-header-logo-mark {
    width: 39px;
    height: 39px;
    border-radius: 10px;
    background: linear-gradient(180deg, #2f73ff 0%, #2458e5 100%);
    box-shadow: 0 7px 14px rgba(37, 99, 235, .22);
    position: relative;
    flex: 0 0 auto;
  }

  .qcy-header-logo-mark::before {
    content: "";
    position: absolute;
    left: 10px;
    top: 11px;
    width: 18px;
    height: 14px;
    border: 2px solid #ffffff;
    border-radius: 3px;
  }

  .qcy-header-logo-mark::after {
    content: "";
    position: absolute;
    left: 15px;
    top: 16px;
    width: 9px;
    height: 2px;
    border-radius: 2px;
    background: #ffffff;
  }

  .qcy-header-logo-text {
    font-size: 23px;
    line-height: 1;
    font-weight: 900;
    letter-spacing: -1px;
    color: #101a34;
    white-space: nowrap;
  }

  .qcy-header-logo-text span {
    color: #2364e9;
  }

  .qcy-header-menu {
    flex: 1;
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 36px;
    height: 64px;
    margin: 0 30px 0 10px;
  }

  .qcy-a {
    height: 64px;
    display: inline-flex;
    align-items: center;
    color: #2f3d58;
    font-size: 14px;
    font-weight: 600;
    white-space: nowrap;
    transition: color .2s ease;
    position: relative
  }

  .qcy-a:hover,
  .qcy-a.qcy-active {
    color: #2364e9;
  }

  .qcy-a::before {
    content: "";
    position: absolute;
    left: 0;
    bottom: 4px;
    width: 0;
    height: 3px;
    border-radius: 2px;
    background: #5a9aff;
    transition: width .25s ease;
    opacity: 0;
  }

  .qcy-a:hover::before {
      width: 22px;
      opacity: .7;
  }

  .qcy-a.qcy-active:hover::before {
      width: 0;
      opacity: 0;
  }

  .qcy-a.qcy-active::after {
    content: "";
    position: absolute;
    left: 50%;
    bottom: 4px;
    width: 18px;
    height: 3px;
    border-radius: 2px;
    background: #2364e9;
    transform: translateX(-50%);
  }

  .qcy-a.qcy-danger {
    color: #ff2828;
  }
  .qcy-header-actions {
  display: flex;
  align-items: center;
  gap: 12px;
  flex: 0 0 auto;
}

.qcy-header-btn {
  height: 40px;
  border-radius: 22px;
  padding: 0 22px;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 8px;
  font-size: 15px;
  line-height: 1;
  white-space: nowrap;
  transition: all .2s ease;
  border: 1px solid transparent;
}

.qcy-header-btn:hover {
  transform: translateY(-1px);
  opacity: .96;
}

.qcy-header-login {
  min-width: 112px;
  background: #ffffff;
  color: #2563eb;
  font-weight: 600;
  border: 1.5px solid #2563eb;
  box-shadow: 0 4px 12px rgba(59, 111, 255, 0.08);
}

.qcy-header-login:hover {
  background: #f8fbff;
  color: #2f63f6;
  border-color: #2f63f6;
}

.qcy-header-query {
  min-width: 170px;
  background: linear-gradient(135deg, #5f8dff 0%, #4a78ff 45%, #3f6fff 100%);
  color: #ffffff;
  font-weight: 700;
  border: none;
  box-shadow: 0 8px 20px rgba(63, 111, 255, 0.26);
}

.qcy-header-query:hover {
  box-shadow: 0 10px 24px rgba(63, 111, 255, 0.32);
}

.qcy-header-search-icon {
  width: 14px;
  height: 14px;
  border: 2px solid #ffffff;
  border-radius: 50%;
  display: inline-block;
  position: relative;
  flex: 0 0 auto;
  
}

.qcy-header-search-icon::after {
  content: "";
  position: absolute;
  width: 7px;
  height: 2px;
  border-radius: 2px;
  background: #ffffff;
  right: -6px;
  bottom: -3px;
  transform: rotate(45deg);
}

  @media (max-width: 1360px) {
    .qcy-header-inner {
      width: 1180px;
    }

    .qcy-header-menu {
      gap: 28px;
    }
  }

  @media (max-width: 1200px) {
    .qcy-header {
      min-width: 1180px;
    }

    .qcy-header-inner {
      width: 1180px;
    }
  }
  /* 头部样式结束 */

  /* 脚页样式开始 */
.qcy-footer,
  .qcy-footer * {
    box-sizing: border-box;
  }

  .qcy-footer {
    width: 100%;
    background: #0c162a;
    color: #9eb0cc;
    padding: 69px 0 22px;
    font-family: -apple-system, BlinkMacSystemFont, "Segoe UI", "PingFang SC", "Hiragino Sans GB", "Microsoft YaHei", Arial, sans-serif;
  }

  .qcy-footer a {
    color: inherit;
    text-decoration: none;
  }

  .qcy-footer-container {
    width: 1344px;
    margin: 0 auto;
  }

  .qcy-footer-top {
    display: grid;
    grid-template-columns: 300px 1fr 1fr 1fr 1fr 190px;
    gap: 38px;
    align-items: start;
  }

  .qcy-footer-logo {
    display: flex;
    align-items: center;
    gap: 12px;
    margin-bottom: 27px;
  }

  .qcy-footer-logo-mark {
    width: 41px;
    height: 41px;
    border-radius: 11px;
    background: linear-gradient(180deg, #2e73ff, #2458e5);
    box-shadow: 0 8px 16px rgba(37, 99, 235, .22);
    position: relative;
    flex: 0 0 auto;
  }

  .qcy-footer-logo-mark::before {
    content: "";
    position: absolute;
    left: 12px;
    top: 12px;
    width: 17px;
    height: 13px;
    border: 2px solid #fff;
    border-radius: 3px;
  }

  .qcy-footer-logo-mark::after {
    content: "";
    position: absolute;
    left: 16px;
    top: 17px;
    width: 9px;
    height: 2px;
    border-radius: 2px;
    background: #fff;
  }

  .qcy-footer-logo-text {
    font-size: 28px;
    font-weight: 900;
    letter-spacing: -1px;
    color: #fff;
    white-space: nowrap;
    line-height: 1;
  }

  .qcy-footer-company p {
    margin: 0 0 19px;
    font-size: 16px;
    line-height: 1.2;
    color: #a8bad5;
    white-space: nowrap;
  }

  .qcy-footer-col h4 {
    font-size: 18px;
    line-height: 1.2;
    color: #fff;
    margin: 7px 0 25px;
    font-weight: 900;
  }

  .qcy-footer-col a {
    display: block;
    margin: 0 0 19px;
    font-size: 16px;
    line-height: 1.2;
    color: #a8bad5;
    cursor: pointer;
    transition: color .2s ease;
  }

  .qcy-footer-col a:hover {
    color: #ffffff;
  }

  .qcy-footer-qr {
    display: flex;
    flex-direction: column;
    align-items: center;
  }

  .qcy-footer-qr-box {
    width: 137px;
    height: 137px;
    border-radius: 11px;
    background: #fff;
    position: relative;
    overflow: hidden;
  }

  .qcy-footer-qr-eye {
    position: absolute;
    width: 31px;
    height: 31px;
    border: 8px solid #1b2944;
    border-radius: 4px;
    background: #fff;
    z-index: 2;
  }

  .qcy-footer-qr-eye.qcy-eye-1 {
    left: 21px;
    top: 21px;
  }

  .qcy-footer-qr-eye.qcy-eye-2 {
    right: 21px;
    top: 21px;
  }

  .qcy-footer-qr-eye.qcy-eye-3 {
    left: 21px;
    bottom: 21px;
  }

  .qcy-footer-qr-core {
    position: absolute;
    left: 55px;
    top: 55px;
    width: 29px;
    height: 29px;
    border-radius: 7px;
    background: #2563eb;
    z-index: 2;
  }

  .qcy-footer-qr-core::before {
    content: "";
    position: absolute;
    left: 8px;
    top: 8px;
    width: 13px;
    height: 10px;
    border: 2px solid #fff;
    border-radius: 2px;
  }

  .qcy-footer-qr-btn {
    margin-top: 18px;
    border-radius: 32px;
    background: #2563eb;
    color: #fff;
    display: flex;
    align-items: center;
    justify-content: center;
    text-align: center;
    line-height: 1.35;
    font-size: 16px;
    font-weight: 700;
    box-shadow: 0 12px 25px rgba(37, 99, 235, .24);
    padding: 6px 12px;
  }

  .qcy-footer-line {
    height: 1px;
    background: #1b2944;
    margin: 51px 0 27px;
  }

  .qcy-footer-support {
    text-align: center;
    color: #8091ad;
    font-size: 14px;
    line-height: 1.4;
  }

  .qcy-footer-support span {
    margin: 0 11px;
    color: #53637c;
  }

  .qcy-footer-copyright {
    text-align: center;
    color: #71839f;
    font-size: 14px;
    line-height: 1.4;
    margin-top: 18px;
  }

  .qcy-footer-beian {
    text-align: center;
    color: #71839f;
    font-size: 14px;
    line-height: 1.4;
    margin-top: 17px;
    display: flex;
    justify-content: center;
    gap: 20px;
    flex-wrap: wrap;
  }

  .qcy-footer-beian i {
    display: inline-block;
    width: 16px;
    height: 16px;
    border-radius: 50%;
    vertical-align: -3px;
    margin-right: 6px;
  }

  .qcy-footer-beian .qcy-i1 {
    background: #7a3a19;
  }

  .qcy-footer-beian .qcy-i2 {
    background: #116b66;
  }

  @media (max-width: 1360px) {
    .qcy-footer-container {
      width: 1180px;
    }

    .qcy-footer-top {
      grid-template-columns: 280px repeat(4, 1fr) 160px;
      gap: 26px;
    }
  }

  @media (max-width: 1200px) {
    .qcy-footer-container {
      width: calc(100% - 40px);
    }

    .qcy-footer-top {
      grid-template-columns: 1fr 1fr 1fr;
      gap: 38px 30px;
    }

    .qcy-footer-company {
      grid-column: span 2;
    }
  }

  @media (max-width: 768px) {
    .qcy-footer {
      padding: 44px 0 22px;
    }

    .qcy-footer-container {
      width: calc(100% - 32px);
    }

    .qcy-footer-top {
      grid-template-columns: 1fr 1fr;
    }

    .qcy-footer-company {
      grid-column: span 2;
    }

    .qcy-footer-company p {
      white-space: normal;
    }

    .qcy-footer-qr {
      grid-column: span 2;
      align-items: flex-start;
    }

    .qcy-footer-beian {
      display: block;
      line-height: 2;
    }
  }
  
  /* 加载效果 */
    .qcy-page-loading {
        position: fixed;
        inset: 0;
        z-index: 99999;
        background: rgba(255, 255, 255, 0.86);
        backdrop-filter: blur(10px);
        display: flex;
        align-items: center;
        justify-content: center;
        opacity: 0;
        visibility: hidden;
        pointer-events: none;
        transition: opacity .22s ease, visibility .22s ease;
    }

    .qcy-page-loading.show {
        opacity: 1;
        visibility: visible;
        pointer-events: auto;
    }

    .qcy-page-loading-box {
        width: 168px;
        min-height: 138px;
        border-radius: 22px;
        background: #ffffff;
        border: 1px solid #e6edf6;
        box-shadow: 0 24px 54px rgba(20, 48, 96, .12);
        display: flex;
        flex-direction: column;
        align-items: center;
        justify-content: center;
        gap: 14px;
        transform: translateY(8px) scale(.98);
        transition: transform .22s ease;
    }

    .qcy-page-loading.show .qcy-page-loading-box {
        transform: translateY(0) scale(1);
    }

    .qcy-page-loading-spinner {
        width: 42px;
        height: 42px;
        border-radius: 50%;
        border: 3px solid #e8f0ff;
        border-top-color: #2563eb;
        animation: qcyPageSpin .78s linear infinite;
    }

    .qcy-page-loading-title {
        font-size: 15px;
        line-height: 1;
        color: #26344d;
        font-weight: 800;
    }

    .qcy-page-loading-text {
        margin-top: -5px;
        font-size: 12px;
        color: #8a98ad;
    }

    @keyframes qcyPageSpin {
        to {
        transform: rotate(360deg);
        }
    }
    /* 脚页样式结束 */

    /* 右侧悬浮块样式开始 */
    .bg-right {
        position: fixed;
        top: 50%;
        right: 0;
        transform: translate(0, -50%);
        z-index: 999;
        background: linear-gradient(180deg, #ffffff 0%, #f8fafc 100%);
        box-shadow: 0 12px 40px rgba(14, 165, 233, 0.2);
        cursor: pointer;
        border-radius: 20px;
        border: 1px solid rgba(14, 165, 233, 0.1);
        backdrop-filter: blur(10px);
        opacity: 0;
        visibility: hidden;
        transition: opacity 0.3s ease, box-shadow 0.3s ease, border-color 0.3s ease;
    }
    
    .bg-right.loaded {
        opacity: 1;
        visibility: visible;
    }

    .bg-right:hover {
        box-shadow: 0 16px 48px rgba(14, 165, 233, 0.3);
        border-color: rgba(14, 165, 233, 0.2);
    }

    .float-sidebar {
        position: fixed;
        top: 50%;
        right: 0;
        transform: translateY(-50%);
        display: flex;
        flex-direction: column;
        gap: 1px;
        background: rgba(0, 102, 255, 0.08);
        border-radius: 16px;
        padding: 1px;
        box-shadow: 0 8px 32px rgba(0, 102, 255, 0.12);
    }
    
    .float-item {
        position: relative;
        width: 56px;
        height: 56px;
        background: white;
        display: flex;
        flex-direction: column;
        align-items: center;
        justify-content: center;
        cursor: pointer;
        transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
    }

    .float-item:first-child {
        border-radius: 15px 15px 0 0;
    }

    .float-item:last-child {
        border-radius: 0 0 15px 15px;
    }

    .float-item:hover {
        background: linear-gradient(135deg, #f0f7ff 0%, #e6f2ff 100%);
        transform: translateX(-4px);
    }

    .float-item-icon {
        width: 20px;
        height: 20px;
        display: flex;
        align-items: center;
        justify-content: center;
        margin-bottom: 2px;
        color: #0066FF;
        transition: all 0.3s ease;
    }

    .float-item:hover .float-item-icon {
        transform: scale(1.15);
    }

    .float-item-text {
        font-size: 9px;
        color: #64748b;
        font-weight: 500;
        text-align: center;
        line-height: 1.2;
        letter-spacing: 0.2px;
    }

    .float-item-popup {
        position: absolute;
        right: 68px;
        top: 50%;
        transform: translateY(-50%);
        background: white;
        padding: 20px;
        border-radius: 16px;
        box-shadow: 0 12px 48px rgba(0, 102, 255, 0.15);
        opacity: 0;
        pointer-events: none;
        transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
        min-width: 260px;
        border: 1px solid rgba(0, 102, 255, 0.1);
    }

    .float-item:hover .float-item-popup {
        opacity: 1;
        pointer-events: auto;
        right: 72px;
    }

    .float-item:hover .customer-icon {
        box-shadow: 0 12px 28px rgba(14, 165, 233, 0.4);
    }

    .float-item:hover .api-icon {
        box-shadow: 0 12px 28px rgba(139, 92, 246, 0.4);
    }

    .float-item:hover .business-icon {
        box-shadow: 0 12px 28px rgba(59, 130, 246, 0.4);
    }

    .float-item:hover .qr-icon {
        box-shadow: 0 12px 28px rgba(6, 182, 212, 0.4);
    }

    .float-item-text span {
        font-size: 0.75rem;
        font-weight: 500;
        color: #475569;
        transition: all 0.3s ease;
        display: block;
    }

    .float-item:hover .float-item-text span {
        color: #0ea5e9;
        font-weight: 600;
        transform: translateY(-2px);
    }

    .float-item-pop {
        position: absolute;
        right: 60px;
        top: 50%;
        transform: translateY(-50%) translateX(10px);
        min-width: 240px;
        white-space: normal;
        background: rgba(255, 255, 255, 0.98);
        padding: 20px;
        box-shadow: 0 12px 48px rgba(0, 0, 0, 0.15);
        opacity: 0;
        pointer-events: none;
        border-radius: 16px;
        border: 1px solid rgba(14, 165, 233, 0.1);
        backdrop-filter: blur(20px);
        display: none;
        transition: opacity 0.2s ease, transform 0.2s ease;
    }

    .float-item-pop.show {
        display: block;
        opacity: 1;
        pointer-events: auto;
        transform: translateY(-50%) translateX(0);
    }

    .pop-title {
        border-bottom: 2px solid transparent;
        border-image: linear-gradient(90deg, #0ea5e9, #06b6d4);
        border-image-slice: 1;
        display: flex;
        flex-direction: row;
        align-items: center;
        gap: 12px;
        padding: 0 8px 16px 8px;
        margin-bottom: 16px;
    }

    .pop-title-icon {
        width: 30px;
        height: 30px;
        border-radius: 50%;
        display: flex;
        align-items: center;
        justify-content: center;
        font-size: 1rem;
        color: white;
        background: linear-gradient(135deg, #0ea5e9, #06b6d4);
        box-shadow: 0 4px 12px rgba(14, 165, 233, 0.3);
    }

    .pop-title-text {
        font-size: 1rem;
        font-weight: 600;
        color: #1e293b;
    }

    .customer-title .pop-title-icon {
        background: linear-gradient(135deg, #0ea5e9, #06b6d4);
    }

    .api-title .pop-title-icon {
        background: linear-gradient(135deg, #8b5cf6, #a855f7);
    }

    .business-title .pop-title-icon {
        background: linear-gradient(135deg, #3b82f6, #6366f1);
    }

    .qr-title {
        justify-content: center;
        border-bottom: none;
        padding-bottom: 0;
    }

    .qr-title .pop-title-icon {
        background: linear-gradient(135deg, #06b6d4, #10b981);
    }

    .pop-content {
        padding-top: 8px;
    }

    .pop-content-item {
        margin-bottom: 10px;
        display: flex;
        align-items: center;
        gap: 10px;
        background: linear-gradient(135deg, rgba(14, 165, 233, 0.06) 0%, rgba(6, 182, 212, 0.06) 100%);
        border-radius: 10px;
        padding: 10px 14px;
        transition: all 0.3s ease;
        border: 1px solid rgba(14, 165, 233, 0.1);
    }

    .pop-content-item:hover {
        background: linear-gradient(135deg, rgba(14, 165, 233, 0.12) 0%, rgba(6, 182, 212, 0.12) 100%);
        border-color: rgba(14, 165, 233, 0.2);
        transform: translateX(3px);
    }

    .pop-content-item:last-child {
        margin-bottom: 0;
    }

    .item-icon {
        width: 28px;
        height: 28px;
        border-radius: 6px;
        display: flex;
        align-items: center;
        justify-content: center;
        font-size: 0.9rem;
        color: #0ea5e9;
        background: rgba(14, 165, 233, 0.1);
        flex-shrink: 0;
    }

    .item-info {
        flex: 1;
        display: flex;
        flex-direction: column;
        align-items: flex-start;
        gap: 3px;
    }

    .item-label {
        font-size: 0.75rem;
        color: #64748b;
        font-weight: 500;
    }

    .item-value {
        font-size: 0.85rem;
        color: #1e293b;
        font-weight: 600;
        white-space: nowrap;
    }

    .qr-item {
        display: flex;
        justify-content: center;
        align-items: center;
        padding: 12px;
    }

    .qr-wrapper {
        text-align: center;
        position: relative;
    }

    .qr-code {
        width: 140px;
        height: 140px;
        border-radius: 10px;
        box-shadow: 0 6px 20px rgba(0, 0, 0, 0.1);
        transition: all 0.3s ease;
        border: 2px solid white;
    }

    .qr-wrapper:hover .qr-code {
        transform: scale(1.05);
        box-shadow: 0 12px 32px rgba(0, 0, 0, 0.15);
    }

    .qr-tip {
        margin-top: 10px;
        font-size: 0.75rem;
        color: #64748b;
        font-weight: 500;
    }
    /* 右侧悬浮块样式结束 */