@charset "UTF-8";

.title {
  margin-bottom: 40px;
}

.title h2 {
  font-size: 30px;
  margin-bottom: 20px;
  text-align: center;
  color: #000;
}

.title h2 span {
  color: #ffa231;
}

.search-box .title h2 span {
  text-shadow: 1px 1px 1px rgba(0, 0, 0, 0.5);
}

.title h2 span i{
  /* CSS文字樣式 不要斜體 */
  font-style: normal;
  color: #000;
}

.title .subtitle {
  font-size: 20px;
  text-align: center;
}

.home-banner {
  width: 100%;
}

.home-banner .swiper-slide figure {
  padding-top: 40%;
  position: relative;
  margin: 0;
}

.home-banner .swiper-slide figure img {
  position: absolute;
  width: 100%;
  height: 100%;
  top: 0;
  left: 0;
  -o-object-position: center;
  object-position: center;
  -o-object-fit: cover;
  object-fit: cover;
}

.home-banner .swiper-button-next:after,
.home-banner .swiper-button-prev:after {
  color: #fff;
}

.home-banner .swiper-pagination {
  bottom: 25px;
}

.home-banner .swiper-pagination .swiper-pagination-bullet {
  opacity: 1;
  background: #fff;
  width: 15px;
  height: 5px;
  border-radius: 10px;
}

.home-banner .swiper-pagination .swiper-pagination-bullet.swiper-pagination-bullet-active {
  background: blue;
  width: 25px;
}

.list-item {
  max-width: 1200px;
  margin: 100px auto;
  width: 100%;
  padding: 30px 20px 0 20px;
}


.list-item .item {
  margin-bottom: 30px;
}

.list-item .item .card {
  border-radius: 0;
  color: #999;
  transition: all 0.5s;
}

.list-item .item .card:hover {
  box-shadow: 3px 3px 6px rgba(0, 0, 0, 0.2);
}

.list-item .item .card:hover figure img {
  transform: scale(1.2);
}

.list-item .item .card .card-img {
  display: block;
  text-decoration: none;
  padding-top: 50%;
  position: relative;
  margin: 0;
  overflow: hidden;
  border-radius: 0;
}

.list-item .item .card .card-img img {
  position: absolute;
  top: 0;
  right: 0;
  width: 100%;
  height: 100%;
  -o-object-position: center;
  object-position: center;
  -o-object-fit: cover;
  object-fit: cover;
  transition: 0.5s all;
}

.list-item .item .card .card-img .info {
  position: absolute;
  width: 100%;
  height: 100%;
  background: rgba(0, 0, 0, 0.6);
  color: #fff;
  display: flex;
  justify-content: center;
  align-items: center;
  font-size: 22px;
  bottom: -100%;
  left: 0;
  letter-spacing: 0.2em;
  transition: 0.5s all;
}

.list-item .item .card .card-img:hover .info {
  bottom: 0;
}

.list-item .item .card .card-body {
  height: 150px;
}

.list-item .item .card .card-body .title {
  display: flex;
  justify-content: space-between;
  align-items: center;
  width: 100%;
  margin-bottom: 10px;
}

.list-item .item .card .card-body .title h3 {
  font-size: 22px;
  margin-bottom: 0;
  color: #000;
  width: 100%;
  overflow: hidden;
  text-overflow: ellipsis;
  white-space: nowrap;
}

.list-item .item .card .card-body .title span {
  font-size: 14px;
  display: inline-block;
  margin-left: 10px;
  color: #999;
  font-weight: normal;
  width: 100px;
  text-align: right;
}

.list-item .item .card .card-body .slogan {
  color: #9D8854;
  height: 22px;
  line-height: 22px;
  width: 100%;
  overflow: hidden;
  text-overflow: ellipsis;
  white-space: nowrap;
}

.list-item .item .card .card-body .other {
  display: flex;
  flex-wrap: wrap;
  justify-content: flex-end;
}

.list-item .item .card .card-body .other a {
  border: 1px #999 solid;
  border-radius: 50px;
  display: inline-block;
  padding: 2px 10px;
  color: #999;
  font-size: 14px;
  text-decoration: none;
}

.list-item .item .card .card-body .other a:hover {
  background: #FF8C00;
  border-color: #FF8C00;
  color: #fff;
}

.list-item .item .card .card-footer {
  background: #fff;
  font-size: 14px;
}

.list-item .more {
  width: 200px;
  padding: 10px 0;
  background: #000;
  color: #fff;
  display: block;
  margin: 50px auto auto auto;
  text-align: center;
  text-decoration: none;
  border: 1px #000 solid;
  transition: all 0.5s;
}

.list-item .more:hover {
  background: #fff;
  color: #FF8C00;
  border-color: #FF8C00;
}

.search-box {
  background: url(../images/banner3.jpg) no-repeat center;
  background-size: cover;
  padding: 50px 20px;
  color: #fff;
}

.search-box form {
  max-width: 750px;
  width: 100%;
  margin: 30px auto;
  border: 2px #fff solid;
  border-radius: 3px;
  padding: 30px 35px;
  background-color: rgba(0, 0, 0, 0.5);
}

.search-box form .keywords-option .blank {
  display: flex;
  margin-bottom: 15px;
}

.search-box form .keywords-option .blank span {
  width: 50px;
  padding-top: 3px;
  display: block;
  font-size: 18px;
  letter-spacing: 0.2em;
  text-shadow: 1px 1px 1px rgba(0, 0, 0, 1);
}

.search-box form .keywords-option .blank ul {
  width: calc(100% - 50px);
  padding-left: 0;
  list-style: none;
  margin-bottom: 0;
  display: flex;
  flex-wrap: wrap;
}

.search-box form .keywords-option .blank ul li {
  margin-bottom: 10px;
}

.search-box form .keywords-option .blank ul li label {
  color: #fff;
  padding: 3px 15px;
  border-radius: 10px;
  margin: 0 5px;
  border: 1px #fff solid;
  transition: all 0.5s;
}

.search-box form .keywords-option .blank ul li label:hover {
  background-color: rgb(255, 255, 255, 0.35);
  cursor: pointer;
}

.search-box form .keywords-option .blank ul li label input {
  opacity: 0;
  position: absolute;
}

.search-box form .keywords-option .blank ul li label:has(input:checked) {
  background: #fff;
  /* 例如變色 */
  color: #000;
}

.search-box form [type=submit] {
  width: 120px;
  padding: 10px;
  color: #000;
  background-color: #fff;
  text-align: center;
  margin: 30px auto auto auto;
  display: block;
  border: 1px #000 solid;
  border-radius: 2px;
  transition: all 0.5s;
}

.search-box form [type=submit]:hover {
  color: #fff;
  background-color: #FF8C00;
  border: 1px #FF8C00 solid;
}

.news-lise {
  background: url(../images/banner4.jpg) no-repeat center;
  background-size: cover;
  padding: 50px 20px;
}

.news-lise .news-frame {
  max-width: 1200px;
  margin: auto;
}

.news-lise .news-frame .item {
  display: block;
  width: 100%;
  position: relative;
  overflow: hidden;
  box-shadow: rgba(0, 0, 0, 0.2) 3px 3px 6px;
}

@media (max-width: 768px) {
  .news-lise .news-frame .item {
    margin-bottom: 20px;
  }
}

.news-lise .news-frame .item:hover img {
  transform: scale(1.2);
}

.news-lise .news-frame .item img {
  width: 100%;
  height: auto;
  transition: 0.5s all;
}

.news-lise .news-frame .item .text {
  position: absolute;
  z-index: 2;
  background: rgba(0, 0, 0, 0.6);
  padding: 10px 20px;
  bottom: 0;
  left: 0;
  width: 100%;
  color: #fff;
}

.news-lise .news-frame .item .text .tag {
  font-size: 14px;
  display: inline-block;
  padding: 2px 10px;
  background: #FF8C00;
  color: #fff;
  margin-bottom: 10px;
}

.news-lise .news-frame .item .text time {
  font-size: 14px;
  display: inline-block;
  padding: 2px 10px;
}

.news-lise .news-frame .item .text h3 {
  font-size: 18px;
  margin: 5px 0;
  white-space: nowrap;
  overflow: hidden;
  text-overflow: ellipsis;
}

.news-lise .news-frame .more {
  width: 200px;
  padding: 10px 0;
  background: #000;
  color: #fff;
  display: block;
  margin: 50px auto auto auto;
  text-align: center;
  text-decoration: none;
  transition: all 0.5s;
  border: 1px solid #000;
}

.news-lise .news-frame .more:hover {
  background: #fff;
  color: #FF8C00;
  border: 1px solid #FF8C00;
}

/*# sourceMappingURL=home.css.map */