@font-face {
    font-family: 'Source Han Sans CN';
    src        : url('../fonts/SourceHanSansCN-Medium.woff2') format('woff2');
    font-weight: 500;
    font-style : normal;
    font-display: swap
}

* {
    box-sizing: border-box
}

html {
    scroll-behavior: smooth
}

/* 细滚动条（Chrome / Edge / Safari） */
*::-webkit-scrollbar {
    width : 8px;
    height: 8px
}

*::-webkit-scrollbar-track {
    background: transparent
}

*::-webkit-scrollbar-thumb {
    background   : rgba(120, 145, 185, .35);
    border-radius: 8px
}

*::-webkit-scrollbar-thumb:hover {
    background: rgba(120, 145, 185, .55)
}

/* 细滚动条（Firefox） */
* {
    scrollbar-width : thin;
    scrollbar-color : rgba(120, 145, 185, .35) transparent
}

body {
    margin                : 0;
    color                 : var(--wj-text);
    background            : #fff;
    font-family           : "Source Han Sans CN", "PingFang SC", "Microsoft YaHei", Arial, sans-serif;
    -webkit-font-smoothing: antialiased
}

body,
button,
input,
select,
textarea {
    font-size: 15px
}

h1,
h2,
h3,
h4,
p,
ul,
ol,
dl,
dd {
    margin: 0
}

ul,
ol {
    padding   : 0;
    list-style: none
}

a {
    color          : inherit;
    text-decoration: none
}

button,
input,
select,
textarea {
    font: inherit
}

button {
    background: none
}

img {
    display  : block;
    max-width: 100%;
    height   : auto
}

.container {
    width : min(var(--wj-container), calc(100% - 48px));
    margin: 0 auto
}

.wj-section {
    padding: 82px 0
}

.wj-section--soft {
    background: var(--wj-blue-pale)
}

.wj-title {
    text-align    : center;
    font-size     : 30px;
    font-weight   : 600;
    letter-spacing: 1px;
    margin-bottom : 50px
}

.wj-btn {
    display        : inline-flex;
    align-items    : center;
    justify-content: center;
    min-height     : 38px;
    padding        : 0 18px;
    border-radius  : 3px;
    color          : #fff;
    background     : linear-gradient(90deg, var(--wj-blue), var(--wj-cyan));
    font-size      : 14px
}

.wj-btn i {
    font-style : normal;
    margin-left: 24px
}

.wj-card {
    background: #fff;
    box-shadow: var(--wj-shadow)
}

.wj-sr-only {
    position   : absolute;
    width      : 1px;
    height     : 1px;
    overflow   : hidden;
    clip       : rect(0, 0, 0, 0);
    white-space: nowrap
}

.cms-empty {
    padding   : 80px 20px;
    text-align: center;
    color     : var(--wj-muted)
}

.page-inner {
    display        : flex;
    justify-content: center;
    padding-top    : 48px
}

.page-inner a,
.page-inner span {
    display    : inline-grid;
    place-items: center;
    min-width  : 36px;
    height     : 36px;
    padding    : 0 10px;
    border     : 1px solid var(--wj-line);
    margin     : 0 3px;
    color      : var(--wj-body)
}

.page-inner .active,
.page-inner .current {
    color       : #fff;
    /* background  : var(--wj-blue);
    border-color: var(--wj-blue) */
}

/* 全站通用：内容图片鼠标悬浮放大动画（图标/logo/二维码/轮播图除外） */
.value-card img,
.screen-grid img,
.showcase-lead img,
.architecture-box img,
.ai-scenes-digital img,
.ai-scenes-figures img,
.feature-row>img,
.article-image img,
.home-news-feature img,
.home-product-image img,
.home-solution-image img,
.download-feature-image img,
.home-solution-card img,
.solution-content-card img {
    transition: transform .35s ease
}

/* 悬浮图片所在父元素即触发放大 */
.value-card:hover img,
.screen-grid figure:hover img,
.showcase-lead:hover img,
.architecture-box:hover img,
.ai-scenes-digital:hover img,
.ai-scenes-figures figure:hover img,
.feature-row:hover>img,
.article-image:hover img,
.home-news-feature:hover img,
.home-product-image:hover img,
.home-solution-image:hover img,
.home-solution-card:hover img,
.download-feature-image:hover img,
.solution-content-card:hover img {
    transform: scale(1.05)
}

@media(max-width:760px) {
    .container {
        width: calc(100% - 32px)
    }

    .wj-section {
        padding: 54px 0
    }

    .wj-title {
        font-size    : 24px;
        margin-bottom: 34px
    }
}