* {
    margin: 0;
    padding: 0;
    text-decoration: none;
    box-sizing: border-box;
}

#app {
    position: relative;
    overflow-x: hidden;
    background-color: white;
    font-size: 16px;
    font-family: "Noto Sans TC", sans-serif;
    color: #242424;
}

img {
    -webkit-user-drag: none;
}

/* all */
section {
    padding: 80px 0;
    position: relative;
}

.section-title {
    position: relative;
    font-size: 2rem;
    color: #242424;
    font-weight: 700;
    width: fit-content;
    margin: 0 auto 60px;
}

.section-title::after {
    content: '';
    position: absolute;
    bottom: -15px;
    left: 50%;
    transform: translateX(-50%);
    width: 40%;
    min-width: 40px;
    height: 6px;
    background: linear-gradient(90deg, #FF41B3 0%, #2DA1FF 100%);
}

.section-title.white {
    color: white;
}

.red {
    color: #ce3428
}

.title {
    font-size: 2rem;
    font-weight: 700;
}

.subtitle {
    font-size: 1.5rem;
    font-weight: 600;
}

.text {
    font-size: 1.2rem;
    letter-spacing: 1px;
    text-align: justify;
}

.center {
    text-align: center;
}

.btn {
    cursor: pointer;
    background-color: #1E5786;
    color: white;
    padding: 8px 20px;
    border-radius: 5px;
    transition: 0.5s;
    width: fit-content;
    font-size: 1rem;
    margin: 0 auto;
}

.btn:hover {
    /* filter: hue-rotate(30deg); */
    filter: hue-rotate(90deg);
}

.ss-show,
.ss-show-check {
    display: none;
}

.popup ::-webkit-scrollbar {
    width: 7px;
}

.popup ::-webkit-scrollbar-button {
    background: transparent;
    border-radius: 4px;
}

.popup ::-webkit-scrollbar-track-piece {
    background: transparent;
}

.popup ::-webkit-scrollbar-thumb {
    border-radius: 4px;
    background-color: #313b443f;
}

.popup ::-webkit-scrollbar-track {
    box-shadow: transparent;
}

.bg {
    position: fixed;
    top: 0;
    left: 0;
    height: 100vh;
    width: 100%;
    background-color: #1E1D61;
    z-index: -1;
}

/* preload */
.preload {
    position: fixed;
    transform: translateY(0);
    z-index: 30;
    width: 100%;
    height: 100vh;
    transition: 1s;
    background: #1E1D61;
    display: flex;
    justify-content: center;
    align-items: center;
}

.preload.active {
    transform: translateY(100%);
    z-index: -1;
}

.lds-circle {
    opacity: 1;
    color: #2DA0FF;
    transition: 0.3s;
}

.lds-circle.active {
    opacity: 0;
}

.lds-circle,
.lds-circle div {
    box-sizing: border-box;
}

.lds-circle {
    display: inline-block;
    transform: translateZ(1px);
}

.lds-circle>div {
    display: inline-block;
    width: 64px;
    height: 64px;
    margin: 8px;
    background: currentColor;
    border-radius: 50%;
    animation: lds-circle 2.4s cubic-bezier(0, 0.2, 0.8, 1) infinite;
}

@keyframes lds-circle {

    0%,
    100% {
        animation-timing-function: cubic-bezier(0.5, 0, 1, 0.5);
    }

    0% {
        transform: rotateY(0deg);
    }

    50% {
        transform: rotateY(1800deg);
        animation-timing-function: cubic-bezier(0, 0.5, 0.5, 1);
    }

    100% {
        transform: rotateY(3600deg);
    }
}

/* nav-bar */
.navbar {
    background-color: #000000bb;
    width: 100%;
    height: 75px;
    padding: 10px 15px;
    position: fixed;
    z-index: 20;
    display: flex;
    justify-content: space-between;
    align-items: center;
    box-shadow: 0 1px 10px #00000049;
    top: 0;
    backdrop-filter: blur(10px);
    -webkit-backdrop-filter: blur(10px);
    border-bottom: 1px solid rgb(131, 131, 131);
}

.logo {
    height: 100%;
}

.logo img {
    height: 100%;
    padding: 8px;
    transition: 0.3s;
}

.menu {
    margin-bottom: 0;
}

.menu li {
    display: inline-block;
    padding: 10px 15px;
    margin: 0 10px;
    color: #ffffff;
    font-size: 1.1rem;
    cursor: pointer;
    position: relative;
    transition: 0.3s;
    text-align: center;
}

.menu li p:last-child {
    font-size: 0.9rem;
}

.menu li:hover {
    text-shadow: 0 0 10px rgb(255, 255, 255);
    transform: translateY(-3px);
}

.menu li:last-child {
    display: none;
}

.social-media {
    height: 65%;
    display: flex;
}

.social-media img {
    height: 100%;
    margin-right: 20px;
    cursor: pointer;
    transition: 0.3s;
}

.social-media img:hover,
.logo img:hover,
.social-media-mb img:hover {
    transform: translateY(-3px);
}

.menu-btn {
    height: 65%;
    cursor: pointer;
    transition: 0.3s;
    display: none;
}

.menu-btn img {
    height: 100%;
}

/* 主視覺 */
.section1 {
    background: linear-gradient(180deg, #1E1D61 21%, #331D61 41%, #562F6E 82%, #8E77A3 100%);
    position: relative;
    padding: 0 0 70px;
}

.kv {
    position: relative;
    width: 100%;
    height: 50vw;
}

.kv-title {
    position: absolute;
    transform: translateX(-50%);
    top: 24vw;
    left: 50%;
    width: 52vw;
    animation: slideUp 1s forwards 0.3s, shine 12s infinite 1s;
    opacity: 0;
}

@keyframes slideUp {
    0% {
        opacity: 0;
        transform: translate(-50%, 30px);
    }

    100% {
        opacity: 1;
        transform: translate(-50%, 0);
    }
}

@keyframes shine {
    0% {
        filter: drop-shadow(0 0 0 rgba(255, 255, 255, 0));
    }

    25% {
        filter: drop-shadow(0 0 5px #2da0ff80) drop-shadow(0 0 10px #2da0ff80);
    }

    50% {
        filter: drop-shadow(0 0 0 rgba(255, 255, 255, 0));
    }

    75% {
        filter: drop-shadow(0 0 5px #ff41b380) drop-shadow(0 0 12px #ff41b380);
    }

    100% {
        filter: drop-shadow(0 0 0 rgba(255, 255, 255, 0));
    }
}

.kv-slogan {
    position: absolute;
    transform: translateX(-50%);
    top: 32.5vw;
    left: 50%;
    width: 31vw;
    animation: slideUp 1s forwards 0.7s;
    opacity: 0;
}

.taiwanfuture-logo {
    position: absolute;
    top: 14vw;
    left: 50%;
    transform: translateX(-50%);
    width: 20vw;
    animation: opacityAni 1s forwards 0.3s;
    opacity: 0;
}

.wave1 {
    mix-blend-mode: lighten;
    width: 100vw;
    position: absolute;
    top: 0vw;
    left: 0;
    opacity: 0;
    animation: opacityAni 1s forwards 0.8s, wave 11s ease-in-out infinite alternate;
}

.wave2 {
    mix-blend-mode: lighten;
    width: 95vw;
    position: absolute;
    bottom: -17vw;
    left: 0vw;
    opacity: 0;
    animation: opacityAni 1s forwards 1s, wave 10s ease-in-out infinite alternate;
}

.wave3 {
    mix-blend-mode: lighten;
    width: 85vw;
    position: absolute;
    bottom: -11vw;
    right: -25vw;
    opacity: 0;
    animation: opacityAni 1s forwards 1s, wave 8.5s ease-in-out infinite alternate;
}

@keyframes opacityAni {
    0% {
        opacity: 0;
    }

    100% {
        opacity: 1;
    }
}

@keyframes wave {
    0% {
        /* transform: scale(1, 1); */
        transform: skewX(0deg);
    }

    50% {
        /* transform: scaleX(1.05, 1); */
        transform: skewX(20deg);
    }

    100% {
        /* transform: scale(1.05, 1.02); */
        transform: skewX(0deg);

    }
}

/* 引言 */
.foreword {
    position: relative;
    color: #fff;
    /* animation: forewordshow 4s linear 1; */
    transition: 0.5s;
    background: linear-gradient(0deg, rgba(105, 81, 131, 0.9) 0%, rgba(30, 29, 97, 0.9) 100%);
    margin: 0 auto;
    backdrop-filter: blur(10px);
    -webkit-backdrop-filter: blur(10px);
    box-shadow: 0px 0px 10px rgba(255, 255, 255, 0.4);
    padding: 40px 60px 55px;
    max-width: 1200px;
    border-radius: 30px;
    width: 90vw;
}

.foreword::before {
    content: "";
    position: absolute;
    inset: 0;
    padding: 3px;
    background: linear-gradient(75deg, #2DA1FF, #FF41B3);
    -webkit-mask:
        linear-gradient(#fff 0 0) content-box,
        linear-gradient(#fff 0 0);
    -webkit-mask-composite: xor;
    mask-composite: exclude;
    border-radius: 30px;
    pointer-events: none;
    z-index: -1;
}

.foreword .subtitle {
    margin: 0 auto 30px;
    position: relative;
    width: fit-content;
    text-align: center;
}

.foreword .subtitle::after,
.latest-news .subtitle::after {
    content: '';
    position: absolute;
    bottom: -5px;
    left: 50%;
    transform: translateX(-50%);
    width: 100%;
    height: 4px;
    border-radius: 50%;
    mix-blend-mode: color-dodge;
    background: radial-gradient(white 0%, black 100%);
}

.foreword .text {
    line-height: 2.25rem;
    letter-spacing: 0.2rem;
}

@keyframes forewordshow {
    0% {
        transform: translateY(10%);
        opacity: 0;
    }

    30% {
        transform: translateY(10%);
        opacity: 0;
    }

    80% {
        transform: translateY(0%);
        opacity: 1;
    }
}

/* 最新消息 */
.latest-news {
    width: 90vw;
    position: relative;
    text-align: center;
    max-width: 900px;
    margin: 80px auto;
    text-align: center;
    padding: 30px;
    background-color: #242424;
    border-radius: 15px;
    color: white;
    box-shadow: 0px 0px 10px rgba(255, 255, 255, 0.4);
}

.latest-news .text {
    text-align: center;
}

.latest-news .subtitle {
    position: relative;
    width: fit-content;
    margin: 0 auto 30px;
}

.go-list-btn {
    background-color: #2DA1FF;
    margin: 40px auto 0;
}

/* 線上直播 */
.video {
    text-align: center;
    width: 90vw;
    max-width: 900px;
    margin: 100px auto 0;
}

.video>div {
    position: relative;
}

.dot1 {
    position: absolute;
    top: 55%;
    transform: translateY(-50%);
    right: -33%;
    width: 50vw;
    max-width: 669px;
    opacity: 0.6;
}

.dot2 {
    position: absolute;
    top: 55%;
    transform: translateY(-50%) scale(-1);
    left: -33%;
    width: 50vw;
    max-width: 550px;
    opacity: 0.6;
}

.video .title {
    color: #ffffff;
    margin: 80px auto 30px;
}

.video .day1 .subtitle {
    color: #FF41B3;
}

.video .day2 .subtitle {
    color: #2DA1FF;
}

.video-iframe {
    position: relative;
    width: 100%;
    aspect-ratio: 16/9;
    border-radius: 10px;
    overflow: hidden;
    box-shadow: 0px 0px 10px #FF41B3;
    border: 3px solid #FFAEDF;
}

.video .day2 .video-iframe {
    box-shadow: 0px 0px 10px #2DA1FF;
    border: 3px solid #AED4FF;
}

.video-iframe iframe {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    border-radius: 10px;
}

@supports not (aspect-ratio: 1) {
    .video-iframe {
        height: 0;
        padding-top: 56.25%;
    }
}

/* 歷屆成果 */
.section2 {
    background-size: cover;
    background-color: #09ADD5;
    background: url(../images/result-bg.jpg);
    background-position: left center;
    background-size: 120%;
    background-attachment: fixed;
}

.result>.content {
    margin: 0 auto;
    width: 95%;
    text-align: center;
}

.circle {
    display: inline-block;
    border: 1px solid white;
    color: #fff;
    border-radius: 50%;
    position: relative;
    margin: 0 -7px;
    width: calc(100% / 5);
    padding-top: calc((100%) / 5);
    box-shadow: 0 0 20px #FF41B3;
}

.result>.content .circle:nth-child(2) {
    box-shadow: 0 0 20px #CB59C6;
}

.result>.content .circle:nth-child(3) {
    box-shadow: 0 0 20px #9671D9;
}

.result>.content .circle:nth-child(4) {
    box-shadow: 0 0 20px #6289EC;
}

.result>.content .circle:nth-child(5) {
    box-shadow: 0 0 20px #2DA1FF;
}

.circle-word {
    position: absolute;
    width: 100%;
    top: 33%;
    left: 50%;
    transform: translate(-50%, 0);
}

.result>.content .subtitle {
    text-align: center;
    margin-bottom: 0.6rem;
    color: #FF41B3;
    font-size: 1.8rem;
}

.result>.content .circle:nth-child(2) .subtitle {
    color: #CB59C6;
}

.result>.content .circle:nth-child(3) .subtitle {
    color: #9671D9;
}

.result>.content .circle:nth-child(4) .subtitle {
    color: #6289EC;
}

.result>.content .circle:nth-child(5) .subtitle {
    color: #2DA1FF;
}

.result>.content .text {
    text-align: center;
    font-size: 1rem;
}

/* 趨勢議題 */
.section3 {
    padding-bottom: 135px;
    background: linear-gradient(180deg, #E4E4F4 0%, #F0F4FF 13%, #CFDDFD 100%);
}

.wave-blue {
    position: absolute;
    left: 0;
    bottom: 0;
    width: 100%;
}

.wave-white {
    position: absolute;
    left: 0;
    bottom: 0;
    width: 100%;
    z-index: 2;
}

.issue>.content {
    width: 80vw;
    max-width: 1400px;
    display: flex;
    justify-content: center;
    margin: 0 auto;
    gap: 20px;
    flex-wrap: wrap;
    position: relative;
    z-index: 2;
}

.issue-card {
    position: relative;
    border-radius: 15px;
    width: calc((100% - 60px)/4);
    color: white;
    overflow: hidden;
    min-width: 280px;
}

.issue-card:nth-child(1) {
    background: url(../images/issue1.jpg) center center no-repeat;
    background-size: cover;
}

.issue-card:nth-child(2) {
    background: url(../images/issue2.jpg) center center no-repeat;
    background-size: cover;
}

.issue-card:nth-child(3) {
    background: url(../images/issue3.jpg) center center no-repeat;
    background-size: cover;
}

.issue-card:nth-child(4) {
    background: url(../images/issue4.jpg) center center no-repeat;
    background-size: cover;
}

.issue-card::after {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    inset: 0;
    mix-blend-mode: multiply;
    opacity: 0.6;
    transition: 0.5s;
}

.issue-card:nth-child(1)::after {
    background: linear-gradient(#FF41B3 0%, #021933 100%);
}

.issue-card:nth-child(2)::after {
    background: linear-gradient(#B961CC 0%, #021933 100%);
}

.issue-card:nth-child(3)::after {
    background: linear-gradient(#7381E6 0%, #021933 100%);
}

.issue-card:nth-child(4)::after {
    background: linear-gradient(#67BBFF 0%, #021933 100%);
}

.issue-card .subtitle {
    width: 100%;
    text-align: center;
    padding: 30px 0px;
    position: relative;
    top: 50%;
    transform: translatey(-50%);
    z-index: 1;
    text-shadow: 2px 2px 2px rgba(0, 0, 0, 0.7);
    transition: 0.5s;
}

.issue-card .subtitle::after {
    content: '';
    position: absolute;
    bottom: 15px;
    width: 20%;
    left: 50%;
    transform: translateX(-50%);
    height: 5px;
    transition: 0.5s;
}

.issue-card:nth-child(1) .subtitle::after {
    background: #FF7CCB;
}

.issue-card:nth-child(2) .subtitle::after {
    background: #E09EFF;
}

.issue-card:nth-child(3) .subtitle::after {
    background: #7DB7FF;
}

.issue-card:nth-child(4) .subtitle::after {
    background: #61DDFF;
}

.issue-describe {
    position: relative;
    opacity: 0;
    z-index: 2;
    font-size: 16px;
    transition: 0.5s;
    padding: 0px 30px 30px;
    text-align: justify;
    top: 50%;
}

.issue-card:hover::after {
    opacity: 1;
}

.issue-card:hover .subtitle::after {
    width: calc(100% - 60px);
}

.issue-card:hover .subtitle {
    top: 0%;
    transform: translatey(0%);
}

.issue-card:hover>.issue-describe {
    opacity: 1;
    top: 0;
}

/* 講者 */
.section4 {
    background-color: #fff;
    padding-top: 60px;
}

.guest .section-title {
    margin-bottom: 80px;
}

.guest .subtitle {
    color: #1E1D61;
    text-align: center;
    font-size: 1.5rem;
}

.guest .text {
    color: #575757;
    text-align: center;
}

.guest .content {
    max-width: 1280px;
    margin: 0 auto;
}

.speaker-area {
    width: 100%;
    display: flex;
    flex-wrap: wrap;
    align-items: center;
    justify-content: center;
    margin: 0 auto 100px;
}

.speaker-area.many {
    justify-content: start;
}

.speaker {
    width: 16rem;
    display: flex;
    flex-direction: column;
    align-items: center;
    margin: 5rem 2rem 0rem 2rem;
    text-align: center;
}

.speaker-img {
    width: 16rem;
    height: 16rem;
    background-color: #ffffff;
    border-radius: 50%;
    overflow: hidden;
    position: relative;
    box-shadow: 1px 1px 10px rgba(32, 32, 32, 0.2);
}

.speaker-img img {
    width: 100%;
    transform: scale(1.1);
}

.speaker-name {
    margin-top: 20px;
    font-size: 1.5rem;
    font-weight: 600;
    color: #242424;
}

.name-eng {
    font-size: 1.1rem;
    color: #242424;
    font-weight: 600;
}

.speaker-title {
    font-size: 1.2rem;
    font-weight: 600;
    color: #2DA1FF;
}

.speaker-title.little {
    font-size: 1rem;
    font-weight: 600;
}

.more-btn {
    padding: 8px 30px;
    margin-top: 15px;
}

/* 議程 */
.section5 {
    background-color: #F0F4FF;
}

.agenda .content {
    width: 90vw;
    max-width: 1200px;
    margin: 0 auto;
}

.agenda-area {
    position: relative;
}

.agenda-date {
    display: flex;
    position: relative;
    top: 2px;
}

.agenda-date-tag {
    position: relative;
    padding: 7px 15px;
    border: solid 2px #242424;
    font-size: 1.2rem;
    font-weight: 600;
    border-radius: 10px 10px 0 0;
    background-color: #242424;
    color: #fff;
    margin-right: 10px;
    cursor: pointer;
    transition: color 0.3s;
}

@media (hover: hover) {
    .agenda-date-tag:hover {
        color: #FF41B3;
    }
}

.agenda-date-tag.active {
    background-color: #fff;
    color: #242424;
    /* border-bottom: solid 2px #ffffff; */
}

.agenda-date-tag.active::after {
    content: '';
    position: absolute;
    bottom: -2px;
    left: 0;
    width: 100%;
    height: 2px;
    background-color: #ffffff;
}

.schedule-chart {
    border: solid 2px #242424;
    border-radius: 0 10px 10px 10px;
    padding: 60px;
    background-color: white;
}

.agenda-schedule {
    font-size: 1rem;
    display: none;
    height: 35rem;
    overflow: hidden;
    color: #242424;
}

.agenda-schedule.active {
    height: fit-content;
}

.agenda-schedule table {
    border-collapse: collapse;
    position: relative;
    letter-spacing: 1px;
    width: 100%;
}

.agenda-schedule table thead {
    color: #1E5786;
    border-bottom: solid 2px #737373;
    font-size: 1.3rem;
}

.agenda-schedule th,
.agenda-schedule td {
    font-size: 1rem;
    padding: 10px;
    border-bottom: solid 1px #737373;
}

.agenda-schedule tr td:first-child {
    text-align: center;
}

.text-left {
    min-width: 5rem;
}

.speech-title {
    white-space: nowrap;
    font-weight: 600;
    color: #2DA1FF;
}

.topic {
    background-color: #1e5786d2;
    color: white;
    text-align: center;
}

.rest {
    /* background-color: #e9e9e9; */
    /* background-color: #1e57868c;
    color: white;
    text-align: center; */
}

.show {
    display: block;
}

.table-bottom {
    display: none;
}

.agenda-more-area {
    width: 100%;
    position: relative;
}

.agenda-more-btn {
    background-color: #242424;
    color: #fff;
    position: absolute;
    display: flex;
    gap: 7px;
    justify-content: center;
    align-items: center;
    left: 50%;
    bottom: -20px;
    transform: translateX(-50%);
    border: 2px solid #242424;
}

.agenda-more-btn:hover {
    background-color: #1E5786;
    filter: hue-rotate(0deg);
}

.agenda-more-btn img {
    width: 15px;
    transition: 0.5s;
}

.agenda-more-btn.active img {
    transform: rotate(180deg);
}

.dowload-area {
    margin-top: 80px;
    width: 100%;
    position: relative;
}

.line1 {
    border: none;
    height: 1px;
    background-color: #242424;
}

.line2 {
    border: none;
    height: 1px;
    background-color: #737373;
    margin-bottom: 70px;
}

.download-btn {
    background-color: #242424;
    color: #fff;
    font-size: 1.2rem;
    border-radius: 10px;
    position: absolute;
    right: 0%;
    top: -20px;
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 10px;
    padding: 8px 30px;
}

.download-icon {
    width: 25px;
    transition: 0.5s;
}

.download-btn:hover .download-icon {
    transform: translateY(-3px);
}

/* 活動資訊 */
.section6 {
    background: linear-gradient(#F0F4FF 36%, #F7FBFF 79%, #FFFFFF 100%);
    /* padding: 10px 0; */
    padding: 80px 0 10px;
}

.information>.content {
    background-color: #ffffff;
    border-radius: 15px;
    padding: 80px 100px;
    width: 90vw;
    max-width: 1200px;
    margin: 0 auto;
    border: 2px solid #242424;
}

.event-detail {
    display: flex;
    justify-content: space-between;
    align-items: center;
    margin-bottom: 30px;
    gap: 30px 60px;
}

.detail-title {
    color: #2DA1FF;
    font-weight: 600;
    display: flex;
    align-items: center;
    margin-bottom: 10px;
    font-size: 1.2rem;
}

.detail-title img {
    width: 20px;
    height: 20px;
    margin-right: 4px;
}

.mode-explain {
    margin-left: 20px
}

.mode-explain li {
    list-style-type: disc;
    list-style-position: outside;
    color: #1770c9;
    font-size: 1rem;
    margin: 7px 0;
}

.map {
    width: 100%;
    max-width: 500px;
}

.map-box {
    width: 100%;
    padding-bottom: 70%;
    position: relative;
}

.map-box iframe {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
}

/* award */
.award .subtitle {
    text-align: center;
}

.award-detail {
    margin-top: 20px;
    display: flex;
    flex-direction: column;
    gap: 30px;
}

.award-plan {
    margin-left: -10px;
    color: #2DA1FF;
    font-weight: 600;
}

.award-notice {
    padding-left: 30px;
}

.award-notice li {
    list-style-type: decimal;
    margin-bottom: 20px;
}

.award-notice li:last-child {
    margin-bottom: 0px;
}

.award-pic {
    margin-top: 20px;
    background-color: #F2F4F4;
    border-radius: 10px;
    padding: 25px;
    display: grid;
    gap: 10px;
    text-align: center;
    grid-template-columns: repeat(auto-fit, minmax(170px, 1fr));
}

.prize-pic {
    width: 100%;
}

.prize-title {
    font-weight: 600;
    color: #1E5786;
    height: 4rem;
    font-size: 1.1rem;
    align-items: center;
    display: flex;
    justify-content: center;
}

.prize-btn {
    font-size: 1rem;
    background-color: #1E5786;
    color: #fff;
    margin: 5px auto;
}

.award-list {
    margin-top: 80px;
}

.award-list-content {
    border-top: 2px solid #737373;
}

.award-list-item {
    display: flex;
    border-bottom: 1px solid #737373;
    padding: 20px;
    gap: 10px 30px;
}

.award-list-title {
    width: 50%;
    color: #2DA1FF;
    font-size: 1.1rem;
    font-weight: 600;
    display: flex;
    /* justify-content: center; */
    align-items: center;
    gap: 5px 15px;
    text-align: center;
}

.name-list {
    display: flex;
    gap: 15px 30px;
    flex-wrap: wrap;
    flex: 1;
}

/* 報名 */
.signup {
    margin-top: 80px;
}

.signup>.content {
    width: 100%;
    display: flex;
    justify-content: center;
}

.signup-top,
.signup-bottom {
    display: flex;
    flex-wrap: wrap;
    gap: 20px;
    margin-bottom: 20px;
}

.signup-top input,
.signup-top select {
    border-radius: 5px;
    padding: 10px 15px;
    border: solid 1px #a9a9a9;
    width: 100%;
    font-size: 1rem;
    font-family: "Noto Sans TC", sans-serif;
    color: #242424;
}

.signup select {
    cursor: pointer;
    appearance: none;
    background-color: white;
}

.signup-top .signup-input {
    width: calc((100% - 20px)/2);
    display: flex;
    flex-direction: column;
    text-align: left;
    position: relative;
}

.signup-bottom .signup-input {
    width: 100%;
}

.input-title {
    font-weight: bold;
    color: #1E5786;
    text-align: left;
    margin: 0 0 10px 0;
    font-size: 1.1rem;
}

.agree .input-title {
    margin: 0;
}

.select-arrow {
    position: absolute;
    top: 74%;
    transform: translateY(-50%);
    right: 18px;
    width: 16px;
    z-index: 2;
    opacity: 0.7;
}

.agenda-select {
    display: flex;
    gap: 30px;
    flex-wrap: wrap;
}

input[type=checkbox] {
    margin-top: 3px;
    width: 20px;
    height: 20px;
    background-color: #2DA1FF;
}

.agenda-select>div {
    display: flex;
    /* align-items: center; */
    flex: 0 0 calc(50% - 15px);
    gap: 5px;
}

.agree-pact {
    background-color: #F2F4F4;
    padding: 20px;
    border-radius: 10px;
    margin: 10px 0;
}

.private-btn {
    display: flex;
    justify-content: center;
    align-items: center;
    gap: 5px;
    background-color: #2677ba;
    margin: 0 0 10px;
}

.private-btn img {
    height: 16px;
}

.agree-pact p {
    font-size: 0.9rem;
    margin-bottom: 10px;
    text-align: justify;
}

.agree {
    text-align: center;
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 5px;
}

.agenda-select>div>input,
.agenda-select>div>label,
.agree>input,
.agree>.input-title {
    cursor: pointer;
}

.signup-notice {
    text-align: justify;
    padding-left: 20px;
    font-size: 1.1rem;
}

.signup-notice li {
    list-style-type: decimal;
    margin-bottom: 10px;
}

.sign-btn {
    margin: 60px auto 0;
}

/* 趨勢報導+歷屆回顧 */
.section7 {
    padding: 135px 0 70px;
    background: linear-gradient(180deg, rgba(30, 29, 97, 1) 31%, rgba(51, 29, 97, 1) 49%, rgba(72, 29, 97, 1) 100%);
}

.wave-purple {
    position: absolute;
    left: 0;
    top: 0;
    width: 100%;
}

.wave-white2 {
    position: absolute;
    left: 0;
    top: -1px;
    width: 100%;
    transform: scale(-1);
}

.light {
    position: absolute;
    mix-blend-mode: color-dodge;
    animation: lightAni 1s infinite alternate;
}

.light1 {
    width: 4vw;
    top: 0;
    left: -2vw;
    min-width: 50px;
}

.light2 {
    width: 4vw;
    top: 2vw;
    right: -1vw;
    min-width: 50px;
    animation-delay: -0.8s;
}

.light3 {
    width: 3vw;
    top: 0vw;
    right: 2vw;
    min-width: 30px;
    animation-delay: -0.5s;
}

@keyframes lightAni {
    0% {
        opacity: 1;
        transform: scale(1);
    }

    100% {
        opacity: 0.5;
        transform: scale(0.8);
    }
}

.article1,
.article2 {
    position: relative;
    max-width: 1400px;
    width: 85vw;
    margin: 0 auto;
}

.article2 {
    margin-top: 160px;
}

.swiper_area {
    position: relative;
}

.mySwiper1,
.mySwiper2 {
    width: calc(95% - 50px);
    padding-bottom: 40px;
}

.mySwiper3 {
    width: calc(95% - 50px);
}

.mySwiper1 .swiper-slide,
.mySwiper2 .swiper-slide {
    border: 3px solid white;
    background-color: white;
    border-radius: 10px;
    overflow: hidden;
    height: auto;
}

.mySwiper3 .swiper-slide {
    border-radius: 10px;
    overflow: hidden;
    border: 1px solid rgb(221, 221, 221);
}

.article-box .text {
    padding: 10px;
    text-align: justify;
    color: #242424;
    transition: 0.3s;
}

.article-img {
    width: 100%;
    position: relative;
    padding-top: calc(3 / 5 * 100%);
    overflow: hidden;
}

.article-img img {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: 0.5s;
}

.article-box:hover .text {
    color: #1E5786;
}

.article-box:hover .article-img img {
    transform: scale(1.1);
}

.review-box {
    position: relative;
}

.review-box img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    display: block;
    transition: 0.5s;
}

.review-box:hover img {
    transform: scale(1.1);
}

.review .text {
    opacity: 0;
    transition: 0.3s;
    color: white;
    letter-spacing: 0px;
    position: absolute;
    top: 0;
    left: 0;
    width: 101%;
    height: 101%;
    background-color: #0000008e;
    backdrop-filter: blur(10px);
    display: flex;
    justify-content: center;
    align-items: center;
}

.review-box:hover .text {
    opacity: 1;
}

.swiper-button-next:after,
.swiper-button-prev:after {
    content: '';
}

.swiper-button-prev1,
.swiper-button-next1,
.swiper-button-prev2,
.swiper-button-next2 {
    background-image: url(../images/arrow-white.svg);
    background-repeat: no-repeat;
    background-position: center;
    background-size: contain;
}

.swiper-button-prev3,
.swiper-button-next3 {
    background-image: url(../images/arrow.svg);
    background-repeat: no-repeat;
    background-position: center;
    background-size: contain;
}

.swiper-button-prev1,
.swiper-button-prev2,
.swiper-button-prev3 {
    left: -1%;
    transform: scale(-1.5);
    transition: 0.3s;
}

.swiper-button-prev1:hover,
.swiper-button-prev2:hover,
.swiper-button-prev3:hover {
    transform: scale(-1.6);
}

.swiper-button-next1,
.swiper-button-next2,
.swiper-button-next3 {
    right: -1%;
    transform: scale(1.5);
    transition: 0.3s;
}

.swiper-button-next1:hover,
.swiper-button-next2:hover,
.swiper-button-next3:hover {
    transform: scale(1.6);
}

.swiper-pagination-bullet {
    background-color: #ffffff;
}

/* right-fixed-area */
.right-fixed-area {
    position: fixed;
    right: 20px;
    bottom: 20%;
    display: flex;
    align-items: center;
    flex-direction: column;
    opacity: 0;
    transition: 0.5s;
    z-index: -1;
}

.right-fixed-area.active {
    opacity: 1;
    z-index: 11;
}

.go-to-signup,
.contact-us {
    width: 50px;
    background-color: #6DB5EF;
    padding: 25px 10px;
    color: #fff;
    text-align: center;
    cursor: pointer;
    transition: 0.5s;
    box-shadow: 0 0 10px rgba(255, 255, 255, 0.48);
    border: 2px solid white;
}

.go-to-signup {
    border-radius: 35px 35px 0 0;
}

.contact-us {
    background-color: #9671D9;
    /* border-radius: 0 0 35px 35px; */
    border-radius: 35px;
    margin-top: -2px;
}

.go-to-signup img,
.contact-us img {
    width: 100%;
    transition: 0.5s;
}

.go-to-top {
    width: 50px;
    height: 50px;
    margin-top: 3rem;
    cursor: pointer;
    border: 2px solid white;
    border-radius: 50%;
    transition: 0.5s;
    box-shadow: 0 0 10px rgba(255, 255, 255, 0.48);
}

.go-to-signup:hover img,
.contact-us:hover img {
    animation: hoverAni 0.5s ease-in infinite alternate;
}

.go-to-signup:hover,
.contact-us:hover,
.go-to-top:hover {
    transform: scale(1.05);
    box-shadow: 0 0 10px rgb(255, 255, 255);
}

@keyframes hoverAni {
    0% {
        transform: translateY(0px);
    }

    100% {
        transform: translateY(-5px);
    }
}

/* footer */
footer {
    background-color: #272727;
    color: #fff;
    text-align: center;
    padding: 30px;
}

/* popup */
.speaker-popup {
    z-index: -1;
    position: fixed;
}

.speaker-popup.active {
    z-index: 30;
}

.popup-bg {
    width: 100vw;
    height: 100%;
    position: fixed;
    display: flex;
    justify-content: center;
    align-items: center;
    top: 0;
    left: 0;
    background-color: rgba(0, 0, 0, 0.75);
}

.speaker-popup .popup-content {
    background-color: #fff;
    width: 85vw;
    max-width: 1080px;
    padding: 50px;
    border-radius: 10px;
    position: relative;
    max-height: 80%;
    overflow-x: hidden;
    overflow-y: auto;
    opacity: 0;
    transition: 0.3s;
    transform: translateY(10px);
}

.speaker-popup.active .popup-content {
    opacity: 1;
    transform: translateY(0);
}

.close-sec {
    position: sticky;
    top: 0px;
    z-index: 2;
}

.popup-close {
    font-size: 2rem;
    position: absolute;
    right: -42px;
    top: -42px;
    cursor: pointer;
    font-weight: 600;
    width: 30px;
    height: 30px;
    font-size: 30px;
    display: flex;
    justify-content: center;
    align-items: center;
    background: #f3f3f3;
    letter-spacing: 0;
}

.popup-close:hover {
    color: #2DA1FF;
}

.popup-top {
    display: flex;
}

.top-img {
    width: 30%;
    width: 15rem;
    height: 15rem;
    border-radius: 50%;
    margin: 30px;
    overflow: hidden;
    position: relative;
    box-shadow: 1px 1px 10px rgba(32, 32, 32, 0.2);
}

.top-img img {
    width: 100%;
    transform: scale(1.1);
}

.national {
    font-size: 1.3rem;
    color: #1E1D61;
}

.speaker-detail {
    width: 70%;
}

.career,
.academic,
.intro {
    text-align: justify;
}

/* latest news */
.news-popup {
    z-index: -1;
    position: fixed;
}

.news-popup.active {
    z-index: 30;
}

.news-popup-content {
    background-color: #ffffff;
    max-width: 960px;
    width: 85vw;
    padding: 60px;
    position: relative;
    border-radius: 10px;
}

.news-popup-close {
    position: absolute;
    font-size: 2rem;
    top: 10px;
    right: 15px;
    font-weight: 600;
    cursor: pointer;
    transition: 0.5s;
}

.news-popup-close:hover {
    color: #2DA1FF;
}

/* prize popup */
.prize-popup {
    z-index: -1;
    position: fixed;
}

.prize-popup.active {
    z-index: 30;
}

.prize-popup-content {
    background-color: #fff;
    width: 85vw;
    max-width: 1080px;
    padding: 50px;
    border-radius: 10px;
    position: relative;
    max-height: 80%;
    overflow-x: hidden;
    overflow-y: auto;
    transform: translateY(20px);
    opacity: 0;
    transition: 0.5s;
}

.active .prize-popup-content {
    transform: translateY(0);
    opacity: 1;
}

.prize-notice {
    margin: 20px;
    font-size: 1.2rem;
}

.prize-notice li {
    list-style-type: decimal;
    margin: 10px 0;
    text-align: justify;
    margin-left: 10px;
}

.prize-notice ul {
    padding-left: 20px;

}

.prize-notice ul li {
    list-style-type: square;
}

.prize-notice ul li ul li {
    list-style-type: circle;
}

/* signup_popup */
.signup-popup {
    z-index: -1;
    position: fixed;
}

.signup-popup.active {
    z-index: 30;
}

.signup-popup h3 {
    text-align: center;
    margin-bottom: 2rem;
    color: #1E5786;
}

@media screen and (max-width:1540px) {
    .issue-card {
        width: calc((100% - 20px)/2);
    }

    .speaker-area.many {
        max-width: 960px;
    }

    .speaker-img {
        width: 14rem;
        height: 14rem;
    }

    .speaker {
        margin: 4rem 2rem 0rem 2rem;
    }
}

@media screen and (max-width:1360px) {
    .navbar {
        height: 65px;
    }

    .menu {
        opacity: 0;
        z-index: -1;
    }

    .social-media {
        display: none;
    }

    .menu.active {
        display: block;
        opacity: 1;
        right: 0;
        z-index: 19;
    }

    .menu-btn {
        display: block;
    }

    .menu {
        position: fixed;
        top: 65px;
        right: -100%;
        width: 100%;
        height: calc(100vh - 65px);
        background-color: #242424;
        text-align: center;
        transition: 0.5s;
        overflow-y: auto;
        overflow-x: hidden;
    }

    .menu li {
        display: block;
        padding: 10px;
        margin: 0;
        color: #ffffff;
        font-size: 0.9rem;
        position: relative;
        border-bottom: 1px solid #2DA1FF;
    }

    .menu li:last-child {
        display: block;
    }

    .menu li:last-child {
        border-bottom: none;
    }

    .menu li:hover:after {
        transform: translateX(-50%) scale(0);
    }

    .social-media-mb {
        height: 50px;
        display: block;
    }

    .social-media-mb img {
        height: 100%;
        margin: 0 10px;
        cursor: pointer;
        transition: 0.3s;
    }

    .circle {
        width: calc((100% - 20px) / 3);
        padding-top: calc((100% - 20px) / 3);
        margin: 10px;
        min-width: 250px;
        min-height: 250px;
    }

    .circle:nth-child(3) {
        display: block;
        margin: 0 auto;
    }

    .circle-word {
        top: 28%;
    }

}

@media screen and (max-width:1300px) {
    .kv {
        height: 85vw;
    }

    .kv-title {
        top: 43vw;
        width: 80vw;
    }

    .kv-slogan {
        top: 55vw;
        width: 70vw;
    }

    .taiwanfuture-logo {
        top: 25vw;
        width: 35vw;
    }

    .wave1 {
        top: 3vw;
    }

    .foreword {
        padding: 50px;
    }

    .speaker-detail {
        width: 50%;
    }

    .top-img {
        width: 15rem;
        height: 15rem;
    }

    .event-detail {
        flex-direction: column;
    }

    .award-list-title {
        flex-direction: column;
    }

    .swiper-button-prev1,
    .swiper-button-prev2,
    .swiper-button-prev3 {
        left: 0;
    }

    .swiper-button-next1,
    .swiper-button-next2,
    .swiper-button-next3 {
        right: 0;
    }
}

@media screen and (max-width:1200px) {
    .information>.content {
        padding: 60px;
    }

    .award-notice {
        padding-left: 10px;
    }
}

@media screen and (max-width:1130px) {
    .speaker-area.many {
        max-width: 640px;
    }

    .ss-show {
        display: block;
    }
}

@media screen and (max-width:1093px) {
    .agenda-select {
        flex-direction: column;
    }
}

@media screen and (max-width:920px) {

    .download-icon {
        width: 20px;
    }

    .agenda-schedule th,
    .agenda-schedule td {
        padding: 7px;
    }

    .agenda-date-tag {
        font-size: 1rem;
    }

    .download-btn {
        font-size: 1rem;
    }
}

@media screen and (max-width:860px) {
    .text {
        font-size: 1.1rem;
    }

    .agenda-schedule {
        height: 26rem;
    }

    .popup-top {
        flex-direction: column;
        align-items: center;
    }

    .speaker-detail {
        width: 80%;
    }
}

@media screen and (max-width:754px) {

    .issue-card {
        width: 100%;
    }

    .speaker {
        margin: 4rem 2rem 0rem 2rem;
    }

    .information>.content {
        padding: 30px;
    }

    .mySwiper1,
    .mySwiper2,
    .mySwiper3 {
        width: 80%;
    }

    .swiper-button-prev1,
    .swiper-button-prev2,
    .swiper-button-prev3 {
        left: -1%;
    }

    .swiper-button-next1,
    .swiper-button-next2,
    .swiper-button-next3 {
        right: -1%;
    }
}

@media screen and (max-width:660px) {
    .speaker-area.many {
        max-width: 320px;
    }

}

@media screen and (max-width:570px) {

    .signup-top,
    .signup-bottom {
        gap: 10px;
        margin-bottom: 10px;
    }

    .signup-top .signup-input {
        width: 100%;
    }

    .input-title {
        margin: 5px 0;
        font-size: 1rem;
    }

    .input-option {
        width: 100%;
        font-size: 1rem;
    }

    .agree-pact {
        width: 100%;
    }

    .signup-notice {
        font-size: 1rem;
        padding-left: 15px;
    }

}

@media screen and (max-width:540px) {

    section {
        padding: 50px 0;
    }

    .section1 {
        padding: 0 0 50px;
    }

    .section3 {
        padding-bottom: 80px;
    }

    .section4 {
        padding-top: 40px;
    }

    .section7 {
        padding: 80px 0 50px;
    }

    .title {
        font-size: 1.5rem;
    }

    .section-title {
        font-size: 1.5rem;
        margin: 0 auto 40px;
    }

    .subtitle {
        font-size: 1.2rem;
    }

    .text {
        font-size: 1rem;
    }

    .logo {
        width: 80px;
    }

    .kv {
        height: 145vw;
    }

    .kv-title {
        top: 73vw;
        width: 90vw;
    }

    .kv-slogan {
        top: 87vw;
        width: 80vw;
    }

    .taiwanfuture-logo {
        top: 45.5vw;
        width: 48vw;
    }

    .wave1 {
        top: 14vw;
        width: 120vw;
    }

    .wave2 {
        bottom: 8vw;
    }

    .wave3 {
        bottom: 14vw;
    }

    .foreword {
        padding: 30px;
    }

    .foreword .text {
        letter-spacing: 0.15rem;
        line-height: 1.5rem;
    }

    .go-list-btn {
        margin: 20px auto 0;
    }

    .circle {
        width: 70%;
        padding-top: 70%;
    }

    .circle-word {
        top: 50%;
        transform: translate(-50%, -50%);
    }

    .result>.content .subtitle {
        font-size: 1.3rem;
    }

    .speaker-area {
        flex-direction: column;
    }

    .speaker {
        margin: 2rem 2rem 2rem 2rem;
    }

    .speaker-img {
        width: 15rem;
        height: 15rem;
    }

    .information>.content {
        padding: 30px;
    }

    .award-pic {
        gap: 25px 10px;
        grid-template-columns: repeat(auto-fit, minmax(120px, 1fr));
    }

    .prize-title {
        height: auto;
    }

    .award .subtitle {
        font-size: 1rem;
    }

    .prize-title {
        font-size: 1rem;
    }

    .award-list-item {
        flex-direction: column;
    }

    .award-list-title {
        width: 100%;
    }
  .name-list {
        justify-content: center;
    }
    .ss-show-check {
        display: block;
    }

    .light3 {
        right: 8vw;
    }

    .article2 {
        margin-top: 100px;
    }

    .swiper-button-prev1,
    .swiper-button-prev2,
    .swiper-button-prev3 {
        left: -3%;
    }

    .swiper-button-next1,
    .swiper-button-next2,
    .swiper-button-next3 {
        right: -3%;
    }

    .right-fixed-area {
        bottom: 0%;
        right: 2px;
        z-index: 4;
        transform: scale(0.8);
    }

    .speaker-popup .popup-content {
        padding: 20px;
    }

    .top-img {
        width: 10rem;
        height: 10rem;
        margin: 10px;
    }

    .national {
        font-size: 1.1rem;
    }

    .speaker-name {
        margin-top: 10px
    }

    .name-eng,
    .speaker-title {
        font-size: 1rem;
    }

    .speaker-detail {
        width: 100%;
    }

    .speaker-popup-content {
        padding: 15px;
    }

    .news-popup-content {
        padding: 60px 30px 30px;
    }

    .prize-popup-content {
        padding: 30px 15px;
    }

    .prize-notice ul {
        padding-left: 10px;
    }

    .popup-close {
        right: 0px;
        top: 0px;
    }

    .schedule-chart {
        padding: 20px;
    }

    .agenda-schedule th,
    .agenda-schedule td {
        font-size: 0.8rem;
        padding: 5px;
    }

    .agenda-schedule {
        height: 23rem;
    }

    footer {
        font-size: 0.8rem;
    }
}