/* 通用样式设置 */
* {
    margin: 0;
    padding: 0;
    border: none;
    box-sizing: border-box;
    font-family: "abcfont";
    user-select: none;
    -webkit-user-drag: none;
    outline: none;
}

/* 引入字体 */
@font-face {
    font-family: "abcfont";
    src: url("./zaozigongfangnaisiti.ttf");
}

table {
    border-collapse: collapse;
}

i {
    font-style: normal;
}

ol, ul {
    list-style: none;
}

input, textarea, select, button {
    font-size: inherit;
    resize: none;
}

a {
    text-decoration: none !important;
    color: inherit;
    transition: color 0.3s ease;
}

html {
    font-size: 0.83vw;
    color: black;
    overflow-x: hidden;
    -webkit-font-smoothing: antialiased;
    position: relative;
    line-height: 1;
    scroll-behavior: smooth;
    --themeColor: #62bfcc;
}

::selection {
    background: var(--themeColor);
    color: #fff;
}

img {
    max-width: 100%;
    height: auto;
    display: block;
    transition: all 0.3s ease;
}

.tab-content > .tab-pane {
    display: none;
}

.tab-content > .active {
    display: block;
}

/* 自定义滚动条 */
::-webkit-scrollbar {
    width: 0.26vw;
    height: 0.05vw;
}

::-webkit-scrollbar-thumb {
    background: var(--themeColor);
}

::-webkit-scrollbar-track {
    background: #eee;
}

/* 文本溢出省略号 */
.clamp1, .clamp2, .clamp3, .clamp4 {
    text-overflow: ellipsis;
    display: -webkit-box;
    overflow: hidden;
    -webkit-box-orient: vertical;
}

.clamp1 {
    -webkit-line-clamp: 1;
}

.clamp2 {
    -webkit-line-clamp: 2;
}

.clamp3 {
    -webkit-line-clamp: 3;
}

.clamp4 {
    -webkit-line-clamp: 4;
}

.container {
    width: 62.50vw;
    margin: 0 auto;
}

/* 左侧悬浮样式 */
.left-yy {
    position: absolute;
    top: 0;
    right: 100%;
    width: 24.48vw;
    height: 100%;
    background: url(../images/aside_yy.png) no-repeat 0 0;
    background-size: 100% auto;
    transform: translate(40%, 0);
    z-index: 20;
}

    .left-yy a {
        position: absolute;
        top: 6.15vw;
        right: 2.71vw;
        width: 5.63vw;
        height: 13.33vw;
        background: url(../images/aside_yyBtn.png) no-repeat;
        background-size: cover;
    }

        .left-yy a:hover {
            background-image: url(../images/aside_yyBtn2.png);
        }

/* 下一页按钮 */
a.next-page {
    position: absolute;
    right: 1.56vw;
    bottom: 2.08vw;
    z-index: 20;
}

    a.next-page img {
        height: 4.06vw;
    }

    a.next-page:hover img {
        transform: scale(1.05);
    }

/* 返回顶部按钮 */
a.to-top {
    position: fixed;
    right: 15.10vw;
    bottom: 0;
    z-index: 99;
}

    a.to-top img {
        width: 3.54vw;
    }

/* 公告弹窗 */
.web_notice {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: rgba(0, 0, 0, 0.3);
    z-index: 99999;
    display: none;
}

.notice_content {
    position: fixed;
    top: 50%;
    left: 50%;
    width: 550px;
    background: #FFF;
    transform: translate(-50%, -50%);
    border-radius: 40px;
    padding: 50px 40px;
}

.notice_button {
    display: block;
    background: #98a3ff;
    color: #FFF;
    text-align: center;
    font-weight: bold;
    font-size: 19px;
    line-height: 60px;
    margin: 0 auto;
    margin-top: 45px;
    border-radius: 32px;
    width: 80%;
    cursor: pointer;
}
