/* =========================================================
   Common
   公共基础样式
========================================================= */


/* =========================================================
   基础
========================================================= */

html {
    scroll-behavior: smooth;
}


body {
    font-family:
        "Microsoft YaHei",
        "PingFang SC",
        Arial,
        sans-serif;

    color: #222;
    background: #fff;

    overflow-x: hidden;
}


a {
    color: inherit;
    text-decoration: none;
}


button {
    font-family: inherit;
}


img {
    display: block;
    max-width: 100%;
}


/* =========================================================
   公共容器
========================================================= */

.container {
    width: calc(100% - 40px);
    max-width: 940px;

    margin: 0 auto;
}


/* =========================================================
   公共标题
========================================================= */

.section-title {
    display: flex;
    align-items: center;
    justify-content: center;

    margin-bottom: 30px;
}


.section-title h2 {
    color: #202020;

    font-size: 26px;
    font-weight: 700;

    line-height: 34px;

    white-space: nowrap;
}


.section-title span {
    width: 13px;
    height: 3px;

    margin-left: 6px;
    margin-top: 18px;

    background: #0076c8;

    border-radius: 2px;

    transform: skewX(-25deg);
}


/* =========================================================
   通用隐藏锚点
========================================================= */

.anchor-placeholder {
    width: 0;
    height: 0;

    overflow: hidden;
}