/* banner   开始 */
.banner {
    width: 100%;
    position: relative;
}

.banner>.container {
    position: absolute;
    left: 50%;
    top: 50%;
    transform: translate(-50%, -50%);
}

.banner>.container h2 {
    font-size: 36px;

    color: #FFFFFF;
    line-height: 1.8;
}

/* banner   结束 */


/* 时间线   开始 */
.timeWrapper {
    width: 100%;
    padding: 120px 0;
    background: url('../images/fzlc_timeWrapper_bg.jpg') no-repeat center/cover;
}

.timeWrapper .top {
    display: flex;
    justify-content: space-between;
    align-items: center;
}

.timeWrapper .top .prev,
.timeWrapper .top .next {
    width: 20%;
    font-size: 42px;

    font-weight: 400;
    color: #666666;
    display: flex;
    align-items: center;
    justify-content: space-between;
    transition: 0.3s;
    outline: none;
}

.timeWrapper .top .prev>.iconfont {
    transform: rotateZ(180deg);
}

.timeWrapper .top .prev>.iconfont,
.timeWrapper .top .next>.iconfont {
    font-size: 60px;
}

.timeWrapper .top .prev:hover,
.timeWrapper .top .next:hover {
    color: #2EBCE9;
}

.timeWrapper .top .currentTime {
    width: 32.8vw;
    height: 32.8vw;
    background: rgba(255, 255, 255, 0.18);
    border-radius: 100%;
}

.timeWrapper .top .currentTime::before,
.timeWrapper .top .currentTime::after {
    content: '';
    position: absolute;
    left: 0;
    top: 0;
    width: 100%;
    height: 100%;
    border-radius: 100%;
    box-sizing: border-box;
}

.timeWrapper .top .currentTime::before {
    z-index: 10;
    border: 2px solid rgba(46, 188, 233, 0.26);
}

.timeWrapper .top .currentTime::after {
    z-index: 20;
    border: 2px solid #2EBCE9;
    clip: rect(0 16.4vw 16.4vw 0);
}

.timeWrapper .top .currentTime .swiper-slide {
    display: flex;
    flex-direction: column;
    align-items: center;
    border-radius: 100%;
}

.timeWrapper .top .currentTime .swiper-slide>strong {
    font-size: 90px;

    font-weight: bold;
    color: #2EBCE9;
    line-height: 1;
    max-width: 76%;
    position: absolute;
    top: 21.8%;
    transform: translateY(-50%);
}

.timeWrapper .top .currentTime .swiper-slide>h4 {
    font-size: 24px;

    font-weight: 400;
    color: #333333;
    max-width: 76%;
    position: absolute;
    top: 50%;
    transform: translateY(-50%);
}

.timeWrapper .top .currentTime .swiper-slide>.msg {
    text-align: center;
    max-width: 76%;
    position: absolute;
    bottom: 19%;
    transform: translateY(-50%);
}

.timeWrapper .top .currentTime .swiper-slide>.msg .en {
    font-size: 12px;

    font-weight: 400;
    color: #A8A8A8;
}

.timeWrapper .top .currentTime .swiper-slide>.msg .ch {
    font-size: 20px;

    font-weight: 400;
    color: #666666;
}

.timeWrapper .timeList {
    width: 1200px;
    padding-bottom: 10px;
    border-bottom: 1px solid #ACACAC;
    margin-top: 65px;
}

.timeWrapper .timeList .swiper-slide {
    padding: 16px;
    border-radius: 6px;
    font-size: 18px;

    font-weight: 400;
    text-align: center;
    line-height: 14px;
    color: #333333;
    transition: 0.3s;
}

.timeWrapper .timeList .swiper-slide::after {
    content: '';
    position: absolute;
    z-index: 2;
    top: 100%;
    left: 50%;
    transform: translateX(-50%);
    border: 6px solid transparent;
    transition: 0.3s;
}

.timeWrapper .timeList .swiper-slide:hover {
    cursor: pointer;
}

.timeWrapper .timeList .swiper-slide:last-of-type {
    margin: 0 !important;
}

.timeWrapper .timeList .swiper-slide-thumb-active {
    background-color: #2EBCE9;
    color: #FFFFFF;
}

.timeWrapper .timeList .swiper-slide-thumb-active::after {
    border-top-color: #2EBCE9;
}

/* 时间线   结束 */



@media screen and (max-width:1680px) {
    .timeWrapper .top .currentTime {
        width: 40vw;
        height: 40vw;
    }

    .timeWrapper .top .currentTime::after {
        clip: rect(0 20vw 20vw 0);
    }

    .timeWrapper .top .currentTime .swiper-slide>strong {
        font-size: 80px;
    }

    .timeWrapper .top .prev,
    .timeWrapper .top .next {
        font-size: 40px;
    }
}


@media screen and (max-width:1440px) {
    .timeWrapper {
        padding: 80px 0;
    }

    .banner>.container h2 {
        font-size: 34px;
        line-height: 1.5;
    }

    .timeWrapper .top .currentTime .swiper-slide>strong {
        font-size: 72px;
    }

    .timeWrapper .top .currentTime .swiper-slide>h4 {
        font-size: 22px;
    }

    .timeWrapper .top .currentTime .swiper-slide>.msg .ch {
        font-size: 18px;
    }

    .timeWrapper .top .prev,
    .timeWrapper .top .next {
        font-size: 34px;
    }

    .timeWrapper .top .prev>.iconfont,
    .timeWrapper .top .next>.iconfont {
        font-size: 52px;
    }

    .timeWrapper .timeList {
        margin-top: 50px;
    }

    .timeWrapper .timeList {
        width: auto;
    }
}


@media screen and (max-width:1280px) {
    .timeWrapper {
        padding: 60px 0;
    }

    .banner>.container h2 {
        font-size: 32px;
        line-height: 1.2;
    }

    .timeWrapper .top .currentTime .swiper-slide>strong {
        font-size: 66px;
    }

    .timeWrapper .top .currentTime .swiper-slide>.msg {
        bottom: 12%;
    }

    .timeWrapper .top .prev,
    .timeWrapper .top .next {
        font-size: 32px;
    }

    .timeWrapper .top .prev>.iconfont,
    .timeWrapper .top .next>.iconfont {
        font-size: 46px;
    }
}


@media screen and (max-width:1024px) {
    .banner>.container h2 {
        font-size: 26px;
    }

    .banner>.container {
        transform: translate(-50%, -15%);
    }

    .timeWrapper .top .prev,
    .timeWrapper .top .next {
        width: 18%;
        font-size: 28px;
    }

    .timeWrapper .top .prev>.iconfont,
    .timeWrapper .top .next>.iconfont {
        font-size: 36px;
    }

    .timeWrapper .top .currentTime {
        width: 46vw;
        height: 46vw;
    }

    .timeWrapper .top .currentTime::after {
        clip: rect(0 23vw 23vw 0);
    }

    .timeWrapper .top .currentTime .swiper-slide>strong {
        font-size: 58px;
    }

    .timeWrapper .top .currentTime .swiper-slide>h4 {
        font-size: 20px;
    }

    .timeWrapper .top .currentTime .swiper-slide>.msg .ch,
    .timeWrapper .timeList .swiper-slide {
        font-size: 16px;
    }

    .timeWrapper .timeList {
        margin-top: 40px;
    }
}


@media screen and (max-width:768px) {
    .timeWrapper {
        padding: 40px 0;
    }

    .banner {
        height: 200px;
        overflow: hidden;
    }

    .banner>img {
        height: 100%;
        width: auto;
    }

    .timeWrapper .top .prev,
    .timeWrapper .top .next {
        font-size: 22px;
    }

    .timeWrapper .top .prev>.iconfont,
    .timeWrapper .top .next>.iconfont {
        font-size: 30px;
    }

    .timeWrapper .top .currentTime {
        width: 50vw;
        height: 50vw;
    }

    .timeWrapper .top .currentTime::after {
        clip: rect(0 25vw 25vw 0);
    }

    .timeWrapper .top .currentTime .swiper-slide>strong {
        font-size: 46px;
    }

    .timeWrapper .top .currentTime .swiper-slide>h4 {
        top: 45%;
    }

    .timeWrapper .timeList {
        margin-top: 30px;
    }
}


@media screen and (max-width:600px) {
    .banner>.container h2 {
        font-size: 24px;
    }

    .timeWrapper .top {
        flex-wrap: wrap;
    }

    .timeWrapper .top .currentTime {
        order: -1;
        width: 90vw;
        height: 90vw;
        margin-bottom: 30px;
    }

    .timeWrapper .top .currentTime::after {
        clip: rect(0 45vw 45vw 0);
    }

    .timeWrapper .top .prev,
    .timeWrapper .top .next {
        width: 25%;
    }
}


@media screen and (max-width: 480px) {

    .timeWrapper .top .prev,
    .timeWrapper .top .next {
        width: 35%;
        font-size: 18px;
    }

    .timeWrapper .top .currentTime .swiper-slide>strong {
        font-size: 38px;
    }

    .timeWrapper .top .currentTime .swiper-slide>h4 {
        font-size: 18px;
    }

    .timeWrapper .top .currentTime .swiper-slide>.msg {
        max-width: 78%;
    }
}