:root {
    --primary-color: #1A1A1A;
    --second-color: #EDB54B;

    --font-style: normal;

    /* banner */
    --font-banner-size: 62px;

    /* 大标题 */
    --font-title-family: var(--title-font-family);
    --font-title-size: 42px;
    --font-title-weight: 700;

    /* 中标题 */
    --sub-font-family: var(--font-family);
    --sub-title-size: 32px;
    --sub-title-weight: 700;

    /* 小标题 */
    --small-font-family: var(--font-family);
    --small-title-size: 24px;
    --small-title-weight: 600;


    /* 正文 */
    --desc-font-family: var(--font-family);
    --desc-font-size: 18px;
    --desc-font-weight: 400;
    --desc-font-color: #666;

    --text-color-white: #fff;
    --text-color-black: #000;

}

a:hover {
    color: inherit !important;
}
.none{
    display: none !important;
}

/* 大标题 */
.huirui-large-title{
    color: var(--primary-color);
    font-family: var(--font-title-family);
    font-size: var(--font-title-size);
    font-style: var(--font-style);
    font-weight: var(--font-title-weight);
    line-height: 142.857%; /* 142.857% */
}
/* 中标题 */
.huirui-middle-title{
    color: var(--primary-color);
    font-family: var(--sub-font-family);
    font-size: var(--sub-title-size);
    font-style: var(--font-style);
    font-weight: var(--sub-title-weight);
    line-height: 150%; /* 150% */
}
/* 小标题 */
.huirui-small-title{
    color: var(--primary-color);
    font-family: var(--small-font-family);
    font-size: var(--small-title-size);
    font-style: var(--font-style);
    font-weight: var(--small-title-weight);
    line-height: 133.333%; /* 133.333% */
}
/* 正文 */
.huirui-main-text{
    color: var(--desc-font-color);
    font-family: var(--desc-font-family);
    font-size: var(--desc-font-size);
    font-style: var(--font-style);
    font-weight: var(--desc-font-weight);
    line-height: 155.556%; /* 155.556% */
}
/* 浅色背景按钮 */
.huirui-light-button{
    display: inline-flex;
    padding: 10px 25px;
    justify-content: center;
    align-items: center;
    gap: 10px;
    border-radius: 6px;
    border: 1px solid var(--primary-color);
    color: var(--primary-color);
    font-family: var(--desc-font-family);
    font-size: 16px;
    font-style: normal;
    font-weight: 500;
    line-height: 162.5%; /* 162.5% */
}
.huirui-light-button:hover{
    background: var(--primary-color);
    color: var(--text-color-white) !important;
}
/* 深色背景按钮 */
.huirui-dark-button{
    display: inline-flex;
    padding: 10px 25px;
    justify-content: center;
    align-items: center;
    gap: 10px;
    border-radius: 6px;
    border: 1px solid var(--second-color);
    color: var(--text-color-white);
    font-family: var(--desc-font-family);
    font-size: 16px;
    font-style: normal;
    font-weight: 500;
    line-height: 162.5%; /* 162.5% */
}
.huirui-dark-button:hover{
    background: var(--second-color);
    color: var(--text-color-white) !important;
}
/* 文字按钮 */
.huirui-text-button{
    color: var(--desc-font-color);
    font-family: var(--desc-font-family);
    font-size: 16px;
    font-style: var(--font-style);
    font-weight: 500;
    line-height: 162.5%; /* 162.5% */
}
.huirui-text-button:hover{
    color: var(--second-color) !important;
}
/* 轮播按钮 */
.huirui-navigation{
    display: flex;
    gap: 20px;
}
.huirui-button-prev,
.huirui-button-next{
    display: flex;
    align-items: center;
    justify-content: center;
    width: 46px;
    height: 46px;
    border-radius: 10px;
    background: var(--primary-color);
    color: var(--text-color-white);
    cursor: pointer;
}
/* .huirui-button-next{
    background: var(--second-color);
} */
.huirui-button-prev::after,
.huirui-button-next::after{
    font-size: 20px;
}
.huirui-button-prev.active,
.huirui-button-next.active{
    background: var(--second-color);
}
/* .huirui-button-prev:hover,
.huirui-button-next:hover{
    background: var(--second-color);
} */


@media screen and (min-width: 1700px) {
    .container{
        max-width: 1650px;
    }
}

@media screen and (max-width: 1500px) {
    :root {
        --font-banner-size: 50px;
        --font-title-size: 36px;
        --sub-title-size: 30px;
    }
    .container{
        max-width: 95%;
    }
}
@media screen and (max-width: 1200px) {
    :root {
        --font-banner-size: 36px;
        --font-title-size: 30px;
        --sub-title-size: 28px;
    }
}
@media screen and (max-width: 992px) {
    :root {
        --font-banner-size: 30px;
        --font-title-size: 26px;
        --sub-title-size: 24px;
        --small-title-size: 20px;
    }
}
@media screen and (max-width: 768px) {
    :root {
        --font-banner-size: 20px;
        --font-title-size: 24px;
        --sub-title-size: 22px;
        --desc-font-size: 16px;
    }
    .huirui-navigation{
        display: none;
    }
}