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

body{
    max-width: 750px;
    margin: 0 auto;

}


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: "abcfont";
    font-weight: inherit;
    resize: none;
}

::placeholder {
    font-family: "abcfont";
}

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

@font-face {
    font-family: "abcfont";
    src: url("./zaozigongfangnaisiti.ttf");
}

html {
    font-size: 16px;
    font-family: "abcfont";
    overflow-x: hidden;
    -webkit-font-smoothing: antialiased;
    position: relative;
    line-height: 1;
    scroll-behavior: smooth;
    --themeColor: #FD9900;
    background: #222222;
}

::-webkit-scrollbar {
    width: 4px;
    height: 1px;
}

::-webkit-scrollbar-thumb {
    background: var(--themeColor);
}

::-webkit-scrollbar-track {
    background: none;
}

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

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

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

.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;
}


.pager {
    display: flex;
    align-items: center;
    justify-content: center;
    flex-wrap: wrap;
    gap: 10px;
    margin: 30px 0;
}

.pager a,
.pager span {
    display: flex;
    align-items: center;
    justify-content: center;
    padding: 0 16px;
    height: 40px;
    border-radius: 50px;
    color: rgb(255, 255, 255, 0.5);
    background: #1B1B1B;
    font-size: 14px;
    margin: 0 2px;
}

.pager a.active,
.pager a:hover {
    background: var(--themeColor);
    border: none;
    color: #121315;
}