


.product-active {
  display: block !important;
}

.product-container {
	
}

.product-list {
	overflow: hidden;
}

.product-list-img {
	width: 100%;
	height: 300px;
	margin-bottom: 10px;
  position: relative;
}

.product-list-img > img {
  width: 100%;
  height: 100%;
  object-fit: contain;
  object-position: center;
}

.product-list-content {
	position: absolute;
	width: 100%;
	height: 300px;
	background: rgba(0, 0, 0,0.5);
	opacity: 0;
	text-align: center;
}

.product-list-content-box {
	display: flex;
	height: 300px;
	flex-direction: column;
	justify-content: center;
	align-items: center;
}

.product-list-content-title {
	font-size: 34px;
	color: rgb(255, 255, 255);
}

.product-list-content-button-box {
	margin-top: 10px;
}

.product-list-content-button {
	border-radius: 0px;
	border: 1px solid rgb(102, 204, 255);
	color: rgb(102, 204, 255);
}

.product-list-content-button:hover {
	border-radius: 0px;
	border: 1px solid rgb(102, 204, 255);
	color: rgb(255, 255, 255);
	background-color: rgb(102, 204, 255);
}

.product-list-img:hover .product-list-content {
	opacity: 1;
	transition: all 0.5s;
}

@media screen and (max-width: 1600px) {
	.product-list-img {
		width: 100%;
		height: 300px;
	}
	
	.product-list-content {
		position: absolute;
		width: 100%;
		height: 300px;
		background: rgba(0, 0, 0,0.5);
		opacity: 0;
		text-align: center;
	}

	.product-list-content-box {
		display: flex;
		height: 300px;
		flex-direction: column;
		justify-content: center;
		align-items: center;
	}
	
	.product-list-content-title {
		font-size: 26px;
		color: rgb(255, 255, 255);
	}
}

@media screen and (max-width: 800px) {
	.product-list-img {
		width: 100%;
		height: 350px;
	}
	
	.product-list-content {
		position: absolute;
		width: 100%;
		height: 350px;
		background: rgba(0, 0, 0,0.5);
		opacity: 0;
		text-align: center;
	}

	.product-list-content-box {
		display: flex;
		height: 350px;
		flex-direction: column;
		justify-content: center;
		align-items: center;
	}
	
	.product-list-content-title {
		font-size: 24px;
		color: rgb(255, 255, 255);
	}
}

.product-category-name {
  font-size: 36px;
  color: rgb(99,185,222);
  font-weight: 600;
  text-align: left;
  width: 100%;
  padding-bottom: 10px;
  border-bottom: 3px solid #dcdcdc;
  margin-bottom: 40px;
}

.product-category {
  display: flex;
  justify-content: center;
  align-items: center;
  flex-direction: column;
  border-right: 2px solid #dcdcdc;
}

.product-category-title-en {
  font-size: 36px;
  color: rgb(99,185,222);
  font-weight: 600;
}

.product-category-title-ch {
  font-size: 36px;
}

.product-category-list {
  font-size: 20px;
  text-align: justify;
	text-justify:distribute-all-lines;
	text-align-last: justify;
	line-height: 20px;
  padding-top: 60px;
  border-top: 3px solid #dcdcdc;
  border-bottom: 3px solid #dcdcdc;
  padding-left: 10px;
  padding-right: 10px;
  margin-bottom: 20px;
}

.product-category-list::after {
  content:'';
	display:inline-block;
	overflow:hidden;
	width:100%;
	height: 0;
}

.product-category-list-item {
  margin-bottom: 40px;
  cursor: pointer;
  user-select: none;
}

.product-category-list-item-active {
  color: #53b1da;
}

@keyframes productAnimate {
  from{
    color: #333333;
  }
  to {
    color: #53b1da;
  }
}

.product-category-list-item:hover {
  animation: productAnimate 0.5s;
  color: #53b1da;
}


@media screen and (max-width: 1400px) {
  .product-category {
    border-right: 0px;
    flex-direction: row;
  }

  .product-category-title-en {
    writing-mode: vertical-lr;
  }
  
  .product-category-title-ch {
    writing-mode: vertical-lr;
    margin-right: 100px;
  }
}

@media screen and (max-width: 800px) {
  .product-category-title-ch {
    writing-mode: vertical-lr;
    margin-right: 50px;
  }
}

.product-detail {
  text-align: center;
}

.product-detail-title {
  margin-top: 20px;
	font-size: 36px;
	font-weight: 600;
}

.product-detail-content {
  margin-top: 20px;
	text-align: left;
}

.product-pagination {
  display: flex;
  flex-wrap: nowrap;
  justify-content: center;
  align-items: center;
  flex-direction: row;
  margin-bottom: 20px;
}

.product-pagination-prev:hover {
  background-color: rgb(102,186,222);
  color: white;
  transition: all .2s;
}

.product-pagination-next:hover {
  background-color: rgb(102,186,222);
  color: white;
  transition: all .2s;
}

.product-pagination-item:hover {
  background-color: rgb(102,186,222);
  color: white;
  transition: all .2s;
}

.product-pagination-item-active {
  background-color: rgb(102,186,222);
  color: white;
}

.product-pagination-prev {
  height: 45px;
  width: 45px;
  border: 2px solid rgb(102,186,222);
  text-align: center;
  display: flex;
  justify-content: center;
  align-items: center;
  margin-right: 10px;
  cursor: pointer;
  font-size: 18px;
  user-select: none;
}

.product-pagination-next {
  height: 45px;
  width: 45px;
  border: 2px solid rgb(102,186,222);
  text-align: center;
  display: flex;
  justify-content: center;
  align-items: center;
  cursor: pointer;
  font-size: 18px;
  user-select: none;
}

.product-pagination-item {
  height: 45px;
  width: 45px;
  border: 2px solid rgb(102,186,222);
  text-align: center;
  display: flex;
  justify-content: center;
  align-items: center;
  margin-right: 10px;
  cursor: pointer;
  font-size: 18px;
  user-select: none;
}
