* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
    list-style: none;
}

/* @font-face {
    font-family: 'PingFang SC';
    src: url('/skin/static/font/PingFang_Medium.otf') format('opentype');
    font-weight: normal;
    font-style: normal;
    font-display: swap;
} */

body {
    font-family: Open Sans, PingFang SC, Microsoft YaHei, Helvetica Neue, Hiragino Sans GB, WenQuanYi Micro Hei, Arial, "sans-serif";
    max-width: 1920px;
    /* 板心默认最大1920 */
    margin: 0 auto !important;
}

/* 动画初始化 - 从下向上运动 */
.animation-up:not(.animation) {
    opacity: 0;
    transform: translateY(80px);
    transition: all 1s;
}

/* 动画初始化 - 从上向下运动 */
.animation-down:not(.animation) {
    opacity: 0;
    transform: translateY(-80px);
    transition: all 1s;
}

/* 动画初始化 - 从左向右运动 */
.animation-right:not(.animation) {
    opacity: 0;
    transform: translateX(-80px);
    transition: all 1s;
}

/* 动画初始化 - 从右向左运动 */
.animation-left:not(.animation) {
    opacity: 0;
    transform: translateX(80px);
    transition: all 1s;
}

/* 动画初始化 - 从左向右运动 路径很大很夸张 */
.animation-right-exaggerate:not(.animation) {
    opacity: 0;
    transform: translateX(-30vw);
    transition: all 1s;
}

/* 动画初始化 - 从右向左运动 路径很大很夸张 */
.animation-left-exaggerate:not(.animation) {
    opacity: 0;
    transform: translateX(30vw);
    transition: all 1s;
}

/* 动画初始化 - 从上左方向向中心运动 */
.animation-from-top-left:not(.animation) {
    opacity: 0;
    transform: translate(-100px, -100px);
    transition: all 1s;
}

/* 动画初始化 - 从上右方向向中心运动 */
.animation-from-top-right:not(.animation) {
    opacity: 0;
    transform: translate(100px, -100px);
    transition: all 1s;
}

/* 动画初始化 - 从左下方向向中心运动 */
.animation-from-bottom-left:not(.animation) {
    opacity: 0;
    transform: translate(-100px, 100px);
    transition: all 1s;
}

/* 动画初始化 - 从右下方向向中心运动 */
.animation-from-bottom-right:not(.animation) {
    opacity: 0;
    transform: translate(100px, 100px);
    transition: all 1s;
}

/* 动画初始化 - 从隐藏到显示 */
.animation-opacity:not(.animation) {
    opacity: 0;
    transition: all 1s;
}

/* 动画初始化 - 从下向上运动 */
.animation-up-double:not(.animation) {
    opacity: 0;
    transform: translateY(160px);
    transition: all 1s;
}

/* 动画初始化 - 自身Y轴旋转，父级元素CSS要加 perspective: 1000px; */
.animation-rotate-y:not(.animation) {
    transform: rotateY(-90deg);
    transition: all 1s;
}

/* 动画过渡，自动添加到类样式 */
.transition {
    transition: all 1s;
}


/* 标题(有下划线) */
.column-title .title {
    color: #000000;
    text-align: center;
    font-weight: bold;
    margin: 0;
}

.column-title::after {
    display: block;
    content: '';
    background-color: #2CB053;
    width: 85px;
    height: 8px;
    margin-left: auto;
    margin-right: auto;
}

/* 标题头 */
.column-header .title {
    font-weight: bold;
    font-size: 50px;
    color: #222222;
    text-align: center;
    margin: 0;
}

.column-header .label.larger {
    font-size: 32px;
    margin-top: 0;
}

.column-header .label.small {
    font-size: 20px;
}

.column-header .label {
    font-size: 24px;
    color: #222222;
    text-align: justify;
    text-align-last: center;
    line-height: 1.8;
    padding: 0 40px;
    margin-top: 26px;
    margin-bottom: 0;
}

/* 箭头链接 */
.check-more-link {
    display: flex;
    justify-content: center;
    align-items: center;
    font-size: 20px;
    color: #209037;
    font-weight: bold;
    text-decoration: none;
}

.check-more-link:hover {
    color: #209037;
    text-decoration: none;
}

.check-more-link .icon {
    display: flex;
    align-items: center;
    justify-content: center;
    width: 40px;
    height: 40px;
    border-radius: 50%;
    background-color: #78BC1E;
    border: 3px solid #A1D06E;
    overflow: hidden;
    margin: 0 14px;
}

.check-more-link .icon::before {
    content: '';
    width: 26px;
    height: 26px;
    background: url('../../images/common/icon-arrow-white.png') no-repeat center;
    background-size: contain;
    transform: translate(0, 0);
}

.check-more-link:hover .icon::before {
    animation: rect-ani 0.5s ease-in-out;
}

@keyframes rect-ani {
    0% {
        transform: translate(0, 0);
    }

    50% {
        transform: translate(50px, 0);
    }

    51% {
        transform: translate(50px, 50px);
    }

    52% {
        transform: translate(-50px, 50px);
    }

    53% {
        transform: translate(-50px, 0);
    }

    100% {
        transform: translate(0, 0);
    }
}

@media screen and (max-width: 1023px) {
    .column-title .title {
        font-size: max(20px, 4vw);
    }

    .column-title::after {
        max-width: max(60px, 10vw);
        height: 2px;
        margin-top: 1.6vw;
    }

    .column-header .title {
        font-size: max(22px, 4vw);
    }

    .column-header .label {
        font-size: max(14px, 2.5vw);
        text-align: center;
        padding: 0 20px;
        margin-top: 14px;
    }

    .column-header .label.larger {
        font-size: max(16px, 3vw);
    }

    .column-header .label.small {
        font-size: max(14px, 2.5vw);
    }

    .check-more-link {
        display: none;
        font-size: 14px;
    }

    .check-more-link .icon {
        width: 30px;
        height: 30px;
    }

    .check-more-link .icon::before {
        width: 22px;
        height: 22px;
    }

    .red_ant_title .title {
        position: relative;
        font-size: max(22px, 4vw);
        color: #121212;
        text-align: center;
        font-weight: normal;
        padding-bottom: max(20px, 3vw);
    }

    .red_ant_title .title.bold {
        font-weight: bold;
    }

    .red_ant_title .title::before {
        position: absolute;
        left: 50%;
        transform: translateX(-50%);
        bottom: 1px;
        width: max(90px, 12vw);
        height: 2px;
        content: '';
        display: block;
        background-color: #eeeeee;
    }

    .red_ant_title .title::after {
        position: absolute;
        left: 50%;
        transform: translateX(-50%);
        bottom: 0;
        width: 20px;
        height: 4px;
        content: '';
        display: block;
        background-color: #d00000;
    }
}

/* 分页 */
.pglist {
    display: flex;
    justify-content: center;
    padding-top: 30px;
}

.pglist a {
    min-width: 24px;
    text-align: center;
    padding: 0 6px;
}

@media screen and (min-width: 1024px) {
    html {
        font-size: 14px;
    }

    .column-title .title {
        font-size: 3rem;
    }

    .column-title::after {
        margin-top: 1.6vw;
    }

    .red_ant_title .title {
        position: relative;
        font-size: 58px;
        color: #121212;
        text-align: center;
        font-weight: lighter;
        padding-bottom: 28px;
    }

    .red_ant_title .title.bold {
        font-weight: bold;
    }

    .red_ant_title .title::before {
        position: absolute;
        left: 50%;
        transform: translateX(-50%);
        bottom: 1px;
        width: 104px;
        height: 2px;
        content: '';
        display: block;
        background-color: #eeeeee;
    }

    .red_ant_title .title::after {
        position: absolute;
        left: 50%;
        transform: translateX(-50%);
        bottom: 0;
        width: 20px;
        height: 4px;
        content: '';
        display: block;
        background-color: #d00000;
    }
}

@media screen and (min-width: 1440px) {
    html {
        font-size: 16px;
    }
}

@media screen and (min-width: 1921px) {

    /* 当屏幕大于1920时，要占全个屏宽，下面的10px要对应滚动条的宽度 */
    .full-screen-width {
        width: 100vw;
        margin-left: calc((1920px - 100vw - 10px) / 2);
    }
}

/**
* 滚动条样式
*/
/*定义滚动条高宽及背景 高宽分别对应横竖滚动条的尺寸*/
::-webkit-scrollbar {
    -ms-overflow-style: none;
    overflow: -moz-scrollbars-none;
    /*滚动条整体样式*/
    width: 10px;
    /*高宽分别对应横竖滚动条的尺寸*/
    height: 10px;
}

::-webkit-scrollbar-thumb {
    /*滚动条里面小方块*/
    border-radius: 10px;
    /* box-shadow   : inset 0 0 5px rgba(0, 0, 0, 0.2); */
    background: rgba(180, 187, 197, 0.7);
}

::-webkit-scrollbar-track {
    /*滚动条里面轨道*/
    /* box-shadow   : inset 0 0 5px rgba(0, 0, 0, 0.2); */
    /* border-radius: 10px; */
    /* background: rgba(0, 0, 0, 0.1); */
    background: #F1F1F1;
}

/*定义最上方和最下方的按钮*/
/* ::-webkit-scrollbar-button {
    background-color: #000;
    border: 1px solid yellow;
} */