@import url('https://fonts.googleapis.com/css2?family=Golos+Text&family=Noto+Serif+TC&family=Roboto&family=Open+Sans&display=swap');
html,
body {
  position: relative;
  display: flex;
  flex-direction: column;
  min-height: 100vh;
}

body {
  font-family: "Open Sans", "Noto Sans TC", "Times New Roman", "Helvetica Neue", Helvetica, Arial, serif;
  color: #666;
  background-color: #eaf6f6;  
  font-size: 18px;
  margin: 0;
  padding: 0;
}

.site-title {
  font-size: 28px;
  text-shadow: 2px 2px 2px rgba(0, 0, 0, 0.15);
  color: #179c98;
  padding: 8px 0 0;
}

.site-title small{
  display: block;
  font-size: 18px;
  margin-top: -5px;
}

.title-bar{  
  color: #666;
}

.site-bg{
  background-color: #ffffff;
  background-image: linear-gradient(to bottom, rgba(255,255,255,0.88), rgba(255,255,255,0.66)),url(../images/bg01.png);
  background-position: center center, center top;
  background-repeat: no-repeat;
  background-attachment: fixed;
  background-size: cover;
}

.top-header {
  font-family: "Noto Sans TC", Arial, serif;
  /* background-image: -webkit-gradient(linear, left top, left bottom, from(rgba(250, 254, 179, 0.797)), to(rgba(172, 255, 5, 0.55)));
  background-image: linear-gradient(to bottom, rgba(250, 254, 179, 0.797), rgba(172, 255, 5, 0.55)); */
  
  background-position: center center,center -361px;
  background-repeat: no-repeat;
  background-size: cover;
  padding: 0;
  font-size: 20px;
}

.logo-link{
  flex: 1 1 520px;
  
}
.logo-link img{
  width: 506px;
}

.submenus {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  padding: 0.5em;
}

.submenus a {
  border-right: 1px solid #333;
  display: block;
  line-height: 1em;
  padding: 0px 8px;
  margin: 2px 0;
  outline: none;
  text-decoration: none;
  color: #085020;
}

.submenus a:last-child {
  border-right: none !important;
}

.container-main{
  max-width: 1320px;
  width: 100%;
  margin: 10px auto;
}

.container-main-short{
  max-width: 980px;
  margin: 20px auto;
}

.main-d-flex{
  display: flex;
  justify-content: center;
  align-self : start;  
  flex-wrap: wrap;
  margin-top: 2em;
}

.info-group{
  flex: 1 1 650px;
}

.banner-group{
  flex: 0 0 368px;
  padding: 0.5em 0 0 1.5em;
}

#table-lecture{
  width: 960px;
}

.swiper {
  height: 580px;
}

.swiper-slide {
  text-align: center;
  font-size: 18px;
  background: transparent;  
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-pack: center;
      -ms-flex-pack: center;
          justify-content: center;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
}

.swiper-slide img {
  display: block;
  width: 100%;
  height: 100%;
  -o-object-fit: cover;
  object-fit: cover;
}

ul.main-nav {
  max-width: 1200px;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  justify-content: space-between;          
  list-style: none;
  -ms-flex-wrap: nowrap;
      flex-wrap: nowrap;
  margin: 0 auto;
  padding: 0;
}

ul.main-nav >li {
  display: block;  
  -webkit-box-flex: 0;
      -ms-flex: 0 1 20%;
          flex: 0 1 20%;
  text-align: center;
}

.circlepic {
  margin: 5px auto;
	width: 120px;
	height: 120px;
	background: #5c5c5c;	
	border-radius: 50%;
}

.circleborder {
	top: 10px;
	width: 100px;
	height: 100px;
	background: #f5cb22;
	margin: 0 auto;
	border-radius: 50%;
  display: flex;
  justify-content: center;
  flex-direction: column;
  align-self: center;
  position: relative;
}

.item-inner{
  margin-top: 2px;
}

.item-inner span{
  display: inline-block;
  position: relative;
}

.item-inner span svg{
  width: 26px;
  height: 26px;
  position: absolute;
  right: -25px;
  top: 2px;
}

.item-inner span::after{
  content: "";
  position: absolute;
  display: block;
  width: 100%;
  height: 2px;
  bottom: 0;
  left: 0;
  background-color: #e25f5f;
  transform: scaleX(0);
  transition: transform 0.3s ease;
}

ul.main-nav >li:hover .item-inner span::after {
  transform: scaleX(1);
}

.item-inner.active span::after{
  transform: scaleX(1);
}

ul.main-nav >li .img1 {
  display: block;
  width: 100px;
  height: auto;
  margin: 0 auto;
  transition: all 0.3s ease-in-out;
}

ul.main-nav >li .img1.res {
  width: 75px;
  
}

ul.main-nav >li a.menu-item {
  display: block;
  text-decoration: none;
  position: relative;  
}

.sub-box {
  display: block;
  position: relative;
  top: -99px;  
  visibility: hidden;
  z-index: 996;
  transition: all 0.3s ease-in-out;
  
}

ul.main-nav >li:hover .sub-box{
  top: 0;
  
  visibility: visible;
}

ul.sub-menu {
  list-style: none;
  border-radius: 4px;
  background: #dcdd9a;
  opacity: 0.95;
  border: solid 1px #333;
  color: #666;
  margin: 0;
  padding: 0;
  position: absolute;
  top: 0;
  width: 100%;
  z-index: 996;
}

ul.sub-menu > li a{
  display: block;
  padding: 0.5em 1em;
  text-decoration: none;
  color: #666;
  border-bottom: solid 1px #333;
}

.info-wrap {
  background: linear-gradient(135deg, #f8f9fa 0%, #e9ecef 100%);
  border-radius: 12px;
  box-shadow: 0 4px 15px rgba(0, 0, 0, 0.1);
  border: 1px solid rgba(255, 255, 255, 0.2);
  margin-bottom: 20px;
  overflow: hidden;
  transition: all 0.3s ease;
  position: relative;
}

.info-wrap:hover {
  box-shadow: 0 8px 25px rgba(0, 0, 0, 0.15);
}

.info-wrap.st1 {
  background: linear-gradient(135deg, #e3f2fd 0%, #bbdefb 100%);
  border-left: 4px solid #2196f3;
}

.info-wrap.st2 {
  background: linear-gradient(135deg, #f3e5f5 0%, #e1bee7 100%);
  border-left: 4px solid #9c27b0;
}

.info-wrap.st3 {
  background: linear-gradient(135deg, #e8f5e9 0%, #c8e6c9 100%);
  border-left: 4px solid #4caf50;
}

.info-wrap.st4{
  background: linear-gradient(135deg, #fff3e0 0%, #ffe0b2 100%);
  border-left: 4px solid #ff9800;
}

.info-wrap.st5 {
  background: linear-gradient(135deg, #fbe9e7 0%, #ffccbc 100%);
  border-left: 4px solid #ff5722;
}

.info-wrap::before {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  height: 2px;
  background: linear-gradient(90deg, transparent, rgba(255, 255, 255, 0.8), transparent);
}

.info-title {
  background: rgba(255, 255, 255, 0.9);
  padding: 15px 20px;
  margin: 0;
  font-weight: 600;
  border-bottom: 1px solid rgba(0, 0, 0, 0.05);
}

.info-title span {
  color: #2c3e50;
  font-size: 20px;
}

.info-title i {
  margin-right: 8px;
  color: #3498db;
}

.pub-lst {
  padding: 15px 20px;
  margin: 0;
}

.pub-lst li {
  padding: 8px 0;
  border-bottom: 1px solid rgba(0, 0, 0, 0.05);
  transition: all 0.2s ease;
}

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

.pub-lst li:hover {
  background: rgba(255, 255, 255, 0.5);
}

.pub-lst a {
  display: inline-block;
  color: #495057;
  text-decoration: none;
  transition: color 0.2s ease;
}

.pub-lst a:hover {
  color: #007bff;
}

ul.pub-lst{
  margin: 0 0 0 10px;
  list-style: none; /* 移除預設的 list-style */
  padding-left: 0; /* 移除預設的 padding */
}

ul.pub-lst li {
  position: relative;
  padding-left: 25px;
  margin-bottom: 8px;
  transition: all 0.3s ease;
  list-style: none; /* 確保移除預設的 marker */
}

ul.pub-lst li::before {
  content: '';
  position: absolute;
  left: 8px;
  top: 50%;
  transform: translateY(-50%);
  width: 8px;
  height: 8px;
  border-radius: 50%;
  background: linear-gradient(135deg, #007bff, #0056b3);
  box-shadow: 0 2px 4px rgba(0, 123, 255, 0.3);
  transition: all 0.3s ease;
  animation: pulse 2s ease-in-out infinite;
}

ul.pub-lst li::after {
  content: '';
  position: absolute;
  left: 0;
  bottom: 0;
  width: 0;
  height: 2px;
  background: linear-gradient(90deg, #007bff, transparent);
  transition: width 0.3s ease;
}

ul.pub-lst li:hover::before {
  transform: translateY(-50%) scale(1.3);
  box-shadow: 0 4px 8px rgba(0, 123, 255, 0.5);
}

ul.pub-lst li:hover::after {
  width: 100%;
}

/* 不同主題的配色 */
.info-wrap.st1 ul.pub-lst li::before {
  background: linear-gradient(135deg, #2196f3, #1976d2);
  box-shadow: 0 2px 4px rgba(33, 150, 243, 0.3);
}

.info-wrap.st1 ul.pub-lst li::after {
  background: linear-gradient(90deg, #2196f3, transparent);
}

.info-wrap.st1 ul.pub-lst li:hover::before {
  box-shadow: 0 4px 8px rgba(33, 150, 243, 0.5);
}

.info-wrap.st2 ul.pub-lst li::before {
  background: linear-gradient(135deg, #9c27b0, #7b1fa2);
  box-shadow: 0 2px 4px rgba(156, 39, 176, 0.3);
}

.info-wrap.st2 ul.pub-lst li::after {
  background: linear-gradient(90deg, #9c27b0, transparent);
}

.info-wrap.st2 ul.pub-lst li:hover::before {
  box-shadow: 0 4px 8px rgba(156, 39, 176, 0.5);
}

.info-wrap.st3 ul.pub-lst li::before {
  background: linear-gradient(135deg, #4caf50, #388e3c);
  box-shadow: 0 2px 4px rgba(76, 175, 80, 0.3);
}
.info-wrap.st3 ul.pub-lst li::after {
  background: linear-gradient(90deg, #4caf50, transparent);
}
.info-wrap.st3 ul.pub-lst li:hover::before {
  box-shadow: 0 4px 8px rgba(76, 175,
  80, 0.5);
}

.info-wrap.st4 ul.pub-lst li::before {
  background: linear-gradient(135deg, #ff9800, #f57c00);
  box-shadow: 0 2px 4px rgba(255, 152, 0, 0.3);
}
.info-wrap.st4 ul.pub-lst li::after {
  background: linear-gradient(90deg, #ff9800, transparent);
}
.info-wrap.st4 ul.pub-lst li:hover::before {
  box-shadow: 0 4px 8px rgba(255, 152, 0, 0.5);
}

@keyframes pulse {
  0% {
    box-shadow: 0 2px 4px rgba(0, 123, 255, 0.3), 0 0 0 0 rgba(0, 123, 255, 0.7);
  }
  50% {
    box-shadow: 0 2px 4px rgba(0, 123, 255, 0.3), 0 0 0 5px rgba(0, 123, 255, 0);
  }
  100% {
    box-shadow: 0 2px 4px rgba(0, 123, 255, 0.3), 0 0 0 0 rgba(0, 123, 255, 0);
  }
}

/* 特殊圖標樣式 */
.info-wrap.st1 ul.pub-lst li:nth-child(odd)::before {
  content: '●';
  background: none;
  color: #2196f3;
  font-size: 12px;
  width: auto;
  height: auto;
  border-radius: 0;
  box-shadow: none;
  line-height: 1;
  animation: none;
}

.info-wrap.st2 ul.pub-lst li:nth-child(even)::before {
  content: '◆';
  background: none;
  color: #9c27b0;
  font-size: 10px;
  width: auto;
  height: auto;
  border-radius: 0;
  box-shadow: none;
  line-height: 1;
  animation: none;
}

.info-wrap.st3 ul.pub-lst li:nth-child(odd)::before {
  content: '■';
  background: none;
  color: #4caf50;
  font-size: 10px;
  width: auto;
  height: auto;
  border-radius: 0;
  box-shadow: none;
  line-height: 1;
  animation: none;
}

.info-wrap.st4 ul.pub-lst li:nth-child(odd)::before {
  content: '▲';
  background: none;
  color: #ff9800;
  font-size: 10px;
  width: auto;
  height: auto;
  border-radius: 0;
  box-shadow: none;
  line-height: 1;
  animation: none;
}

ul.banner-lst{
  padding: 0;
  list-style: none;
}

ul.banner-lst li {
  display: block;  
  padding: 0 0 1.5em;
}

ul.banner-lst li a{
  display: block;
  transition: all 300 ease-in;
  box-shadow: rgba(198, 199, 200, 0.3) 0px 0px 0px 3px;
}

ul.banner-lst li a:hover{
  display: block;
  box-shadow: rgba(53, 136, 232, 0.792) 0px 0px 0px 3px;
}

.fix-ht{
  height: 2em;
}

.tbl-lst a{
  text-decoration: none;
  font-size: 18px;
}

.tbl-lst a:hover{
  color: #1c386e;
}

footer{
  margin-top: auto;
}

.footer-wrap{
  padding: 20px 0;
  min-height: 150px;
  color:#333;
  font-size: 18px;
  background: rgb(174,213,238);
  background: radial-gradient(circle, rgba(174,213,238,1) 0%, rgba(148,233,192,1) 100%);
}

.copyright{
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
}

.cp-piece{
  padding: 0 0.5em;
}

.goTop{
  position: fixed;
  bottom: 20px;
  right: 20px;
  width: 50px;
  height: 50px;
  background: #fff;
  border-radius: 50%;
  box-shadow: 0 0 4px rgba(0, 0, 0, 0.15);
  cursor: pointer;
  z-index: 999;
  display: none;
  font-size: 1.5em;
}

.goTop a{
  display: block;
  width: 100%;
  height: 100%;
  text-align: center;
  line-height: 50px;
  text-decoration: none;
  color: #333;
}

.mobile-menu-bars{
  display: none;
  position: absolute;
  top: 10px;
  right: 10px;
  width: 42px;
  height: 38px;
  background: #fff;
  border-radius: 2px;
  border: 1px solid #aaa;
  box-shadow: 0 1px 2px rgba(0, 0, 0, 0.15);
  cursor: pointer;
  z-index: 996;
  padding: 5px;
}

.mobile-menu-bars.active{
  border: 2px solid #36a7f9;
}

.mobile-menu-bars span{
  display: block;
  position: relative;
  width: 20px;
  height: 2px;
  background: #555;
  margin: 5px auto;
  border-radius: 4px;
  transition: all 0.3s ease-in-out;
}

.mobile-menu-bars.active span:nth-child(3){  
  transform: rotate(-45deg);
  width: 30px;
  bottom: 7px;
}

.mobile-menu-bars.active span:nth-child(2){  
  background: transparent;
}

.mobile-menu-bars.active span:nth-child(1){  
  transform: rotate(45deg);
  width: 30px;
  top: 7px;
}

.mobile-submenu{
  display: none;
  position: absolute;
  top: 85px;
  right: 0;
  width: 250px;
  background: #a5dee1;
  z-index: 199;
  box-shadow: 0 2px 5px rgba(0, 0, 0, 0.15);
  font-size: 20px;
}

.mobile-submenu.active{
  display: block;
}

ul.mobile-submenu-list{
  background: #a5dee1;
  list-style: none;
  margin: 0;
  padding: 0;
}

ul.mobile-submenu-list li{
  padding: 0.5em 1.2em;
  
}

ul.mobile-submenu-list a{
  text-decoration: none;
}

ul.mob-drop-sub{
  list-style: none;
  margin: 0;
  padding-left: 0.5em;
}

.pdca .list1 {
  line-height: 1.8em;
  text-indent: -2em;
  margin-bottom: 5px;
}

.ann-content img{
  max-width: 100%;
  height: auto;
}
/*# sourceMappingURL=main.css.map */

ul.site-map {
  list-style: none;
  margin: 0;
  padding: 0;
  display: flex;
  flex-wrap: wrap;
}

ul.site-map li{
  display: block;
  flex: 1 1 12%;
  margin-right: 1em;
  margin-bottom: 0.8em;
}

.bg-contact{
  /* 背景圖片 1344x768 */
  background: url(/images/contact.png) no-repeat center center;
  background-size: cover;
  aspect-ratio: 4/3;
  position: relative;
  box-shadow: 0 0 8px rgba(0,0,0,0.15);
  margin: 2em 0;
  max-width: 668px;
  margin: 2em auto;
  color: #75480f;
}

.staff{
  max-width: 360px;
  color: #867050;
}

.staff-attr{
  flex: 0 1 120px;
}

.staff-attr::after{
  content: "";
  display: block;
  clear: both;
}

.staff-info{
  flex: 0 1 180px;
}

