@import url(./media.css);

:root {
    /* 主色调 */
    --primary-100: #00BFFF;
    --primary-200: #00a2e0;
    --primary-300: #00619a;
    /* 强调色 */
    --accent-100: #FF6347;
    --accent-200: #8d0000;
    /* 文本色 */
    --text-100: #333333;
    --text-200: #5c5c5c;
    /* 背景色 */
    --bg-100: #F0F0F0;
    --bg-200: #e6e6e6;
    --bg-300: #bebebe;
}

* {
    padding: 0;
    margin: 0;
    box-sizing: border-box;
}

html {
    scroll-behavior: smooth;
}

body {
    font: 12px / 1.5 system-ui, -apple-system, Segoe UI, Roboto, Ubuntu, Cantarell, Noto Sans, sans-serif, Apple Color Emoji, Segoe UI Emoji, Segoe UI Symbol, Noto Color Emoji, BlinkMacSystemFont, Helvetica Neue, Arial, PingFang SC, PingFang TC, PingFang HK, Microsoft Yahei, Microsoft JhengHei;
    color: #333;
    background-color: var(--bg-100);
}

a {
    text-decoration: none;
    color: inherit;
}

ul {
    list-style: none;
}

input,
button {
    outline: none;
    border: none;
}

i,
em {
    font-style: normal;
}

/* 产品页各板块 大标题 */
.BigTitle {
    display: flex;
    justify-content: center;
    align-items: center;
    gap: 11px;
    color: #ccc;
    padding: 22px 0;
}

.BigTitle em {
    width: 50px;
    height: 1px;
    color: #ccc;
    background: #ccc;
}

.BigTitle span {
    font-size: 26px;
    font-weight: bold;
}