

.albumList {
    margin: 0 -20px
}
.albumList .albumItem {
    cursor: pointer;
    padding: 0 20px
}
.albumList .albumItem img {
    width: 100%;
    height: auto;
    display: block;
    -webkit-backface-visibility: hidden;
    backface-visibility: hidden
}
@media (max-width:1024px) {
    .albumList {
        margin: 0 -15px
    }
    .albumList .albumItem {
        padding: 0 15px
    }
}
@media (max-width:480px) {
    .albumList {
        margin: 0 -8px
    }
    .albumList .albumItem {
        padding: 0 8px
    }
}



.textEditor .contentBuilder .shelfWrap .item.picLeft .Img, .textEditor .contentBuilder .shelfWrap .item.picRight .Img {padding-top: 30px;}


.textEditor .contentBuilder .shelfWrap .item.picLeft .Img {
  text-align:center;
  width: 40%;
}


@media (max-width:1024px) {
    .textEditor .contentBuilder .shelfWrap .item.picLeft .Img {
  width: 100%;
  }
}



.historyTable {
  width: 100%;
  /*max-width: 960px;*/
  margin: 0 auto;
  border-collapse: collapse;
  font-size: 16px;
  line-height: 1.8;
}

.historyTable th,
.historyTable td {
  border: 1px solid rgb(52, 73, 94);
  padding: 14px 16px;
  vertical-align: top;
  color: rgb(52, 73, 94);
}

.historyTable thead th {
  background: linear-gradient(135deg, #4ea6c8, #4ea6c8);
  color: #fff;
  font-weight: 600;
  text-align: center;
}

.historyTable tbody tr:nth-child(even) {
  background-color: #f1f1f1;
}

.historyTable tbody tr:hover {
  background-color: #f1f1f1;
}

.historyTable td:first-child {
  width: 22%;
  text-align: center;
  white-space: nowrap;
  font-weight: 500;
  color: rgb(52, 73, 94);
}

.historyTable td:last-child {
  width: 78%;
  text-align: justify;
}









.timelineArea {
  padding: 60px 20px;
}

.timelineWrap {
  max-width: 900px;
  margin: 0 auto;
  position: relative;
  padding-left: 30px;
}

.timelineWrap::before {
  content: "";
  position: absolute;
  top: 0;
  left: 8px;
  width: 2px;
  height: 100%;
  background: linear-gradient(to bottom, #e88fa3, #f7d6dc);
}

.timelineItem {
  position: relative;
  padding: 0 0 40px 30px;
}

.timelineItem::before {
  content: "";
  position: absolute;
  left: -1px;
  top: 6px;
  width: 14px;
  height: 14px;
  background-color: #e88fa3;
  border-radius: 50%;
  box-shadow: 0 0 0 4px #f7d6dc;
}

.timelineItem:last-child {
  padding-bottom: 0;
}

.timelineItem .time {
  font-weight: 600;
  color: #5a3a42;
  margin-bottom: 6px;
}

.timelineItem .content {
  background-color: #fdf3f5;
  padding: 14px 18px;
  border-radius: 6px;
  line-height: 1.7;
  color: #4a3a40;
}





/* ===== 基本設定 ===== */
.orgSection {
  max-width: 1200px;
  margin: 0 auto;
  padding: 80px 20px;
  background-color: #fff;
  border-radius: 50px;
}

.orgTitle {
  text-align: center;
  font-size: 28px;
  margin-bottom: 60px;
  letter-spacing: 0.15em;
}

/* ===== 每一層 ===== */
.orgRow {
  display: flex;
  justify-content: center;
  gap: 24px;
  margin-bottom: 24px;
  position: relative;
  flex-wrap: wrap;
}

/* ===== 組織盒 ===== */
.orgBox {
  min-width: 160px;
  padding: 14px 18px;
  text-align: center;
  font-weight: 500;
  border-radius: 10px;
  background: #fff;
  box-shadow: 0 6px 18px rgba(0,0,0,0.08);
}

/* 顏色 */
.orgBox.blue {
  background: linear-gradient(135deg, #4ea6c8, #4ea6c8);
  color: #fff;
}

.orgBox.pink {
  background: linear-gradient(135deg, #e47878, #e47878);
  color: #fff;
}

.orgBox.green {
  background: linear-gradient(135deg, #7fc9b4, #7fc9b4);
  color: #fff;
}

.orgBox.gray {
  background: #e0e0e0;
  color: #555;
}

/* 小盒 */
.orgBox.small {
  font-size: 14px;
  padding: 10px 14px;
}

/* ===== 中央連線 ===== */
.orgLine {
  width: 2px;
  height: 30px;
  background: #ddd;
  margin: 0 auto 24px;
}

/* ===== 子層間距 ===== */
.orgRow.sub {
  margin-top: -10px;
}

/* ======================
   📱 手機版（關鍵）
====================== */
@media (max-width: 992px) {

.orgSection {
  background: none !important;
  border-radius: 0;
}


  .orgSection {
    padding: 50px 16px;
  }

  .orgTitle {
    font-size: 22px;
    margin-bottom: 40px;
  }

  .orgRow {
    flex-direction: column;
    align-items: center;
    gap: 12px;
  }

  .orgBox {
    width: 100%;
    max-width: 320px;
  }

  /* 手機隱藏所有連線 */
  .orgLine {
    display: none;
  }
}


.boardArea {
  margin: 0 auto 80px;
  padding: 0 20px;
}

.boardTerm {
  text-align: center;
  color: #4ea6c8;
  margin-bottom: 30px;
}

.boardTable {
  width: 100%;
  border-collapse: collapse;
  font-size: 16px;
}

.boardTable th,
.boardTable td {
  border: 1px solid rgb(52, 73, 94);
  padding: 14px 16px;
  text-align: center;
  color: rgb(52, 73, 94);
}

.boardTable thead th {
  background: linear-gradient(135deg, #4ea6c8, #4ea6c8);
  color: #fff;
}

.boardTable tbody tr:nth-child(even) {
  background-color: #f1f1f1;
}




/*

* {
    box-sizing: border-box;
}
body {
    font-family: 'Poppins', sans-serif;
}
.mainArea {
    min-height: 100vh;
    padding-top: 100px;
    padding-bottom: 100px;
    background-color: #f3f3f3;
}
.wrap {
    width: 100%;
    max-width: 1180px;
    padding-left: 20px;
    padding-right: 20px;
    margin: 0 auto;
}


.ib_about02 {
    display: flex;
    align-items: center;
    flex-wrap: wrap;
    position: relative;
}
.ib_about02 .textBox {
    width: 82%;
    background: #fff;
    padding: 50px;
    padding-right: 35%;
    position: relative;
}
@media (max-width:640px) {
    .ib_about02 .textBox {
        width: 100%;
        padding-right: 50px;
    }
}
@media (max-width:540px) {
    .ib_about02 .textBox {
        padding: 30px;
    }
}
.ib_about02 .textBox:before {
    content: '';
    display: block;
    width: 40%;
    height: 10px;
    background-color: #063a5e;
    bottom: 0px;
    left: 0;
    position: absolute;
    z-index: 1;
}
.ib_about02 .textBox:after {
    content: '';
    display: block;
    width: 60%;
    height: 10px;
    background-color: #e6811f;
    bottom: 0px;
    right: 0;
    position: absolute;
    z-index: 1;
}
.ib_about02 .textBox h3 {
    font-size: 20px;
    color: #063a5e;
    margin-bottom: 20px;
}
.ib_about02 .textBox p {
    font-size: 15px;
    color: #2f2f2f;
    line-height: 1.6;
    font-weight: 300;
    margin-bottom: 60px;
}
.ib_about02 .ImgBox {
    position: absolute;
    top: 50px;
    right: 0;
    z-index: 2;
    width: 45%;
}
@media (max-width:640px) {
    .ib_about02 .ImgBox {
        position: relative;
        width: 100%;
        top: 0;
    }
}
.ib_about02 .ImgBox img {
    width: 100%;
    display: block;
}


*/





