:root {
    --colorWhite: #fff;
    --colorWhite70: rgba(255, 255, 255, .7);
    --colorYellow70: rgba(255, 196, 0, .7);
    --colorBlack: #000;
    --bodyBgColor: #1C342E;
    --colorGradientYellowLittle: rgba(255, 238, 81, 1);
    --colorGradientYellowDeep: rgba(255, 204, 0, 1);
}

body,
html,
h3 {
    padding: 0px;
    margin: 0px;
}

body {
    font-family: '微軟正黑體', Microsoft JhengHei;
    background-color: var(--bodyBgColor);
    color: var(--colorWhite);
    overflow: hidden;
}

.logoFixed {
    display: flex;
    width: 200px;
    height: auto;
    position: absolute;
    left: 104px;
    top: 80px;
    /* top: 12px; */
}

.logoFixed>img {
    display: flex;
    width: 100%;
}

.container {
    left: 0;
    margin: 0;
    display: flex;
    height: 100vh;
}

@media(max-width:1200px) {
    .container {
        overflow-y: hidden;
        overflow-x: auto;
    }
}

.leftList {
    width: 550px;
    min-height: 650px;
    display: flex;
    flex-direction: column;
    /* justify-content: center; */
    align-items: center;
    position: relative;
}

.rightMain {
    flex: 1;
    display: flex;
    flex-direction: column;
    justify-content: end;
    align-items: center;
    min-width: 650px;
    min-height: 600px;
}

.cardSwiper.cardSwiper {
    max-width: 100%;
    height: 100%;
    display: flex;
    align-items: center;
}

.cardSwiper .swiper-slide {
    width: 100%;
    height: 870px;
    overflow: hidden;
    display: flex;
    align-items: center;
}

.cardSwiper .swiper-slide img {
    width: 100%;
    border-radius: 20px 0 0 20px;
}

.cardSwiper .swiper-slide:not(.swiper-slide-active):not(.swiper-slide-prev) {
    /* opacity: 0 !important; */
}

.cardSwiper .swiper-wrapper {
    height: 870px;
}

.thumb_wrap {
    display: flex;
    justify-content: center;
    align-content: center;
    width: 382px;
    position: absolute;
    bottom: 0;
}

.thumb_wrap .swiper-button-next,
.thumb_wrap .swiper-button-prev {
    position: absolute;
    color: var(--colorWhite70);
    top: 36%;
    transform: translateY(-50%);
}

.thumb_wrap .swiper-button-next:after,
.thumb_wrap .swiper-button-prev:after {
    font-size: 24px;
}

.thumb_wrap .swiper-button-next {
    right: 0;
}

.thumb_wrap .swiper-button-prev {
    left: 0;
}

.cardSwiperThumbs {
    width: 300px;
    height: 100px;
    margin-bottom: 28px;
}

.cardSwiperThumbs .swiper-slide {
    display: flex;
    flex-direction: column;
    align-items: center;
    width: 50px;
    cursor: pointer;
}

.cardSwiperThumbs .swiper-slide .imgBox {
    display: block;
    border-radius: 5px;
    width: 50px;
    height: 50px;
}

.cardSwiperThumbs .swiper-slide-thumb-active .imgBox {
    box-shadow: inset 0 0 0 3px var(--colorYellow70), 0 3px 6px var(--colorBlack);
    box-shadow: inset 0 0 0 3px var(--colorYellow70);
}

.cardSwiperThumbs .swiper-slide .imgBox.img01 {
    background-image: url('../../Images/SponRecord/thumb_01.png');
}

.cardSwiperThumbs .swiper-slide .imgBox.img02 {
    background-image: url('../../Images/SponRecord/thumb_02.png');
}

.cardSwiperThumbs .swiper-slide .imgBox.img03 {
    background-image: url('../../Images/SponRecord/thumb_03.png');
}

.cardSwiperThumbs .swiper-slide .imgBox.img04 {
    background-image: url('../../Images/SponRecord/thumb_04.png');
}

.cardSwiperThumbs .swiper-slide .imgBox.img05 {
    background-image: url('../../Images/SponRecord/thumb_05.png');
}

.cardSwiperThumbs .swiper-slide .imgBox.img06 {
    background-image: url('../../Images/SponRecord/thumb_06.png');
}

.cardSwiperThumbs .swiper-slide .imgBox.img07 {
    background-image: url('../../Images/SponRecord/thumb_07.png');
}

.cardSwiperThumbs .swiper-slide .imgBox {
    background-size: 100%;
    background-repeat: no-repeat;
}

.cardSwiperThumbs .swiper-slide .imgBox {
    margin-bottom: 4px;
}

.cardSwiperContents {
    width: 100%;
    height: 100%;
    /* height: calc(100% - 128px); */
}

.cardSwiperContents .swiper-slide {
    display: flex;
    justify-content: center;
    opacity: 0 !important;
    transition: .3s all ease-in-out;
    -webkit-transition: .3s all ease-in-out;
}

.cardSwiperContents .swiper-slide-active {
    opacity: 1 !important;
    transition: .3s all ease-in-out;
    -webkit-transition: .3s all ease-in-out;
}

.sponContent {
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: center;
    box-sizing: border-box;
}

.sponContent.avSet {
    margin-top: -80px;
}

.sponContent>h3 {
    font-size: 60px;
    font-family: Arial;
    line-height: 1;
    text-align: center;
}

.avSet>h3 {
    position: relative;
}

.avSet>h3:first-child:after,
.avSet>h3:first-child:before {
    content: '';
    position: absolute;
    transform: translate(-50%, -50%);
    top: 50%;
    width: 70px;
    height: 3px;
    background-color: var(--colorWhite);
}

.avSet>h3:first-child:before {
    left: -60px;
}

.avSet>h3:first-child:after {
    left: calc(100% + 60px);
}

.sponContent>h3~h3 {
    font-size: 50px;
    margin-top: 56px;
    line-height: 1.1;
}

.sponContent.avSet>h3~h3 {
    line-height: 1.3;
}

.sponContent h3~.spBox {
    margin-top: 30px;
}

.spBox {
    font-size: 30px;
    line-height: 40px;
    letter-spacing: 2px;
    display: flex;
    flex-direction: column;
    justify-content: flex-start;
    align-items: center;
}

.avSet .spBox {
    text-align: center;
    /* flex: 1; */
}

.sponPartners~.sponTeamData {
    margin-top: 10px;
}

.sponTeamData~.sponTeamData {
    margin-top: 25px;
}

.sponPartners,
.sponTeamData {
    display: flex;
    justify-content: center;
    align-items: center;
    box-sizing: border-box;
}

.sponPartners {
    width: 100%;
    height: 60px;
    padding: 0 10px;
}

.sponPartners img~img {
    margin-left: 12px;
}

.sponP_logo {
    width: 90px;
}

.sponP_logoTeam {
    width: 30px;
}

.sponTeamData {
    color: var(--colorBlack);
    font-size: 18px;
    width: 260px;
    height: 45px;
    padding: 0 20px;
    border-radius: 30px;
    background-image: linear-gradient(90deg, var(--colorGradientYellowLittle) 0%, var(--colorGradientYellowDeep) 100%);
    cursor: pointer;
    transition: .3s all ease-in-out;
    -webkit-transition: .3s all ease-in-out;
}

.sponTeamData:hover {
    filter: brightness(.9);
    -webkit-filter: brightness(.9);
    transition: .3s all ease-in-out;
    -webkit-transition: .3s all ease-in-out;
}

.avSet .sponTeamData {
    background-color: rgba(255, 255, 255, 0.85);
    background-image: none;
    padding: 0 20px 0 8px;
    margin-top: 30px;
}

.teamData_logo {
    width: 25px;
}

.teamData_logo~span {
    flex: 1;
    text-align: center;
}

.avSet .teamData_logo {
    width: 36px;
    border-radius: 50%;
    display: none;
}

@media(max-height: 885px) {
    .logoFixed {
        top: 50px;
    }
    .sponContent>h3~h3 {
        margin-top: 20px;
        font-size: 40px;
    }
    .sponContent h3~.spBox {
        margin-top: 4px;
    }
}

@media(max-height: 767px) {
    .logoFixed {
        top: 16px;
    }
    .sponContent>h3~h3 {
        margin-top: 10px;
        font-size: 40px;
    }
    .sponContent h3~.spBox {
        margin-top: 4px;
    }
}

@media(max-height: 650px) {
    .container {
        overflow-y: auto;
    }
    .logoFixed {
        width: 160px;
    }
    .sponContent>h3 {
        font-size: 50px;
    }
    .sponContent>h3~h3 {
        margin-top: 10px;
        font-size: 40px;
    }
}