@font-face {
    font-family: SourceHanSansVF;
    src: url(/static/font/SourceHanSerifCN-VF.otf);
}

*{
    padding: 0;
    box-sizing: border-box;
    font-family: SourceHanSansVF;
    font-display: swap;
}


a{
    color: inherit;
}

input,textarea{
    outline: none;
    font-family: inherit;
}

textarea {
    resize: none;
}

a:hover, a:focus{
    text-decoration: none;
}



/* 滚动条 -------------------------------------------------------------------------------- 开始 */
::-webkit-scrollbar {
    width: 6px;
}

::-webkit-scrollbar-track {
    background: #f4f0eb; 
}

::-webkit-scrollbar-thumb {
    background: #CF5D2C;
    border-radius: 4px;
}
/* 滚动条 -------------------------------------------------------------------------------- 结束 */

.page-container{
    width: 1350px;
    margin: 0 auto;
}

@media (max-width:1440px) {
    .page-container{
        width: 90%;
    }
}

/* 首页按钮样式一 -------------------------------------------------------------------------------- 开始 */
.btn1{
    background-color: #CF5D2C;
    border-radius: 30px;
    padding: 11px 37px;
    display: flex;
    align-items: center;
    gap: 12px;
    width: max-content;
}

.btn1 span{
    font-weight: 400;
    font-size: 16px;
    line-height: 2;
    color: #fff;
}
/* 首页按钮样式一 -------------------------------------------------------------------------------- 结束 */




/* 首页按钮样式二 -------------------------------------------------------------------------------- 开始 */
.btn2{
    display: block;
    background-color: #CF5D2C;
    border-radius: 30px;
    padding: 11px 37px;
    width: max-content;
    color: #fff;
    font-weight: 400;
    font-size: 16px;
    line-height: 2;
}
/* 首页按钮样式二 -------------------------------------------------------------------------------- 结束 */



/* 分页 -------------------------------------------------------------------------------- 开始 */
.common_pagination{
    display: flex;
    justify-content: center;
    align-items: center;
    gap: 10px;
}

.common_pagination .pager{
    display: flex;
}

.common_pagination button{
    width: 44px;
    height: 44px;
    background-color: #fff;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    cursor: pointer;
}

.common_pagination .pager{
    display: flex;
    gap: 10px;
}

.common_pagination .pager li{
    width: 44px;
    height: 44px;
    background-color: #fff;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    cursor: pointer;
}

.common_pagination .pager li a{
    font-weight: 500;
    font-size: 14px;
    color: #7F7F7F;
}

.common_pagination .pager li.active{
    background-color: #CF5D2C;
}

.common_pagination .pager li.active a{
    color: #fff;
}
/* 分页 -------------------------------------------------------------------------------- 结束 */