@charset "UTF-8";
.accordion-content {
  max-height: 0;
  opacity: 0;
  -webkit-transform: translateY(-10px);
      -ms-transform: translateY(-10px);
          transform: translateY(-10px);
  -webkit-transition: max-height 0.3s ease, opacity 0.3s ease, -webkit-transform 0.3s ease;
  transition: max-height 0.3s ease, opacity 0.3s ease, -webkit-transform 0.3s ease;
  transition: max-height 0.3s ease, opacity 0.3s ease, transform 0.3s ease;
  transition: max-height 0.3s ease, opacity 0.3s ease, transform 0.3s ease, -webkit-transform 0.3s ease;
  /* 加入過渡效果 */
  overflow: hidden;
  padding: 0 10px;
  border: 1px solid #ccc;
  margin-top: 5px;
  background-color: #f9f9f9;
}

.accordion-toggle {
  display: none;
}

.accordion-toggle:checked + label + .accordion-content {
  max-height: 300px;
  min-height: 100px;
  opacity: 1;
  -webkit-transform: translateY(0);
      -ms-transform: translateY(0);
          transform: translateY(0);
  padding: 10px;
}

label {
  display: block;
  cursor: pointer;
  background-color: #efefef;
  color: #544636;
  padding: 10px;
  margin: 5px 0;
  border-radius: 5px;
  position: relative;
  -webkit-transition: background-color 0.3s;
  transition: background-color 0.3s;
  letter-spacing: 2px;
}

/* 針對選中的 label 增加樣式 */
.accordion-toggle:checked + label {
  background-color: #938067;
  color: #fff;
}

/* 添加箭頭符號 */
label:after {
  content: "▶";
  /* 初始箭頭符號 */
  position: absolute;
  /* 絕對定位 */
  right: 10px;
  /* 右邊距 */
  -webkit-transition: -webkit-transform 0.3s;
  transition: -webkit-transform 0.3s;
  transition: transform 0.3s;
  transition: transform 0.3s, -webkit-transform 0.3s;
  /* 加入過渡效果 */
}

/* 展開狀態的箭頭符號 */
.accordion-toggle:checked + label:after {
  content: "▼";
  /* 展開時的箭頭符號 */
  -webkit-transform: rotate(118deg);
      -ms-transform: rotate(118deg);
          transform: rotate(118deg);
  /* 旋轉箭頭 */
}

.blognewswrap {
  border: 1px solid #CCC;
  margin: 15px 0;
}
.blognewswrap #rwdnews_list {
  display: -webkit-box;
  display: -webkit-flex;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-pack: justify;
  -webkit-justify-content: space-between;
      -ms-flex-pack: justify;
          justify-content: space-between;
  -webkit-box-align: start;
  -webkit-align-items: flex-start;
      -ms-flex-align: start;
          align-items: flex-start;
  -webkit-flex-wrap: wrap;
      -ms-flex-wrap: wrap;
          flex-wrap: wrap;
}
.blognewswrap #rwdnews_list ul {
  -webkit-flex-basis: 33.3333%;
      -ms-flex-preferred-size: 33.3333%;
          flex-basis: 33.3333%;
  padding: 15px;
}
.blognewswrap #rwdnews_list ul .pic img {
  max-width: 100%;
}