
.dotsBox {
  position: absolute;
  left: 0;
  bottom: 30px;
  width: 100%;
  text-align: center;
}

.dotsBox .dots li {
  display: inline-block;
  margin: 0 6px;
}

.dotsBox .dots li.slick-active button {
  background: #1dc1dd;
}

.dotsBox .dots li button {
  display: block;
  width: 10px;
  height: 10px;
  border-radius: 50%;
  border: none;
  background: #ddd;
  font-size: 0;
  line-height: 0;
  padding: 0;
  text-indent: -9999px;
  cursor: pointer;
}

.dotsBox .dots li button:focus {
  outline: none;
}

.dotsBox.noFixed {
  position: static;
  padding: 10px 0 20px;
}

.dotsBox.noFixed .dots li button {
  background: #787878;
}

.dotsBox.noFixed .dots li.slick-active button {
  background: #1dc1dd;
}

.relatedProBox {
  position: relative;
  padding-bottom: 20px;
}

.relatedTitle {
  letter-spacing: .05em;
  font-size: 20px;
  margin-top: 12px;
}

.relatedTitle span {
  display: inline-block;
  width: 85px;
}

.relatedTitle::after {
  content: '';
  display: inline-block;
  vertical-align: middle;
  width: calc(100% - 100px);
  height: 1px;
  margin-left: 15px;
  background-color: #aaa;
}

.productList {
  margin: 0 -20px;
  margin-top: 30px;
  overflow: hidden;
}

.productList.change li {
  -webkit-transform: scale(0);
      -ms-transform: scale(0);
          transform: scale(0);
  opacity: 0;
}

.productList li {
  width: 33.3333%;
  padding: 0 20px;
  margin-bottom: 60px;
  -webkit-box-sizing: border-box;
          box-sizing: border-box;
}

.productList li:hover .Img img {
  opacity: .1;
  -webkit-transform: scale(1.02);
      -ms-transform: scale(1.02);
          transform: scale(1.02);
}

.productList li:hover h3 a {
  color: #0971ce;
}

.productList li:hover h4 {
  top: 50%;
  opacity: 1;
}

.productList li.hide {
  display: none;
}

.productList .Img {
  position: relative;
  -webkit-box-shadow: 4px 4px 20px rgba(0, 0, 0, 0.1);
          box-shadow: 4px 4px 20px rgba(0, 0, 0, 0.1);
  background: -webkit-linear-gradient(315deg, #1dc1dd 0%, #0971ce 100%);
  background: -o-linear-gradient(315deg, #1dc1dd 0%, #0971ce 100%);
  background: linear-gradient(135deg, #1dc1dd 0%, #0971ce 100%);
  overflow: hidden;
}

.productList .Img img {
  -webkit-transition: all .7s ease-in-out;
  -o-transition: all .7s ease-in-out;
  transition: all .7s ease-in-out;
  display: block;
  width: 100%;
  height: 100%;
  -o-object-fit: cover;
     object-fit: cover;
}

.productList h3 a {
  display: block;
  padding: 20px 0;
  font-family: "Noto Sans TC", sans-serif;
  font-weight: 400;
  font-size: 18px;
  text-align: center;
}

.productList h4 {
  position: absolute;
  left: 50%;
  top: 52%;
  -webkit-transform: translate(-50%, -50%);
      -ms-transform: translate(-50%, -50%);
          transform: translate(-50%, -50%);
  font-weight: 500;
  font-family: "Mukta", "微軟正黑體", sans-serif;
  font-size: 30px;
  line-height: 1.2;
  color: #fff;
  text-transform: uppercase;
  text-align: center;
  padding: 0 10px;
  opacity: 0;
  pointer-events: none;
  -webkit-transition: all .5s;
  -o-transition: all .5s;
  transition: all .5s;
  -webkit-box-sizing: border-box;
          box-sizing: border-box;
}