@import url('https://fonts.googleapis.com/css2?family=Noto+Sans+TC:wght@100;300;400;500;700;900&family=Roboto:wght@100;300;500;700;900&display=swap');

* {
    font-family: 'Roboto',  'Noto Sans TC', sans-serif;
  }
/* 首頁 */
* {
    margin: 0;
    padding: 0;
    list-style: none;
}
a{
    text-decoration: none;
}
body {
    background-color: #E9546B;
    display: flex;
    flex-direction: column;
    flex: 1 1 auto; 
    min-height: 100vh;
    width: 100%;
}

header {
    position: fixed;
    width: 100%;
    z-index: 10;
    transition-duration: .5s;
}

/* 頁首 */
#menu_control {
    position: absolute;
    z-index: -2;
    opacity: 0;
}

.header {
    width: 100%;
    height: 80px;
    background-color: rgba(0, 0, 0, .3);
    position: relative;
}

.header_box {
    max-width: 980px;
    width: 95%;
    margin: 0 auto;
    display: flex;
    position: relative;
    justify-content: space-between;
}
.menu-btn{
    position: absolute;
    height: 25px;
    top: 27.5px;
    right: 20px;
    cursor: pointer;
}
.menu-btn img {
    height: 100%;
}
.menu-btn img:hover {
    opacity: .6;
}
.header_sm_box{
    max-width: 980px;
    width: 95%;
    margin: 0 auto;
    justify-content: center;
    display: none;

}
.header_sm_box .logo{
    margin-left: 0;
}
@media (max-width:950px){
    .header_sm_box{
        display: flex;
    }
    .header_box{
        display: none;
    }
}


.nav-mobile-list {
    -webkit-user-select: none;
    -moz-user-select: none;
    -ms-user-select: none;
    user-select: none;
    display: none;
    position: fixed;
    left: 0;
    top: 0;
    width: 100%;
    height: auto;
    /* transition: .3s; */
    z-index: 1;
    max-height: 0;
  
    overflow: hidden;
  }
  
  @media (max-width: 1000px) {
    .nav-mobile-list {
      display: block;
    }
  }
  
  .nav-mobile-list.active {
    background: rgb(240,236,223);
    min-height: 100vh;
    padding-bottom: 100px;
    z-index: 2;
    overflow: auto;
  }
  
  .nav-mobile-list .menu-header {
    width: calc(100% - 2.5rem);
    padding: 10px 1.5rem;
    display: flex;
    justify-content: flex-end;
    align-items: center;
    height: 51px;
  }
  
  
  .nav-mobile-list .menu-header .sm-menu-on-btn {
    display: flex;
    align-items: center;
    justify-content: flex-end;
    padding-top: 5px;
    cursor: pointer;
  }
  
  .nav-mobile-list .menu-header .sm-menu-on-btn img {
    /* height: 19px; */
    width: 30px;
    margin-right: 10px;
  
  }
  .nav-mobile-list .menu-header .sm-menu-on-btn:hover img{
    opacity: .6;
  }
  
  .nav-mobile-list .nav-mobile-list-item {
    position: relative;
    color: #E9546A;
    max-width: 350px;
    width: 100%;
    margin: 0 auto;
    font-weight: 500;
    transition: .2s;
    cursor: pointer;
    list-style-type: none;
    text-align: center;
  }
  
  .nav-mobile-list .nav-mobile-list-item a,
  .nav-mobile-list .nav-mobile-list-item a:link,
  .nav-mobile-list .nav-mobile-list-item a:visited {
    color: #E9546A;
  }
  
  .nav-mobile-list .nav-mobile-list-item .arrow-img-up {
    position: absolute;
    left: 58px;
    width: 16px;
    top: 21px;
    padding: 5px;
    display: none;
    -moz-transform:scaleY(-1);
    -webkit-transform:scaleY(-1);
    -o-transform:scaleY(-1);
    transform:scaleY(-1);
  }
  
  .nav-mobile-list .nav-mobile-list-item .arrow-img-down {
    position: absolute;
    left: 58px;
    width: 16px;
    top: 21px;
    padding: 5px;
    display: none;
  }
  
  .nav-mobile-list .nav-mobile-list-item #sm-list-award-arrow-down {
    display: block;
  }
  
  .nav-mobile-list .nav-mobile-list-item #sm-list-active-arrow-down {
    display: block;
  }
  
  .nav-mobile-list .nav-mobile-list-item #sm-list-active-list {
    padding: 10px 0px 10px 0px;
    display: none;
  }
  .nav-mobile-list .nav-mobile-list-item #sm-list-award-list {
    padding: 10px 0px 10px 0px;
    display: none;
  }
  
  .nav-mobile-list .nav-mobile-list-item .sm-menu-ch {
    letter-spacing: .5px;
    padding: 0rem 1rem 0.1rem 1rem;
    font-size: 26px;
    font-weight: 500;
    height: 60px;
    line-height: 60px;
    text-align: center;
  }
  
  .nav-mobile-list .nav-mobile-list-item a,
  .nav-mobile-list .nav-mobile-list-item a:link,
  .nav-mobile-list .nav-mobile-list-item a:visited {
    text-decoration: none;
  }
  
  .nav-mobile-list .nav-mobile-list-item.active {
    color: #8C8877 !important;
  }
  
  .nav-mobile-list .nav-mobile-list-item.active a {
  
    color: #8C8877 !important;
  }
  
  .nav-mobile-list-sm-list .nav-list-item {
    line-height: 63px;
    text-align: center;
    padding: 3px 20px;
    font-size: 23px;
    font-weight: 400;
    height: 63px;
    position: relative;
    color: #312F2E;
    background-color: #FFC557;
  }
  .nav-list-item{
    color: #312F2E !important;
    display: block;
  }
  
  .two-row {
    display: flex;
    flex-direction: column;
    flex: 1 1 auto; 
    justify-content: center;
  }
  
  .nav-mobile-list-sm-list .nav-list-item span {
    color: #22202B;
    font-size: 18px;
  }
  
  .nav-mobile-list-sm-list .nav-list-item div {
    line-height: 23px;
  }
  
  .nav-mobile-list-sm-list .nav-list-item .nav-list-name {
    line-height: 40px;
  }
  
  .nav-second-list-item {
    line-height: 40px !important;
    padding: 0 !important;
    margin-left: 20px;
  }
  
  #sm-second-list-active-list {
    margin-bottom: 5px;
    display: none;
  }
  


.logo {

    margin-left: 10px;
    padding: 5px 0;
}

.logo img {
    width: 200px;
    height: 66px;
    vertical-align: middle;
}


nav .col {
    position: relative;
    cursor: pointer;
}


nav a {
    display: flex;
    align-items: center;
}


nav a {
    min-width: 110px;
    height: 60px;
    display: flex;
    text-decoration: none;
    color: #f00;
    text-align: center;
    align-items: center;
    margin: 30px;
    font-size: 20px;
    font-weight: 700;
    transition-duration: .3s;
    justify-content: center;
}

.sm_menu_item:hover,
nav a:hover {
    color: #FFC657;
}

.sm_menu {
    display: none;
    position: absolute;
    left: 0;
    top: 80px;
    width: 100%;
    text-align: center;
    background-color: #554018;
}

nav .col:hover .sm_menu {
    display: block;
}
.w_200{
    width: 160px;
    left: -15px;
}

.sm_menu_item {
    color: #fff;
    line-height: 40px;
    height: 40px;
    font-size: 19px;
    font-weight: 500;
    cursor: pointer;
}
nav {
    position: relative;
    left: 0;
    display: flex;
    width: auto;
    height: auto;
    top: 0;
    background-color: transparent;
    width: 100%;
    justify-content: space-between;
    margin-left: 50px;
}

.header {
    display: flex;
    justify-content: space-around;
    align-items: center;
}

nav a {
    color: #fff;
    margin: 10px 0px;
    padding: 0 10px;
}


/* 頁尾 */
.footer {
    background-color: #FFEAC2;
    width: 100%;

}

.pastDynasties {
    border-bottom: 1px solid #999;
    width: 98%;
    margin: 0 auto;
    max-width: 980px;
    padding: 15px 0;
    display: flex;
    flex: 1 1 auto;
    justify-content: center;
    align-items: center;
}

.pastDynasties h2 {
    text-align: center;
    font-size: 1.2rem;
    margin-right: 20px;
}

.card_group {
    width: 95%;
    margin: 0 auto;
    flex: 1;
    display: flex;
    align-items: center;

}




.c_item {
    flex: 1;
    padding: 0 10px;
    background-color: #74726F;
    border-radius: 10px;
    text-align: center;
    color: #fff;
    line-height: 47px;
    align-items: center;
    display: flex;
    justify-content: center;
    margin-right: 10px;
    min-width: 60px;
    font-size: 1rem;
    font-weight: 600;
    transition-duration: .4s;
    cursor: pointer;
}



/* .c_item:last-child {
    margin-right: 0;
} */



.c_item:hover {
    background-color: #FFC657;
    color: #000;
    font-size: 1.2rem;
}

.unitTitle {
    padding: 40px 0;
    max-width: 900px;
    margin: 0 auto;
    flex-direction: row;
    justify-content: center;
    display: flex;
}

.unitItem {
    width: 50%;
    flex: 1 1 auto;     
    display: flex;
    justify-content: center;
}

.unitTitle img {
    height: 66px;
}


.unitItem h2 {
    line-height: 66px;
    margin-right: 20px;
    font-size: 1.2rem;
    font-weight: 400;
}

.pastDynasties h2 {
    margin-bottom: 10px;
}

@media (max-width:830px) {
    .pastDynasties {
        flex-direction: column;
        flex: 1 1 auto; 
        display: flex;
        min-height: 200px;
    }

    .card_group {
        display: flex;
        justify-content: center;
        flex-wrap: wrap;
    }

    .c_item {
        flex: none;
        padding: 0 10px;
        background-color: #74726F;
        border-radius: 10px;
        text-align: center;
        color: #fff;
        line-height: 40px;
        align-items: center;
        display: flex;
        justify-content: center;
        margin-right: 10px;
        width: calc(33.33% - 30px);
        min-width: 10px;
        margin-bottom: 10px;
    }

    .unitTitle {
        display: flex;
        flex-direction: column;
    flex: 1 1 auto; 
        justify-items: center;
        flex: 1 1 auto;
    }

    .unitTitle img {
        height: 66px;
    }

    .unitItem {
        display: flex;
        align-items: center;
        justify-content: center;
        margin: 10px;
        vertical-align: baseline;
        width: 95%;
    }
}

@media (max-width:980px) {
    .pastDynasties {
        flex-direction: column;
        flex: 1 1 auto;
        display: flex;
        min-height: 200px;
    }



}

/* index.html */
.index_area {
    flex: 1;
    display: flex;
    flex-direction: column;
    flex: 1 1 auto; 
    flex: 1 1 auto; 
    align-items: center;

}

.index_item {
    display: flex;
    justify-content: center;
    margin-top: 250px;
    align-items: center;

}

.date_item {
    display: flex;
    flex-direction: column;
    flex: 1 1 auto; 
    align-items: center;

}

.index_item img {
    margin-top: 40px;
}
.index_item_1{
    width: 359px;
    height: 168px;
    margin-right: 80px;
}
.index_item_2{
    width: 357px;
    height: 143px;
}

.date_item img {
    width: 180px;
    height: 80px;
    margin: 70px auto 10px;
}
.date-text{
    color: rgb(255,224,164);
    font-size: 30px;
    font-weight: 600;
    margin-top: 10px;
}

.index_photo {
    color: #fff;
    max-width: 960px;
    width: 90%;
    height: 355px;
    position: relative;
    border-radius: 10px;
    margin-top: 300px;
    margin-right: 0;
    margin-bottom: 90px;
    overflow: hidden;
    cursor: pointer;
}

.index_photo img {
    position: absolute;
    width: 100%;
    height: 100%;
    object-fit: cover;
    left: 0;
    top: 0;
}

.index_name {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    color: #fff;
    display: flex;
    align-items: center;
    justify-content: center;
    z-index: 4;
    font-size: 1.2rem;
    font-weight: 500;
    letter-spacing: 5px;
}

.index_photo:last-child {
    margin-right: 0;
}

.index_photo .active {
    opacity: 1;
    transition-duration: .5s;
    z-index: 1;
}

.index_photo .no_active {
    opacity: 1;
    transition-duration: .5s;
    z-index: 2;
}

.index_photo:hover .no_active {
    opacity: 0;
}

@media (max-width:820px){
    .index_item {
        flex-direction: column;
    flex: 1 1 auto; 
        max-width: 350px;
        width: 90%;
        margin: 200px auto 0;
        padding: 20px;
    }
    .index_item_1{
       width: 100%;
        height: auto;
        margin-right: 0;
    }
    .index_item_2{
        width: 100%;
        height: auto;
    }
    .index_photo {
        height: 250px;
        margin-top: 200px;
    }
}
@media (max-width:500px) {
    .index_area {
        flex-direction: column;
    flex: 1 1 auto; 
    }
    .index_photo {
        margin-bottom: 50px;
    }
}


/* about.html */
.about_area {
    flex: 1;
    width: 95%;
    max-width: 960px;
    margin: auto;
    padding-top: 90px;
}

.about_area h1 {
    color: #FEE0A4;
    margin: 60px 10px;
    font-size: 3rem;
    font-weight: 900;
    text-align: center;
    letter-spacing: 5px;
    margin-top: 120px;
}




.about_group {
    display: flex;
    align-items: center;
    justify-content: space-between;
    justify-content: flex-start;
    flex-wrap: wrap;
    margin: 0 auto 80px;
}



.about_item {
    color: #fff;
    width: 450px;
    height: 322px;
    position: relative;
    border-radius: 20px;
    margin: 0 40px 60px 0;
    overflow: hidden;
}

.about_pic img {
    position: absolute;
    width: 100%;
    height: 100%;
    object-fit: cover;
    left: 0;
    top: 0;
}

.aboutText_group {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    color: #fff;
    display: flex;
    align-items: center;
    flex-direction: column;
    flex: 1 1 auto; 
    justify-content: flex-start;
    z-index: 4;
    font-size: 2rem;
    font-weight: 500;
}

.about_name {
    font-size: 34px;
    margin: 60px auto 20px auto;
    color: #FFC657;
}

.about_text {
    font-size: 19px;
    padding: 0 55px;
    line-height: 28px;
    text-align: justify;
}

.about_item:last-child {
    margin-right: 0;
}

.about_item .active {
    opacity: 1;
    transition-duration: .5s;
    z-index: 1;
}

.about_item .no_active {
    opacity: 1;
    transition-duration: .5s;
    z-index: 2;
}


.about_item:hover .no_active {
    opacity: 0;
}

@media (max-width:990px) {
    .about_group {
        width: 80%;
        justify-content: center;

    }

    .about_item {
        color: #fff;
        position: relative;
        border-radius: 20px;
        margin: 0 0px 20px 0;
        overflow: hidden;
    }
}

@media (max-width:500px) {
    .about_group {
        width: 90%;
        justify-content: center;

    }
    .about_area h1 {
        color: #FEE0A4;
        margin: 40px 10px 50px;
        font-size: 2rem;
        font-weight: 900;
        text-align: center;
        letter-spacing: 5px;
    }
    

    .about_item {
        width: 100%;
        height: 0;
        padding-bottom: calc(100% / 450 * 322);
    }

    .about_name {
        font-size: 28px;
        margin: 30px auto 10px auto;
        color: #FFC657;
    }

    .about_text {
        font-size: 17px;
        padding: 0 30px;
        line-height: 24px;
        text-align: justify;
    }

}

@media (max-width:400px) {
    .about_name {
        font-size: 24px;
        margin: 20px auto 10px auto;
        color: #FFC657;
    }

    .about_text {
        font-size: 16px;
        padding: 0 30px;
        line-height: 24px;
        text-align: justify;
    }
}


/* winnerTeacher.html */
.winnerTeacher_area {
    flex: 1;
    max-width: 700px;
    width: 90%;
    margin: 0 auto 80px;
}

.winnerTeacher_area h1 {
    color: #FEE0A4;
    letter-spacing: 5px;
    text-align: center;
    font-size: 2.5rem;
    margin-top: 150px;
}

.winnerTeacher_group {
    display: flex;
    flex-direction: column;
    flex: 1 1 auto; 
}

.winnerPlace_group {
    display: grid;
    width: 95%;
    max-width: 660px;
    gap: 32px;
    grid-template-columns: repeat(auto-fill, minmax(130px, 1fr));
    justify-content: flex-start;
    flex-wrap: wrap;
    margin: 0 auto 30px;
}


.winnerTeacher_item h2 {
    font-size: 2rem;
    margin: 50px 0 20px 0;
    text-align: center;
    color: #fff;
}


.winnerPlace_group a {
    min-width: 140px;
    width: 100%;
    height: 69px;
    border: 1px solid #fff;
    text-align: center;
    font-size: 1.3rem;
    font-weight: 500;
    color: #fff;
    line-height: 69px;
    border-radius: 5px;
    transition: .5s;
    margin: 0;
    align-self: center;
    cursor: pointer;
}

.winnerPlace_group a:hover{
    background-color: #FFC657;
    color: #E9556A;
    border-color: #000;
}

.winnerPlace_group a{
    width: 100%;
    height: 100%;
    color: #fff;
}

.winnerPlace_group {
    justify-content: space-between;
}


/* listOfWinners.html */
.winner_area {
    flex: 1;
    max-width: 960px;
    margin: auto;
    width: 90%;
    padding: 140px 0 140px 0;
}

.winner_group {
    display: flex;
    flex-direction: column;
    flex: 1 1 auto; 
    align-items: center;
    flex: 1;
}

.winner_group h1 {
    color: #FEE0A4;
    text-align: center;
    font-size: 3rem;
    margin: 50px 0 70px 0;
    letter-spacing: 5px;
}

.title-area {
    display: flex;
    flex-direction: column;
    flex: 1 1 auto; 
    justify-items: center;
}

.item-img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    position: absolute;
    left: 0;
    top: 0;
}

.title_item {
    color: #fff;
    width: 286px;
    height: 360px;
    position: relative;
    overflow: hidden;
    margin-right: 20px;
    margin-bottom: 50px;
}

.title_item:last-child {
    margin-right: 0;
}

.title_item .active {
    opacity: 1;
    transition-duration: .5s;
    z-index: 1;
}


.title_item .no_active {
    opacity: 1;
    transition-duration: .5s;
    z-index: 2;
}


.title_item:hover .no_active {
    opacity: 0;
}

.winner_item {
    position: absolute;
    left: 0;
    top: 0;
    width: 100%;
    height: 100%;
    z-index: 4;
}


.winner_item h2 {
    margin-bottom: 10px;
    color: #fff;
    text-align: center;
    line-height: 360px;
    font-size: 1.8rem;
    transition-duration: .3s;
    letter-spacing: 2px;
}
.winner_item h2:hover{
    font-size: 2.4rem !important;
}

@media screen and (min-width:767px) {
    .winnerTeacher_area h1{
        color: #FEE0A4;
        letter-spacing: 5px;
        text-align: center;
        font-size: 3rem;
        margin-top: 150px;

    }
    .title_area {
        width: 100%;
        display: flex;
        flex-direction: row;
        justify-content: space-around;
    }
}

/* winnerDedication.html */

.winnerDedication_area {
    flex: 1;
}

.winnerDedication_area h1 {
    color: #FEE0A4;
    text-align: center;
    font-size: 2.5rem;
    margin: 140px 0 30px 0;
    letter-spacing: 5px;
}

.winnerDedication_group {
    display: flex;
    justify-content: center;
    flex-direction: column;
    flex: 1 1 auto; 
    flex-wrap: wrap;
}

.winnerDedication_item {
    /* border: 1px solid #333; */
    text-align: center;
    margin: 20px;
    cursor: pointer;
    flex: 1;

}

.winnerDedication_item img {
    border-radius: 50%;
    width: 138px;
    margin-bottom: 10px;
}

.winnerDedication_item h5 {
    color: #FEE0A4;
    font-size: 1.2rem;
}

.winnerDedication_item p {
    font-size: 13px;
    color: #fff;
}

@media screen and (min-width:767px) {
    .winnerDedication_group {
        flex-direction: row;
        text-align: center;
        width: 75%;
        margin: 60px auto 100px;
        max-width: 990px;
    }

    .winnerDedication_item {
        text-align: center;
        margin: 20px;
    }
}

/* winnerExcellentTeacher.html */
.excellenTeacher_area {
    flex: 1;
    max-width: 700px;
    width: 95%;
    margin: 0 auto 80px;
}

.excellenTeacher_area h1 {
    color: #FEE0A4;
    letter-spacing: 5px;
    text-align: center;
    font-size: 2.5rem;
    margin-top: 150px;
}

.excellenTeacher_group {
    display: flex;
    flex-direction: column;
    flex: 1 1 auto; 
}

.excellenPlace_group {
    display: grid;
    width: 95%;
    max-width: 660px;
    gap: 32px;
    grid-template-columns: repeat(auto-fill, minmax(130px, 1fr));
    justify-content: flex-start;
    flex-wrap: wrap;
    margin: 0 auto 30px;
}

.excellenTeacher_item h2 {
    font-size: 2rem;
    margin: 50px 0 20px 0;
    text-align: center;
    color: #fff;
}


.excellenPlace_group a {
    min-width: 140px;
    width: 100%;
    height: 69px;
    border: 1px solid #fff;
    text-align: center;
    font-size: 1.3rem;
    font-weight: 500;
    color: #fff;
    line-height: 69px;
    border-radius: 5px;
    transition: .5s;
    margin: 0;
    align-self: center;
    cursor: pointer;
}

.excellenPlace_group a:hover{
    background-color: #FFC657;
    color: #E9556A;
    border-color: #000;
}

.excellenPlace_group a{
    width: 100%;
    height: 100%;
    color: #fff;
}

.excellenPlace_group {
    justify-content: space-between;
}

/* aboutIntroduction.html */
.introduction_area {
    flex: 1;
    max-width: 900px;
    margin: auto;
    width: 90%;
    padding: 140px 0 0px 0;
}

.introduction_area h1 {
    color: #FEE0A4;
    text-align: center;
    font-size: 2rem;
    margin: 20px 0 0 0;
    letter-spacing: 5px;
}

hr {
    border: 1px solid #fff;
    margin: 30px 0 40px 0;

}

.introduction_content p {
    text-align: justify;
    font-size: 1rem;
    font-weight: 400;
    color: #fff;
    line-height: 1.45rem;
    letter-spacing: .1px;
}

.intr_group {
    display: flex;
    flex-direction: row;
    justify-content: center;
}

.intr_group button {
    font-weight: 500;
    width: 130px;
    height: 80px;
    margin: 40px 20px;
    font-size: 1.2rem;
    letter-spacing: 1px;
    text-decoration: none;
    box-shadow: none;
}

.intr_item1 {
    color: #f00;
}

.intr_item2 {
    color: #000;
}

.intr_Btn {
    cursor: pointer;
    margin: 20px 0 20px 0px;
}

.intr_Btn a {
    line-height: 58px;
    text-decoration: none;
}

.intr_Btn:hover {
    background-color: #256444;
}

.intr_Btn:hover div {
    color: #FFF !important;
}

@media screen and (min-width:767px) {
    .intr_group button {
        width: 100px;
        height: 66px;
        margin: 0 0 10px 60px;
        font-size: 1.2rem;
        text-decoration: none;
        outline: none;
        box-shadow: none;
        border: none;
    }

    .introduction_content {
        display: flex;
        justify-content: center;
        flex-direction: row;
        align-items: flex-start;
        margin-bottom: 100px;
    }

    .intr_group {
        display: flex;
        flex-direction: column;
    flex: 1 1 auto; 
    }
}

/* aboutGist.html */
.gist_area {
    flex: 1;
    max-width: 900px;
    margin: auto;
    width: 90%;
    padding: 140px 0 0px 0;
}

.gist_area h1 {
    color: #FEE0A4;
    text-align: center;
    font-size: 2rem;
    margin: 20px 0 0 0;
    letter-spacing: 5px;
}

hr {
    border: 1px solid #fff;
    margin: 30px 0 40px 0;

}

.gist_content {
    display: flex;
    flex-direction: column;
    flex: 1 1 auto; 
}

.gist_content p {
    text-align: justify;
    font-size: 1rem;
    font-weight: 400;
    color: #fff;
    line-height: 1.45rem;
    letter-spacing: .1px;
}

.gist_group {
    display: flex;
    flex-direction: row;
    justify-content: center;
}

.gist_group button {
    font-weight: 500;
    width: 130px;
    height: 80px;
    margin: 40px 20px;
    font-size: 1.2rem;
    letter-spacing: 1px;
    text-decoration: none;
    box-shadow: none;
}

.gixt_btn a {
    text-decoration: none;
}

.gist_item1 {
    color: #f00;
}

.gist_item2 {
    color: #000;
}

.gist_Btn {
    cursor: pointer;
    margin: 20px 0 20px 0px;
}

.gist_Btn a {
    line-height: 58px;
    text-decoration: none;
}

.gist_Btn:hover {
    background-color: #256444;
}

.gist_Btn:hover div {
    color: #FFF !important;
}


@media screen and (min-width:767px) {
    .gist_group button {
        width: 100px;
        height: 66px;
        margin: 0 0 10px 60px;
        font-size: 1.2rem;
        text-decoration: none;
        outline: none;
        box-shadow: none;
        border: none;
    }
    .gist_group {
        display: flex;
        flex-direction: column;
    flex: 1 1 auto; 
    }

    .gist_content {
        display: flex;
        justify-content: center;
        flex-direction: row;
        align-items: flex-start;
        margin-bottom: 100px;
    }
}

/* medaiReports.html */
.media_area {
    flex: 1;
    max-width: 960px;
    width: 100%;
    margin: 80px auto 0px;
    background-color: #F5EDE5;
}

.media_item {
    display: flex;
    justify-content: center;
    flex-direction: column;
    flex: 1 1 auto; 
    align-items: center;
    margin: 50px 10px 20px 10px;
}

.media_item img {
    width: 100%;
}

.media_text {
    width: 100%;
}

.media_text a {
    text-decoration: none;
}


.media_item h1 {
    color: #AA8132;
    text-align: justify;
    font-weight: 900;
    margin: 20px 15px;

}

.media_item p {
    text-align: justify;
    white-space: normal;
    margin: 20px 15px;
    color: #000;
    font-weight: 300;

    display: -webkit-box;
    -webkit-box-orient: vertical;
    -webkit-line-clamp: 3;
    overflow: hidden;
}

.media_text{
}

.media_text:hover h1,
.media_text:hover p {
    color: #9B404E;
}

@media screen and (min-width:900px) {
    .media_area {
        flex: 1;
        max-width: 960px;
        width: 95%;
        margin: 130px auto 50px;
        background-color: #F5EDE5;
    }
    .media_item {
        display: flex;
        flex-direction: row;
        justify-content: center;
        margin: 20px ;
    }

    .media_img {
        width: 35%;
        margin: 20px 0px 20px 0;
    }

    .media_text {
        width: 60%;
        display: flex;
        flex-direction: column;
    flex: 1 1 auto; 
        justify-content: center;
        margin: 0px 15px;
    }
}

/* videoAtlas.html */
.video_area {
    flex: 1;
    max-width: 1000px;
    width: 100%;
    margin: auto;
    padding:0 0 80px;
}
.video_play{
    margin: 80px 0 120px 0;
    padding: 0px 0 0px 0;
    height: 700px;
    background-color: #ccc;
    text-align: center;
}

.video_source {
    display: flex;
    flex-direction: column;
    flex: 1 1 auto; 
    align-items: center;

}

.video_source h2 {
    color: #fa0;
    font-weight: 900;
}

video {
    width: 100%;
    height: auto;
    border: 1px solid #aaa;
}

.video_group {
    width: 95%;
    display: grid;
    gap: 15px;
    grid-template-columns: repeat(auto-fill, minmax(250px, 1fr));
}

.video_pic {
    display: flex;
    flex-direction: column;
    flex: 1 1 auto; 
    width: 100%;
}

.video_pic img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition-duration: .5s;
}

.video_item{

    background-color: #F5EDE5;
    cursor: pointer;
}
.video_item:hover .video_pic img{
  opacity: .5;
}

.show_more{
    text-align: center;
    margin-top: 10px;
    cursor: pointer;
    text-decoration: underline;
    font-weight: 300;
}
.video_item p {
    text-align: center;
    line-height: 30px;
    padding: 14px 10px;
}

@media (max-width:900px) {
    .video_group {
        width: 90%;
        justify-content: flex-start;
        grid-template-columns: repeat(auto-fill, minmax(200px, 1fr));
    }

    .video_item {
        display: flex;
        flex-direction: column;
    flex: 1 1 auto; 
        background-color: #fff;
    }

    .video_pic {

    }

}

/* downloads.html */
.download_area {
    flex: 1;
    width: 95%;
    max-width: 960px;
    padding-top: 80px;
    margin: auto;
    padding-bottom: 20px;
}

.download_area h1 {
    color: #FEE0A4;
    margin: 30px 10px;
    font-size: 3rem;
    font-weight: 900;
    text-align: center;
    letter-spacing: 5px;
    margin-top: 100px;
}




.unit_group {

    display: flex;
    align-items: center;
    justify-content: space-between;

    
    justify-content: flex-start;
    flex-wrap: wrap;
    margin: 80px auto 150px;
}



.unit_item {
    color: #fff;
    width: 450px;
    height: 322px;
    position: relative;
    border-radius: 20px;
    margin: 0 40px 60px 0;
    overflow: hidden;
}

.unit_pic img {
    position: absolute;
    width: 100%;
    height: 100%;
    object-fit: cover;
    left: 0;
    top: 0;
}

.unit-name {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    color: #fff;
    display: flex;
    align-items: center;
    justify-content: center;
    z-index: 4;
    font-size: 2rem;
    font-weight: 500;
}

.unit_item:last-child {
    margin-right: 0;
}

.unit_item .active {
    opacity: 1;
    transition-duration: .5s;
    z-index: 1;
}

.unit_item .no_active {
    opacity: 1;
    transition-duration: .5s;
    z-index: 2;
}


.unit_item:hover .no_active {
    opacity: 0;
}
@media (max-width:1000px) {
.unit_group {
    width: 80%;
    margin: 40px auto 50px;
    align-items: center;
    justify-content: center;
}
.unit_item {
    color: #fff;
    width: 70%;
    height: 0;
    padding-bottom: calc(70% / 450 * 322);
    position: relative;
    border-radius: 20px;
    margin: 0 0px 20px 0;
    overflow: hidden;
}
}

@media (max-width:980px) {
    .download_area {
        flex: 1;
        width: 95%;
        max-width: 960px;
        padding-top: 50px;
        padding-bottom: 20px;
        margin: auto;
    }
    .download_area h1{
        font-size: 2rem;
    }
    

    
    
}
@media (max-width:500px) {
    .unit_item {
        color: #fff;
        width: 100%;
        height: 0;
        padding-bottom: calc(100% / 450 * 322);
        position: relative;
        border-radius: 20px;
        margin: 0 0px 20px 0;
        overflow: hidden;
    }
}



/* teacherInfo.html */
.teacherInfo_area {
    flex: 1;
    width: 95%;
    max-width: 960px;
    margin: 0 auto;
}

.teacherInfo_area .info_top {
    display: flex;
    align-items: center;
    max-width: 800px;
    width: 90%;
    margin: 150px auto 70px;
}

.teacherInfo_area .info_top_img {
    width: 175px;
    height: 175px;
    margin-right: 30px;
}

.teacherInfo_area .info_top_img img {
    margin: 0;
    width: 100%;
    height: 100%;
    
}

.teacherInfo_area .info_top_content p {
    color: #FEE0A4;
    font-size: 18px;
    font-weight: 500;
    line-height: 27px;
    width: 100%;
}

.teacherInfo_area .info_tab {
    display: flex;
}

.teacherInfo_area .info_tab_item {
    border: 1px solid #fff;
    color: #fff;
    font-size: 1.1rem;
    width: 140px;
    line-height: 38px;
    text-align: center;
    cursor: pointer;
}

.teacherInfo_area .info_tab_item:hover {
    color: #E9546B;
    border-color: #FFC657;
    background-color: #FFC657;
}

#tab_view_2,
#tab_view_3 {
    display: none;
}



.teacherInfo_area .tab_content_view {
    /* border: 1px solid #777; */
    box-shadow: 0px 1px 3px #4a4a4a
}

.tab_view {
    margin-bottom: 200px;
    padding-bottom: 100px;
}

.teacherInfo_area .teacher_intr_group {
    display: flex;
    flex-direction: column;
    flex: 1 1 auto; 
    align-items: flex-start;
    color: #fff;
    text-align: justify;
    padding: 30px 70px 0px 70px;
}

.intr_title {
    color: #FEE1BE;
    font-size: 1.4rem;
    font-weight: 900;
    padding-bottom: 10px;
}

.intr_content p {
    font-size: 1.1rem;
    font-weight: 400;
    line-height: 1.8rem;
}

.personal_video {
    margin-top: 50px;
}

.personal_video_item {
    width: 800px;
    height: 425px;
    margin: auto;
}

.personal_video_item img {
    margin-top: 30px;
    width: 100%;
    height: 100%;
}

.activity_photos{
    padding-top: 20px;
    width: calc(100% - 40px);
    height: 500px;
}
.activity_photos img{
    width: 100%;
    height: 100%;
    object-fit: cover;
}
.photos_group{
    margin: 20px;
    width: calc(100% - 40px);
    overflow: auto;
}
.photos_group{
    display: flex;
}
.photos_group img{
    width: 130px;
    height: 130px;
    object-fit: cover;
    cursor: pointer;
    background-color: #fff;
}
.photos_group div{
    position: relative;
    margin-right: 10px;
}
.photos_group div.active .white{
    background-color: #fff;
    width: 100%;
    height: 100%;
    position: absolute;
    left: 0;
    top: 0;
    opacity: .5;
}
.photos_group img:hover{
    opacity: .8;
}



@media (max-width:600px) {
    .activity_photos{
        height: 300px;
    }
    .teacherInfo_area .info_top {
        flex-direction: column;
    flex: 1 1 auto; 
    }

    .teacherInfo_area .info_top_content {
        margin-top: 20px;
        width: 100%;
    }

    .teacherInfo_area .intr_group {
        padding: 30px 10px 5px 10px;
    }

    .personal_video_item {
        width: 355px;
        height: 220px;
        margin: auto;
    }
    .teacherInfo_area .teacher_intr_group{
        padding: 20px 20px 0px 20px;
    }
}

/* test.html */
.outside {
    position: absolute;
    border: 1px solid #ffa;
    left: 0;
    right: 0;
    top: 0;
    bottom: 0;
    margin: auto;
    animation: dot 2s;
}

.dot{
    /* filter: blur(2px); */

    transition-duration: .3s;
    /* opacity: 0; */
}
/* @media (max-width:600px) {
    .dot{
        display: none;
    } 
} */

#dot1 {
    position: absolute;
    top: 0px;
    left: 10%;
    width: 388px;
    height: 235px;
    z-index: 1;
    animation: dot1 2s;
}


#dot2 {
    position: absolute;
    top: -40px;
    left: 65%;
    width: 95px;
    height: 128px;
    z-index: 1;
    animation: dot2 2s;
}



#dot3 {
    position: absolute;
    top: 90px;
    left: 78%;
    width: 105px;
    height: 155px;
    z-index: 1;
    animation: dot3 2s;

}



#dot4 {
    position: absolute;
    top: 630px;
    left: 22%;
    width: 91px;
    height: 194px;
    z-index: 1;
    transform: rotate(227deg);
    animation: dot4 2s;
}

#dot5 {
    position: absolute;
    top: 800px;
    left: 35%;
    width: 140px;
    height: 99px;
    z-index: 1;
    animation: dot5 2s;
}

#dot6 {
    position: absolute;
    top: 550px;
    left: 70%;
    width: 246px;
    height: 202px;
    z-index: 1;
    animation: dot6 2s;
}
@media (max-width:700px) {
    #dot1 {
        left: -30%;
    }
    #dot2 {
        left: 80%;
    }
    #dot3 {
        left: 95%; 
        animation: dot3-1 2s;
    }
    #dot4 {
        left: 0%;
        animation: dot4-1 2s;
    }
    #dot5 {
        left: 15%;
    }
    #dot6 {
        left: 95%;
    } 
}

.date_test h1 {
    position: absolute;
    top: 600px;
    left: 700px;
    color: #FFC557;
    font-size: 2rem;
    animation: date 2s;
}



.star img {
    width: 100%;
    height: 100%;
    object-fit: cover;
}

@keyframes dot1 {
    from {
        top: -40px;
        opacity: 0;
    }

    to {
        top: 0px;
        opacity: 1;
    }
}

@keyframes dot2 {
    from {
        top: -80px;
        opacity: 0;
    }

    to {
        top: -40px;
        opacity: 1;
    }
}

@keyframes dot3 {
    from {
        left: 75%;
        opacity: 0;
    }

    to {
        left: 78%;
        opacity: 1;
    }
}

@keyframes dot4 {
    from {
        left: 20%;
        opacity: 0;
    }

    to {
        left: 22%;
        opacity: 1;
    }
}
@keyframes dot3-1 {
    from {
        left: 75%;
        opacity: 0;
    }

    to {
        left: 95%;
        opacity: 1;
    }
}

@keyframes dot4-1 {
    from {
        left: 20%;
        opacity: 0;
    }

    to {
        left: 0%;
        opacity: 1;
    }
}

@keyframes dot5 {
    from {
        top: 780px;
        opacity: 0;
    }

    to {
        top: 800px;
        opacity: 1;
    }
}

@keyframes dot6 {
    from {
        top: 600px;
        opacity: 0;
    }

    to {
        top: 550px;
        opacity: 1;
    }
}

@keyframes dot {
    from {
        opacity: 0;
    }

    to {
        opacity: 1;
    }
}

@keyframes date {
    from {
        top: 700px;
        opacity: 0;
    }

    to {
        top: 600px;
        opacity: 1;
    }
}


/* reportsContent.html */
.reports_area {
    flex: 1;
    max-width: 1000px;
    width: 100%;
    background-color: #fff;
    margin: 80px auto 0;
}

.reports_outside {
    margin: 20px;
    padding: 0 50px 50px;
    border: 1px solid #F6F1EA;
}

.reports_outside h1 {
    max-width: 706px;
    margin: 50px 50px 10px;
    color: #AA8132;
    font-size: 2rem;
    font-weight: 900;
    text-align: justify;

}

.photo_img {
    width: 678px;
    height: 400px;
    object-fit: cover;
}

.photo_img img {
    width: 100%;
    height: 100%;
}

.report_title {
    margin: 20px 0;
}

.reports_content {
    display: flex;
    flex-direction: column;
    flex: 1 1 auto; 
    margin: 10px 50px;
}

.reports_content p {
    font-size: 1.15rem;
    line-height: 1.7rem;
    letter-spacing: .3px;
    font-weight: 300;
    margin: 13px 0 0 0;
    text-align: justify;
}

.report-smtitle{
    font-size: 1.8rem;
    letter-spacing: .3px;
    font-weight: 400;
    margin: 35px 0 10px 0;
    text-align: justify;
}

.reports_content a {
    padding-top: 10px;
    color: #266345;
    text-decoration: underline;
    font-size: 1.15rem;
    line-height: 1.7rem;
    letter-spacing: .3px;
}

.latest_articles {
    display: flex;
    flex-direction: column;
    flex: 1 1 auto; 
    margin: 0 20px;
}

.articles_title {
    display: flex;
    align-items: center;
    justify-content: space-between;
    max-width: 100%;
    font-size: 1.1rem;
}

.articles_title a {
    text-decoration: none;
    font-size: .8em;
    color: #aaa;
}

.articles_group {

    margin: 15px 0;
}
.articles_group_in{
    width: 100%;
    display: flex;
    justify-content: flex-start;
    overflow: hidden;
}

.articles_item {
    display: flex;
    flex-direction: column;
    flex: 1 1 auto; 
    width: 288px;
    object-fit: cover;
    margin-bottom: 50px;
    border: 1px solid #F6F1EA;
    margin-right: 30px;
}


.articles_group img {
    width: 100%;
    height: 162px;
    object-fit: cover;

}

.articles_item div{
    padding: 20px;
    font-size: 1.1rem;
    font-weight: 500;
}

.articles_item a {
    text-decoration: none;
    color: #AA8132;
    font-size: 1rem;
    font-weight: 400;
    text-align: justify;

}

.articles_item:hover a {
    color: #266345;
}

@media (max-width:900px) {
    .reports_outside {
        margin: 0px;
        padding: 0 20px 50px;
        border: none;
    }
    .reports_outside h1 {
        
        width: 100%;
        margin: 50px 0px 10px;
        color: #AA8132;
        font-size: 1.5rem;
        font-weight: 900;
        text-align: justify;
    
    }
    .reports_content {
        display: flex;
        flex-direction: column;
    flex: 1 1 auto; 
        margin: 10px 0px;
        width: 100%;
    }
    .photo_img {
        width: 100%;
        height: auto;
        object-fit: cover;
    }
    .articles_group {
        margin: 15px 0;
        overflow: auto;
    }
    .articles_group_in {
        display: flex;
        justify-content: flex-start;
        margin: 15px 0;
        width: 800px;
    }
}
.swiper-button-prev{
    width: 20px;
    height: 20px;
    left: 30px !important ;
    transition-duration: .3s;
    color: #fff;

}

.swiper-button-next{
    width: 20px;
    height: 20px;
    right: 30px !important ;
    transition-duration: .3s;
    color: #fff;

}
.swiper-button-prev::after,.swiper-button-next::after{
    font-size: 30px;
}
.popup{
    position: absolute;
    left: 0;
    top: 0;
    width: 100%;
    height: 100%;
    z-index: -1;
}


.newsin-album-group{
    width: 100%;
    height: 100%;
    display: flex;
    align-items: center;
}
.newsin-album-group a{
    max-height: 100%;
    display: block;
    position: relative;
}
.newsin-album-group a img{
    object-fit: cover;
    height: 100%;
    width: 100%;

}
.newsin-album-group .description{
    position: absolute;
    left: 0;
    top: 0;
    width: 100%;
    height: 100%;
    text-align: center;
    display: flex;
    flex-direction: column;
    flex: 1 1 auto; 
    align-items: center;
    justify-content: center;
    margin: 0 auto;
    background-color: rgba(0,0,0,.2);
    color: #fff;
}
.newsin-album-group .description  h2{
    text-decoration: underline;
    cursor: pointer;
}