/* @font-face {
  font-family: 'ITC_Franklin_Gothic_LT';
  src: url('/assets/fonts/ITC_Franklin_Gothic_LT_Book_Regular.otf') format('opentype');
  font-weight: normal;
  font-style: normal;
} */

@font-face {
    font-family: 'ITC_Franklin_Gothic_LT';
    src: url('/assets/fonts/FranklinGothicLTPro-Bk.woff2') format('woff2');
    font-weight: normal;
    font-style: normal;
}

@font-face {
    font-family: 'ITC_Franklin_Gothic_Bold';
    src: url('/assets/fonts/FranklinGothicLTPro-Dm.woff2') format('woff2');
    font-weight: normal;
    font-style: normal;
}

html {
    font-size: 100px;
    font-family: 'ITC_Franklin_Gothic_LT', sans-serif;
    scroll-behavior: smooth;
}

@media (min-width:1481px) and (max-width:1680px) {
    html {
        font-size: 562.5%
    }
}

@media (min-width:1281px) and (max-width:1480px) {
    html {
        font-size: 500%
    }
}

@media (min-width:1024px) and (max-width:1280px) {
    html {
        font-size: 437.5%
    }
}

body {
    min-height: 100%;
    background-color: #f5f8fb;
    font-size: 18px;
    line-height: 1.35;
    min-width: 375px;
}


/* 默认三列布局 */
.pipeline-layout[data-columns]::before {
    content: '3 .size-1of3 .column';
}

.pipeline-layout>.column {
    width: 31.3%;
    margin-right: 3%;
}

.pipeline-layout>.column:last-child {
    margin-right: 0;
}

/* 小于 1024px，切换为两列 */
@media (max-width: 1024px) {
    .pipeline-layout[data-columns]::before {
        content: '2 .size-1of2 .column';
    }

    .pipeline-layout>.column {
        width: 48%;
        margin-right: 4%;
    }

    .pipeline-layout>.column:last-child {
        margin-right: 0;
    }
}

/* 小于 520px，切换为一列 */
@media (max-width: 720px) {
    .pipeline-layout[data-columns]::before {
        content: '1 .size-1of1 .column';
    }

    .pipeline-layout>.column {
        width: 100%;
        margin-right: 0;
    }
}

.ReadingBlock ul {
    list-style: inside;
    list-style-type: disc;
}

a {
    text-decoration: underline;
}

.font-bold,
strong,
b {
    font-family: 'ITC_Franklin_Gothic_Bold';
}

.swiper-pagination-bullet {
    background-color: #E0E0E0;
    opacity: 1;
    margin-right: 20px;
}

.swiper-pagination-bullet:last-child {
    margin-right: 0;
}

.swiper-pagination-bullet-active {
    background-color: #869698;
}


.swiper-button-prev {
    left: -40px;
}

.swiper-button-next {
    right: -40px;
}


@media(max-width: 768px) {
    .swiper-button-prev {
        left: -30px;
    }

    .swiper-button-next {
        right: -30px;
    }

    .swiper-button-prev:after,
    .swiper-button-next:after {
        background-size: 20px 20px;
        width: 20px;
        height: 20px;
    }

}

.swiper-button-prev:after,
.swiper-button-next:after {
    display: block;
    content: '';
    position: absolute;
    left: 0;
    top: 0;
    background-image: url('/icons/arrow_icon.svg');
    background-repeat: no-repeat;
    background-size: 30px 30px;
    width: 30px;
    height: 30px;
}

.swiper-button-next:after {
    transform: rotateZ(180deg);
}