
/* source: public\web\dianle\css\main\reset.css */
/* 重叠样式表  */
* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
    outline: none;
    font-weight: 400;
    transition: background-color 0.2s
 ease, color 0.2s
 ease, opacity 0.2s
 ease, transform 0.2s
 ease, height 0.2s
 ease, width 0.2s
 ease, left 0.2s
 ease, padding 0.2s
 ease, border 0.2s
 ease, box-shadow 0.2s
 ease;
    -webkit-transition: background-color 0.2s
 ease, color 0.2s
 ease, opacity 0.2s
 ease, transform 0.2s
 ease, height 0.2s
 ease, width 0.2s
 ease, left 0.2s
 ease, padding 0.2s
 ease, border 0.2s
 ease, box-shadow 0.2s
 ease;
    -moz-transition: background-color 0.2s
 ease, color 0.2s
 ease, opacity 0.2s
 ease, transform 0.2s
 ease, height 0.2s
 ease, width 0.2s
 ease, left 0.2s
 ease, padding 0.2s
 ease, border 0.2s
 ease, box-shadow 0.2s
 ease;
    -ms-transition: background-color 0.2s
 ease, color 0.2s
 ease, opacity 0.2s
 ease, transform 0.2s
 ease, height 0.2s
 ease, width 0.2s
 ease, left 0.2s
 ease, padding 0.2s
 ease, border 0.2s
 ease, box-shadow 0.2s
 ease;
    -o-transition: background-color 0.2s
 ease, color 0.2s
 ease, opacity 0.2s
 ease, transform 0.2s
 ease, height 0.2s
 ease, width 0.2s
 ease, left 0.2s
 ease, padding 0.2s
 ease, border 0.2s
 ease, box-shadow 0.2s
 ease;
    border: 0;
    /*移动端取消所有默认点击事件*/
    -webkit-tap-highlight-color: transparent;
    /*Webkit(Safari/Chrome)Browsers*/
    -webkit-touch-callout: none;
    /*Disablelongpressmenuforlinks*/
    /* -webkit-user-select: none; */
    /*Disabletextselection*/
    /* -khtml-user-select: none; */
    /*Disabletextselection*/
    /* -moz-user-select: none; */
    /*Disabletextselection*/
    /* -ms-user-select: none; */
    /*Disabletextselection*/
    /* user-select: none; */
    /*Disabletextselection*/
    /*禁用双击缩放*/
    touch-action: manipulation;
}

/* 设置滚动条的宽度 */
::-webkit-scrollbar {
    width: 5px;
    /* 横向滚动条宽度 */
}

/* 设置滚动条轨道（背景） */
::-webkit-scrollbar-track {
    background-color: #f0f0f0;
    border-radius: 10px;
}

/* 设置滚动条滑块（实际滑动部分） */
::-webkit-scrollbar-thumb {
    background-color: #4e4b4b;
    border: 3px solid #f0f0f0;
    border-radius: 10px;
}

html {
    scroll-behavior: smooth;
}

body,
html {
    width: 100%;
    max-width: 100%;
    overflow-x: hidden;
}

body {
    overflow-x: hidden;
    position: relative;

    /* pc默认字体大小 */
    @media (min-width: 769px) {
        font-size: 15px;
    }

    /* 移动/h5默认字体大小 */
    @media (max-width: 768px) {
        font-size: 13px;
    }
}

a {
    color: #172c45;
    text-decoration: none;
}

li {
    list-style: none;
}

img {
    border: 0;
    vertical-align: middle;
    user-select: none;
    /* 禁止用户选中图片 */
    -webkit-user-select: none;
    /* Safari/Chrome */
    -moz-user-select: none;
    /* Firefox */
    -ms-user-select: none;
    /* IE/Edge */
    border: 0 none;
}

video {
    -webkit-touch-callout: none;
    -webkit-user-select: none;
    -moz-user-select: none;
    -ms-user-select: none;
    user-select: none;
    -webkit-user-drag: none;
    user-drag: none;
    object-fit: cover;
}

table {
    border-collapse: collapse;
    border-spacing: 0;
}

p {
    word-wrap: break-word;
}
/* source: public\web\dianle\css\main\main.css */
.dianle-width {
    max-width: 1400px;
    margin: 0 auto;
}

.dianle-width .dianle-title {
    display: flex;
    flex-direction: column;
    gap: 10px;
    text-align: center;
}

.dianle-width .dianle-title span {
    font-size: 25px;
    color: #3D3D3D;
}

.dianle-width .dianle-title p {
    color: #ACACAC;
    font-size: 15px;
}
/* source: public\web\dianle\css\header.css */
@font-face {
    font-family: "siyuan";
    font-weight: 400;
    src: url("/web/idc/font/siyuanhei.woff2") format("woff2");
    font-display: swap;
}

@font-face {
    font-family: "DINCond";
    font-weight: 400;
    src: url("/web/idc/font/Mohave-Regular-2.otf") format("woff");
    font-display: swap;
}

.dianle-siyuan {
    font-family: "siyuan";
}

.dianle-DINCond {
    font-family: "DINCond";
}

/* 包裹 <header> 不应限制 sticky 的滚动范围，让其相对整页生效 */
.dl-headerbar {
    display: contents;
}

/* ===== 顶部半透明磨砂导航 =====
   说明：reset.css 给 html/body 设了 overflow-x:hidden，会令二者成为滚动容器，
   导致 position:sticky 失效，故此处使用 fixed 固定在视口顶部。 */
.dianle-header {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 64px;
    background-color: rgba(255, 255, 255, 0.62);
    backdrop-filter: saturate(180%) blur(18px);
    -webkit-backdrop-filter: saturate(180%) blur(18px);
    border-bottom: 0;
    box-shadow: 0 6px 20px rgba(20, 40, 90, 0.04);
    z-index: 999;
}

.dianle-header .dianle-width {
    width: 100%;
    max-width: none;
    display: flex;
    align-items: center;
    gap: 18px;
    height: 100%;
    padding: 0 0 0 20px;
}

.dianle-header .dianle-logo {
    width: 120px;
    height: 100%;
    margin-right: 0;
    display: flex;
    align-items: center;
}

.dianle-header .dianle-logo img {
    width: 100%;
    height: 100%;
    object-fit: contain;
    filter: none;
}

.dianle-header .dianle-header-nav {
    display: flex;
    align-items: center;
    gap: 0;
    height: 100%;
}

.dianle-header .dianle-header-nav .dianle-item {
    color: #1f2533;
    display: flex;
    align-items: center;
    gap: 6px;
    height: 100%;
    padding: 0 12px;
    font-size: 14px;
    position: relative;
}

.dianle-header .dianle-nav-entry {
    height: 100%;
}

.dianle-header .dianle-solution-toggle {
    border: 0;
    background: transparent;
    cursor: pointer;
}

.dianle-header .dianle-solution-toggle svg {
    width: 14px;
    height: 14px;
    transition: transform 0.2s ease;
}

.dianle-header .dianle-solution-nav:hover .dianle-solution-toggle,
.dianle-header .dianle-solution-nav:focus-within .dianle-solution-toggle,
.dianle-header .dianle-solution-nav.is-open .dianle-solution-toggle,
.dianle-header .dianle-solution-nav.is-active .dianle-solution-toggle {
    color: #0052d9;
}

.dianle-header .dianle-solution-nav:hover .dianle-solution-toggle svg,
.dianle-header .dianle-solution-nav:focus-within .dianle-solution-toggle svg,
.dianle-header .dianle-solution-nav.is-open .dianle-solution-toggle svg {
    transform: rotate(180deg);
}

.dianle-solution-mega {
    position: fixed;
    top: 64px;
    left: 0;
    width: 100%;
    padding: 0;
    height: 280px;
    min-height: 280px;
    border-top: 1px solid rgba(43, 108, 255, 0.1);
    background: rgba(255, 255, 255, 0.97);
    box-shadow: 0 18px 38px rgba(19, 38, 81, 0.13);
    opacity: 0;
    visibility: hidden;
    pointer-events: none;
    transform: translateY(-8px);
    transition: opacity 0.18s ease, transform 0.18s ease, visibility 0.18s ease;
}

.dianle-solution-mega::before {
    display: none;
}

.dianle-solution-nav:hover .dianle-solution-mega,
.dianle-solution-nav:focus-within .dianle-solution-mega,
.dianle-solution-nav.is-open .dianle-solution-mega {
    opacity: 1;
    visibility: visible;
    pointer-events: auto;
    transform: translateY(0);
}

.dianle-solution-mega-inner {
    position: relative;
    z-index: 1;
    width: 100%;
    margin: 0;
    display: grid;
    grid-template-columns: 340px minmax(0, 1fr);
    gap: 38px;
    height: 280px;
    min-height: 280px;
    align-items: stretch;
}

.dianle-solution-mega-lead {
    position: relative;
    height: 100%;
    min-height: 0;
    align-self: stretch;
    padding: 24px 26px 20px;
    overflow: hidden;
    border: 0;
    background: url("/web/idc/image/header/sub-navdesc-bg.jpg") left center / cover no-repeat;
}

.dianle-solution-mega-lead::after {
    display: none;
    pointer-events: none;
}

.dianle-solution-mega-lead small {
    position: relative;
    z-index: 1;
    display: block;
    color: #2b6cff;
    font-size: 11px;
    letter-spacing: 1.2px;
}

.dianle-solution-mega-lead strong {
    position: relative;
    z-index: 1;
    display: block;
    margin-top: 8px;
    color: #182033;
    font-size: 21px;
}

.dianle-solution-mega-lead p {
    position: relative;
    z-index: 1;
    margin-top: 9px;
    color: #7d8799;
    font-size: 13px;
    line-height: 1.75;
}

.dianle-solution-mega-lead a {
    position: relative;
    z-index: 1;
    display: inline-flex;
    margin-top: 16px;
    color: #2b6cff;
    font-size: 13px;
}

.dianle-solution-groups {
    position: relative;
    top: 0;
    display: grid;
    grid-template-columns: repeat(3, minmax(0, 1fr)) 240px;
    gap: 0;
    align-content: center;
    padding: 28px 20px 24px 0;
}

.dianle-solution-group {
    min-width: 0;
    padding: 0 22px;
    border-left: 1px solid #e5eaf2;
}

.dianle-solution-group:first-child {
    padding-left: 0;
    border-left: 0;
}

.dianle-solution-group h4 {
    margin: 0 0 10px;
    padding: 0;
    color: #20283a;
    font-size: 16px;
    font-weight: 600;
    border-bottom: 0;
}

.dianle-solution-group > a {
    min-height: 36px;
    padding: 0;
    display: flex;
    align-items: center;
    gap: 0;
    border: 0;
    border-radius: 0;
    transition: color 0.18s ease;
}

.dianle-solution-group > a:hover,
.dianle-solution-group > a.is-active {
    background: transparent;
    padding-left: 0;
}

.dianle-solution-icon {
    display: none;
}

.dianle-solution-icon svg {
    width: 18px;
    height: 18px;
}

.dianle-solution-group strong,
.dianle-solution-group small {
    display: block;
}

.dianle-solution-group strong {
    color: #20283a;
    font-size: 14px;
    font-weight: 400;
}

.dianle-solution-group small {
    display: none;
}

.dianle-solution-group > a:hover strong,
.dianle-solution-group > a.is-active strong {
    color: #0052d9;
}

.dianle-solution-service {
    position: absolute;
    top: 16px;
    right: 20px;
    width: 240px;
    min-height: 176px;
    padding: 18px 20px;
    border: 1px solid #e4e8ef;
    background: #fff;
}

.dianle-solution-service > strong {
    color: #20283a;
    font-size: 15px;
    font-weight: 500;
}

.dianle-solution-service > p {
    margin-top: 10px;
    color: #657085;
    font-size: 13px;
    line-height: 1.65;
}

.dianle-solution-service ul {
    margin: 12px 0 0;
    padding: 0;
    list-style: none;
}

.dianle-solution-service li {
    position: relative;
    margin-top: 7px;
    padding-left: 17px;
    color: #323b4d;
    font-size: 12px;
}

.dianle-solution-service li::before {
    content: "✓";
    position: absolute;
    left: 0;
    color: #006eff;
    font-weight: 600;
}

/* 合作与生态：参考合作伙伴菜单，保留每项的说明文字。 */
.dianle-rich-nav .dianle-solution-group > a {
    min-height: 64px;
    align-items: flex-start;
    padding-top: 7px;
    padding-bottom: 7px;
}

.dianle-rich-nav .dianle-solution-mega {
    height: min(552px, calc(100vh - 74px));
    min-height: 360px;
    background: #f1f2f5;
}

.dianle-rich-nav .dianle-solution-mega-inner {
    width: 100%;
    height: 100%;
    min-height: 0;
    grid-template-columns: 24% minmax(0, 1fr);
}

.dianle-rich-nav .dianle-solution-mega-lead {
    height: 100%;
    min-height: 0;
    padding: 34px 28px 30px clamp(24px, 3vw, 48px);
    /* Keep the source artwork proportional; cover may crop edges but never distorts it. */
    background: #fff url("/web/idc/image/header/sub-navdesc-bg.jpg") right bottom / cover no-repeat;
}

.dianle-rich-nav .dianle-solution-mega-lead strong {
    color: #252b3a;
    font-size: 16px;
}

.dianle-rich-nav .dianle-solution-mega-lead p {
    max-width: 250px;
    margin: 14px 0 12px;
    color: #595959;
    font-size: 14px;
    line-height: 1.6;
}

.dianle-rich-lead-benefits {
    display: grid;
    gap: 8px;
    max-width: 250px;
    margin: 22px 0 0;
    padding: 0;
    list-style: none;
}

.dianle-rich-lead-benefits li {
    position: relative;
    padding-left: 14px;
    color: #687386;
    font-size: 12px;
    line-height: 1.55;
}

.dianle-rich-lead-benefits li::before {
    content: "";
    position: absolute;
    top: 0.65em;
    left: 0;
    width: 5px;
    height: 5px;
    border-radius: 50%;
    background: #2b6cff;
    transform: translateY(-50%);
}

.dianle-rich-nav .dianle-solution-groups {
    align-content: start;
    padding: 34px 20px 30px 0;
}

.dianle-rich-nav .dianle-solution-group {
    padding: 0 20px;
}

.dianle-rich-nav .dianle-solution-group h4 {
    margin-bottom: 12px;
    padding-bottom: 10px;
    color: #2b6cff;
    font-size: 16px;
    border-bottom: 1px solid #d7dbe2;
}

.dianle-rich-nav .dianle-solution-group h4::after {
    content: "›";
    margin-left: 6px;
    color: #2b6cff;
    font-size: 20px;
    font-weight: 400;
}

.dianle-rich-nav .dianle-solution-group > a {
    padding: 7px 0;
    border: 0;
}

.dianle-rich-nav .dianle-solution-group strong {
    color: #222;
    font-size: 14px;
    font-weight: 600;
}

.dianle-rich-nav .dianle-solution-group small {
    color: rgba(34, 34, 34, 0.7);
    font-size: 12px;
    line-height: 1.65;
}

.dianle-rich-nav .dianle-solution-group small {
    display: block;
    margin-top: 4px;
    overflow: hidden;
    color: #8a94a6;
    font-size: 11px;
    line-height: 1.45;
    white-space: nowrap;
    text-overflow: ellipsis;
}

.dianle-rich-nav .dianle-solution-service {
    min-height: 0;
    padding: 0 16px;
    border: 0;
    background: transparent;
}

.dianle-rich-nav .dianle-solution-service > strong {
    display: block;
    padding: 0 0 12px;
    color: #252b3a;
    font-size: 16px;
}

.dianle-partner-recommend {
    margin-top: 12px;
}

.dianle-partner-recommend a {
    display: block;
    margin-bottom: 14px;
    padding: 14px 16px;
    border: 2px solid #fff;
    background: rgba(255, 255, 255, 0.7);
    box-shadow: 0 4px 8px rgba(192, 199, 209, 0.2);
}

.dianle-partner-recommend b,
.dianle-partner-recommend span {
    display: block;
}

.dianle-partner-recommend b {
    color: #273044;
    font-size: 13px;
    font-weight: 500;
}

.dianle-partner-recommend span {
    margin-top: 4px;
    color: #8a94a6;
    font-size: 11px;
}

.dianle-partner-recommend a:hover b {
    color: #2b6cff;
}

.dianle-header .dianle-header-nav .dianle-item::after {
    display: none;
}

.dianle-header .dianle-header-nav .dianle-item:hover {
    color: #2b6cff;
}

.dianle-header .dianle-header-nav .dianle-item.is-active {
    color: #0052d9;
    font-weight: 600;
}

/* ===== 右侧工具区 ===== */
.dianle-header .dianle-header-tools {
    margin-left: auto;
    margin-right: -18px;
    height: 100%;
    display: flex;
    align-items: center;
    gap: 4px;
}

.dianle-header .dianle-header-search {
    width: 190px;
    height: 36px;
    display: flex;
    align-items: center;
    gap: 8px;
    padding: 0 12px;
    border: 1px solid rgba(43, 108, 255, 0.15);
    border-radius: 2px;
    color: #6f7d91;
    background: rgba(255, 255, 255, 0.72);
}

.dianle-header .dianle-header-search:focus-within {
    border-color: rgba(43, 108, 255, 0.5);
    background: rgba(255, 255, 255, 0.9);
}

.dianle-header .dianle-header-search svg {
    flex: 0 0 17px;
    width: 17px;
    height: 17px;
    color: #2b6cff;
}

.dianle-header .dianle-header-search input {
    width: 100%;
    min-width: 0;
    border: 0;
    color: #1f2533;
    background: transparent;
    font-size: 14px;
}

.dianle-header .dianle-header-search input::placeholder {
    color: #8c98aa;
}

.dianle-header .dianle-tool-link {
    height: 100%;
    display: flex;
    align-items: center;
    padding: 0 8px;
    color: #1f2533;
    font-size: 14px;
    white-space: nowrap;
}

.dianle-header .dianle-tool-link:hover,
.dianle-header .dianle-login-link:hover {
    color: #2b6cff;
}

/* ===== 登录 / 注册 ===== */
.dianle-header .dianle-button {
    margin-left: 0;
    height: 100%;
    align-self: stretch;
    display: flex;
    align-items: center;
    gap: 0;
}

.dianle-header .dianle-button[hidden],
.dianle-header .dianle-user-nav[hidden] {
    display: none;
}

.dianle-header .dianle-button a {
    height: 38px;
    padding: 0 20px;
    border-radius: 8px;
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 6px;
    font-size: 15px;
}

.dianle-header .dianle-button .dianle-login-link {
    height: 100%;
    padding: 0 12px;
    border-radius: 0;
    color: #1f2533;
    background: transparent;
}

.dianle-header .dianle-button .dianle-register-btn {
    min-width: 132px;
    height: 100%;
    padding: 0 28px;
    border-radius: 0;
    background: #2b6cff;
    color: #fff;
    box-shadow: none;
}

.dianle-header .dianle-button .dianle-register-btn:hover {
    background: #1f5fe8;
    box-shadow: none;
    transform: none;
}

.dianle-header .dianle-register-icon {
    width: 18px;
    height: 18px;
    flex: 0 0 18px;
}

.dianle-header .dianle-button a img {
    width: 15px;
    height: 15px;
    object-fit: contain;
}

/* ===== 已登录状态 ===== */
.dianle-header .dianle-user-nav {
    margin-left: 0;
    margin-right: 18px;
    height: 100%;
    position: relative;
    z-index: 120;
    display: flex;
    align-items: center;
    gap: 12px;
}

.dianle-header .dianle-avatar-link {
    display: flex;
    align-items: center;
    justify-content: center;
    width: 38px;
    height: 38px;
    padding: 0;
    border: 0;
    border-radius: 50%;
    background: transparent;
    cursor: pointer;
}

.dianle-header .dianle-avatar-link:focus-visible {
    outline: 2px solid #2b6cff;
    outline-offset: 3px;
}

.dianle-header .dianle-avatar {
    position: relative;
    width: 34px;
    height: 34px;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    overflow: hidden;
    color: #fff;
    font-size: 15px;
    font-weight: 600;
    background: linear-gradient(135deg, #3b7bff 0%, #20c7a8 100%);
    box-shadow: 0 8px 18px rgba(43, 108, 255, 0.2);
}

.dianle-header .dianle-avatar img {
    position: absolute;
    inset: 0;
    width: 100%;
    height: 100%;
    object-fit: cover;
}

.dianle-header .dianle-account-popover {
    position: absolute;
    top: calc(100% - 2px);
    right: 0;
    width: 300px;
    padding: 16px;
    border: 1px solid #e3e8f1;
    border-radius: 6px;
    background: #fff;
    box-shadow: 0 18px 45px rgba(23, 33, 54, .16);
    opacity: 0;
    visibility: hidden;
    pointer-events: none;
    transform: translateY(8px);
    transition: opacity .16s ease, visibility .16s ease, transform .16s ease;
}

.dianle-header .dianle-user-nav.is-open .dianle-account-popover,
.dianle-header .dianle-user-nav:hover .dianle-account-popover,
.dianle-header .dianle-user-nav:focus-within .dianle-account-popover {
    opacity: 1;
    visibility: visible;
    pointer-events: auto;
    transform: translateY(0);
}

.dianle-header .dianle-account-profile {
    display: flex;
    align-items: center;
    min-width: 0;
    padding: 2px 0 14px;
    color: #1f2533;
}

.dianle-header .dianle-account-profile-icon {
    width: 38px;
    height: 38px;
    flex: 0 0 38px;
    display: flex;
    align-items: center;
    justify-content: center;
    border-radius: 50%;
    color: #2b6cff;
    background: #eef3ff;
    font-size: 19px;
}

.dianle-header .dianle-account-profile-copy {
    min-width: 0;
    flex: 1 1 auto;
    display: flex;
    flex-direction: column;
    gap: 3px;
    padding: 0 10px;
}

.dianle-header .dianle-account-profile-copy strong,
.dianle-header .dianle-account-profile-copy small {
    overflow: hidden;
    text-overflow: ellipsis;
    white-space: nowrap;
}

.dianle-header .dianle-account-profile-copy strong {
    font-size: 15px;
    font-weight: 600;
}

.dianle-header .dianle-account-profile-copy small {
    color: #7c8799;
    font-size: 12px;
}

.dianle-header .dianle-account-profile > i {
    color: #99a3b2;
    font-size: 18px;
}

.dianle-header .dianle-account-balance {
    min-height: 58px;
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 16px;
    padding: 12px 0;
    border-top: 1px solid #edf0f5;
    color: #586579;
    font-size: 13px;
}

.dianle-header .dianle-account-balance strong {
    color: #182033;
    font-size: 22px;
    font-weight: 650;
    font-variant-numeric: tabular-nums;
}

.dianle-header .dianle-account-balance strong small {
    margin-right: 2px;
    color: #2b6cff;
    font-size: 13px;
    font-weight: 600;
}

.dianle-header .dianle-account-stats {
    display: grid;
    grid-template-columns: repeat(2, minmax(0, 1fr));
    border-top: 1px solid #edf0f5;
    border-bottom: 1px solid #edf0f5;
}

.dianle-header .dianle-account-stats a {
    min-width: 0;
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 4px;
    padding: 14px 8px;
    color: #68758a;
    font-size: 12px;
}

.dianle-header .dianle-account-stats a + a {
    border-left: 1px solid #edf0f5;
}

.dianle-header .dianle-account-stats strong {
    color: #1f2a3d;
    font-size: 20px;
    font-weight: 650;
    font-variant-numeric: tabular-nums;
}

.dianle-header .dianle-account-profile:hover,
.dianle-header .dianle-account-balance:hover,
.dianle-header .dianle-account-stats a:hover {
    color: #2b6cff;
}

.dianle-header .dianle-account-console {
    height: 40px;
    display: flex;
    align-items: center;
    gap: 8px;
    margin-top: 14px;
    padding: 0 13px;
    border-radius: 4px;
    color: #fff;
    background: #2b6cff;
    font-size: 14px;
}

.dianle-header .dianle-account-console span {
    flex: 1 1 auto;
}

.dianle-header .dianle-account-console:hover {
    color: #fff;
    background: #1f5fe8;
}

.dianle-header .dianle-console-btn {
    height: 38px;
    padding: 0 20px;
    border-radius: 8px;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 15px;
    background: linear-gradient(135deg, #3b7bff 0%, #2b6cff 100%);
    color: #fff;
    box-shadow: 0 8px 18px rgba(43, 108, 255, 0.28);
}

.dianle-header .dianle-console-btn:hover {
    box-shadow: 0 10px 22px rgba(43, 108, 255, 0.4);
    transform: translateY(-1px);
}

/* 桌面端：导航容器透明参与父级 flex 布局，汉堡按钮隐藏 */
.dianle-header .dianle-nav-wrap {
    display: contents;
}

.dianle-header .dianle-menu-toggle {
    display: none;
}

@media screen and (min-width: 769px) and (max-width: 1100px) {
    .dianle-header .dianle-width {
        gap: 16px;
        padding-left: 16px;
    }

    .dianle-header .dianle-logo {
        width: 120px;
        margin-right: 0;
    }

    .dianle-header .dianle-header-nav {
        gap: 0;
    }

    .dianle-header .dianle-header-nav .dianle-item {
        padding: 0 8px;
        font-size: 14px;
    }

    .dianle-header .dianle-header-search {
        display: none;
    }

    .dianle-header .dianle-tool-link {
        padding: 0 6px;
        font-size: 13px;
    }

    .dianle-header .dianle-button .dianle-login-link {
        padding: 0 8px;
    }

    .dianle-header .dianle-button .dianle-register-btn {
        min-width: 112px;
        padding: 0 18px;
    }
}

@media screen and (min-width: 769px) and (max-width: 1100px) {
    .dianle-solution-mega-inner {
        grid-template-columns: 300px minmax(0, 1fr);
        gap: 24px;
    }
}

@media screen and (min-width: 769px) and (max-width: 900px) {
    .dianle-header .dianle-header-tools {
        display: none;
    }
}

/* ============ 手机端适配 ============ */
@media screen and (max-width: 768px) {
    .dianle-rich-nav .dianle-solution-mega {
        height: auto;
        min-height: 0;
        background: transparent;
    }

    .dianle-rich-nav .dianle-solution-mega-inner {
        height: auto;
        min-height: 0;
    }

    .dianle-rich-nav .dianle-solution-groups {
        padding: 0;
    }

    .dianle-rich-nav .dianle-solution-group {
        padding: 0;
    }

    .dianle-header {
        height: 56px;
        position: fixed;
    }

    .dianle-header .dianle-width {
        gap: 0;
        padding: 0 16px;
        justify-content: space-between;
    }

    .dianle-header .dianle-logo {
        width: auto;
        margin-right: 0;
    }

    .dianle-header .dianle-logo img {
        height: 28px;
        width: auto;
    }

    /* 汉堡按钮 */
    .dianle-header .dianle-menu-toggle {
        display: flex;
        flex-direction: column;
        justify-content: center;
        gap: 5px;
        width: 40px;
        height: 40px;
        padding: 9px;
        cursor: pointer;
        margin-left: auto;
    }

    .dianle-header .dianle-menu-toggle span {
        display: block;
        width: 100%;
        height: 2px;
        border-radius: 2px;
        background-color: #1f2533;
        transition: transform 0.32s cubic-bezier(0.16, 1, 0.3, 1), opacity 0.2s ease;
    }

    .dianle-header.is-open .dianle-menu-toggle span:nth-child(1) {
        transform: translateY(7px) rotate(45deg);
    }

    .dianle-header.is-open .dianle-menu-toggle span:nth-child(2) {
        opacity: 0;
    }

    .dianle-header.is-open .dianle-menu-toggle span:nth-child(3) {
        transform: translateY(-7px) rotate(-45deg);
    }

    /* 下拉面板 */
    .dianle-header .dianle-nav-wrap {
        display: block;
        position: absolute;
        top: 56px;
        left: 0;
        width: 100%;
        background-color: rgba(255, 255, 255, 0.98);
        backdrop-filter: saturate(180%) blur(14px);
        -webkit-backdrop-filter: saturate(180%) blur(14px);
        padding: 0 16px;
        max-height: 0;
        overflow: hidden;
        opacity: 0;
        transition: max-height 0.4s cubic-bezier(0.16, 1, 0.3, 1), opacity 0.3s ease, padding 0.4s cubic-bezier(0.16, 1, 0.3, 1);
        box-shadow: 0 16px 32px rgba(20, 40, 90, 0.12);
    }

    .dianle-header.is-open .dianle-nav-wrap {
        max-height: calc(100vh - 56px);
        overflow-y: auto;
        opacity: 1;
        padding: 8px 16px 20px;
    }

    .dianle-header .dianle-header-nav {
        flex-direction: column;
        align-items: stretch;
        gap: 0;
        height: auto;
    }

    .dianle-header .dianle-header-nav .dianle-item {
        color: #1f2533;
        font-size: 17px;
        padding: 15px 4px;
        height: auto;
        border-bottom: 1px solid rgba(20, 40, 90, 0.06);
    }

    .dianle-header .dianle-nav-entry {
        height: auto;
        border-bottom: 1px solid rgba(20, 40, 90, 0.06);
    }

    .dianle-header .dianle-solution-toggle {
        width: 100%;
        justify-content: space-between;
        border-bottom: 0;
    }

    .dianle-solution-mega {
        position: static;
        width: 100%;
        height: auto;
        max-height: 0;
        min-height: 0;
        padding: 0;
        border: 0;
        box-shadow: none;
        overflow: hidden;
        opacity: 1;
        visibility: visible;
        transform: none;
        transition: max-height 0.28s ease, padding 0.28s ease;
    }

    .dianle-solution-mega::before {
        display: none;
    }

    .dianle-solution-nav:hover .dianle-solution-mega,
    .dianle-solution-nav:focus-within .dianle-solution-mega {
        max-height: 0;
        padding: 0;
        pointer-events: none;
    }

    .dianle-solution-nav.is-open .dianle-solution-mega {
        max-height: 580px;
        padding: 4px 0 10px;
        pointer-events: auto;
    }

    .dianle-solution-mega-inner {
        display: block;
        width: 100%;
        margin: 0;
        height: auto;
        min-height: 0;
    }

    .dianle-solution-mega-lead {
        display: none;
    }

    .dianle-solution-groups {
        padding: 0;
        top: 0;
    }

    .dianle-solution-groups {
        grid-template-columns: 1fr;
        gap: 12px;
    }

    .dianle-solution-service {
        display: none;
    }

    .dianle-solution-group,
    .dianle-solution-group:first-child {
        padding: 0;
        border-left: 0;
    }

    .dianle-solution-group h4 {
        margin: 3px 0 5px;
    }

    .dianle-solution-group > a,
    .dianle-solution-group > a:hover,
    .dianle-solution-group > a.is-active {
        min-height: 50px;
        padding: 7px 8px 7px 0;
        background: transparent;
    }

    .dianle-solution-group small {
        display: block;
        margin-top: 3px;
        font-size: 11px;
    }

    .dianle-header .dianle-header-nav .dianle-item::after {
        display: none;
    }

    .dianle-header .dianle-header-nav .dianle-item.is-active {
        color: #2b6cff;
        background: #eef3ff;
        border-radius: 10px;
        border-bottom-color: transparent;
        padding-left: 12px;
        padding-right: 12px;
    }

    .dianle-header .dianle-header-tools {
        height: auto;
        margin: 14px 0 0;
        display: grid;
        grid-template-columns: 1fr 1fr;
        gap: 8px;
    }

    .dianle-header .dianle-header-search {
        grid-column: 1 / -1;
        width: 100%;
        height: 42px;
        background: #fff;
    }

    .dianle-header .dianle-tool-link {
        height: 40px;
        justify-content: center;
        border-radius: 6px;
        color: #2b6cff;
        background: #eef3ff;
    }

    .dianle-header .dianle-button {
        margin-left: 0;
        height: auto;
        gap: 12px;
        margin-top: 18px;
    }

    .dianle-header .dianle-user-nav {
        margin-left: 0;
        margin-right: 0;
        gap: 12px;
        margin-top: 18px;
    }

    .dianle-header .dianle-account-popover {
        top: calc(100% + 6px);
        right: auto;
        left: 0;
        width: min(300px, calc(100vw - 40px));
    }

    .dianle-header .dianle-button a {
        flex: 1;
        height: 44px;
        border-radius: 10px;
        font-size: 16px;
    }

    .dianle-header .dianle-button .dianle-register-btn {
        min-width: 0;
        height: 44px;
        padding: 0 20px;
        border-radius: 10px;
    }

    .dianle-header .dianle-button .dianle-login-link {
        height: 44px;
        padding: 0 20px;
        border-radius: 10px;
        color: #2b6cff;
        background: #eef3ff;
    }

    .dianle-header .dianle-avatar-link {
        width: 44px;
        height: 44px;
        flex: 0 0 44px;
    }

    .dianle-header .dianle-avatar {
        width: 38px;
        height: 38px;
    }

    .dianle-header .dianle-console-btn {
        flex: 1;
        height: 44px;
        border-radius: 10px;
        font-size: 16px;
    }
}

/* source: public\web\dianle\css\footer.css */
/* ===================== 支持的付款方式（浅色） ===================== */
.dianle-pay {
    padding: 64px 0;
    background: linear-gradient(180deg, #ffffff 0%, #f3f6fc 100%);
}

.dianle-pay-head {
    text-align: center;
    margin-bottom: 36px;
}

/* 标题与「安全合规、高速稳定的基础设施建设」保持一致：siyuan 字体、32px */
.dianle-pay-head span {
    display: block;
    font-size: 33px;
    color: #1f2533;
}

.dianle-pay-head p {
    margin-top: 4px;
    font-size: 16px;
    color: #97a0b3;
}

.dianle-pay-list {
    display: flex;
    flex-wrap: wrap;
    justify-content: center;
    gap: 18px;
}

.dianle-pay-item {
    display: flex;
    align-items: center;
    gap: 12px;
    padding: 16px 26px;
    background: #fff;
    border: 1px solid rgba(20, 40, 90, 0.07);
    border-radius: 14px;
    box-shadow: 0 8px 22px rgba(30, 50, 110, 0.07);
    transition: transform 0.25s cubic-bezier(0.16, 1, 0.3, 1), box-shadow 0.25s ease, border-color 0.25s ease;
}

.dianle-pay-item:hover {
    transform: translateY(-4px);
    border-color: rgba(43, 108, 255, 0.25);
    box-shadow: 0 16px 32px rgba(30, 50, 110, 0.14);
}

.dianle-pay-ico {
    height: 30px;
    width: auto;
    display: block;
    object-fit: contain;
}

.dianle-pay-item span {
    font-size: 16px;
    font-weight: 600;
    color: #2a3142;
}


.dl-site-footer {
    background: #091921;
    color: #fff;
}

.dl-site-footer .dianle-width {
    width: calc(100% - 48px);
}

.dl-footer-promises {
    min-height: 82px;
    display: grid;
    grid-template-columns: repeat(4, minmax(0, 1fr));
    align-items: center;
    border-bottom: 1px solid rgba(255, 255, 255, 0.14);
}

.dl-footer-promise {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 10px;
    min-width: 0;
}

.dl-footer-promise-icon {
    width: 38px;
    height: 38px;
    display: grid;
    place-items: center;
    flex: 0 0 38px;
    color: #2f7cff;
}

.dl-footer-promise-icon svg {
    width: 34px;
    height: 34px;
}

.dl-footer-promise strong {
    font-size: 16px;
    line-height: 1.5;
    white-space: nowrap;
}

.dl-footer-main {
    display: grid;
    grid-template-columns: minmax(300px, 400px) minmax(0, 1fr);
    gap: clamp(50px, 7vw, 110px);
    padding: 36px 0 30px;
}

.dl-footer-brand {
    min-width: 0;
}

.dl-footer-logo {
    width: 140px;
    height: 42px;
    display: flex;
    align-items: center;
    margin-bottom: 16px;
}

.dl-footer-logo img {
    display: block;
    max-width: 140px;
    max-height: 40px;
    width: auto;
    height: auto;
    object-fit: contain;
}

.dl-footer-brand > strong {
    display: block;
    margin-bottom: 8px;
    font-size: 16px;
    line-height: 1.5;
}

.dl-footer-brand > p {
    max-width: 360px;
    color: #77828d;
    font-size: 14px;
    line-height: 1.7;
}

.dl-footer-contact {
    margin-top: 18px;
}

.dl-footer-contact > div {
    display: flex;
    align-items: baseline;
    font-size: 14px;
    line-height: 1.85;
}

.dl-footer-contact dt,
.dl-footer-contact dd {
    margin: 0;
}

.dl-footer-contact dt {
    color: #9aa4ae;
    flex: 0 0 auto;
}

.dl-footer-contact a {
    color: #f4f7fa;
}

.dl-footer-contact a:hover {
    color: #72a5ff;
    text-decoration: underline;
}

.dl-footer-qrs {
    display: flex;
    flex-wrap: wrap;
    gap: 14px;
    margin-top: 18px;
}

.dl-footer-qrs[hidden] { display: none; }

.dl-footer-qr { margin: 0; text-align: center; }

.dl-footer-qr img {
    display: block;
    width: 88px;
    height: 88px;
    object-fit: cover;
    padding: 4px;
    background: #fff;
}

.dl-footer-qr figcaption {
    margin-top: 6px;
    color: #9aa4ae;
    font-size: 12px;
    line-height: 1.4;
}

.dl-footer-nav {
    display: grid;
    grid-template-columns: repeat(4, minmax(110px, 1fr));
    gap: 28px;
    align-items: start;
}

.dl-footer-nav-column {
    display: flex;
    flex-direction: column;
    align-items: flex-start;
    min-width: 0;
}

.dl-footer-nav-column h2 {
    margin: 0 0 20px;
    color: #fff;
    font-size: 16px;
    font-weight: 700;
    line-height: 1.5;
}

.dl-footer-nav-column a {
    margin-bottom: 13px;
    color: #77828d;
    font-size: 14px;
    line-height: 1.55;
}

.dl-footer-nav-column a:hover {
    color: #fff;
    text-decoration: underline;
}

.dl-footer-bottom {
    padding: 0 0 24px;
}

.dl-footer-quick-links {
    min-height: 52px;
    display: flex;
    flex-wrap: wrap;
    align-items: center;
    gap: 14px 28px;
    border-top: 1px solid rgba(255, 255, 255, 0.12);
    border-bottom: 1px solid rgba(255, 255, 255, 0.12);
}

.dl-footer-quick-links strong,
.dl-footer-quick-links a {
    color: #f4f7fa;
    font-size: 14px;
    line-height: 1.5;
}

.dl-footer-quick-links a:hover {
    color: #72a5ff;
}

.dl-footer-bottom > p {
    margin: 16px 0 0;
    color: #77828d;
    font-size: 13px;
    line-height: 1.6;
}

.dl-footer-filings {
    display: flex;
    flex-wrap: wrap;
    gap: 8px 20px;
    align-items: center;
    margin-top: 8px;
}

.dl-footer-filings[hidden] {
    display: none;
}

.dl-footer-filing {
    display: inline-flex;
    gap: 6px;
    align-items: center;
    min-width: 0;
    color: #77828d;
    font-size: 13px;
    line-height: 1.6;
}

.dl-footer-filing img {
    flex: 0 0 auto;
    width: 16px;
    height: 16px;
    object-fit: contain;
}


/* ===================== 手机端适配 ===================== */
@media screen and (max-width: 768px) {
    .dianle-width {
        padding: 0 16px;
    }

    /* 支持的付款方式：移动端居中换行 */
    .dianle-pay {
        padding: 48px 0;
    }

    .dianle-pay-head {
        margin-bottom: 26px;
    }

    .dianle-pay-head span {
        font-size: 25px;
    }

    .dianle-pay-list {
        gap: 12px;
    }

    .dianle-pay-item {
        padding: 13px 18px;
        gap: 10px;
    }

    .dianle-pay-ico {
        height: 26px;
    }

    .dl-site-footer .dianle-width {
        width: 100%;
    }

    .dl-footer-promises {
        grid-template-columns: repeat(2, minmax(0, 1fr));
        gap: 0;
        padding: 12px 0;
    }

    .dl-footer-promise {
        justify-content: flex-start;
        min-height: 52px;
        padding-right: 8px;
    }

    .dl-footer-promise-icon {
        width: 32px;
        height: 32px;
        flex-basis: 32px;
    }

    .dl-footer-promise-icon svg {
        width: 28px;
        height: 28px;
    }

    .dl-footer-promise strong {
        font-size: 14px;
        white-space: normal;
    }

    .dl-footer-main {
        grid-template-columns: 1fr;
        gap: 32px;
        padding: 32px 0 24px;
    }

    .dl-footer-nav {
        grid-template-columns: repeat(2, minmax(0, 1fr));
        gap: 28px 20px;
    }

    .dl-footer-nav-column h2 {
        margin-bottom: 14px;
    }

    .dl-footer-nav-column a {
        margin-bottom: 10px;
    }

    .dl-footer-quick-links {
        padding: 14px 0;
        gap: 10px 20px;
    }

    .dl-footer-promises,
    .dl-footer-logo,
    .dl-footer-nav,
    .dl-footer-quick-links {
        display: none;
    }
}

@media screen and (max-width: 480px) {
    .dl-footer-promises {
        grid-template-columns: 1fr;
        padding: 12px 0;
    }

    .dl-footer-promise {
        min-height: 46px;
    }

    .dl-footer-contact > div {
        align-items: flex-start;
    }

    .dl-footer-nav {
        gap: 26px 16px;
    }

    .dl-footer-quick-links strong {
        flex-basis: 100%;
    }
}

/* source: public\web\dianle\css\index.css */
:root {
    --dl-primary: #2b6cff;
    --dl-primary-2: #3b7bff;
    --dl-ink: #1f2533;
    --dl-sub: #6b7488;
    --dl-muted: #97a0b3;
    --dl-line: rgba(20, 40, 90, 0.08);
    --dl-bg-soft: #f5f8ff;
    --dl-radius: 16px;
    --dl-shadow: 0 12px 32px rgba(20, 40, 90, 0.08);
    --dl-shadow-hover: 0 22px 46px rgba(20, 40, 90, 0.14);
    --dl-ease: cubic-bezier(0.16, 1, 0.3, 1);
}

/* 滚动渐入：进入视口时从下往上淡入（仅触发一次）。
   隐藏初态仅在 JS 就绪（body.dl-anim-ready）后生效，
   脚本缺失/缓存旧版时内容保持可见，避免被永久隐藏。 */
.dl-anim-ready .dl-reveal {
    opacity: 0;
    transform: translateY(28px);
    transition: opacity 0.7s ease, transform 0.7s cubic-bezier(0.16, 1, 0.3, 1);
    will-change: opacity, transform;
}

.dl-anim-ready .dl-reveal.is-visible {
    opacity: 1;
    transform: none;
}

/* 各区块统一内边距 */
.dianle-section > .dianle-width {
    padding-left: 24px;
    padding-right: 24px;
}

/* 各区块统一标题 */
.dianle-section .dianle-title span {
    font-size: 33px;
    color: var(--dl-ink);
}

.dianle-section .dianle-title p {
    font-size: 16px;
    color: var(--dl-muted);
    margin-top: 4px;
}


/* ========================= Hero ========================= */
.dianle-hero {
    position: relative;
    padding: 0;
    overflow: hidden;
    background: #edf4ff;
}

/* ========================= 性能体验 ========================= */
.dianle-performance {
    padding: 60px 0;
    background: #f2f6fc;
    height: 400px;
    position: relative;
    overflow: hidden;
}

.dianle-performance::after {
    content: "";
    position: absolute;
    left: -8%;
    top: 50%;
    transform: translateY(-50%);
    width: 400px;
    height: 400px;
    background: url('/web/idc/image/index/back1.webp') no-repeat center;
    background-size: cover;
}

.dianle-performance::before {
    content: "";
    position: absolute;
    right: -11.5%;
    top: 70%;
    transform: translateY(-50%);
    width: 400px;
    height: 400px;
    background: url('/web/idc/image/index/back2.webp') no-repeat center;
    background-size: cover;
}

.dianle-performance .dianle-width {
    height: 100%;
}

.dianle-performance .dianle-content {
    display: flex;
    justify-content: space-between;
    height: 100%;
    align-items: center;
}

.dianle-performance .dianle-content .dianle-title {
    text-align: left;
    width: 50%;
}

.dianle-performance .dianle-content .dianle-right {
    position: relative;
    display: flex;
    width: 50%;
}

.dianle-performance .dianle-content .dianle-right .dianle-item {
    padding: 20px;
    border-radius: 12px;
    display: flex;
    flex-direction: column;
    gap: 10px;
    position: absolute;
    box-shadow: 0 14px 30px rgba(20, 40, 90, 0.08);
    background: #fff;
}

.dianle-performance .dianle-content .dianle-right .dianle-item:nth-of-type(1) {
    color: #FFBC45;
    right: 300px;
}

.dianle-performance .dianle-content .dianle-right .dianle-item:nth-of-type(2) {
    color: var(--dl-primary);
    right: 200px;
    top: -120px;
}

.dianle-performance .dianle-content .dianle-right .dianle-item:nth-of-type(3) {
    color: #13C395;
    right: 60px;
    top: -30px;
}

.dianle-performance .dianle-content .dianle-right .dianle-item span {
    font-size: 35px;
}

.dianle-performance .dianle-content .dianle-right .dianle-item span i {
    font-size: 14px;
    font-style: inherit;
}

.dianle-performance .dianle-content .dianle-right .dianle-item p {
    color: #3D3D3D;
    display: flex;
    align-items: center;
    gap: 5px;
}

.dianle-performance .dianle-content .dianle-right .dianle-item p img {
    width: 15px;
    height: 15px;
    object-fit: contain;
}


/* ========================= 行业解决方案 ========================= */
.dianle-card {
    padding: 82px 0 88px;
    background: #f6f8fb;
}

.dianle-card .dianle-content {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 18px;
    margin-top: 38px;
}

.dianle-card .dianle-content .dianle-item {
    position: relative;
    padding: 0 0 22px;
    border-radius: 4px;
    background-color: #fff;
    display: flex;
    flex-direction: column;
    border: 1px solid var(--dl-line);
    overflow: hidden;
    box-shadow: 0 8px 25px rgba(20, 30, 62, 0.05);
}

.dianle-card .dianle-content .dianle-item:hover {
    transform: translateY(-6px);
    box-shadow: var(--dl-shadow-hover);
}

.dianle-card .dianle-content .dianle-item img {
    width: 100%;
    height: 172px;
    object-fit: cover;
    border-radius: 0;
}

.dianle-card .dianle-content .dianle-item span {
    color: var(--dl-ink);
    font-size: 19px;
    padding: 21px 22px 0;
}

.dianle-card .dianle-content .dianle-item p {
    color: var(--dl-sub);
    font-size: 14px;
    line-height: 1.8;
    padding: 7px 22px 0;
}

.dianle-card .dianle-content .dianle-item small {
    margin-top: 17px;
    padding: 0 22px;
    color: var(--dl-primary);
    font-size: 13px;
}

/* ========================= 首页动态 ========================= */
.dianle-home-news {
    position: relative;
    padding: 78px 0 82px;
    overflow: hidden;
    background: #fff;
}

.dianle-home-news::before {
    display: none;
}

.dianle-home-news::after {
    display: none;
}

.dianle-home-news .dianle-width {
    position: relative;
    z-index: 1;
}

.dianle-home-news-title {
    margin-bottom: 38px;
    text-align: center;
}

.dianle-home-news-title span {
    letter-spacing: 2px;
}

.dianle-home-news-title p {
    color: #3d485d;
    letter-spacing: 1px;
}

.dianle-home-news-list {
    display: grid;
    grid-template-columns: repeat(2, minmax(0, 1fr));
    gap: 28px;
    align-items: stretch;
}

.dianle-home-news-box {
    min-height: 282px;
    padding: 26px 28px 18px;
    border: 2px solid #fff;
    border-radius: 6px;
    background-image: linear-gradient(0deg, #fff, #f3f5f8);
    box-shadow: 8px 8px 20px rgba(55, 99, 170, 0.1);
    transition: transform 0.25s ease, box-shadow 0.25s ease, border-color 0.25s ease;
}

.dianle-home-news-box:hover {
    transform: translateY(-4px);
    border-color: #d9e5ff;
    box-shadow: 14px 18px 34px rgba(55, 99, 170, 0.15);
}

.dianle-home-news-head {
    height: 50px;
    display: flex;
    align-items: center;
    justify-content: space-between;
    border-bottom: 1px solid #ddd;
}

.dianle-home-news-head h3 {
    margin: 0;
    color: #181c29;
    font-size: 17px;
    font-weight: 700;
}

.dianle-home-news-head a {
    display: inline-flex;
    align-items: center;
    gap: 4px;
    color: #2d374c;
    font-size: 13px;
}

.dianle-home-news-head a:hover {
    color: var(--dl-primary);
}

.dianle-home-news-box ul {
    margin: 0;
    padding: 0;
    list-style: none;
}

.dianle-home-news-box li {
    border-bottom: 1px solid #e5e5e5;
    transition: border-color 0.2s ease;
}

.dianle-home-news-box li:last-child {
    border-bottom: 0;
}

.dianle-home-news-box li:hover {
    border-color: var(--dl-primary);
}

.dianle-home-news-item {
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 18px;
    min-height: 52px;
    padding: 13px 0;
    color: #181c29;
}

.dianle-home-news-item strong {
    min-width: 0;
    overflow: hidden;
    color: #181c29;
    font-size: 15px;
    font-weight: 500;
    text-overflow: ellipsis;
    white-space: nowrap;
}

.dianle-home-news-item time {
    flex: 0 0 auto;
    color: #7a8496;
    font-size: 13px;
    font-family: Arial, sans-serif;
    transition: color 0.2s ease;
}

.dianle-home-news-item:hover strong,
.dianle-home-news-item:hover time {
    color: var(--dl-primary);
}

.dianle-home-news-loading,
.dianle-home-news-empty {
    padding: 28px 0;
    color: #7a8496;
    font-size: 14px;
}

@media screen and (max-width: 768px) {
    .dianle-home-news {
        padding: 48px 0 54px;
    }

    .dianle-home-news-title {
        margin-bottom: 24px;
    }

    .dianle-home-news-list {
        grid-template-columns: 1fr;
        gap: 16px;
    }

    .dianle-home-news-box {
        min-height: 0;
        padding: 20px 18px 12px;
    }

    .dianle-home-news-item {
        gap: 12px;
    }

    .dianle-home-news-item strong {
        font-size: 14px;
    }

    .dianle-home-news-item time {
        font-size: 12px;
    }

}


/* ========================= 信赖横幅 ========================= */
.dianle-background-image .dianle-content {
    background: url("/web/idc/image/index/backgroud-image.webp") no-repeat center;
    background-size: cover;
    height: 350px;
    border-radius: 20px;
    display: flex;
    flex-direction: column;
    gap: 30px;
    padding: 50px 100px;
    justify-content: center;
}

.dianle-background-image .dianle-content span {
    color: #fff;
    font-size: 35px;
}

.dianle-background-image .dianle-content p {
    color: #cdd6e6;
    font-size: 15px;
}


/* ========================= 基础设施建设 ========================= */
.dianle-expand {
    padding: 80px 0 40px;
    background: linear-gradient(180deg, #ffffff 0%, #f5f8ff 100%);
}

.dianle-expand .dianle-title {
    text-align: center;
}

.dianle-expand .dianle-content {
    position: relative;
    margin-top: 28px;
    height: 360px;
    background: url("/upload/dianle_template_console/media/image/202607/f845d1ca39b93b8922fa7de16b05147e.webp") no-repeat right center;
    background-size: contain;
}

/* 左侧数据指标 */
.dianle-expand .dianle-stats {
    position: absolute;
    left: 0;
    top: 50%;
    transform: translateY(-50%);
    display: grid;
    grid-template-columns: repeat(3, auto);
    column-gap: 56px;
    row-gap: 48px;
    z-index: 2;
}

.dianle-expand .dianle-stat span {
    display: block;
    font-size: 53px;
    line-height: 1;
    color: var(--dl-primary);
    letter-spacing: 1px;
}

.dianle-expand .dianle-stat span i {
    font-size: 29px;
    font-style: normal;
}

.dianle-expand .dianle-stat p {
    margin-top: 12px;
    font-size: 15px;
    color: var(--dl-sub);
}

/* 地图上的装饰光点 */
.dianle-expand .dianle-map-dot {
    position: absolute;
    width: 10px;
    height: 10px;
    border-radius: 50%;
    background: var(--dl-primary);
    box-shadow: 0 0 0 6px rgba(43, 108, 255, 0.14);
    z-index: 1;
    animation: dianlePulse 2.6s ease-in-out infinite;
}

.dianle-expand .dianle-map-dot.is-green {
    background: #13C395;
    box-shadow: 0 0 0 6px rgba(19, 195, 149, 0.16);
}

.dianle-expand .dianle-dot1 { right: 30%; top: 30%; animation-delay: 0s; }
.dianle-expand .dianle-dot2 { right: 18%; top: 42%; animation-delay: 0.4s; }
.dianle-expand .dianle-dot3 { right: 24%; top: 60%; animation-delay: 0.8s; }
.dianle-expand .dianle-dot4 { right: 9%; top: 36%; animation-delay: 1.2s; }
.dianle-expand .dianle-dot5 { right: 13%; top: 66%; animation-delay: 1.6s; }
.dianle-expand .dianle-dot6 { right: 6%; top: 52%; animation-delay: 2s; }

@keyframes dianlePulse {
    0%, 100% { transform: scale(1); opacity: 1; }
    50% { transform: scale(1.25); opacity: 0.75; }
}

@media screen and (max-width: 1100px) {
}


/* ===================== 手机端适配 ===================== */
@media screen and (max-width: 768px) {
    main#app {
        padding-top: 56px;
    }

    .dianle-section > .dianle-width {
        padding-left: 16px;
        padding-right: 16px;
    }

    .dianle-section .dianle-title span {
        font-size: 25px;
    }

    /* Hero */
    .dianle-hero {
        padding: 0;
    }

.dianle-btn-primary {
        height: 42px;
        line-height: 42px;
        padding: 0 20px;
        font-size: 15px;
    }

/* 性能体验：取消绝对定位，改为竖向堆叠 */
    .dianle-performance {
        height: auto;
        padding: 44px 0;
    }

    .dianle-performance::after,
    .dianle-performance::before {
        display: none;
    }

    .dianle-performance .dianle-content {
        flex-direction: column;
        height: auto;
        gap: 28px;
        align-items: stretch;
    }

    .dianle-performance .dianle-content .dianle-title {
        width: 100%;
        text-align: center;
    }

    .dianle-performance .dianle-content .dianle-right {
        width: 100%;
        position: static;
        display: grid;
        grid-template-columns: repeat(3, 1fr);
        gap: 12px;
    }

    .dianle-performance .dianle-content .dianle-right .dianle-item {
        position: static;
        right: auto !important;
        top: auto !important;
        padding: 16px 10px;
        align-items: center;
        text-align: center;
    }

    .dianle-performance .dianle-content .dianle-right .dianle-item span {
        font-size: 25px;
    }

    .dianle-performance .dianle-content .dianle-right .dianle-item p {
        font-size: 13px;
        justify-content: center;
    }

    /* 行业解决方案 */
    .dianle-card {
        padding: 54px 0;
    }

    .dianle-card .dianle-content {
        grid-template-columns: 1fr;
        gap: 16px;
        margin-top: 24px;
    }

    .dianle-card .dianle-content .dianle-item img {
        height: 180px;
    }

    /* 信赖横幅 */
    .dianle-background-image .dianle-content {
        height: auto;
        min-height: 220px;
        padding: 36px 24px;
        border-radius: 14px;
        gap: 16px;
        text-align: center;
        align-items: center;
    }

    .dianle-background-image .dianle-content span {
        font-size: 23px;
    }

    /* 基础设施建设 */
    .dianle-expand {
        padding: 44px 0;
    }

    .dianle-expand .dianle-content {
        height: auto;
        margin-top: 24px;
        background-position: center top;
        background-size: contain;
        padding-top: 180px;
    }

    .dianle-expand .dianle-stats {
        position: static;
        transform: none;
        grid-template-columns: repeat(3, 1fr);
        column-gap: 12px;
        row-gap: 28px;
        text-align: center;
    }

    .dianle-expand .dianle-stat span {
        font-size: 33px;
    }

    .dianle-expand .dianle-stat span i {
        font-size: 19px;
    }

    .dianle-expand .dianle-stat p {
        font-size: 13px;
        margin-top: 6px;
    }

    .dianle-expand .dianle-map-dot {
        display: none;
    }

}

@media screen and (max-width: 420px) {
.dianle-btn-primary {
        padding: 0 17px;
    }

}

@media (prefers-reduced-motion: reduce) {
}

/* ========================= 行业解决方案 ========================= */
@keyframes dianleIndustryFade {
    from { opacity: 0; transform: translateY(8px); }
    to { opacity: 1; transform: translateY(0); }
}

@media screen and (max-width: 1100px) {
}

@media screen and (max-width: 768px) {
}

/* 全新网络体验 */
.dianle-network-experience {
    padding: 74px 0 86px;
    overflow: hidden;
    background: #f4f8ff url("/upload/dianle_template_console/media/image/202607/df5b79fc23be2838abea7300555dc9fb.png") center / cover no-repeat;
}

.dianle-network-experience .dianle-title {
    margin-bottom: 48px;
}

.dianle-network-marquee {
    width: 100%;
    overflow: hidden;
    -webkit-mask-image: linear-gradient(90deg, transparent, #000 8%, #000 92%, transparent);
    mask-image: linear-gradient(90deg, transparent, #000 8%, #000 92%, transparent);
}

.dianle-network-grid {
    display: grid;
    grid-template-columns: repeat(5, 248px);
    gap: 20px 24px;
    width: max-content;
    margin: 0 auto;
}

.dianle-network-logo {
    position: relative;
    display: flex;
    align-items: center;
    justify-content: center;
    width: 248px;
    height: 76px;
    border: 1px solid rgba(34, 71, 130, 0.05);
    background: rgba(255, 255, 255, 0.94);
    box-shadow: 0 5px 18px rgba(40, 70, 120, 0.035);
    overflow: hidden;
}

.dianle-network-logo img {
    display: block;
    max-width: 116px;
    max-height: 40px;
    object-fit: contain;
    transition: opacity 0.16s ease;
}

.dianle-network-brand-name {
    display: none;
    color: #26364f;
    font-size: 16px;
    font-weight: 600;
    white-space: nowrap;
    transition: opacity 0.16s ease;
}

.dianle-network-logo.has-brand-label {
    gap: 11px;
}

.dianle-network-logo.has-brand-label img {
    max-width: 42px;
    max-height: 32px;
}

.dianle-network-logo.has-brand-label .dianle-network-brand-name {
    display: block;
}

.dianle-network-fragments,
.dianle-network-fragment {
    position: absolute;
    inset: 0;
    pointer-events: none;
}

.dianle-network-fragment {
    opacity: 0;
    background-color: rgba(255, 255, 255, 0.98);
    background-image: var(--fragment-image);
    background-position: center;
    background-repeat: no-repeat;
    background-size: 116px auto;
}

.dianle-network-logo.is-fragmenting-out img,
.dianle-network-logo.is-fragmenting-in img,
.dianle-network-logo.is-fragmenting-out .dianle-network-brand-name,
.dianle-network-logo.is-fragmenting-in .dianle-network-brand-name {
    opacity: 0;
}

.dianle-network-logo.is-fragmenting-out .dianle-network-fragment {
    animation: dianle-fragment-out 0.46s cubic-bezier(0.55, 0, 1, 0.45) both;
    animation-delay: var(--fragment-delay);
}

.dianle-network-logo.is-fragmenting-in .dianle-network-fragment {
    animation: dianle-fragment-in 0.46s cubic-bezier(0, 0.55, 0.45, 1) both;
    animation-delay: var(--fragment-delay);
}

@keyframes dianle-fragment-out {
    from {
        opacity: 1;
        transform: translate(0, 0) rotate(0) scale(1);
    }

    to {
        opacity: 0;
        transform: translate(var(--fragment-x), var(--fragment-y)) rotate(var(--fragment-rotation)) scale(0.62);
    }
}

@keyframes dianle-fragment-in {
    from {
        opacity: 0;
        transform: translate(var(--fragment-x), var(--fragment-y)) rotate(var(--fragment-rotation)) scale(0.62);
    }

    to {
        opacity: 1;
        transform: translate(0, 0) rotate(0) scale(1);
    }
}

@media screen and (max-width: 768px) {
    .dianle-network-experience {
        padding: 52px 0 60px;
    }

    .dianle-network-experience .dianle-title {
        margin-bottom: 32px;
        padding: 0 20px;
    }

    .dianle-network-marquee {
        overflow-x: auto;
        scrollbar-width: none;
        -webkit-mask-image: linear-gradient(90deg, transparent, #000 5%, #000 95%, transparent);
        mask-image: linear-gradient(90deg, transparent, #000 5%, #000 95%, transparent);
    }

    .dianle-network-marquee::-webkit-scrollbar {
        display: none;
    }

    .dianle-network-grid {
        grid-template-columns: repeat(5, 136px);
        gap: 14px;
        margin: 0;
    }

    .dianle-network-logo {
        width: 136px;
        height: 64px;
    }

    .dianle-network-logo img {
        max-width: 96px;
        max-height: 34px;
    }

    .dianle-network-brand-name {
        font-size: 13px;
    }

    .dianle-network-logo.has-brand-label {
        gap: 7px;
    }

    .dianle-network-logo.has-brand-label img {
        max-width: 30px;
        max-height: 26px;
    }

    .dianle-network-fragment {
        background-size: 96px auto;
    }
}

/* 首页底部方案咨询 */
.dl-solution-cta {
    position: relative;
    overflow: hidden;
    padding: 58px 24px;
}

.dl-solution-cta-video,
.dl-solution-cta-image {
    position: absolute;
    inset: 0;
    width: 100%;
    height: 100%;
    object-fit: cover;
}

.dl-solution-cta-image { object-fit: cover; }

.dl-solution-cta .dianle-width {
    position: relative;
    z-index: 1;
    width: min(1180px, 100%);
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    gap: 22px;
    text-align: center;
}

.dl-solution-cta h2 {
    margin: 0;
    color: #fff;
    font-size: 25px;
    font-weight: 600;
    text-shadow: 0 2px 8px rgba(0, 0, 0, 0.72);
}

.dl-solution-cta p {
    margin: 8px 0 0;
    color: #fff;
    font-size: 14px;
    font-weight: 500;
    text-shadow: 0 2px 6px rgba(0, 0, 0, 0.86);
}

@media screen and (max-width: 768px) {
    .dl-solution-cta {
        padding: 44px 20px;
    }

    .dl-solution-cta h2 {
        font-size: 22px;
    }
}

@media (prefers-reduced-motion: reduce) {
}

/* source: public\web\dianle\css\home-icons.css */
@font-face {
    font-family: "remixicon";
    src: url("remixicon.woff2?t=1734404658139") format("woff2");
    font-display: swap;
}

[class^="ri-"], [class*=" ri-"] {
    font-family: "remixicon" !important;
    font-style: normal;
    -webkit-font-smoothing: antialiased;
    -moz-osx-font-smoothing: grayscale;
}

.ri-arrow-right-line::before { content: "\ea6c"; }
.ri-arrow-right-s-line::before { content: "\ea6e"; }
.ri-lightbulb-flash-line::before { content: "\eea8"; }

/* source: public\web\dianle\css\home-display-styles.css */
:root {
    --dl-home-content-left: 100px;
    --dl-home-card-edge: 80px;
}

/* 第二套业务场景卡片，结构和交互对应酷盾云首页。 */
.nq-solutions-section { padding: 48px 0; background: #fff; }
.nq-solutions-container { margin: 0 100px; }
.nq-solutions-title { margin: 0 0 32px; color: #172033; font-size: 36px; font-weight: 600; line-height: 1.2; text-align: left; }
.nq-solutions-grid { display: flex; gap: 0; margin-bottom: 48px; }
.nq-solution-card { position: relative; width: calc((100% - 80px) / 6); min-height: 480px; margin-left: 20px; padding: 24px; overflow: hidden; flex-shrink: 0; cursor: pointer; background-position: center; background-repeat: no-repeat; background-size: cover; transition: width .4s ease; }
.nq-solution-card:first-child { margin-left: 0; }
.nq-solution-card:hover, .nq-solution-card.is-active { width: calc((100% - 80px) / 3); }
.nq-solution-card-content { position: relative; z-index: 1; display: flex; flex-direction: column; height: 100%; }
.nq-solution-card-header { display: flex; align-items: flex-start; margin-bottom: 20px; text-align: left; }
.nq-solution-card-title { margin: 0; color: #fff; font-size: 28px; font-weight: 600; line-height: 1.3; text-align: left; white-space: nowrap; }
.nq-solution-card-expandable { flex: 1; opacity: 0; transform: translateY(20px); transition: opacity .4s ease, transform .4s ease; }
.nq-solution-card:hover .nq-solution-card-expandable, .nq-solution-card.is-active .nq-solution-card-expandable { opacity: 1; transform: translateY(0); }
.nq-solution-card-slogans { display: flex; flex-direction: column; gap: 12px; }
.nq-solution-slogan { display: flex; align-items: center; gap: 8px; color: #fff; font-size: 16px; line-height: 1.5; }
.nq-solution-slogan i { flex-shrink: 0; color: #fff; font-size: 14px; }
.nq-solution-slogan span { color: #fff; }
.nq-solution-card-footer { position: absolute; right: 0; bottom: 0; left: 0; opacity: 0; transform: translateY(20px); transition: opacity .4s ease, transform .4s ease; }
.nq-solution-card:hover .nq-solution-card-footer, .nq-solution-card.is-active .nq-solution-card-footer { opacity: 1; transform: translateY(0); }
.nq-solution-card-recommend-title { margin: 0 0 12px; color: #fff; font-size: 16px; font-weight: 500; line-height: 1.2; }
.nq-solution-card-products { display: flex; flex-wrap: wrap; gap: 8px; }
.nq-solution-product-btn { display: inline-flex; align-items: center; min-height: 32px; padding: 8px 16px; color: #fff; background: rgba(255,255,255,.15); font-size: 14px; line-height: 1; white-space: nowrap; backdrop-filter: blur(10px); transition: background-color .3s ease; }
.nq-solution-product-btn:hover { color: #fff; background: rgba(255,255,255,.28); }
@media (max-width: 1200px) {
    .nq-solutions-container { margin: 0 50px; }
    .nq-solutions-title { font-size: 32px; }
    .nq-solution-card { width: calc((100% - 64px) / 6); min-height: 420px; margin-left: 16px; padding: 22px; }
    .nq-solution-card:hover, .nq-solution-card.is-active { width: calc((100% - 64px) / 3); }
    .nq-solution-card-title { font-size: 26px; }
}
@media (max-width: 900px) {
    .nq-solution-card { width: calc((100% - 48px) / 6); min-height: 360px; margin-left: 12px; padding: 18px; }
    .nq-solution-card:hover, .nq-solution-card.is-active { width: calc((100% - 48px) / 3); }
    .nq-solution-card-title { font-size: 22px; }
    .nq-solution-slogan { font-size: 14px; }
}
@media (max-width: 768px) {
    .nq-solutions-section { padding: 36px 0; }
    .nq-solutions-container { margin: 0 16px; }
    .nq-solutions-title { margin-bottom: 24px; font-size: 24px; }
    .nq-solutions-grid { display: flex; flex-direction: column; gap: 16px; margin-bottom: 32px; }
    .nq-solution-card, .nq-solution-card:hover, .nq-solution-card.is-active { width: 100%; min-height: 300px; margin: 0; padding: 24px; cursor: default; }
    .nq-solution-card-expandable, .nq-solution-card:hover .nq-solution-card-expandable, .nq-solution-card.is-active .nq-solution-card-expandable { opacity: 1; transform: none; }
    .nq-solution-card-footer, .nq-solution-card:hover .nq-solution-card-footer, .nq-solution-card.is-active .nq-solution-card-footer { position: static; margin-top: 20px; opacity: 1; transform: none; }
    .nq-solution-card-title { font-size: 24px; }
    .nq-solution-slogan { font-size: 16px; }
}
@media (max-width: 480px) {
    .nq-solutions-container { margin: 0 12px; }
    .nq-solutions-title { font-size: 22px; }
    .nq-solution-card, .nq-solution-card:hover, .nq-solution-card.is-active { min-height: 280px; padding: 20px; }
    .nq-solution-card-title { font-size: 22px; }
    .nq-solution-slogan { font-size: 15px; }
    .nq-solution-product-btn { padding: 7px 12px; font-size: 13px; }
}

.dl-progress-hero {
    position: relative;
    width: 100%;
    height: 500px;
    overflow: hidden;
    background: #dfe9f7;
}

.dl-progress-hero-slides,
.dl-progress-hero-slide {
    position: absolute;
    inset: 0;
}

.dl-progress-hero-slide {
    z-index: 1;
    opacity: 0;
    visibility: hidden;
    transition: opacity 0.6s ease, visibility 0.6s ease;
}

.dl-progress-hero-slide.is-active {
    z-index: 2;
    opacity: 1;
    visibility: visible;
}

.dl-progress-hero-image,
.dl-progress-hero-video {
    position: absolute;
    inset: 0;
    width: 100%;
    height: 100%;
    object-fit: cover;
    object-position: center;
}

.dl-progress-hero-video {
    z-index: 1;
    pointer-events: none;
}

.dl-progress-hero-image {
    z-index: 0;
}

.dl-progress-hero-media-mobile { display: none; }

.dl-progress-hero-shade {
    position: absolute;
    inset: 0;
    z-index: 2;
    background: linear-gradient(90deg, rgba(246, 249, 253, 0.96) 0%, rgba(246, 249, 253, 0.82) 38%, rgba(246, 249, 253, 0.2) 68%, rgba(246, 249, 253, 0.05) 100%);
}

.dl-progress-hero-content {
    position: relative;
    z-index: 3;
    width: calc(65% - 200px);
    min-height: 240px;
    margin: 0 0 0 var(--dl-home-content-left);
    padding-top: 120px;
    display: flex;
    flex-direction: column;
    gap: 50px;
    text-align: left;
}

.dl-progress-hero-slide:not(.is-active) .dl-progress-hero-content {
    visibility: hidden;
}

.dl-progress-hero-content h1,
.dl-progress-hero-content h2 {
    width: 100%;
    margin: 0;
    color: #172033;
    font-size: 40px;
    font-weight: 700;
    line-height: 1.22;
    letter-spacing: 0;
}

.dl-progress-hero-content p {
    width: 100%;
    height: 51px;
    margin: 0;
    overflow: hidden;
    color: #455168;
    font-size: 16px;
    line-height: 1.65;
    display: -webkit-box;
    -webkit-box-orient: vertical;
    -webkit-line-clamp: 2;
}

.dl-progress-hero-button {
    width: 350px;
    height: 46px;
    margin: 0;
    display: grid;
    grid-template-columns: 1fr auto;
    align-items: center;
    padding: 8px 24px;
    color: #fff;
    background: #2168e8;
    font-size: 18px;
    line-height: 27px;
    font-weight: 600;
    transition: background-color 0.2s ease;
}

.dl-progress-hero-button:hover {
    color: #fff;
    background: #174fb5;
}

.dl-progress-hero-button .ri-arrow-right-line {
    height: 100%;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    font-size: 20px;
    font-weight: 400;
    line-height: 1;
    transition: transform 0.2s ease;
}

.dl-progress-hero-button:hover .ri-arrow-right-line {
    transform: translateX(4px);
}

.dl-progress-hero-pagination {
    position: absolute;
    right: var(--dl-home-content-left);
    bottom: 30px;
    left: var(--dl-home-content-left);
    z-index: 4;
    display: grid;
    grid-template-columns: repeat(4, minmax(0, 1fr));
    gap: 12px;
}

.dl-progress-hero-pagination button {
    position: relative;
    height: 38px;
    padding: 0 12px 13px;
    overflow: hidden;
    border: 0;
    color: #5f6879;
    background: transparent;
    text-align: left;
    cursor: pointer;
}

.dl-progress-hero-pagination button:first-child {
    padding-left: 0;
}

.dl-progress-hero-pagination button::after {
    content: "";
    position: absolute;
    right: 0;
    bottom: 0;
    left: 0;
    height: 1px;
    background: rgba(55, 67, 88, 0.28);
}

.dl-progress-hero-pagination span {
    display: block;
    padding: 4px 12px;
    overflow: hidden;
    font-size: 14px;
    line-height: 16.8px;
    text-overflow: ellipsis;
    white-space: nowrap;
}

.dl-progress-hero-pagination i {
    position: absolute;
    bottom: 0;
    left: 0;
    z-index: 1;
    width: 0;
    height: 2px;
    background: #172033;
}

.dl-progress-hero-pagination button.is-active {
    color: #172033;
    font-weight: 600;
}

.dl-progress-hero-pagination button.is-active i {
    animation: dlProgressHeroFill 5s linear forwards;
}

.dl-progress-hero.is-paused .dl-progress-hero-pagination button.is-active i {
    animation-play-state: paused;
}

@keyframes dlProgressHeroFill {
    from { width: 0; }
    to { width: 100%; }
}

.dl-tencent-entry-section {
    position: relative;
    z-index: 5;
    width: 100%;
    border-bottom: 1px solid #e7eaf0;
    background: #fff;
}

.dl-tencent-entry-nav {
    width: auto;
    height: 112px;
    margin: 0 44px;
    display: grid;
    grid-template-columns: repeat(3, minmax(0, 1fr)) minmax(0, 1.6875fr);
}

.dl-tencent-entry-card,
.dl-tencent-entry-event {
    position: relative;
    min-width: 0;
    height: 112px;
    display: block;
    color: rgba(0, 0, 0, 0.9);
    transition: background-color 0.2s ease;
}

.dl-tencent-entry-card {
    padding: 20px 40px 20px 20px;
}

.dl-tencent-entry-card:nth-child(n + 2)::before,
.dl-tencent-entry-event::before {
    content: "";
    position: absolute;
    top: 20px;
    bottom: 20px;
    left: 0;
    width: 1px;
    background: #eee;
}

.dl-tencent-entry-card:hover,
.dl-tencent-entry-event:hover {
    background-color: rgba(0, 82, 217, 0.04);
}

.dl-tencent-entry-tag {
    display: block;
    color: rgba(0, 0, 0, 0.5);
    font-size: 12px;
    line-height: 20px;
}

.dl-tencent-entry-copy {
    min-width: 0;
    margin-top: 8px;
    display: block;
    color: rgba(0, 0, 0, 0.9);
    font-size: 14px;
    line-height: 22px;
    transition: color 0.2s ease;
}

.dl-tencent-entry-copy > span {
    display: block;
    overflow: hidden;
    text-overflow: ellipsis;
    white-space: nowrap;
}

.dl-tencent-entry-card:hover .dl-tencent-entry-copy {
    color: #0052d9;
}

.dl-tencent-entry-arrow {
    position: absolute;
    top: 50%;
    right: 20px;
    width: 16px;
    height: 16px;
    transform: translateY(-50%);
}

.dl-tencent-entry-arrow::before,
.dl-tencent-entry-arrow::after {
    content: "";
    position: absolute;
    inset: 0;
    background: center / cover no-repeat;
    transition: opacity 0.2s ease;
}

.dl-tencent-entry-arrow::before {
    background-image: url("/web/idc/image/index/tencent-entry/arrow.svg");
}

.dl-tencent-entry-arrow::after {
    opacity: 0;
    background-image: url("/web/idc/image/index/tencent-entry/arrow-active.svg");
}

.dl-tencent-entry-card:hover .dl-tencent-entry-arrow::before {
    opacity: 0;
}

.dl-tencent-entry-card:hover .dl-tencent-entry-arrow::after {
    opacity: 1;
}

.dl-tencent-entry-event {
    padding: 32px 0 18px 20px;
    overflow: hidden;
    background: center / cover no-repeat url("/upload/dianle_template_console/media/image/202607/b8668bea4c2b26da199c36b9a73665a9.png");
}

.dl-tencent-entry-event-inner {
    display: block;
}

.dl-tencent-entry-event-brand {
    height: 20px;
    display: block;
    color: #1765e8;
    font-size: 20px;
    font-weight: 700;
    line-height: 20px;
}

.dl-tencent-entry-event-line {
    margin-top: 12px;
    display: flex;
    align-items: center;
    color: #253554;
    font-size: 16px;
    line-height: 24px;
    white-space: nowrap;
}

.dl-tencent-entry-event-cta {
    height: 28px;
    margin-left: 12px;
    padding: 3px 10px;
    display: inline-flex;
    align-items: center;
    gap: 6px;
    color: #fff;
    background: #27b994;
    font-size: 14px;
    line-height: 22px;
}

.dl-tencent-entry-event-cta img {
    width: 10px;
    height: 10px;
}

@media (max-width: 1199px) {
    :root {
        --dl-home-content-left: 40px;
        --dl-home-card-edge: 40px;
    }

    .dl-progress-hero-content {
        width: calc(100% - 80px);
        margin: 0 0 0 var(--dl-home-content-left);
        padding-top: 104px;
        gap: 32px;
    }

    .dl-progress-hero-pagination {
        right: 40px;
        left: 40px;
    }

    .dl-progress-hero-content h1,
    .dl-progress-hero-content h2 {
        width: 68%;
        font-size: 36px;
    }

    .dl-progress-hero-content p {
        width: 68%;
    }

}

@media (max-width: 767px) {
    .dl-progress-hero-media-desktop { display: none; }
    .dl-progress-hero-media-mobile { display: block; }
    :root {
        --dl-home-content-left: 16px;
        --dl-home-card-edge: 16px;
    }

    .dl-progress-hero {
        height: 340px;
    }

    .dl-progress-hero-shade {
        background: rgba(244, 248, 253, 0.82);
    }

    .dl-progress-hero-content {
        width: calc(100% - 32px);
        height: 100%;
        min-height: 0;
        margin: 0 auto;
        padding: 24px 16px 48px;
        align-items: center;
        justify-content: center;
        gap: 16px;
        text-align: center;
    }

    .dl-progress-hero-content h1,
    .dl-progress-hero-content h2 {
        width: 100%;
        max-height: 62px;
        overflow: hidden;
        font-size: 25px;
        line-height: 1.25;
        display: -webkit-box;
        -webkit-box-orient: vertical;
        -webkit-line-clamp: 2;
    }

    .dl-progress-hero-content p {
        width: 100%;
        height: 44px;
        margin: 0;
        font-size: 14px;
        line-height: 1.55;
    }

    .dl-progress-hero-button {
        width: min(220px, 78%);
        height: 40px;
        margin: 0 auto;
        padding: 6px 20px;
        font-size: 15px;
    }

    .dl-progress-hero-pagination {
        right: 16px;
        bottom: 16px;
        left: 16px;
        gap: 7px;
    }

    .dl-progress-hero-pagination button {
        height: 7px;
        padding: 0;
    }

    .dl-progress-hero-pagination span {
        display: none;
    }

    .dl-tencent-entry-nav {
        width: auto;
        height: auto;
        margin: 0 16px;
        grid-template-columns: repeat(2, minmax(0, 1fr));
    }

    .dl-tencent-entry-card,
    .dl-tencent-entry-event {
        height: 112px;
        border-bottom: 1px solid #e7eaf0;
    }

    .dl-tencent-entry-card {
        padding: 16px 30px 16px 16px;
    }

    .dl-tencent-entry-card:nth-child(n + 2)::before,
    .dl-tencent-entry-event::before {
        top: 16px;
        bottom: 16px;
    }

    .dl-tencent-entry-card:nth-child(3)::before {
        display: none;
    }

    .dl-tencent-entry-arrow {
        right: 12px;
    }

    .dl-tencent-entry-event {
        padding: 18px 12px 12px 16px;
    }

    .dl-tencent-entry-event-brand {
        height: 18px;
        font-size: 17px;
        line-height: 18px;
    }

    .dl-tencent-entry-event-line {
        margin-top: 8px;
        display: block;
        overflow: hidden;
        font-size: 13px;
        line-height: 18px;
        text-overflow: ellipsis;
        white-space: nowrap;
    }

    .dl-tencent-entry-event-cta {
        width: fit-content;
        height: 24px;
        margin: 5px 0 0;
        padding: 1px 8px;
        font-size: 12px;
        line-height: 20px;
    }
}

@media (prefers-reduced-motion: reduce) {
    .dl-progress-hero-slide,
    .dl-progress-hero-pagination button.is-active i {
        transition: none;
        animation: none;
    }
}

/* source: public\web\dianle\css\ucloud-products.css */
.dl-ucloud-products {
    width: 100%;
    padding: 88px 0 60px;
    background: #f6f8fd;
    color: #1d273f;
}

.dl-ucloud-products,
.dl-ucloud-products * {
    box-sizing: border-box;
}

.dl-ucloud-products-inner {
    max-width: 1440px;
    padding-right: 36px;
    padding-left: 36px;
}

.dl-ucloud-products-heading {
    display: flex;
    align-items: flex-end;
    justify-content: space-between;
    gap: 24px;
}

.dl-ucloud-products-heading h2 {
    margin: 0;
    color: #1d273f;
    font-size: 32px;
    font-weight: 500;
    line-height: 1.35;
    letter-spacing: 0;
}

.dl-ucloud-products-heading p {
    margin: 8px 0 0;
    color: #50627f;
    font-size: 16px;
    line-height: 1.6;
}

.dl-ucloud-products-links {
    display: flex;
    align-items: center;
    gap: 48px;
    padding-bottom: 1px;
}

.dl-ucloud-products-links a {
    display: inline-flex;
    align-items: center;
    color: #1d273f;
    font-size: 14px;
    font-weight: 500;
    line-height: 32px;
    text-decoration: none;
    transition: color .2s ease;
}

.dl-ucloud-products-links i {
    margin-left: 6px;
    font-size: 16px;
    transition: transform .2s ease;
}

.dl-ucloud-products-links a:hover {
    color: #3860f4;
}

.dl-ucloud-products-links a:hover i {
    transform: translateX(4px);
}

.dl-ucloud-product-tabs {
    display: flex;
    align-items: stretch;
    justify-content: space-between;
    gap: 2px;
    width: 100%;
    margin-top: 48px;
    padding: 8px;
    overflow-x: auto;
    border: 1px solid rgba(236, 239, 246, .6);
    border-radius: 8px;
    background: #fff;
    scrollbar-width: none;
}

.dl-ucloud-product-tabs::-webkit-scrollbar {
    display: none;
}

.dl-ucloud-product-tab {
    display: inline-flex;
    flex: 0 0 auto;
    align-items: center;
    justify-content: center;
    min-width: 0;
    height: 48px;
    padding: 0 18px;
    border: 0;
    border-radius: 8px;
    background: transparent;
    color: #1d273f;
    cursor: pointer;
    font: inherit;
    font-size: 16px;
    font-weight: 400;
    line-height: 48px;
    white-space: nowrap;
    transition: color .2s ease, background-color .2s ease;
}

.dl-ucloud-product-tab:hover {
    background: #f6f8fd;
}

.dl-ucloud-product-tab.is-active,
.dl-ucloud-product-tab.is-active:hover {
    background: #3860f4;
    color: #fff;
}

.dl-ucloud-product-tab img {
    width: 24px;
    height: 16px;
    margin-right: 8px;
    border-radius: 2px;
    box-shadow: 0 0 0 1px rgba(29, 39, 63, .1);
    object-fit: cover;
}

.dl-ucloud-product-panel {
    display: block;
    width: 100%;
    min-height: 360px;
    height: auto;
    margin-top: 32px;
}

.dl-ucloud-product-panel[hidden] {
    display: none;
}

.dl-ucloud-promos {
    display: flex;
    flex: 0 0 387px;
    flex-direction: column;
    gap: 16px;
    height: 547px;
    margin-right: 16px;
}

.dl-ucloud-promo {
    position: relative;
    display: flex;
    min-height: 0;
    overflow: hidden;
    border-radius: 8px;
    transition: height .3s ease-out, flex-basis .3s ease-out, box-shadow .2s ease;
}

.dl-ucloud-promos.is-featured .dl-ucloud-promo {
    flex: 0 0 108px;
    height: 108px;
    background: #2a315f;
}

.dl-ucloud-promos.is-featured .dl-ucloud-promo.is-active {
    flex-basis: 423px;
    height: 423px;
}

.dl-ucloud-promos.is-standard .dl-ucloud-promo {
    flex: 1 1 0;
    border: 1px solid #e6eaf4;
    background: #fff;
}

.dl-ucloud-promo-collapsed,
.dl-ucloud-promo-expanded,
.dl-ucloud-promo-standard {
    position: absolute;
    inset: 0;
    transition: opacity .25s ease;
}

.dl-ucloud-promo-collapsed {
    padding: 24px;
    color: #fff;
    opacity: 1;
}

.dl-ucloud-promo.is-active .dl-ucloud-promo-collapsed {
    opacity: 0;
    pointer-events: none;
}

.dl-ucloud-promo-expanded {
    display: flex;
    flex-direction: column;
    padding: 12px;
    opacity: 0;
    pointer-events: none;
}

.dl-ucloud-promo.is-active .dl-ucloud-promo-expanded {
    opacity: 1;
    pointer-events: auto;
}

.dl-ucloud-promo-collapsed-head,
.dl-ucloud-promo-title-row,
.dl-ucloud-promo-standard-head {
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 12px;
}

.dl-ucloud-promo-collapsed strong,
.dl-ucloud-promo-title-row strong,
.dl-ucloud-promo-standard strong {
    min-width: 0;
    font-size: 18px;
    font-weight: 500;
    line-height: 28px;
}

.dl-ucloud-promo-collapsed-head img {
    width: 23px;
    height: 12px;
    object-fit: contain;
}

.dl-ucloud-promo-image {
    width: 100%;
    height: 155px;
    margin-bottom: 24px;
    border-radius: 8px;
    object-fit: cover;
}

.dl-ucloud-promo-expanded-copy {
    padding: 0 13px;
}

.dl-ucloud-promo-title-row strong,
.dl-ucloud-promo-expanded .dl-ucloud-promo-description {
    color: #fff;
}

.dl-ucloud-promo-meta {
    display: flex;
    align-items: center;
    gap: 16px;
    flex: 0 0 auto;
}

.dl-ucloud-promo-meta a {
    display: inline-flex;
    align-items: center;
    color: #9da4d6;
    font-size: 14px;
    line-height: 28px;
    text-decoration: none;
}

.dl-ucloud-promo-meta a:hover {
    color: #fff;
}

.dl-ucloud-promo-tags {
    display: flex;
    flex-wrap: wrap;
    gap: 8px;
    margin-top: 8px;
}

.dl-ucloud-promo-tag,
.dl-ucloud-product-tag {
    display: inline-flex;
    align-items: center;
    min-height: 24px;
    padding: 0 8px;
    border-radius: 5px;
    font-size: 12px;
    line-height: 24px;
    white-space: nowrap;
}

.dl-ucloud-promo-collapsed .dl-ucloud-promo-tag,
.dl-ucloud-promo-expanded .dl-ucloud-promo-tag {
    padding: 0 16px;
    background: #3860f4;
    color: #fff;
}

.dl-ucloud-promo-description {
    margin: 16px 0 0;
    color: #50627f;
    font-size: 14px;
    line-height: 28px;
}

.dl-ucloud-promo-buy {
    display: block;
    height: 53px;
    margin: auto 13px 0;
    border-radius: 5px;
    background: #3860f4;
    color: #fff;
    font-size: 16px;
    line-height: 53px;
    text-align: center;
    text-decoration: none;
    transition: background-color .2s ease;
}

.dl-ucloud-promo-buy:hover {
    background: #2348d7;
    color: #fff;
}

.dl-ucloud-promo-standard {
    display: flex;
    flex-direction: column;
    padding: 25px;
}

.dl-ucloud-promo-standard-head {
    color: #1d273f;
}

.dl-ucloud-promo-standard .dl-ucloud-promo-meta a {
    color: #50627f;
}

.dl-ucloud-promo-standard .dl-ucloud-promo-meta a:hover {
    color: #3860f4;
}

.dl-ucloud-promo-standard .dl-ucloud-promo-description {
    margin-top: 4px;
    line-height: 25px;
}

.dl-ucloud-promo-standard .dl-ucloud-promo-tag {
    padding: 0 16px;
    background: #edf1ff;
    color: #50627f;
}

.dl-ucloud-promo-standard-bottom {
    display: flex;
    align-items: flex-end;
    justify-content: space-between;
    gap: 16px;
    margin-top: auto;
}

.dl-ucloud-promo-price {
    color: #50627f;
    font-size: 12px;
    white-space: nowrap;
}

.dl-ucloud-promo-price strong {
    margin-right: 4px;
    color: #3860f4;
    font-size: 36px;
    font-weight: 700;
}

.dl-ucloud-promo-standard .dl-ucloud-promo-buy {
    width: 151px;
    margin: 0;
}

.dl-ucloud-product-grid {
    display: grid;
    grid-template-columns: repeat(3, minmax(0, 1fr));
    gap: 16px;
    min-width: 0;
    height: auto;
    overflow: visible;
}

.dl-cloud-product-summary {
    display: flex;
    align-items: baseline;
    gap: 12px;
    min-height: 30px;
    margin-bottom: 16px;
    color: #50627f;
    font-size: 14px;
}

.dl-cloud-product-summary strong {
    color: #1d273f;
    font-size: 20px;
    font-weight: 500;
}

.dl-cloud-product-state {
    display: flex;
    min-height: 260px;
    align-items: center;
    justify-content: center;
    border: 1px solid #e6eaf4;
    border-radius: 8px;
    background: #fff;
    color: #50627f;
    font-size: 15px;
}

.dl-cloud-product-state[hidden] {
    display: none;
}

.dl-cloud-product-state.is-loading::before {
    width: 18px;
    height: 18px;
    margin-right: 10px;
    border: 2px solid #dce4ff;
    border-top-color: #3860f4;
    border-radius: 50%;
    content: '';
    animation: dl-cloud-product-spin .8s linear infinite;
}

.dl-cloud-product-state.is-error {
    color: #d14343;
}

@keyframes dl-cloud-product-spin {
    to { transform: rotate(360deg); }
}

.dl-cloud-config-card {
    display: flex;
    min-width: 0;
    min-height: 338px;
    flex-direction: column;
    padding: 24px;
    border: 1px solid #e6eaf4;
    border-radius: 8px;
    background: #fff;
    transition: border-color .2s ease, box-shadow .2s ease, transform .2s ease;
}

.dl-cloud-config-card:hover {
    border-color: #cdd8ff;
    box-shadow: 0 12px 28px rgba(29, 39, 63, .08);
    transform: translateY(-2px);
}

.dl-cloud-config-card-head {
    display: flex;
    min-height: 24px;
    align-items: center;
    justify-content: space-between;
    gap: 12px;
}

.dl-cloud-config-category {
    display: flex;
    min-width: 0;
    align-items: center;
    color: #71809b;
    font-size: 12px;
    line-height: 22px;
}

.dl-cloud-config-category span {
    overflow: hidden;
    text-overflow: ellipsis;
    white-space: nowrap;
}

.dl-cloud-config-category i {
    flex: 0 0 auto;
    margin: 0 3px;
}

.dl-cloud-product-recommend {
    flex: 0 0 auto;
    padding: 0 8px;
    border-radius: 5px;
    background: #fff0ec;
    color: #e6532f;
    font-size: 12px;
    line-height: 22px;
}

.dl-cloud-config-name {
    margin: 13px 0 18px;
    overflow-wrap: anywhere;
    color: #1d273f;
    font-size: 20px;
    font-weight: 500;
    line-height: 28px;
}

.dl-cloud-config-list {
    display: grid;
    grid-template-columns: repeat(2, minmax(0, 1fr));
    gap: 10px 16px;
    margin: 0;
}

.dl-cloud-config-item {
    min-width: 0;
    padding: 10px 12px;
    border-radius: 5px;
    background: #f6f8fd;
}

.dl-cloud-config-item dt,
.dl-cloud-config-item dd {
    margin: 0;
    overflow: hidden;
    text-overflow: ellipsis;
    white-space: nowrap;
}

.dl-cloud-config-item dt {
    color: #7b879e;
    font-size: 12px;
    line-height: 18px;
}

.dl-cloud-config-item dd {
    margin-top: 3px;
    color: #27334d;
    font-size: 14px;
    font-weight: 500;
    line-height: 20px;
}

.dl-cloud-config-empty {
    grid-column: 1 / -1;
    padding: 24px 12px;
    border-radius: 5px;
    background: #f6f8fd;
    color: #7b879e;
    font-size: 14px;
    text-align: center;
}

.dl-cloud-config-footer {
    display: flex;
    align-items: flex-end;
    justify-content: space-between;
    gap: 16px;
    margin-top: auto;
    padding-top: 22px;
}

.dl-cloud-config-price {
    display: flex;
    min-width: 0;
    align-items: baseline;
    color: #50627f;
}

.dl-cloud-config-price small {
    margin-right: 6px;
    color: #7b879e;
    font-size: 12px;
}

.dl-cloud-config-price strong {
    color: #3860f4;
    font-size: 28px;
    font-weight: 700;
    line-height: 34px;
}

.dl-cloud-config-price span {
    margin-left: 3px;
    font-size: 12px;
}

.dl-cloud-product-buy {
    display: inline-flex;
    flex: 0 0 auto;
    align-items: center;
    justify-content: center;
    min-width: 108px;
    height: 40px;
    padding: 0 15px;
    border-radius: 5px;
    background: #3860f4;
    color: #fff;
    font-size: 14px;
    text-decoration: none;
    transition: background-color .2s ease;
}

.dl-cloud-product-buy i {
    margin-right: 6px;
    font-size: 16px;
}

.dl-cloud-product-buy:hover {
    background: #2348d7;
    color: #fff;
}

.dl-cloud-product-buy.is-disabled {
    background: #c7cfde;
    cursor: not-allowed;
}

/* Static two-column layout: introduction cards on the left, products on the right. */
.dl-ucloud-product-panel {
    display: flex;
    min-height: 547px;
    height: 547px;
}

.dl-ucloud-product-grid {
    flex: 1 1 auto;
    grid-template-columns: repeat(3, minmax(0, 1fr));
    grid-template-rows: repeat(2, minmax(0, 1fr));
    gap: 12px;
    height: 547px;
}

.dl-cloud-static-card {
    display: flex;
    min-width: 0;
    min-height: 0;
    flex-direction: column;
    padding: 16px 18px;
    border: 1px solid #e6eaf4;
    border-radius: 8px;
    background: #fff;
    transition: border-color .2s ease, box-shadow .2s ease, transform .2s ease;
}

.dl-cloud-static-card:hover {
    border-color: #9eb2ff;
    box-shadow: 0 10px 26px rgba(35, 72, 215, .09);
    transform: translateY(-2px);
}

.dl-cloud-static-head {
    display: flex;
    min-height: 44px;
    align-items: flex-start;
    justify-content: space-between;
    gap: 12px;
}

.dl-cloud-static-head > div {
    min-width: 0;
}

.dl-cloud-static-head h3 {
    margin: 0;
    overflow: hidden;
    color: #1d273f;
    font-size: 17px;
    font-weight: 600;
    line-height: 24px;
    text-overflow: ellipsis;
    white-space: nowrap;
}

.dl-cloud-static-head p {
    margin: 3px 0 0;
    overflow: hidden;
    color: #7b879e;
    font-size: 12px;
    line-height: 18px;
    text-overflow: ellipsis;
    white-space: nowrap;
}

.dl-cloud-static-head b {
    flex: 0 0 auto;
    padding: 0 7px;
    border: 1px solid #ffcfbe;
    border-radius: 3px;
    background: #fff5f1;
    color: #e34f24;
    font-size: 12px;
    font-weight: 500;
    line-height: 20px;
}

.dl-cloud-static-config {
    display: grid;
    gap: 1px;
    margin: 10px 0 0;
    padding: 0;
    background: transparent;
}

.dl-cloud-static-config > div {
    display: grid;
    grid-template-columns: 48px minmax(0, 1fr);
    min-width: 0;
    align-items: center;
    min-height: 21px;
}

.dl-cloud-static-config dt,
.dl-cloud-static-config dd {
    margin: 0;
    overflow: hidden;
    font-size: 12px;
    line-height: 21px;
    text-overflow: ellipsis;
    white-space: nowrap;
}

.dl-cloud-static-config dt {
    color: #8a96aa;
}

.dl-cloud-static-config dd {
    color: #26334d;
    font-weight: 500;
}

.dl-cloud-static-offer {
    display: flex;
    min-height: 20px;
    align-items: center;
    margin-top: 8px;
}

.dl-cloud-static-offer strong,
.dl-cloud-static-offer span {
    display: inline-flex;
    align-items: center;
    height: 20px;
    font-size: 12px;
    font-weight: 500;
}

.dl-cloud-static-offer strong {
    padding: 0 7px;
    border-radius: 3px 0 0 3px;
    background: #f05a28;
    color: #fff;
}

.dl-cloud-static-offer span {
    padding: 0 7px;
    border: 1px solid #ffd0c1;
    border-left: 0;
    border-radius: 0 3px 3px 0;
    background: #fff6f2;
    color: #d84d22;
}

.dl-cloud-static-card > footer {
    display: flex;
    align-items: flex-end;
    justify-content: space-between;
    gap: 12px;
    margin-top: auto;
    padding-top: 7px;
}

.dl-cloud-static-price {
    min-width: 0;
}

.dl-cloud-static-price > div {
    display: flex;
    align-items: baseline;
    min-width: 0;
}

.dl-cloud-static-price small,
.dl-cloud-static-price strong,
.dl-cloud-static-price span {
    color: #e84f20;
}

.dl-cloud-static-price small {
    font-size: 13px;
    font-weight: 600;
}

.dl-cloud-static-price strong {
    font-size: 27px;
    font-weight: 700;
    line-height: 29px;
}

.dl-cloud-static-price span {
    margin-left: 3px;
    font-size: 11px;
}

.dl-cloud-static-price p {
    margin: 1px 0 0;
    overflow: hidden;
    color: #7b879e;
    font-size: 10px;
    line-height: 14px;
    text-overflow: ellipsis;
    white-space: nowrap;
}

.dl-cloud-static-price del {
    margin-left: 5px;
    color: #a6afbf;
}

.dl-cloud-static-card > footer a {
    display: inline-flex;
    flex: 0 0 auto;
    align-items: center;
    justify-content: center;
    width: 94px;
    height: 38px;
    padding: 0 10px;
    border-radius: 4px;
    background: #3860f4;
    color: #fff;
    font-size: 13px;
    font-weight: 500;
    text-decoration: none;
    transition: background-color .2s ease;
}

.dl-cloud-static-card > footer a:hover {
    background: #2348d7;
    color: #fff;
}

.dl-ucloud-product-card {
    display: flex;
    min-width: 0;
    height: 100%;
    align-items: center;
    padding: 20px 18px 20px 15%;
    color: inherit;
    text-decoration: none;
    transition: background-color .2s ease;
}

.dl-ucloud-product-card:hover {
    background: #fafbfe;
}

.dl-ucloud-product-card-copy {
    width: 100%;
    min-width: 0;
}

.dl-ucloud-product-card-title {
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 8px;
    margin: 0 0 4px;
    color: #1d273f;
    font-size: 18px;
    font-weight: 500;
    line-height: 26px;
    transition: color .2s ease;
}

.dl-ucloud-product-card-title span {
    display: block;
    min-width: 0;
    overflow: hidden;
    text-overflow: ellipsis;
    white-space: nowrap;
}

.dl-ucloud-product-card-title i {
    flex: 0 0 auto;
    color: #50627f;
    transition: color .2s ease, transform .2s ease;
}

.dl-ucloud-product-card:hover .dl-ucloud-product-card-title,
.dl-ucloud-product-card:hover .dl-ucloud-product-card-title i {
    color: #3860f4;
}

.dl-ucloud-product-card:hover .dl-ucloud-product-card-title i {
    transform: translateX(3px);
}

.dl-ucloud-product-card-description {
    display: -webkit-box;
    height: 50px;
    margin: 0;
    overflow: hidden;
    color: #50627f;
    font-size: 14px;
    font-weight: 300;
    line-height: 25px;
    -webkit-box-orient: vertical;
    -webkit-line-clamp: 2;
}

.dl-ucloud-product-tags {
    display: flex;
    gap: 8px;
    min-width: 0;
    margin-top: 8px;
    overflow: hidden;
}

.dl-ucloud-product-tag {
    flex: 0 1 auto;
    min-width: 0;
    overflow: hidden;
    background: #edf1ff;
    color: #50627f;
    text-overflow: ellipsis;
}

.dl-ucloud-product-card:hover .dl-ucloud-product-tag {
    color: #3860f4;
}

.dl-ucloud-product-card.is-activity .dl-ucloud-product-card-description {
    height: auto;
    color: #3860f4;
}

@media (max-width: 1279px) {
    .dl-ucloud-products-inner {
        padding-right: 24px;
        padding-left: 24px;
    }

    .dl-ucloud-product-tab {
        padding-right: 15px;
        padding-left: 15px;
    }

    .dl-ucloud-promos {
        flex-basis: 340px;
    }

    .dl-ucloud-product-card {
        padding-left: 24px;
    }
}

@media (max-width: 1023px) {
    .dl-ucloud-products {
        padding: 64px 0 48px;
    }

    .dl-ucloud-product-tabs {
        justify-content: flex-start;
        margin-top: 36px;
    }

    .dl-ucloud-product-panel {
        display: block;
        height: auto;
    }

    .dl-ucloud-promos {
        display: grid;
        grid-template-columns: repeat(2, minmax(0, 1fr));
        width: 100%;
        height: 300px;
        margin: 0 0 16px;
    }

    .dl-ucloud-promos.is-featured .dl-ucloud-promo,
    .dl-ucloud-promos.is-featured .dl-ucloud-promo.is-active,
    .dl-ucloud-promos.is-standard .dl-ucloud-promo {
        height: 300px;
        flex-basis: auto;
    }

    .dl-ucloud-promos.is-featured .dl-ucloud-promo {
        background: #2a315f;
    }

    .dl-ucloud-promos.is-featured .dl-ucloud-promo-collapsed {
        display: none;
    }

    .dl-ucloud-promos.is-featured .dl-ucloud-promo-expanded {
        opacity: 1;
        pointer-events: auto;
    }

    .dl-ucloud-promo-image {
        height: 104px;
        margin-bottom: 14px;
    }

    .dl-ucloud-promo-description {
        display: -webkit-box;
        margin-top: 8px;
        overflow: hidden;
        -webkit-box-orient: vertical;
        -webkit-line-clamp: 2;
    }

    .dl-ucloud-promo-buy {
        height: 42px;
        line-height: 42px;
    }

    .dl-ucloud-product-grid {
        grid-template-columns: repeat(2, minmax(0, 1fr));
        grid-template-rows: none;
        height: auto;
    }

    .dl-ucloud-product-card {
        min-height: 178px;
    }

    .dl-cloud-static-card {
        min-height: 260px;
    }
}

@media (max-width: 767px) {
    .dl-ucloud-products {
        padding: 48px 0 40px;
    }

    .dl-ucloud-products-inner {
        padding-right: 16px;
        padding-left: 16px;
    }

    .dl-ucloud-products-heading {
        display: block;
    }

    .dl-ucloud-products-heading h2 {
        font-size: 26px;
    }

    .dl-ucloud-products-links {
        gap: 28px;
        margin-top: 14px;
    }

    .dl-ucloud-product-tabs {
        margin-top: 28px;
    }

    .dl-ucloud-product-tab {
        height: 44px;
        padding: 0 14px;
        font-size: 14px;
        line-height: 44px;
    }

    .dl-ucloud-promos {
        display: none;
        height: auto;
    }

    .dl-ucloud-promos.is-featured .dl-ucloud-promo,
    .dl-ucloud-promos.is-featured .dl-ucloud-promo.is-active,
    .dl-ucloud-promos.is-standard .dl-ucloud-promo {
        flex: 0 0 auto;
        width: 100%;
        height: 300px;
    }

    .dl-ucloud-promo-standard {
        padding: 20px;
    }

    .dl-ucloud-product-grid {
        grid-template-columns: 1fr;
    }

    .dl-ucloud-product-card {
        min-height: 154px;
        padding: 18px 20px;
    }

    .dl-ucloud-product-card-description {
        height: auto;
        min-height: 44px;
        line-height: 22px;
    }

    .dl-cloud-config-card {
        min-height: 320px;
        padding: 20px;
    }

    .dl-cloud-config-list {
        gap: 8px;
    }

    .dl-cloud-config-footer {
        align-items: stretch;
        flex-direction: column;
    }

    .dl-cloud-product-buy {
        width: 100%;
    }

    .dl-cloud-static-card {
        min-height: 258px;
    }
}

@media (prefers-reduced-motion: reduce) {
    .dl-ucloud-products * {
        scroll-behavior: auto !important;
        transition-duration: .01ms !important;
    }
}
