@charset "UTF-8";
/* Scss Document */
@import url("https://fonts.googleapis.com/css2?family=Noto+Sans+TC&family=Noto+Serif+TC:wght@200;300;400;500;600;700;900&display=swap");
:root {
  --main-border: 0px solid #E8E8E8;
  --main-raduis: 30px;
  --main-color: #fff;
  --main-shadow: 0 0 6px 2px rgba(0,0,0,0.32);
}

html {
  scroll-behavior: smooth;
}

.root {
  margin: 0;
  padding: 0;
  height: 100%;
  background-color: var(--main-color);
  font-size: 18px;
  letter-spacing: 0px;
  background-repeat: no-repeat;
  background-position: center;
  background-size: contain;
  font-family: "Noto Sans TC", sans-serif;
  scroll-behavior: smooth;
  display: flex;
}
@media (max-width: 1280px) {
  .root {
    font-size: 0.93rem;
  }
}
@media (max-width: 768px) {
  .root {
    font-size: 0.89rem;
  }
}

.blank {
  width: 100%;
  height: 85px;
}
@media (max-width: 768px) {
  .blank {
    height: 40px;
  }
}

.page {
  width: 100%;
  height: auto;
  outline: var(--main-border);
  border-color: #ffffff;
}
@media (max-width: 768px) {
  .page {
    min-height: 50vh;
  }
}

.content {
  width: 1280px;
  min-height: 50vh;
  height: auto;
  margin: 0 auto;
  flex-direction: column;
  background-color: #fff;
  outline: var(--main-border);
}
@media (max-width: 1280px) {
  .content {
    width: 100%;
  }
}
@media (max-width: 820px) {
  .content {
    width: 100%;
  }
}

/*彈出範圍*/
.popUp {
  width: 100vw;
  height: 100vh;
  background-color: rgba(54, 54, 54, 0.2745098039);
  justify-content: center;
  align-items: center;
  position: fixed;
  left: 0px;
  top: 0px;
  z-index: 1003;
  display: none;
}
.popUp .popShow {
  width: 85%;
  height: 85%;
  background-color: #ffffff;
  justify-content: center;
  align-items: center;
  position: relative;
  margin: 0 10px 0 0;
  padding: 0 10px 0 0;
}
@media (max-width: 1280px) {
  .popUp .popShow {
    width: 100%;
  }
}
@media (max-width: 768px) {
  .popUp .popShow {
    width: 100%;
    height: 100%;
    padding: 0;
    margin: 0 auto;
  }
}
.popUp .popShow iframe, .popUp .popShow .photos {
  width: 90%;
  height: 80%;
  border: var(--main-border);
}
@media (max-width: 1280px) {
  .popUp .popShow iframe, .popUp .popShow .photos {
    width: 95%;
  }
}
.popUp .popShow .photos {
  border: 1px solid #c0c0c0;
  justify-content: center;
}
@media (max-width: 1280px) {
  .popUp .popShow .photos {
    width: 100%;
    align-items: center;
  }
  .popUp .popShow .photos img {
    height: 90%;
  }
}
@media (max-width: 768px) {
  .popUp .popShow .photos {
    border: 0px solid;
    width: 100%;
    align-items: flex-start;
    padding-top: 10%;
    box-sizing: border-box;
  }
  .popUp .popShow .photos img {
    height: 100vw;
  }
}
.popUp .closePop {
  width: 50px;
  height: 50px;
  background-color: #ffffff;
  border: var(--main-border);
  position: absolute;
  top: 10px;
  right: 10px;
  border-radius: 50px;
  justify-content: center;
  align-items: center;
}
.popUp .closePop .xitem {
  position: absolute;
  width: 70%;
  height: 2px;
  background-color: #424242;
  border-radius: 5px;
}
.popUp .closePop .xitem:nth-child(1) {
  transform: rotate(45deg);
}
.popUp .closePop .xitem:nth-child(2) {
  transform: rotate(-45deg);
}
.popUp .closePop:hover {
  cursor: pointer;
}
.popUp .closePop:hover .xitem {
  height: 3px;
}
.popUp .noticeTitle {
  position: absolute;
  left: 5%;
  top: 5px;
  height: 50px;
  align-items: flex-end;
  background-color: rgba(255, 255, 255, 0);
  font-size: 1.2rem;
  font-weight: 500;
}

.showPop {
  display: flex;
}

.videoPop {
  width: 80%;
  height: 80%;
  border: 0px solid #136871;
  align-items: center;
  justify-content: center;
  position: relative;
}
@media (max-width: 768px) {
  .videoPop {
    flex-direction: column;
    justify-content: flex-start;
  }
}
.videoPop .videoShow {
  height: 100%;
  width: auto;
  border: 0px solid #bc4a4a;
  border-radius: var(--main-raduis);
}
.videoPop .videoShow video {
  border-radius: 20px;
}
@media (max-width: 1280px) {
  .videoPop .videoShow {
    height: 90%;
  }
}
@media (max-width: 768px) {
  .videoPop .videoShow {
    align-items: center;
  }
}
.videoPop .btnList {
  width: auto;
  height: 100%;
  padding: 0px 10px;
  flex-direction: column;
  justify-content: center;
  border: 0px solid #e0e0e0;
  position: absolute;
  right: 0px;
}
@media (max-width: 768px) {
  .videoPop .btnList {
    position: static;
    width: 100%;
    height: 60px;
    flex-direction: row;
    align-items: center;
  }
}

.prev, .next {
  width: 40px;
  height: 40px;
  border-radius: 50px;
  box-shadow: var(--main-shadow);
  text-align: center;
  line-height: 35px;
  color: #ffd047;
  margin: 10px 0px;
}
@media (max-width: 768px) {
  .prev, .next {
    margin: 0 20px;
    transform: rotate(30deg);
  }
}

.next {
  line-height: 40px;
}

.prev:hover {
  cursor: pointer;
}

.next:hover {
  cursor: pointer;
}

.undoBtn {
  color: #e0e0e0;
  box-shadow: 0 0 0px 0px rgba(0, 0, 0, 0);
  border: 1px solid #f0f0f0;
  pointer-events: none;
}

.undoBtn:hover {
  cursor: default;
}

/*v選單*/
.navigation {
  width: 100%;
  height: 150px;
  background: #3d9988;
  position: relative;
  display: none;
  top: 0;
  left: 0;
  transition: all 0.3s ease;
  background-repeat: no-repeat;
  background-position: right;
  background-size: contain;
}
@media (max-width: 768px) {
  .navigation {
    height: 12vh;
  }
}
.navigation .logo {
  width: 250px;
  position: absolute;
  z-index: 60;
  background-color: rgb(255, 255, 255);
  border-radius: 150px;
  top: 10px;
  left: 1.5%;
  background-image: url("../imgs/wenzao60.png");
  border: 10px solid #fff;
  box-shadow: var(--main-shadow);
  background-repeat: no-repeat;
  background-position: center;
  background-size: 80%;
  transition: 0.3s linear;
}
@media (max-width: 1280px) {
  .navigation .logo {
    width: 200px;
  }
}
@media (max-width: 768px) {
  .navigation .logo {
    width: 30%;
    height: auto;
  }
}
.navigation .logo::before {
  content: "";
  display: block;
  padding-top: 100%;
}
.navigation .titles {
  width: auto;
  height: auto;
  position: absolute;
  left: calc(1.5% + 265px);
  bottom: 10%;
  background-color: rgba(255, 255, 255, 0);
  color: #fff;
  font-size: 1.5rem;
  transition: 0.3s linear;
}
@media (max-width: 1280px) {
  .navigation .titles {
    left: calc(1.5% + 215px);
  }
}
@media (max-width: 768px) {
  .navigation .titles {
    left: calc(1.3% + 140px);
    bottom: 10%;
    font-size: 1rem;
  }
}
@media (max-width: 768px) {
  .navigation .titles br {
    display: block;
  }
}
.navigation .navs {
  width: 1180px;
  background-color: rgba(255, 255, 255, 0);
  border: var(--main-border);
  justify-content: flex-end;
  margin: 0 auto;
  position: relative;
  padding: 0 0 10px 0;
}
@media (max-width: 1280px) {
  .navigation .navs {
    display: none;
  }
}
.navigation .navs .dm1 {
  position: absolute;
  right: 60px;
  top: 20px;
  background-color: rgba(255, 255, 255, 0);
  color: #3d9988;
  height: 40px;
  padding: 0 10px;
}
.navigation .navs .dm1 img {
  height: 40px;
}
.navigation .navs .dm1 span {
  background-color: #fff;
  display: flex;
  align-items: center;
  padding: 0 20px 0 10px;
  height: 40px;
}
.navigation .navs .dm1 .seal {
  width: 60px;
  height: 60px;
  position: absolute;
  background-color: #fff;
  right: -40px;
  top: -10px;
  border-radius: 60px;
  background-image: url("../imgs/wzu-logo.png");
  background-size: 55%;
  background-repeat: no-repeat;
  background-position: 50% 60%;
}
@media (max-width: 1280px) {
  .navigation .navs .dm1 {
    display: none;
  }
}
.navigation .navs .dm1:hover {
  cursor: pointer;
}
.navigation .navs .btn {
  width: auto;
  height: auto;
  background-color: rgba(242, 242, 242, 0);
  text-align: center;
  justify-content: center;
  align-items: flex-end;
  margin: 0 15px 0 0;
  color: #fff;
  border: 2px solid rgba(255, 255, 255, 0);
  padding-bottom: 5px;
}
.navigation .navs .btn a {
  height: auto;
  background-color: rgba(255, 255, 255, 0);
  text-decoration: none;
  color: #fff;
}
@media (max-width: 1280px) {
  .navigation .navs .btn a {
    color: #3d9988;
  }
}
@media (max-width: 768px) {
  .navigation .navs .btn a {
    color: #3d9988;
  }
}
@media (max-width: 1280px) {
  .navigation .navs .btn {
    color: #3d9988;
  }
}
.navigation .navs .btn:hover {
  cursor: pointer;
  border-bottom: 2px solid #fff;
}
.navigation .navs .btn-bottom {
  border-bottom: 2px solid #fff;
}
.navigation .option {
  width: 60px;
  height: 60px;
  background-color: rgba(255, 255, 255, 0);
  position: absolute;
  right: -50px;
  bottom: 10px;
  align-items: center;
  justify-content: center;
  flex-direction: column;
  display: flex;
  padding: 5px;
}
@media (max-width: 1280px) {
  .navigation .option {
    right: 0px;
    display: flex;
  }
}
@media (max-width: 768px) {
  .navigation .option {
    right: 0px;
    bottom: 0px;
  }
}
.navigation .option .items {
  width: 5px;
  height: 5px;
  background-color: rgb(255, 255, 255);
  margin: 3px 0;
  transition: 0.3s linear;
  opacity: 0.5;
}
@media (max-width: 1280px) {
  .navigation .option .items {
    width: 60%;
    height: 5px;
    border-radius: 3px;
    opacity: 1;
  }
}
.navigation .option:hover {
  cursor: default;
}
@media (max-width: 1280px) {
  .navigation .option:hover {
    cursor: pointer;
  }
}

/* 手機板選單*/
.navigation2 {
  min-width: 400px;
  height: calc(100vh - 150px);
  border: var(--main-border);
  background-color: #fff;
  flex-direction: column;
  justify-content: flex-start;
  align-items: flex-start;
  display: none;
  position: fixed;
  z-index: 999;
  right: -100%;
  bottom: 0px;
  padding: 0 20px 0 10px;
  box-sizing: border-box;
  transition: 0.3s linear;
}
@media (max-width: 1280px) {
  .navigation2 {
    display: flex;
  }
}
@media (max-width: 768px) {
  .navigation2 {
    min-width: 0;
    width: 70%;
    max-width: 100%;
  }
}
.navigation2 .btn {
  height: 40px;
  padding: 10px 0 0px 30px;
  border: 2px solid rgba(255, 255, 255, 0);
  color: #3d9988;
  flex-wrap: wrap;
  justify-content: flex-end;
  align-items: flex-end;
}
.navigation2 .btn a {
  height: auto;
  background-color: rgba(255, 255, 255, 0);
  text-decoration: none;
  color: #fff;
}
@media (max-width: 1280px) {
  .navigation2 .btn a {
    color: #3d9988;
  }
}
@media (max-width: 768px) {
  .navigation2 .btn a {
    color: #3d9988;
  }
}
@media (max-width: 1280px) {
  .navigation2 .btn {
    color: #3d9988;
  }
}
.navigation2 .btn:hover {
  cursor: pointer;
  border-bottom: 2px solid #3d9988;
}
.navigation2 .dm2 {
  max-width: 200px;
  background-color: rgba(255, 255, 255, 0);
  color: #ffffff;
  min-height: 30px;
  margin: 40px 30px 0 0;
  position: relative;
}
.navigation2 .dm2 img {
  height: 100%;
}
.navigation2 .dm2 span {
  background-color: #3d9988;
  display: flex;
  align-items: center;
  padding: 10px 20px;
  max-height: 60px;
  border-radius: 10px;
}
.navigation2 .dm2 .seal {
  width: 55px;
  height: 55px;
  position: absolute;
  background-color: #fff;
  right: -30px;
  top: -30px;
  border-radius: 60px;
  background-image: url("../imgs/wzu-logo.png");
  background-size: 55%;
  background-repeat: no-repeat;
  background-position: 50% 60%;
  border: 2px solid #3d9988;
}
.navigation2 .dm2:hover {
  cursor: pointer;
}

.pageMask {
  width: 100vw;
  height: 100vh;
  z-index: 30;
  position: fixed;
  top: 0px;
  left: 0px;
  background-color: rgba(54, 54, 54, 0.2745098039);
  display: none;
}
@media (max-width: 1280px) {
  .pageMask {
    display: block;
  }
}

.moveLeft, .menuClose {
  right: -100%;
}

.menuOpen {
  right: 0;
}

.fixed {
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  z-index: 1000;
  display: flex;
  transform: translateZ(0);
  -webkit-transform: translateZ(0);
  backface-visibility: hidden;
  box-sizing: border-box;
  box-shadow: 0 2px 10px rgba(0, 0, 0, 0.1);
  animation: slideDown 0.2s ease-out;
}

.addHeight {
  height: 950px;
  justify-content: flex-end;
}

.navigation-container {
  transition: transform 0.3s ease; /* 增加平滑感 */
  will-change: transform; /* 預告瀏覽器將有位移，提前優化 */
}

/*第一頁 */
#page1 {
  position: relative;
  justify-content: center;
}
#page1 .arrowToNext {
  width: auto;
  height: auto;
  border-radius: 10px;
  background-color: #139d96;
  padding: 10px 50px;
  position: absolute;
  top: 50%;
  margin-top: 8%;
  transform: translateY(-50%);
  box-shadow: 0 0 10px 3px rgba(86, 0, 119, 0.2745098039);
  justify-content: center;
  align-items: center;
  transition: 0.3s linear;
  font-size: 1.3rem;
}
@media (max-width: 820px) {
  #page1 .arrowToNext {
    margin-top: 20%;
  }
}
@media (max-width: 768px) {
  #page1 .arrowToNext {
    margin-top: 30%;
  }
}
#page1 .arrowToNext a {
  color: #fff;
  text-decoration: none;
}
#page1 .arrowToNext:hover {
  transform: scale(1.1);
  cursor: pointer;
}
#page1 .wzuLogo {
  position: absolute;
  left: 10%;
  top: 10%;
}
#page1 .wzuLogo img {
  width: 13vw;
}
@media (max-width: 1280px) {
  #page1 .wzuLogo img {
    width: 25vw;
  }
}
@media (max-width: 768px) {
  #page1 .wzuLogo {
    top: 5%;
    left: 5%;
  }
  #page1 .wzuLogo img {
    width: 40vw;
  }
}

.indexBg {
  width: 100vw;
  height: 100vh;
  background-image: url("../imgs/20260318.png");
  background-size: cover;
}
@media (max-width: 500px) {
  .indexBg {
    background-image: url("../imgs/20260318-mobile.png");
  }
}
@media (max-width: 768px) {
  .indexBg {
    background-repeat: no-repeat;
    background-position: center;
  }
}

/* logo 頁*/
#pageLogo {
  flex-direction: column;
}

.aboutLogo {
  flex-direction: column;
  width: 400px;
  height: 400px;
  border: var(--main-border);
  margin: 30px auto 10px auto;
  border-radius: 500px;
  background-size: 80%;
  background-image: url("../imgs/wenzao60-01.png");
  box-shadow: inset 0px 0px 1px 3px #e0e0e0;
}
@media (max-width: 1280px) {
  .aboutLogo {
    width: 300px;
    height: 300px;
  }
}

.aboutLogo2 {
  width: 200px;
  height: 200px;
  box-shadow: inset 0px 0px 1px 3px #e0e0e0;
  border-radius: 30px;
  margin: 50px auto 10px auto;
  background-size: contain;
  background-image: url("../imgs/123.png");
}

.aboutLogo3 {
  width: 400px;
  height: 100px;
  box-shadow: inset 0px 0px 1px 3px #e0e0e0;
  margin: 50px auto 10px auto;
  background-size: 80%;
  background-image: url("../imgs/wenzao60-02.png");
}
@media (max-width: 1280px) {
  .aboutLogo3 {
    width: 300px;
    height: 75px;
  }
}

.switchLang {
  width: 80%;
  height: 40px;
  border-bottom: 2px solid #e0e0e0;
  margin: 0 auto;
  justify-content: space-around;
  align-items: flex-end;
}
@media (max-width: 768px) {
  .switchLang {
    width: 90%;
  }
}
.switchLang .switchBtn {
  width: 15%;
  height: 30px;
  border: 0px solid #e0e0e0;
  border-bottom: 0px solid;
  justify-content: center;
}
.switchLang .switchBtn:hover {
  cursor: pointer;
  background-color: #ffd047;
}

.logoExp {
  width: 80%;
  height: auto;
  margin: 0 auto;
  justify-content: center;
  padding: 10px 0px;
  word-wrap: break-word;
}
@media (max-width: 768px) {
  .logoExp {
    width: 90%;
  }
}

.langSelected {
  cursor: default;
  background-color: #ffd047;
}

/*第二頁*/
#page2 {
  flex-direction: column;
}

.page2-content {
  max-width: 1280px;
  height: 950px;
  margin: 0 auto;
  flex-direction: column;
  background-color: #ffffff;
  outline: var(--main-border);
}
@media (max-width: 1280px) {
  .page2-content {
    width: 100%;
  }
}
@media (max-width: 768px) {
  .page2-content {
    height: 80%;
  }
}
.page2-content .videos {
  width: 100%;
  height: auto;
  justify-content: center;
  background-color: rgba(255, 255, 255, 0);
  border: var(--main-border);
  position: relative;
}
.page2-content .videos video {
  width: 960px;
  height: 540px;
  border-radius: var(--main-raduis);
}
@media (max-width: 960px) {
  .page2-content .videos video {
    width: 100%;
    height: 400px;
  }
}

.main-title {
  width: 100%;
  height: 200px;
  background-color: rgba(255, 255, 255, 0);
  justify-content: center;
  align-items: flex-end;
  padding-bottom: 10px;
  font-size: 1.5rem;
}
@media (max-width: 768px) {
  .main-title {
    justify-content: flex-end;
    padding-right: 5%;
    box-sizing: border-box;
  }
}

.show-btn {
  min-width: 90px;
  height: 70px;
  border: 1px solid #7c7c7c;
  background-color: #fff;
  align-items: center;
  word-wrap: break-word;
  justify-content: center;
  position: absolute;
  right: calc((100% - 960px) / 2 + 15px);
  top: 15px;
  border-radius: var(--main-raduis);
  transition: 0.3s linear;
  padding: 0 10px;
}
@media (max-width: 960px) {
  .show-btn {
    right: 5px;
    top: 5px;
  }
}
@media (max-width: 768px) {
  .show-btn {
    height: 50px;
    right: 5%;
    top: 8%;
  }
}

.show-btn:hover {
  cursor: pointer;
  font-weight: 700;
}

.pageSpace {
  height: 10vh;
  width: 100%;
}

/*第三頁 文藻60週年大事紀*/
.gallery {
  width: 100%;
  height: 500px;
  border: var(--main-border);
  background-color: rgba(255, 255, 255, 0);
  justify-content: flex-start;
  flex-wrap: wrap;
}
@media (max-width: 1280px) {
  .gallery {
    height: auto;
    flex-direction: column;
    padding-bottom: 10px;
  }
}
@media (max-width: 820px) {
  .gallery {
    margin-top: 10%;
  }
}
.gallery .bigPics {
  width: 67%;
  height: 500px;
  border: var(--main-border);
  justify-content: center;
  position: relative;
}
@media (max-width: 1280px) {
  .gallery .bigPics {
    width: 100%;
    height: 500px;
  }
}
@media (max-width: 820px) {
  .gallery .bigPics {
    width: 100%;
    height: 530px;
  }
}
@media (max-width: 768px) {
  .gallery .bigPics {
    height: 400px;
  }
}
.gallery .bigPics img {
  height: 100%;
  border-radius: var(--main-raduis);
}
@media (max-width: 1280px) {
  .gallery .bigPics img {
    width: 100%;
    -o-object-fit: cover;
       object-fit: cover;
  }
}
@media (max-width: 820px) {
  .gallery .bigPics img {
    height: 100%;
  }
}
@media (max-width: 768px) {
  .gallery .bigPics img {
    height: 100%;
  }
}
.gallery .bigPics .picDescription {
  position: absolute;
  bottom: 0px;
  left: 0px;
  width: 100%;
  height: auto;
  background-color: rgba(255, 255, 255, 0.7137254902);
  justify-content: center;
  padding: 10px 0px;
}

.thumbnailList {
  height: auto;
  border: var(--main-border);
  flex-wrap: wrap;
  flex: 1;
  justify-content: flex-start;
  align-items: flex-start;
  gap: 5px;
  box-sizing: border-box;
}
@media (max-width: 1280px) {
  .thumbnailList {
    margin-top: 10px;
    width: 100%;
    gap: 0.5%;
  }
}
@media (max-width: 768px) {
  .thumbnailList {
    height: 500px;
    gap: 1%;
  }
}
.thumbnailList .thumbnail {
  width: 100px;
  height: 60px;
  border: var(--main-border);
  box-sizing: border-box;
  background-size: cover;
}
@media (max-width: 1280px) {
  .thumbnailList .thumbnail {
    width: 12%;
    margin-top: px;
  }
}
@media (max-width: 768px) {
  .thumbnailList .thumbnail {
    width: 19%;
    height: 55px;
  }
}
.thumbnailList .thumbnail .imgs {
  width: 100%;
  height: 100%;
  justify-content: center;
  overflow: hidden;
}
.thumbnailList .thumbnail .imgs img {
  width: 100%;
  -o-object-fit: cover;
     object-fit: cover;
  align-items: center;
  justify-content: center;
}
.thumbnailList .thumbnail:hover {
  cursor: pointer;
  box-shadow: 0 0 1px 3px rgb(255, 208, 0);
}

.thumbnailSelected {
  box-shadow: 0 0 1px 3px rgb(255, 208, 0);
}

.gallery2 {
  max-width: 1280px;
  min-height: 500px;
  border: var(--main-border);
  justify-content: center;
  flex-wrap: wrap;
}
@media (max-width: 768px) {
  .gallery2 {
    min-height: 450px;
  }
}
.gallery2 iframe {
  width: 100%;
  border: 0px solid;
}
.gallery2 .flex-box {
  height: 100%;
  border: var(--main-border);
  flex: 1;
  align-items: center;
  overflow-x: hidden;
  background-color: rgba(255, 255, 255, 0);
}
.gallery2 .flex-box .pic-box {
  width: auto;
  height: 100%;
  z-index: 10;
  background-color: rgba(255, 255, 255, 0);
  transition: transform 0.5s cubic-bezier(0.23, 1, 0.32, 1);
  border: 1px solid solid #353535;
  align-items: center;
}
@media (max-width: 768px) {
  .gallery2 .flex-box .pic-box {
    align-items: flex-start;
  }
}

.pics, .active {
  width: 400px;
  height: 250px;
  margin: 0 10px;
  border-radius: var(--main-raduis);
  flex-direction: column;
  box-sizing: border-box;
  padding: 0px;
  position: relative;
}
.pics .imgs, .active .imgs {
  width: 100%;
  height: 100%;
  justify-content: center;
  border-radius: 10px;
  overflow: hidden;
}
.pics .imgs img, .active .imgs img {
  width: 100%;
  -o-object-fit: cover;
     object-fit: cover;
  border-radius: 10px;
  align-items: center;
  justify-content: center;
}
.pics .imgComm, .active .imgComm {
  height: 50px;
  width: 100%;
  position: absolute;
  bottom: 0px;
  border-radius: 0 0 7px 7px;
  flex: 1;
  align-items: center;
  justify-content: center;
  background-color: rgba(255, 255, 255, 0.6823529412);
}
@media (max-width: 768px) {
  .pics, .active {
    height: 250px;
  }
}

.pics:nth-child(odd) {
  background-color: pink;
}

.pics:nth-child(even) {
  background-color: aqua;
}

.pics:hover {
  cursor: pointer;
}

/* #next, #next2 {
	background-image:url("../imgs/next.png");
}
#prev, #prev2 {
	background-image: url("../imgs/prev.png");
}
#next, #next2, #prev, #prev2 {
	background-size: 40%;
} */
.autoPicWidth {
  width: auto;
}

.displayNone {
  display: none;
}

/*第四頁 系列紀念活動*/
.active {
  justify-content: center;
  align-items: center;
  background-size: cover;
}
.active .activeTitle {
  position: absolute;
  bottom: 0px;
  width: 99.5%;
  height: 45px;
  border: 1px solid rgba(255, 255, 255, 0);
  background-color: rgba(255, 255, 255, 0.8156862745);
  justify-content: center;
  align-items: center;
}
@media (max-width: 857px) {
  .active {
    width: 45%;
  }
}
@media (max-width: 768px) {
  .active {
    /*width: 45%; height: 150px;*/
    margin: 5px;
  }
}

.active:nth-child(1) {
  background-image: url("../imgs/003.jpg");
}

.active:nth-child(2) {
  background-image: url("../imgs/002.jpg?v=2345");
}

.active:nth-child(3) {
  background-image: url("../imgs/005.jpg?v=20");
}

.active:nth-child(4) {
  background-image: url("../imgs/006.jpg?v=20240320");
}

.active:nth-child(5) {
  background-image: url("../imgs/004.jpg?v=123");
}

.active:nth-child(6) {
  background-image: url("../imgs/001.jpg?v=2345");
}

.active:hover {
  cursor: pointer;
}

/*第五頁 學生競賽短片*/
#flexBox2 {
  overflow-x: scroll;
  scrollbar-color: rgba(192, 192, 192, 0.3450980392) rgba(255, 255, 255, 0);
}
@media (max-width: 768px) {
  #flexBox2 {
    scrollbar-color: rgba(192, 192, 192, 0) rgba(255, 255, 255, 0);
  }
}

/*頁尾*/
footer {
  width: 100%;
  height: 150px;
  background: #3d9988;
  color: #fff;
  display: flex;
  flex-direction: column;
  justify-content: flex-end;
  align-items: center;
  padding-bottom: 10px;
  margin-top: 50px;
  position: relative;
  background-image: url("../imgs/pattern2.png"), url("../imgs/pattern1.png");
  background-repeat: no-repeat, no-repeat;
  background-position: left, right;
  background-size: contain, contain;
  box-shadow: inset 0 0 0px 10px #48a896;
}
footer span {
  background-color: rgba(255, 255, 255, 0);
  font-size: 1rem;
  height: auto;
  line-height: 20px;
}
@media (max-width: 768px) {
  footer span {
    width: 70%;
    font-size: 0.8rem;
    text-align: center;
  }
}/*# sourceMappingURL=20260416.css.map */