@charset "utf-8";

* {
    margin: 0;
    padding: 0;
    list-style: none;
}

*,
*:before,
*:after {
    box-sizing: inherit;
}

a {
    color: #000;
    text-decoration: none;
    outline: none;
}

a:hover {
    color: #000;
    text-decoration: underline;
    outline: none;
}

i {
    font-style: normal;
    font-weight: normal;
}

p {
    margin: 0.3rem auto;
    width: 100%;
    color: #c00;
    font-size: 0.2rem;
    text-align: center;
}

/* html,
body {
    position: relative;
    height: 100%;
}

body {
    font: 100%/1.5 Tahoma, Helvetica, Arial, "Microsoft YaHei", STXihei, SimSun, sans-serif;
    color: #000;
    background: #eee;
} */

/* 自适应框架（设计图宽度） */
/* body {
    max-width: 19.2rem;
    margin: 0 auto;
}

body * {
    max-width: 19.2rem;
} */

/* 焦点图通用 */
.swiper-container {
    width: 100%;
    height: 100%;
    margin-left: auto;
    margin-right: auto;
}

.swiper-slide {
    text-align: center;

    /* Center slide text vertically */
    display: -webkit-box;
    display: -ms-flexbox;
    display: -webkit-flex;
    display: flex;
    -webkit-box-pack: center;
    -ms-flex-pack: center;
    -webkit-justify-content: center;
    justify-content: center;
    -webkit-box-align: center;
    -ms-flex-align: center;
    -webkit-align-items: center;
    align-items: center;
    transition-property: all;
}

.swiper-slide img {
    width: 100%;
    height: 100%;
    object-fit: cover;
}

.swiper-slide a {
    display: block;
    width: 100%;
    height: 100%;
    text-align: center;
    color: #fff;
    line-height: 1.5;
    position: relative;
    overflow: hidden;
}

.swiper-slide a h1 {
    position: absolute;
    bottom: 0;
    width: 100%;
    padding: 0.05rem;
    font-size: 0.18rem;
    font-weight: normal;
    box-sizing: border-box;
    background: rgba(0, 0, 0, 0.6);

    overflow: hidden;
    text-overflow: ellipsis;
    white-space: nowrap;
}

.swiper-slide i {
    font-size: 0.14rem;
    font-style: normal;
    line-height: 1.8;
    text-align: justify;
}

.swiper-slide span h1 {
    position: relative;
    padding: 0.05rem 0;
    font-weight: bold;
    background: none;
}

.swiper-slide span h1 a {
    display: inline;
    color: #000;
    text-align: left;
}

.swiper-button-prev,
.swiper-button-next {
    --swiper-navigation-size: 0.33rem;
    --swiper-navigation-color: #333;
    outline: none;
}

.swiper-button-prev:hover,
.swiper-button-next:hover {
    --swiper-navigation-color: #c00;
}

.swiper-pagination-bullet {
    width: 0.08rem;
    height: 0.08rem;
    background: rgba(255, 255, 255, 1);
    opacity: 1;
}

.swiper-pagination-bullet-active {
    background: rgba(255, 0, 0, 1);
    opacity: 1;
}

/* 焦点图 */
.swiper1 {
    width: 6.4rem;
    height: 4rem;
    margin: 0 auto;
    position: relative;
}

.swiper1 .swiper-pagination {
    bottom: 0.5rem;
}

.swiper1 .swiper-button-prev,
.swiper1 .swiper-button-next {
    --swiper-navigation-color: #fff;
}

/* 图集 */
.swiper2 {
    width: 10rem;
    height: 5rem;
    margin: 0 auto;
    position: relative;
}

.swiper2 .swiper-container {
    width: 80%;
    height: 100%;
}

.swiper2 .swiper-pagination {
    bottom: 0.5rem;
}

.swiper2 .swiper-button-prev,
.swiper2 .swiper-button-next {
    --swiper-navigation-size: 0.55rem;
}

/* 带下缩略图 */
.swiper3 {
    width: 6.4rem;
    height: 4.5rem;
    margin: 0 auto;
    position: relative;
    cursor: pointer;
}

.swiper3 .swiper-main {
    height: 80% !important;
    width: 100%;
}

.swiper3 #swiper3-thumbs {
    height: 20% !important;
    box-sizing: border-box;
    padding: 0.1rem 0;
}

.swiper3 #swiper3-thumbs .swiper-slide {
    height: 100%;
    background-size: 100% 100%;
    opacity: 1;
}

.swiper3 #swiper3-thumbs .swiper-slide-thumb-active {
    box-sizing: border-box;
    border: 2px #c00 solid;
    position: relative;
}

.swiper3 #swiper3-thumbs .swiper-slide-thumb-active:before {
    content: "";
    position: absolute;
    top: -0.16rem;
    left: 50%;
    transform: translateX(-50%);
    z-index: 1;
    width: 0;
    height: 0;
    border: 0.08rem transparent solid;
    border-bottom-color: #c00;
}

.swiper3 .swiper-button-prev,
.swiper3 .swiper-button-next {
    --swiper-navigation-color: #fff;
}

/* 带右缩略图 */
.swiper4 {
    width: 6.4rem;
    height: 3rem;
    margin: 0 auto;
    position: relative;
    cursor: pointer;
}

.swiper4 .swiper-main {
    width: 80% !important;
    float: left;
}

.swiper4 .swiper-thumbs {
    width: 20% !important;
    box-sizing: border-box;
    padding: 0 0.1rem;
    float: right;
}

.swiper4 .swiper-thumbs .swiper-slide {
    width: 100%;
    background-size: 100% 100%;
    opacity: 1;
}

.swiper4 .swiper-thumbs .swiper-slide-thumb-active {
    box-sizing: border-box;
    border: 2px #c00 solid;
    position: relative;
}

.swiper4 .swiper-thumbs .swiper-slide-thumb-active:before {
    content: "";
    position: absolute;
    top: 50%;
    left: -0.16rem;
    transform: translateY(-50%);
    z-index: 1;
    width: 0;
    height: 0;
    border: 0.08rem transparent solid;
    border-right-color: #c00;
}

.swiper4 .swiper-button-prev,
.swiper4 .swiper-button-next {
    display: none;
}

/* 三图展示 */
.swiper5 {
    width: 100%;
    height: 6.5rem;
    margin: 0 auto;
    position: relative;
}

.swiper5 .swiper-slide {
    width: 12rem;
}

.swiper5 .swiper-slide:not(.swiper-slide-active) {
    transform: scale(0.9);
    opacity: 0.5;
    pointer-events: none;
}

.swiper5 .swiper-slide:not(.swiper-slide-active) a h1 {
    display: none;
}

.swiper5 .swiper-button-prev,
.swiper5 .swiper-button-next {
    --swiper-navigation-size: 0.55rem;
}

.swiper5 .swiper-button-prev {
    left: 10%;
}

.swiper5 .swiper-button-next {
    right: 10%;
}

/* 多图带倒影 */
.swiper6 {
    width: 12rem;
    height: 6.5rem;
    margin: 0 auto;
    position: relative;
}

.swiper6 .swiper-slide img {
    height: 80%;
    border-radius: 0.1rem;
}

.swiper6 .swiper-slide img.reflect {
    -webkit-box-reflect: below 0.1rem -webkit-linear-gradient(transparent, transparent 80%, rgba(255, 255, 255, .5));
}

.swiper6 .swiper-slide a h1 {
    bottom: 20%;
    border-radius: 0 0 0.1rem 0.1rem;
}

.swiper6 .swiper-slide:not(.swiper-slide-active) {
    transform: scale(0.9);
    opacity: 0.5;
    pointer-events: none;
}

.swiper6 .swiper-button-prev,
.swiper6 .swiper-button-next {
    --swiper-navigation-size: 0.44rem;
}

.swiper6 .swiper-button-prev {
    left: 15%;
}

.swiper6 .swiper-button-next {
    right: 15%;
}

/* 多图切换 */
.swiper7 {
    width: 12rem;
    height: 4rem;
    margin: 0 auto;
    position: relative;
}

.swiper7 .swiper-container {
    padding-bottom: 0.6rem;
}

.swiper7 .swiper-slide {
    width: 5.2rem;
    height: 100%;
    background: #fff;
    box-shadow: 0 0.08rem 0.3rem #ddd;
}

.swiper7 .swiper-slide img {
    width: 100%;
    height: 90%;
    display: block;
}

.swiper7 .swiper-slide a {
    padding-top: 0;
    color: #000;
}

.swiper7 .swiper-slide a h1 {
    background: none;
}

.swiper7 .swiper-slide:not(.swiper-slide-active) {
    pointer-events: none;
}

.swiper7 .swiper-slide:not(.swiper-slide-active) a h1 {
    display: none;
}

.swiper7 .swiper-pagination {
    width: 100%;
    bottom: 0.2rem;
}

.swiper7 .swiper-pagination .swiper-pagination-bullet {
    margin: 0 0.05rem;
    width: 0.1rem;
    height: 0.1rem;
    opacity: 1;
    border: 2px solid #fff;
    background-color: #ddd;
}

.swiper7 .swiper-pagination .swiper-pagination-bullet-active {
    border: 2px solid #0ad;
    background-color: #fff;
}

.swiper7 .swiper-button-prev,
.swiper7 .swiper-button-next {
    --swiper-navigation-color: #0ad;
}

.swiper7 .swiper-button-prev:hover,
.swiper7 .swiper-button-next:hover {
    --swiper-navigation-color: #333;
}

/* 多图交叉切换 */
.swiper8 {
    width: 14rem;
    height: 7rem;
    margin: 0 auto;
    position: relative;
}

.swiper8 .swiper-container {
    width: 12rem;
    height: 100%;
}

.swiper8 .swiper-slide img {
    width: 100%;
    height: 50%;
    position: absolute;
}

.swiper8 .swiper-slide span {
    position: absolute;
    width: 100%;
    height: 50%;
    padding: 0.1rem;
    box-sizing: border-box;
    background: rgba(255, 255, 255, 1);

    color: #999;
    text-align: justify;
    overflow: hidden;
}

.swiper8 .swiper-button-prev,
.swiper8 .swiper-button-next {
    --swiper-navigation-size: 0.55rem;
}

.swiper8 .pic-odd img,
.swiper8 .pic-even span {
    top: 0;
    left: 0;
}

.swiper8 .pic-odd span,
.swiper8 .pic-even img {
    bottom: 0;
    left: 0;
}

/* 图片墙 */
.swiper9 {
    width: 14rem;
    height: 6rem;
    margin: 0 auto;
    position: relative;
}

.swiper9 .swiper-container {
    width: 12rem;
    height: 100%;
}

.swiper9 .swiper-slide {
    height: calc((100% - 0.8rem) / 4);
}

.swiper9 .swiper-slide img {
    width: 100%;
    height: 100%;
}

.swiper9 .swiper-slide a {
    width: 100%;
    height: 100%;
    box-sizing: border-box;
}

.swiper9 .swiper-button-prev,
.swiper9 .swiper-button-next {
    --swiper-navigation-size: 0.55rem;
}

.swiper9 .image-hover {
    position: relative;
    width: 1rem;
    height: 1rem;
    display: inline-block;
    overflow: hidden;
    box-sizing: border-box;
    background: #fff;
    border: 0.08rem solid #fff;
    box-shadow: 0px 2px 3px rgba(0, 0, 0, 0.3);
}

.swiper9 .image-hover img {
    margin: 0;
}

/* 时间轴 */
.swiper10 {
    width: 6.4rem;
    height: 4.5rem;
    margin: 0 auto;
    position: relative;
    cursor: pointer;
}

.swiper10 .swiper-main {
    width: 100%;
    height: 85%;
}

.swiper10 .swiper-thumbs {
    height: 15%;
    box-sizing: border-box;
    padding: 0.05rem 0;
}

.swiper10 .swiper-thumbs .swiper-slide {
    height: 100%;
    background-size: 100% 100%;
    opacity: 1;
}

.swiper10 .swiper-thumbs .swiper-slide-thumb-active {
    box-sizing: border-box;
    position: relative;
}

.swiper10 .swiper-thumbs .swiper-slide-thumb-active:before {
    content: "";
    position: absolute;
    bottom: -0.05rem;
    left: 50%;
    transform: translateX(-50%);
    z-index: 1;
    width: 0;
    height: 0;
    border: 0.1rem transparent solid;
    border-top-color: #c00;
}

.swiper10 .swiper-button-prev,
.swiper10 .swiper-button-next {
    --swiper-navigation-color: #000000;
    top: 55%;
}

.swiper10 .swiper-button-prev:hover,
.swiper10 .swiper-button-next:hover {
    --swiper-navigation-color: #cc0000;
}

.swiper10 .swiper-button-prev {
    left: -10%;
}

.swiper10 .swiper-button-next {
    right: -10%;
}

.swiper10 .time {
    font-size: 0.16rem;
    line-height: 0.16rem;
    vertical-align: middle;
    white-space: nowrap;
}

.swiper10 .time i {
    display: inline-block;
    width: 50%;
    border-top: 1px #999 dotted;
}

/* 标题切换 */
.swiper11 {
    width: 10rem;
    height: 4rem;
    margin: 0 auto;
    position: relative;
    cursor: pointer;
}

.swiper11 .swiper-main {
    width: 50%;
    float: right;
}

.swiper11 .swiper-main .swiper-slide {
    -webkit-box-pack: justify;
    -moz-justify-content: space-between;
    -webkit-justify-content: space-between;
    justify-content: space-between;
    display: flex;
}

.swiper11 .swiper-main .swiper-slide a {
    margin: 0 0.1rem;
}

.swiper11 .swiper-thumbs {
    width: 48%;
    overflow: inherit;
    float: left;
}

.swiper11 .swiper-thumbs .swiper-slide {
    position: relative;
    width: 100%;
    height: fit-content;
    opacity: 1;

    display: block;
    box-sizing: border-box;
    text-align: left;
}

.swiper11 .swiper-thumbs .swiper-slide-thumb-active {
    height: 1.5rem;
}

.swiper11 .swiper-thumbs .swiper-slide a {
    width: 100%;
    padding: 0 0.1rem;
    color: #000;
    text-align: left;
    text-decoration: none;

    box-sizing: border-box;
    display: none;
}

.swiper11 .swiper-thumbs .swiper-slide-thumb-active a {
    display: block;
}

.swiper11 .swiper-thumbs .swiper-slide a h1 {
    position: relative;
    padding: 0;
    padding-top: 0.1rem;
    background: rgba(0, 0, 0, 0);

    overflow: hidden;
    text-overflow: ellipsis;
    white-space: nowrap;
}

.swiper11 .swiper-thumbs .swiper-slide a i {
    color: #999;

    overflow: hidden;
    text-overflow: ellipsis;
    display: -webkit-box;
    -webkit-line-clamp: 2;
    -webkit-box-orient: vertical;
}

.swiper11 .swiper-button-prev,
.swiper11 .swiper-button-next {
    display: none;
}

.swiper11 .dialog {
    widows: 100%;
    height: 0.69rem;
    line-height: 0.69rem;
    border-radius: 0.07rem;
    padding-left: 0.1rem;
    background: #999;
    position: relative;

    color: #fff;
    font-size: 0.3rem;
    font-weight: normal;
}

.swiper11 .swiper-slide-thumb-active .dialog {
    background: #c00;
}

.swiper11 .swiper-slide-thumb-active .dialog::after {
    content: '';
    width: 0;
    height: 0;
    border: 0.1rem solid;
    position: absolute;
    top: 50%;
    right: -0.2rem;
    transform: translateY(-50%);
    border-color: transparent transparent transparent #c00;
}

/* 视频轮播 */
.swiperVideo {
    width: 10rem;
    height: 4.8rem;
    margin: 0 auto;
    position: relative;
}

.swiperVideo .swiper-container {
    width: 80%;
    height: 100%;
}

.swiperVideo .swiper-slide a {
    height: 10%;
    position: absolute;
    bottom: 0;
    left: 0;
}

.swiperVideo .swiper-slide a h1 {
    background: rgba(0, 0, 0, 1);
}

.swiperVideo .swiper-button-prev,
.swiperVideo .swiper-button-next {
    --swiper-navigation-size: 0.55rem;
}

.swiperVideo video {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 95%;
    object-fit: fill;
}

/* 多个图集切换 */
.swiper-pics {
    width: 6.4rem;
    height: auto;
    margin: 0 auto;
}

.swiper-pics .swiper-tab-active {
    display: block;
    background: #c00;
    color: #fff;
}

.swiper-pics .swiper-tab {
    width: 100%;
    margin-bottom: 0.05rem;
    text-align: center;
    display: flex;
    justify-content: center;
    align-items: center;
    cursor: pointer;
}

.swiper-pics .swiper-tab li {
    width: 33.3333%;
    border: 1px #c00 solid;
    border-right: none;
    padding: 0.02rem 0;
}

.swiper-pics .swiper-tab li:last-of-type {
    border-right: 1px #c00 solid;
}

.swiper-pics .swiper-main {
    width: 100%;
    height: 3.6rem;
    position: relative;
}

.swiper-pics .swiper-main .swiper-container {
    width: 100%;
    height: 100%;
}

.swiper-pics .swiper-main .swiper-slide img {
    width: 100%;
    height: 100%;
}

.swiper-pics .swiper-main .swiper-slide a {
    display: block;
    width: 100%;
    height: 100%;
    text-align: center;
    color: #fff;
    position: relative;
    overflow: hidden;
}

.swiper-pics .swiper-main .swiper-slide a h1 {
    position: absolute;
    bottom: 0;
    width: 100%;
    box-sizing: border-box;
    background: rgba(0, 0, 0, 0.5);
}

.swiper-pics .swiper-main .swiper-pagination {
    bottom: 0.5rem;
    position: absolute;
}

.swiper-pics .swiper-button-prev,
.swiper-pics .swiper-button-next {
    --swiper-navigation-color: #fff;
}

.swiper-pics .swiper-button-prev:hover,
.swiper-pics .swiper-button-next:hover {
    --swiper-navigation-color: #c00;
}

/* 移动端导航新闻切换 */
.swiper-nav {
    width: 6.4rem;
    height: 4rem;
    margin: 0 auto;
    position: relative;
    overflow: hidden;
    background: #fff;
}

.swiper-nav .swiper-container {
    width: 100%;
}

.swiper-nav .tab {
    height: 15%;
    padding: 0.1rem;
    border-bottom: 1px solid #000;
}

.swiper-nav .tab li {
    text-align: center;
    font-size: 0.2rem;
    cursor: pointer;
}

.swiper-nav .tab .tab-active {
    color: #c00;
}

.swiper-nav .page {
    height: 85%;
}

/* 三图缓动展示 */
.swiper12 {
    width: 100%;
    height: 6rem;
    margin: 0 auto;
    margin-bottom: 0.5rem;
    position: relative;
}

.swiper12 .swiper-container {
    padding-bottom: 0.5rem;
}

.swiper12 .swiper-slide {
    width: 10rem;
    transition-timing-function: linear;
}

.swiper12 .swiper-slide img {
    width: 100%;
    border-radius: 0.1rem;
}

.swiper12 .swiper-slide a h1 {
    bottom: 0.5rem;
    left: 0.5rem;
    width: auto;
    padding: 0 0.1rem;
    font-size: 0.2rem;
    border-radius: 0.05rem;
}

.swiper12 .swiper-pagination-bullet {
    position: relative;
    width: 9px;
    height: 9px;
    margin: 0 0.06rem !important;
    vertical-align: middle;
    background: none;
    opacity: 1;
    outline: none;
}

.swiper12 .swiper-pagination-bullet span {
    width: 3px;
    height: 3px;
    margin-top: 3px;
    margin-left: 3px;
    border-radius: 50%;
    background: #CCC;
    display: block;
}

.swiper12 .swiper-pagination-bullet i {
    z-index: 3;
    position: absolute;
    top: 4px;
    transform: scaleX(0);
    transform-origin: left;
    transition-timing-function: linear;
    height: 1px;
    width: 20px;
    background: #000;
}

.swiper12 .swiper-pagination-bullet-active span,
.swiper12 .swiper-pagination-bullet:hover span {
    z-index: 1;
    position: relative;
    width: 9px;
    height: 9px;
    margin-top: 0;
    margin-left: 0;
    background: #000;
}

.swiper12 .swiper-pagination-bullet-active i {
    animation: middle 6s;
}

.swiper12 .swiper-pagination-bullet:first-child.swiper-pagination-bullet-active i {
    animation: first 6s;
}

.swiper12 .swiper-pagination-bullet:last-child.swiper-pagination-bullet-active i {
    animation: last 6s;
}

@keyframes first {
    0% {
        transform: scaleX(0.5);
        left: 0px;
    }

    100% {
        transform: scaleX(1);
        left: 2px;
    }
}

@keyframes last {
    0% {
        transform: scaleX(0.7);
        left: -10px;
    }

    20% {
        transform: scaleX(0.3);
        left: 2px;
    }

    100% {
        transform: scaleX(0.3);
        left: 0px;
    }
}

@keyframes middle {
    0% {
        transform: scaleX(0.7);
        left: -10px;
    }

    20% {
        transform: scaleX(0.45);
        left: 2px;
    }

    100% {
        transform: scaleX(1);
        left: 2px;
    }
}

.swiper12 .swiper-button-prev,
.swiper12 .swiper-button-next {
    --swiper-navigation-size: 0.66rem;
    --swiper-navigation-color: #fff;
}

.swiper12 .swiper-button-prev {
    left: 5%;
}

.swiper12 .swiper-button-next {
    right: 5%;
}

/* 图片分离缓动切换 */
.swiper-tween {
    width: 10rem;
    height: 5rem;
    margin: 0 auto;
    position: relative;
}

.swiper-tween .swiper-container {
    width: 100%;
    height: 100%;
}

.swiper-tween h2 {
    position: absolute;
    left: 0;
    bottom: calc(50% - 0.75rem);
    max-width: 75%;
    margin-left: 12%;

    color: #fff;
    font-size: 8vw;
    line-height: 0;
    letter-spacing: -0.04em;
    white-space: normal;
    display: inline;

    cursor: pointer;
}

.swiper-tween .swiper-slide h2 {
    display: none;
}

.swiper-tween .txt,
.swiper-tween .box,
.swiper-tween canvas {
    position: absolute;
    left: 0;
    top: 0;
    width: 100%;
    height: 100%;
}

/* 环形旋转木马视图切换 */
.swiper-carousel {
    width: 12rem;
    margin: 0 auto;
    position: relative;
}

.swiper-carousel .swiper-container {
    padding-top: 0.2rem;
    padding-bottom: 0.4rem;
}

.swiper-carousel .swiper-slide {
    width: calc(100% / 4);
    background: #fff;
    box-shadow: 0 0.08rem 0.2rem #ddd;
}

.swiper-carousel .swiper-slide img {
    width: 100%;
    display: block;
}

.swiper-carousel .swiper-pagination {
    width: 100%;
}

.swiper-carousel .swiper-pagination-bullets .swiper-pagination-bullet {
    width: 0.2rem;
    height: 0.1rem;
    margin: 0 0.05rem;
    border-radius: 0.05rem;
    opacity: 1;
    background-color: #fff;
}

.swiper-carousel .swiper-pagination-bullets .swiper-pagination-bullet-active {
    width: 0.35rem;
    background-color: #3eb2f3;
}

.swiper-carousel .swiper-button-prev {
    left: -5%;
}

.swiper-carousel .swiper-button-next {
    right: -5%;
}

/* Y轴位移视图切换 */
.swiper-yPic {
    width: 14rem;
    margin: 0 auto;
    position: relative;
}

.swiper-yPic .swiper-container {
    width: 12rem;
    height: auto;
    padding-bottom: 1rem;
}

.swiper-yPic .swiper-slide {
    width: 4rem;
    height: 2.4rem;
}

.swiper-yPic .swiper-pagination {
    width: 100%;
    bottom: 0.5rem;
}

/* 时间轴大图切换 */
.swiper-timeline {
    width: 100%;
    background-color: #fff;
    box-shadow: 0 0.05rem 0.25rem 0.05rem rgba(0, 0, 0, 0.2);
}

.swiper-timeline .swiper-container {
    width: 100%;
    height: 6rem;
    position: relative;
}

.swiper-timeline .swiper-wrapper {
    transition: 2s cubic-bezier(0.68, -0.4, 0.27, 1.34) 0.2s;
}

.swiper-timeline .swiper-slide {
    position: relative;
    color: #fff;
    overflow: hidden;

    background-size: cover;
    background-repeat: no-repeat;
    background-position: center center;
}

.swiper-timeline .swiper-slide::after {
    content: "";
    z-index: 1;
    position: absolute;
    bottom: -12%;
    right: -20%;
    width: 2.4rem;
    height: 50%;

    border-radius: 100%;
    background-color: rgba(0, 0, 0, 0.7);
    box-shadow: -2.3rem 0 1.5rem 39vw rgba(0, 0, 0, 0.7);
}

.swiper-timeline .swiper-slide-content {
    z-index: 2;
    position: absolute;
    top: 50%;
    right: 25%;
    transform: translateY(-50%);
    width: 3.1rem;

    font-size: 0.14rem;
    text-align: right;
}

.swiper-timeline .swiper-slide h2,
.swiper-timeline .swiper-slide h1,
.swiper-timeline .swiper-slide i {
    transform: translate3d(20px, 0, 0);
    opacity: 0;
}

.swiper-timeline .swiper-slide h2 {
    display: block;
    color: #d4a024;
    font-size: 0.3rem;
    font-style: italic;
    transition: .2s ease .4s;
}

.swiper-timeline .swiper-slide h1 {
    font-size: 0.3rem;
    transition: .2s ease .5s;
}

.swiper-timeline .swiper-slide i {
    font-style: normal;
    transition: .2s ease .6s;
}

.swiper-timeline .swiper-slide-active h2,
.swiper-timeline .swiper-slide-active h1,
.swiper-timeline .swiper-slide-active i {
    transform: translate3d(0, 0, 0);
    opacity: 1;
}

.swiper-timeline .swiper-slide-active h2 {
    transition: .4s ease 1.6s;
}

.swiper-timeline .swiper-slide-active h1 {
    transition: .4s ease 1.7s;
}

.swiper-timeline .swiper-slide-active i {
    transition: .4s ease 1.8s;
}

.swiper-timeline .swiper-pagination {
    display: none;
    z-index: 1;
    right: 15% !important;
    height: 100%;

    font-size: 0.2rem;
    font-weight: 300;
    font-style: italic;

    display: flex;
    flex-direction: column;
    justify-content: center;
}

.swiper-timeline .swiper-pagination::before {
    content: "";
    position: absolute;
    top: 0;
    left: -0.3rem;
    width: 1px;
    height: 100%;
    background-color: rgba(255, 255, 255, 0.2);
}

.swiper-timeline .swiper-pagination-bullet {
    position: relative;
    width: auto;
    height: auto;
    margin: 0.15rem 0 !important;

    color: #d4a024;
    text-align: center;
    background: transparent;
    opacity: 1;
}

.swiper-timeline .swiper-pagination-bullet::before {
    content: "";
    position: absolute;
    top: 0.08rem;
    left: -0.325rem;
    width: 0.06rem;
    height: 0.06rem;
    border-radius: 100%;
    background-color: #d4a024;
    transform: scale(0);
    transition: .2s;
}

.swiper-timeline .swiper-pagination-bullet-active {
    color: #d4a024;
}

.swiper-timeline .swiper-pagination-bullet-active::before {
    transform: scale(1);
}

.swiper-timeline .swiper-button-prev,
.swiper-timeline .swiper-button-next {
    z-index: 2;
    position: absolute;
    width: 0.2rem;
    height: 0.2rem;
    margin-top: 0;
    background-size: 0.2rem 0.2rem;
    transform: rotate(90deg) translate(0, 0.1rem);
    transition: .2s;

    --swiper-navigation-color: #d4a024;
}

.swiper-timeline .swiper-button-prev {
    top: 15%;
    left: auto;
    right: 15%;
}

.swiper-timeline .swiper-button-next {
    top: auto;
    bottom: 15%;
    right: 15%;
}

.swiper-timeline .swiper-button-prev:hover {
    transform: rotate(90deg) translate(-3px, 0.1rem);
}

.swiper-timeline .swiper-button-next:hover {
    transform: rotate(90deg) translate(3px, 0.1rem);
}

/* 移动端自适应 */
/* @media screen and (max-width:1024px){
    body{
		max-width:10.24rem;
		margin:0 auto;
	}
	body *{
		max-width:10.24rem;
	}

    .swiper-container{width:100%!important; height:100%;}
    .swiper-button-prev,
    .swiper-button-next{
        --swiper-navigation-size:0.44rem!important;
        --swiper-navigation-color:#fff!important;
    }
    .swiper-button-prev{left:5%!important;}
    .swiper-button-next{right:5%!important;}
	.swiper1,
    .swiper2,
    .swiper3,
    .swiper4,
    .swiper5,
    .swiper6,
    .swiper7,
    .swiper8,
    .swiper9,
    .swiper10,
    .swiper11,
    .swiper12,
    .swiperVideo,
    .swiper-pics,
    .swiper-nav,
    .swiper-tween,
    .swiper-carousel,
    .swiper-yPic,
    .swiper-timeline{width:100%; height:4rem;}
    .swiper3,
    .swiper6,
    .swiper8,
    .swiper10,
    .swiper11 .swiper-main{height:5rem;}
    .swiper7 .swiper-slide img{height:86%;}
    .swiper8 .swiper-slide span{line-height:0.8!important;}
    .swiper-carousel{height:1.8rem;}
    .swiper-timeline .swiper-button-prev{left:unset!important;}
    .swiper-timeline .swiper-button-next{right:15%!important;}
} */