/* http://meyerweb.com/eric/tools/css/reset/ 
   v2.0 | 20110126
   License: none (public domain)
*/

html,
body,
div,
span,
applet,
object,
iframe,
h1,
h2,
h3,
h4,
h5,
h6,
p,
blockquote,
pre,
a,
abbr,
acronym,
address,
big,
cite,
code,
del,
dfn,
em,
img,
ins,
kbd,
q,
s,
samp,
small,
strike,
strong,
sub,
sup,
tt,
var,
b,
u,
i,
center,
dl,
dt,
dd,
ol,
ul,
li,
fieldset,
form,
label,
legend,
table,
caption,
tbody,
tfoot,
thead,
tr,
th,
td,
article,
aside,
canvas,
details,
embed,
figure,
figcaption,
footer,
header,
hgroup,
menu,
nav,
output,
ruby,
section,
summary,
time,
mark,
audio,
video {
    margin: 0;
    padding: 0;
    border: 0;
    font-size: 100%;
    font: inherit;
    vertical-align: baseline;
}

/* HTML5 display-role reset for older browsers */
article,
aside,
details,
figcaption,
figure,
footer,
header,
hgroup,
menu,
nav,
section {
    display: block;
}

body {
    line-height: 1;
}

ol,
ul {
    list-style: none;
}

blockquote,
q {
    quotes: none;
}

blockquote:before,
blockquote:after,
q:before,
q:after {
    content: "";
    content: none;
}

table {
    border-collapse: collapse;
    border-spacing: 0;
}

/*------------------------------------------------------------*/
/*------------------------------------------------------------*/
body {
    font-family: "Noto Sans TC", "微軟正黑體", sans-serif, "Helvetica Neue", Helvetica !important;
    font-size: 16px;
    line-height: 1.7;
    color: #333333;
    overflow-x: hidden;
    padding-top: 70px;
}

.logos {
    position: fixed;
    top: 13px;
    z-index: 9999;
    left: 10px;
    display: flex;
}
.logos img:first-child {
    height: 40px;
    width: auto;
    margin-right: 10px;

}
.logos img:last-child {
    height: 40px;
    width: auto;
}
#backtop {
    position: fixed;
    right: 15px;
    bottom: 10%;
    z-index: 99;
    transition: all 0.3s;
    font-size: 0.9rem;
    transform: rotate(-90deg) translate(50%, 0);
    transform-origin: right center;
    background: #066545;
    color: #fff;
    width: 50px;
    padding: 5px;
    text-align: center;
    border-top-right-radius: 10px;
    border-top-left-radius: 10px;
}


#backtop:hover {
    cursor: pointer;
    text-decoration: none;
    background: #E96519;
}

.navbar-nav {
    display: block;
    width: 100%;
    text-align: right;
}

.nav-item {
    display: inline-block;
    text-align: center;
}

.navbar-expand-lg .navbar-nav .nav-link {
    display: inline-block;
    padding: 2px 20px;
    transition: all 0.3s;
    border-right: 1px dotted #ccc;
}

.navbar-expand-lg .navbar-nav .nav-link#s6 {
    border-right: none;
}

.navbar {
    background-color: #EDF0ED;
    height: 70px;
}

.nav-item span {
    display: block;
    padding: 0 5px;
}

.nav-item a:hover {
    background-color: #066545;
    color: #fff;
}

a,
a:hover {
    color: #333;
}

.top {
    margin-top: 50px;
}
.school {
    text-align: center;
    padding: 0 20px 40px 20px;
    background: #EEF0ED;
}
.school-list {
    display: flex;
    flex-wrap: wrap;
    justify-content: center;
    text-align: center;
    padding: 30px 20px;
}
.school-list li {
    padding:10px 20px;
    border-right: 1px dotted #ccc;
    margin-bottom: 20px;
}
.school-list li:last-child {
    border-right: 1px solid transparent;
}
.school-list h3 {
    color: #066545;
    font-size: 1.2rem;
    margin-bottom: 10px;

}
.school-list span {
    display: inline-block;
}
#menu {
    position: fixed;
    top: 0;
    left: 100%;
    width: 100%;
    height: 100%;
    background-color: #fff;
    z-index: 9999;
    transition: all 0.3s;
}

#menu.open {
    left: 0;
}

#menu>div {
    width: 100%;
    height: 100%;
    display: flex;
    justify-content: center;
    align-items: center;
}

#menu>div>ul {
    display: block;
    width: 100%;
    height: auto;
    overflow: hidden;
}

#menu>div>ul>li {
    display: block;
    width: 80%;
    height: auto;
    overflow: hidden;
    margin: 0 auto;
    text-align: center;
}

#menu>div>ul>li>a {
    transition: all 0.3s;
    line-height: 2;
    padding: 8px 30px;
    text-decoration: none;
    color: #333333;
    font-size: 18px;
    display: inline-block;
    margin-bottom: 5px;
}

#menu>div>ul>li>a:hover {
    background-color: #066545;
    color: #fff;
}
#menu>div>ul>li>p>a {
    transition: all 0.3s;
    line-height: 2;
    padding: 8px 30px;
    text-decoration: none;
    color: #066545;
    font-size: 18px;
    display: inline-block;
    margin-bottom: 5px;
    border-bottom: 1px dotted #066545;
}
a#close_btn {
    position: absolute;
    top: 10px;
    right: 20px;
    display: block;
    width: 22px;
    height: 22px;
    font-size: 2rem;
}

header {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 70px;
    z-index: 999;
    background-color: #EDF0ED;
}

header>a.menuopem {
    display: block;
    font-size: 2rem;
    margin-left: 20px;
    margin-top: 10px;
}

.dropdown-menu li:hover .sub-menu {
    visibility: visible;
}

.dropdown:hover .dropdown-menu {
    display: block;
}

.dropdown-toggle::after {
    content: none;
}

.logo {
    margin: 0px auto;
    background-color: #f0f0f0;
    width: 100%;
}

footer li {
    display: inline-block;
    padding: 25px;
}

.warning {
    width: 100%;
    background-color: #f5f5f5;
}

.warning section {
    max-width: 1000px;
    padding: 0 30px;
    margin: 40px auto;
    color: #333;
    font-size: 0.9rem;
    line-height: 1.4;
    text-align: justify;
}

.warning strong {
    font-weight: bold;
    color: #c9191d;
}

.warning .thin {
    font-size: 0.8rem;
}

.warning p {
    margin-top: 20px;
}

.warning h3 {
    font-size: 1.3rem;
    font-weight: bold;
    color: #000;
    border-bottom: 3px solid #000;
    display: block;
    margin: 10px auto;
    width: 60px;
    text-align: center;
    padding-bottom: 5px;
}

.topic-area {
    padding: 50px 0;
    background-color: #EEF0ED;
    position: relative;
}


.topic-area section {
    margin-top: 30px;
    margin-bottom: 30px;
    text-align: justify;
}


.event-area {
    padding: 90px 0 50px 0;
    background-color: #f5f5f5;
    position: relative;
    border-radius: 0 150px 0 0;
    margin-top: -150px;
}

.copyright {
    width: 100%;
    margin-top: 80px;
}

.copyright section {
    max-width: 1000px;
    padding: 0 20px;
    margin: 30px auto;
    color: #333;
    font-size: 0.9rem;
    line-height: 1.2;
    text-align: center;
}

.copyright p {
    margin-top: 5px;
}

.thin {
    font-weight: 200;
}

.copyright a {
    color: #333;
    padding: 4px;
    display: inline-block;
}

.copyright a:hover {
    text-decoration: none;
}

.top h3 {
    font-size: 1.3rem;
}

.top h3 span {
    display: block;
}

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

.qrcode {
    position: absolute;
    z-index: 1;
    display: block;
    width: 40%;
    right: 0;
    top: 46%;
    transition: all 0.3s;
}

.qrcode:hover {
    width: 44%;
}

.top-area div {
    max-width: 2560px;
    margin: 0 auto -10px auto;
}

.video {
    margin: 20px auto;
}

.point-area {
    padding: 120px 0 0px 0;
    background-position: center bottom;
    position: relative;
    background: url(../images/download_bg.jpg) no-repeat;
    background-size: cover;
}

.point-area-img img {
    margin-top: 5%;
}

.articleB-area {
    padding: 90px 0 40px 0;
    background: #F0F2EF;
}

.video-area {
    padding: 90px 0;
    background: url(../images/videobg.png) no-repeat;
    background-position: center top;
    background-size: cover;
}


.video-notice {
    text-align: center;
    color: #f4c944;
}

.speaker-box a.btn {
    background-color: #E96519;
    display: inline-block;
    border-radius: 30px;
    color: #ffffff;
    padding: 2px 20px;
    transition: all .3s;

}
.speaker-box .ps {padding-left: 20px;
font-size: 0.8rem;}

.speaker-box a.btn:hover {
    letter-spacing: 1px;
}


@keyframes livestyle {
    0% {
        background: transparent;
    }

    50% {
        background: #f4c944;
        color: #066545;
    }

    100% {
        background: transparent;
    }
}

.speaker-area {
    padding: 130px 0 60px 0;
    background: url(../images/speakerbg.png) no-repeat #A4CBAB;
    background-position: top center;
    position: relative;
    background-size: contain;
}

.speaker-list {
    margin: 50px auto;
}
.speaker-area .video::after{
    content: "";
    border-top:10px solid #066545;
    border-right:10px solid #066545;
    width: 70%;
    height: 90%;
    position: absolute;
    top: -10px;
    right: 5px;
    z-index: 1;
}
.speaker-box-info {
    display: flex;
    align-items: flex-start;
    margin-bottom: 30px;
    margin-left: 20px;
}

.slick-next, .slick-next:visited, .slick-next:focus {
    width: 29px;
    height: 50px;
    background: url(../images/next.png) no-repeat;
    opacity: .8;
}

.slick-next:before {
    font-family: none;
    content: none;
}

.slick-prev, .slick-prev:visited, .slick-prev:focus {
    width: 29px;
    height: 50px;
    background: url(../images/prev.png) no-repeat;
    opacity: .8;
}

.slick-prev:before {
    font-family: none;
    content: none;
}

.slick-prev:hover {
    opacity: 1;
    background: url(../images/prev.png) no-repeat;
}

.slick-next:hover {
    opacity: 1;
    background: url(../images/next.png) no-repeat;
}

.articleB-slider .slick-next, .articleB-slider .slick-next:visited, .articleB-slider .slick-next:focus {
    width: 28px;
    height: 51px;
    background-image: url(../images/next2.png);
    transition: all 0.3s;
}

.articleB-slider .slick-next:hover {
    opacity: .5;
}

.articleB-slider .slick-prev, .articleB-slider .slick-prev:visited, .articleB-slider .slick-prev:focus {
    width: 28px;
    height: 51px;
    background-image: url(../images/prev2.png);
    transition: all 0.3s;
}

.articleB-slider .slick-prev:hover {
    opacity: .5;
}

.speaker-img img {
    width: 220px;
}

.speaker-info {
    max-width: 68%;
    padding: 0px 30px 20px 30px;
    color: #1A1A1A;
}

.speaker-info span {
    color: #066545;
    display: inline-block;
}

.speaker-info h3 {
    font-size: 1.6rem;
    letter-spacing: 3px;
}

.speaker-info b {
    display: inline-block;
}

.speaker-info em {
    font-size: 1rem;
    display: inline-block;
    margin-left: 8px;
    color: #066545;
}

.speaker-info p {
    margin-top: 10px;
    display:inline-block;
}
.speaker-info h4 {
    font-size:1.1rem;
    letter-spacing:1px;
    line-height: 1.8;
}

.speaker-info h5 {
    display: inline-block;
    font-weight: normal;
}

.speaker-info p a {
    color: #066545;
    font-size: 0.9rem;
    display: inline-block;

}

.speaker-info p a:hover {
    text-decoration: none;
    color: #fff;
}

.speaker-info section {
    text-align: justify;
    font-size: 1rem;
    padding-top: 20px;
}

.infoB {
    border-top: 1px solid #b8bcde;
    padding: 20px;
    margin-top: 30px;
    display: flex;
}

.infoB ul {
    font-size: 18px;
    color: #fff;
    padding:10px 0 10px 20px;
    border:1px solid #066545;
    width: 100%;
    border-radius: 0 10px 10px 0px;
    color: #1a1a1a;
}
.infoB li {
    display:flex;
    flex-wrap: wrap;
    margin: 10px 0;
}
.infoB li h5,.infoB li h4 {
    margin-right: 10px;
    margin-bottom: 5px;
}

.event-time {
    display: flex;
    font-size: 18px;
    letter-spacing: 4px;
    color: #fff;
    font-weight: bold;
    padding: 4px;
    -webkit-writing-mode: vertical-rl;
    writing-mode: vertical-rl;
    background-color: #066545;
    border-top-left-radius: 10px;
    border-bottom-left-radius:10px;
    align-items: center;
    justify-content: center;
    padding: 30px 0;


}

.btn {
    font-size: 1rem;
    min-width: 80px;
}

.btn-outline-secondary {
    color: #066545;
    border: none;
}

.btn-outline-secondary:hover {
    color: #ffffff;
    background-color: #066545;
}


.card-footer {
    width: 100%;
    left: 0;
    padding-left: 14px;
}

.card-footer em {
    float: left;
    font-size: 0.85em;
    color: #999;
    margin-top: 6px;
}

.title-area {
    margin-bottom: 40px;
}

.title-area h3 {
    font-size: 1.2rem;
    padding: 20px 10px 40px 10px;
    max-width: 600px;
    margin: 0 auto;
    text-align: justify;
}

.slick-dots {
    left: 0;
}

.carousel-item section p {
    margin-bottom: 20px;
}

.step-title h4 {
    font-size: 1.3rem;
    font-weight: bold;
    min-height: 70px;
}

.event .title-area h3 {
    padding-bottom: 20px;
}

.step-img img {
    position: relative;
    z-index: 1;
}

.step-title-area .step-img {
    position: relative;
    z-index: 0;
    padding-left: 80px;
    padding-bottom: 30px;
}

.artical-top {
    min-height: 600px;
    position: relative;
    color: #ffffff;
    text-shadow: 1px 1px 2px #666666;
}

.articleB-box {
    background: #fff;
    min-height: 460px;
    position: relative;
    box-shadow: 0 0 5px #ccc;
    border-radius: 10px;
}

.articleB-slider {
    display: block;
    width: 100%;
    padding: 0 20px;
}

.card-footer {
    position: absolute;
    bottom: 8px;
    right: 0;
}

.card-title {
    font-size: 1.1rem;
    font-weight: bold;
    color: #000000;
    display: inline-block;
    padding: 0 10px 0 16px;
    position: relative;
    margin: 10px 0;
    background: url(../images/article_title.png) no-repeat;
    background-position: left bottom;
}

.articleB-cont {
    padding: 20px 15px;
    width: 30%;
}

.card-body {
    padding: 0;
    text-align: justify;
}

.card-body p {
    position: relative;
    padding: 10px 10px 10px 16px;
}
.deco {
    width: 100%;
    position: absolute;
    top: 0;
}
.more {
    opacity: 1;
    display: inline-block;
    background-color: #E96519;
    color: #fff;
    padding: 4px 8px;
    border-radius: 8px;
    position: relative;
    right: -28px;
    transition: all .3s;
}

.more:hover {
    opacity: 1;
    color: #fff;
    right: -34px;
}

.mobile {
    display: none;
}

.title-area img {
    max-width: 70%;
    margin: 0 auto;
}

.point-info {
    text-align: center;
    position: relative;
    top: -50px;
    min-height: 560px;
    color: #fff;
    line-height: 1.8;
    font-size: 1.1rem;
}

.point-info h3 {
    font-size: 1.4rem;
    margin-top: 20px;
    margin-bottom: 20px;
    color: #066545;
    display: inline-block;
    padding: 10px 30px;
    background: url(../images/download_title.png) no-repeat;
    background-size: contain;
    background-position: center bottom;
}

.point-info h5 {
    display: inline-block;
    padding: 4px 10px;
    margin-bottom: 10px;
    color: #fff;
    font-weight: bold;
    font-size: 1.2rem;
    letter-spacing: 2px;

}

.point-info b {
    display: block;
    border-radius: 40px;
    background-color: #fff;
    color: #000;
    width: 30px;
    height: 30px;
    line-height: 30px;
    margin-right: 10px;
    text-align: center;
}

.point-info em {
    display: inline-block;
    text-align: justify;
    width: 84%;
    color: #000;
}

.list {
    display: flex;
    align-items: center;
    margin-top: 10px;
}

.point-info section {
    margin-bottom: 40px;
    display: block;
    width: 50%;
    max-width: 500px;
    margin: 0 auto;
}

.point-info section p {
    text-align: left;
}

.download {
    max-width: 90%;
    margin: 0 auto;
    display: inline-block;
    transition: all 0.3s;
    position: relative;
    top: 20px;
}

.download:hover {
    top: 10px;
}

.ps,
.ps b {
    font-size: 0.7rem;
}

.ps b {
    font-weight: normal;
    color: #000;
}

.ps strong {
    font-weight: bold;
}


p.info {
    font-size: 0.9rem;
    color: #4d4d4d;
    text-align: justify;
}

p.info span {
    color: #000;
    font-weight: bold;
}

p.info span.small {
    color: #4d4d4d;
    font-size: 0.8rem;
    font-weight: normal;
}

.l-cookieBar {
    position: fixed;
    width: 250px;
    left: 0;
    bottom: 0;
    background-color: #fcfcfc;
    padding: 1.2rem;
    padding-bottom: 1.8rem;
    z-index: 999;
}

.l-cookieBar p {
    font-size: 0.9rem;
    line-height: 1.4;
    text-align: justify;
    color: #333;
}

.l-cookieBar p a {
    color: #066545;
}

.chBtn--main {
    border: none;
    background-color: #066545;
    color: #fff;
    font-size: 1rem;
}

.chBtn--main:hover {
    opacity: .8;
    cursor: pointer;
}

.chBtn {
    padding: 4px 40px;
    border-radius: 0;
    overflow: hidden;
    text-align: center;
    display: inline-block;
    border-radius: 5px;
}

.chBtn--main:before {
    background-color: #000;
}

.chBtn:before {
    content: '';
    display: block;
    width: 0;
    height: 100%;
    position: absolute;
    top: 0;
    left: 0;
    -webkit-transition: width .3s ease;
    transition: width .3s ease;
}

.carousel-control-next-icon, .carousel-control-prev-icon {
    width: 36px;
    height: 56px;
}

.carousel-control-next, .carousel-control-prev {
    opacity: .2;
    width: 40px;
    transition: opacity .3s ease;
    background: #fff;
    height: 100px;
    top: 50%;
    margin-top: -50px;
}

.carousel-control-next-icon {
    background-image: url(../images/next.png);
}

.carousel-control-prev-icon {
    background-image: url(../images/prev.png);
}

.event-img {
    max-width: 300px;
}
.infoB ul li b{
    font-weight: normal;
}

@media (max-width: 1200px) {
    
    .logos img:first-child {
        height: 36px;
        width: auto;
        margin-right: 10px;
    
    }
    .logos img:last-child {
        height: 36px;
        width: auto;
    }
    .navbar-expand-lg .navbar-nav .nav-link {
        padding: 2px 10px;
    }
    .school-list li {
        padding:10px 20px;
        border-right: 1px dotted transparent;
        margin-bottom: 20px;
    }

}

@media (max-width: 992px) {
    .navbar {
        display: none;
    }

    .logos {
        left: 60px;
        top: 18px;
    }
    

    .event-box {
        width: 49%;
    }

    .download {
        max-width: 100%;
    }
    .download:hover {
        max-width: 100%;
        top: 0;
    }

    .point-info {
        top: 0;
        min-height: 450px;
    }

    .point-info section {
        width: 70%;
    }
    .point-info h3 {
        margin-top: 0;
    }

}


@media (max-width: 768px) {

    .event-area .row {
        display: flex;
        flex-direction: column-reverse;
    }

    .qrcode {
        width: 54%;
    }

    .qrcode:hover {
        width: 58%;
    }
    .speaker-box-info {
        flex-direction: column;
    }
    .speaker-info em {
        margin-left: 0;
    }
    .infoB ul li {
        text-align:left;
        padding: 5px 0;
    }
    .infoB ul li b{
        display:inline-block;
    }


}

@media (max-width: 575.98px) {
    .title-area img {
        max-width: 90%;
        margin: 0 auto;
    }

    footer li {
        display: block;
        padding: 8px;
    }

    .articleB-box {
        min-height: 0px;
    }

    .card-footer {
        position: relative;
        bottom: 8px;
        right: 0;
    }

    .l-cookieBar {
        width: 100%;
    }

    .jkoam {
        flex-direction: column;
        justify-content: center;
        text-align: center;
        padding: 30px 30px 10px 30px;
    }

    .social img {
        max-width: 40px;
        display: inline-block;
        margin: 10px 5px;
    }

    .mobile {
        display: inline-block;
    }

    .desktop {
        display: none;
    }

    .speaker-box, .speaker-box.speaker2 {
        flex-direction: column;
        text-align: center;
    }

    .speaker-info {
        max-width: 100%;
    }

    .text-right.title-area {
        text-align: center !important;
    }

    .event-area .row {
        display: flex;
        flex-direction: column-reverse;
    }

    .event-info {
        margin-top: 30px;
    }

    .event-box {
        width: 90%;
        border-right: 0px;
        border-bottom: 2px dotted #444;
        padding-bottom: 30px;
        margin: 20px auto;
    }

    .event-box:last-child {
        border-bottom: none;
    }

    .carousel-control-next, .carousel-control-prev {
        width: 40px;
    }


    .point-info {
        min-height: 360px;
    }

    .point-info section {
        width: 100%;
    }

    .event-img {
        max-width: 260px;
    }

    .speaker-img img {
        width: 250px;
    }

    .qrcode {
        width: 70%;
        right: 0;
        top: auto;
        bottom: 200px;
    }

    .qrcode:hover {
        width: 74%;
    }

    .speaker-info h5  {
        display: block;
    }

    .speaker-info em {
        display: block;
        margin-left: 0;
        margin-top: 10px;
        font-size: 1rem;
        letter-spacing: 1px;
    }

    .articleB-slider .slick-next {
        right: 0;
    }

    .articleB-slider .slick-prev {
        left: 0px;
    }
    .slick-prev {
        left: 10px;
    }
    .slick-next {
        right: 0;
    }
    .point-info h3 strong {
        display: block;
        width: 100%;
    }
    .point-info h3 {
        background: url(../images/download_title_m.png) no-repeat;
        background-size: contain;
        background-position: center bottom;
    }
    .QRcode {
        text-align: center;
        margin-bottom: 30px;
    }
    .logos {
        left: 60px;
        top: 24px;
    }
     .logos img:first-child {
        height: 26px;
        width: auto;
        margin-right: 5px;
    
    }
    .logos img:last-child {
        height: 26px;
        width: auto;
    }
}