* {
    margin: 0;
    padding: 0;
    border: none;
    outline-style: none;
    box-sizing: border-box;
}

table {
    border-collapse: collapse;
    border-spacing: 0;
}

i {
    font-style: normal;
    font-weight: normal;
}

ol,
ul {
    list-style: none;
}

input,
textarea,
select,
button {
    font-family: "思源黑体";
    font-weight: inherit;
    resize: none;
}

::placeholder {
    font-family: "思源黑体";
}

a,
a:focus,
a:hover {
    text-decoration: none !important;
    color: inherit;
}

@font-face {
    font-family: "思源黑体";
    src: url("./Source-Han-Sans-Regular.ttf");
}

html {
    font-size: 16px;
    color: #010101;
    font-family: "思源黑体";
    overflow-x: hidden;
    -webkit-font-smoothing: antialiased;
    position: relative;
    line-height: 1;
    scroll-behavior: smooth;
    --themeColor: #EE483F;
    --themeColor2: #ffffff;
}

::selection {
    background: var(--themeColor);
    color: #fff;
}

:focus {
    outline-color: var(--themeColor);
}

img {
    max-width: 100%;
    height: auto;
    transition: all 0.3s ease;
}

.tab-content>.tab-pane {
    display: none;
}

.tab-content>.active {
    display: block;
}

.clamp1,
.clamp2,
.clamp3,
.clamp4 {
    text-overflow: ellipsis;
    display: -webkit-box;
    -webkit-line-clamp: 1;
    -webkit-box-orient: vertical;
    overflow: hidden;
}

.clamp2 {
    -webkit-line-clamp: 2;
}

.clamp3 {
    -webkit-line-clamp: 3;
}

.clamp4 {
    -webkit-line-clamp: 4;
}

.container {
    box-sizing: border-box;
    width: 1440px;
    margin: 0 auto;
}

.pager {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 20px;
}

.pager a,
.pager span {
    display: flex;
    align-items: center;
    justify-content: center;
    width: 42px;
    height: 42px;
    border-radius: 8px;
    background: #fff;
}

.pager a.active,
.pager a:hover {
    background: #EE483F;
    border-radius: 12px;
    color: #fff;
    border: none;
}

#common-copy {
    display: none;
}

@media (max-width: 1440px) {
    .container {
        width: 1170px;
    }
}

@media (max-width: 992px) {
    .container {
        width: 100%;
        padding: 0 5.04vw;
    }
}