/* swp-320 */
.swp-320 {
  position: relative;
  width: 100%;
  max-width: 1400px;
  overflow: hidden;
}

.swp-320 input[type="radio"] {
  z-index: 1;
  position: absolute;
  top: 50%;
  transform: translateY(-50%);
  display: inline-block;
  width: 40px;
  height: 40px;
  border-radius: 50%;
  margin: 0;
  cursor: pointer;
  opacity: 0;
}

.radio-left,
.handle-left {
  left: 4%;
}

.radio-right,
.handle-right {
  right: 4%;
}

.swp-handle {
  z-index: 1;
  position: absolute;
  top: 50%;
  transform: translateY(-50%);
  display: inline-block;
  width: 40px;
  height: 40px;
  pointer-events: none;
}

.handle-right {
  transform: translateY(-50%) scaleX(-1);
}

.radio-left:checked~.handle-left {
  display: none;
}

.radio-right:checked~.handle-right {
  display: none;
}

.radio-left:checked~.swp-content {
  transform: translateX(0);
}

.radio-right:checked~.swp-content {
  transform: translateX(-50%);
}

.swp-content {
  position: relative;
  display: flex;
  width: 200%;
  transition: all .4s ease;
}

.swp-slide {
  width: 50%;
}

.swp-slide img {
  display: block;
  width: 100%;
}

.white.swp-slide-content h3,
.white.swp-slide-content p {
  color: #fff;
}

.black.swp-slide-content h3,
.black.swp-slide-content p {
  color: #333;
}

.swp-slide-content {
  position: absolute;
  top: 45%;
  transform: translateY(-50%);
  width: 20%;
}

.swp-slide-content h3 {
  margin: 0 0 10px 0;
  line-height: 32px;
  font-size: 28px;
  font-weight: normal;
}

.swp-slide-content p {
  margin: 0;
  line-height: 24px;
  font-size: 16px;
}

.swp-slide:nth-child(1) .swp-slide-content {
  left: 4%;
}

.swp-slide:nth-child(2) .swp-slide-content {
  top: 29%;
  left: 54.5%;
}

@media screen and (max-width: 768px) {
  .swp-320 {
    margin-top: 0;
  }

  .swp-slide-content {
    top: 50%;
    width: 40%;
  }

  .swp-slide:nth-child(1) .swp-slide-content {
    left: 2%;
  }

  .swp-slide:nth-child(2) .swp-slide-content {
    left: 54.5%;
  }

  .swp-slide-content h3 {
    margin: 0 0 5px 0;
    line-height: 18px;
    font-size: 18px;
  }

  .swp-slide-content p {
    margin: 0;
    line-height: 12px;
    font-size: 12px;
  }
}



/* carousel-600 */
.csl-600 {
  display: flex;
  flex-direction: row;
  width: 100%;
  margin-top: 15px;
}

.csl-container {
  position: relative;
  width: 55%;
  overflow: hidden;
}

.csl-content {
  position: relative;
  display: flex;
  flex-direction: row;
  flex-wrap: nowrap;
  width: 500%;
}

.csl-slide {
  position: relative;
  width: 20%;
}

.csl-slide img {
  display: block;
  width: 100%;
  height: auto;
}

.csl-slide span {
  position: absolute;
  box-sizing: border-box;
  border-radius: 2px;
  padding: 4px 8px;
  text-align: center;
  font-size: 14px;
}

.csl-slide span.white {
  border: 1px solid #fff;
  color: #fff;
}

.csl-slide span.black {
  border: 1px solid #222;
  color: #222;
}

.csl-slide span.left-top {
  left: 6%;
  top: 6%;
}

.csl-slide span.right-top {
  right: 6%;
  top: 6%;
}

.csl-slide span.left-bottom {
  left: 6%;
  bottom: 6%;
}

.csl-slide span.right-bottom {
  right: 6%;
  bottom: 6%;
}

.csl-note {
  position: absolute;
  text-align: center;
}

.csl-note:nth-of-type(1) {
  top: 10%;
  left: 50%;
  transform: translateX(-50%);
  width: 30%;
}

.csl-note:nth-of-type(2) {
  top: 70%;
  left: 19%;
  transform: translateX(-50%);
  width: 30%;
}

.csl-note:nth-of-type(3) {
  top: 70%;
  left: 50%;
  transform: translateX(-50%);
  width: 30%;
}

.csl-note:nth-of-type(4) {
  top: 70%;
  left: 80%;
  transform: translateX(-50%);
  width: 30%;
}

.csl-text {
  display: flex;
  width: 45%;
  background-color: #f4f5f6;
  color: #333;
  overflow: hidden;
}

.csl-text-wrapper {
  width: 90%;
  margin: auto;
}

.csl-text-title {
  margin: 0 0 20px 0;
  line-height: 28px;
  font-size: 28px;
  font-weight: normal;
}

.csl-text-list {
  margin: 0;
  padding-left: 20px;
}

.csl-text-list li {
  list-style-type: disc;
  line-height: 24px;
  font-size: 16px;
}

/* thumbnail-600 */
.tbl-600 {
  display: flex;
  flex-direction: row;
  justify-content: space-between;
  margin-top: 15px;
}

.tbl-item {
  position: relative;
  display: inline-block;
  width: calc(100% / 5 - 10px);
}

.tbl-item::after {
  content: "";
  position: absolute;
  top: 0;
  left: 0;
  display: block;
  width: 100%;
  height: 100%;
  background: rgba(0, 0, 0, 0.6);
  pointer-events: none;
  transition: background .2s ease;
}

.tbl-item:hover::after {
  background: rgba(0, 0, 0, 0);
}

.tbl-item img {
  display: block;
  width: 100%;
}

@media screen and (max-width: 998px) {
  .csl-600 {
    flex-direction: column;
  }

  .csl-container,
  .csl-text {
    width: 100%;
  }

  .csl-text {
    padding: 20px 0;
  }

  .csl-text-title {
    line-height: 24px;
    font-size: 24px;
  }

  .csl-text-list li {
    line-height: 22px;
    font-size: 16px;
  }

  .csl-note {
    font-size: 12px;
  }
}


/* banner */
.bnr {
  position: relative;
  width: 100%;
  margin-top: 15px;
}

.bnr>img {
  display: block;
  width: 100%;
}

img.bnr-logo {
  display: inline-block;
  width: 160px;
  position: absolute;
  top: 10%;
  left: 10%;
}

.bnr-content {
  position: absolute;
  top: 50%;
  transform: translateY(-50%);
}

.bnr-content h3 {
  margin: 0 0 20px 0;
  letter-spacing: 1px;
  line-height: 32px;
  font-size: 28px;
  font-weight: normal;
}

.bnr-content p {
  margin: 0;
  letter-spacing: 1px;
  line-height: 24px;
  font-size: 16px;
}


/* banner-1 */
.bnr-1 .bnr-content {
  left: 10%;
  width: 30%;
}

.bnr-1 h3,
.bnr-1 p {
  color: #fff;
}


/* banner-2 */
.bnr-2 .bnr-content {
  top: 50%;
  left: 6%;
  width: 30%;
}

.bnr-2 h3,
.bnr-2 p {
  color: #fff;
}


/* banner-3 */
.bnr-3 .bnr-content {
  left: 5%;
  width: 35%;
}

.bnr-3 h3,
.bnr-3 p {
  color: #333;
}


/* banner-4 */
.bnr-4 .bnr-content {
  top: 30%;
  right: 5%;
  width: 40%;
  text-align: right;
}

.bnr-4 h3,
.bnr-4 p {
  color: #fff;
}

/* banner-5 */
.bnr-5 .bnr-content {
  top: 40%;
  left: 8%;
  width: 30%;
}

.bnr-5 h3,
.bnr-5 p {
  color: #333;
}

/* banner-6 */
.bnr-6 .bnr-content {
  top: 38%;
  left: 8%;
  width: 30%;
}

.bnr-6 h3,
.bnr-6 p {
  color: #fff;
}

/* banner-7 */
.bnr-7 .bnr-content {
  top: 50%;
  right: 8%;
  width: 30%;
  text-align: right;
}

.bnr-7 h3,
.bnr-7 p {
  color: #333;
}

@media screen and (max-width: 768px) {
  img.bnr-logo {
    width: 120px;
  }

  .bnr-1 .bnr-content {
    top: 60%;
    width: 80%;
  }

  .bnr-1 h3 {
    margin: 0 0 5px 0;
    line-height: 20px;
    font-size: 16px;
  }

  .bnr-1 p {
    line-height: 16px;
    font-size: 12px;
  }

  .bnr-2 .bnr-content {
    width: 80%;
  }

  .bnr-2 h3 {
    margin: 0 0 5px 0;
    line-height: 20px;
    font-size: 16px;
  }

  .bnr-2 p {
    line-height: 16px;
    font-size: 12px;
  }

  .bnr-3 .bnr-content {
    width: 80%;
    right: 2%;
  }

  .bnr-3 h3 {
    margin: 0 0 5px 0;
    line-height: 20px;
    font-size: 16px;
  }

  .bnr-3 p {
    line-height: 16px;
    font-size: 12px;
  }

  .bnr-4 .bnr-content {
    top: 50%;
    width: 70%;
  }

  .bnr-4 h3 {
    margin: 0 0 5px 0;
    line-height: 20px;
    font-size: 16px;
  }

  .bnr-4 p {
    line-height: 16px;
    font-size: 12px;
  }

  .bnr-5 .bnr-content {
    width: 80%;
  }

  .bnr-5 h3 {
    margin: 0 0 5px 0;
    line-height: 20px;
    font-size: 16px;
  }

  .bnr-5 p {
    line-height: 16px;
    font-size: 12px;
  }

  .bnr-6 .bnr-content {
    width: 80%;
  }

  .bnr-6 h3 {
    margin: 0 0 5px 0;
    line-height: 20px;
    font-size: 16px;
  }

  .bnr-6 p {
    line-height: 16px;
    font-size: 12px;
  }
  
  .bnr-7 .bnr-content {
    width: 80%;
  }

  .bnr-7 h3 {
    margin: 0 0 5px 0;
    line-height: 20px;
    font-size: 16px;
  }

  .bnr-7 p {
    line-height: 16px;
    font-size: 12px;
  }
}



/* product infomation */
.pro-info {
  width: 90%;
  padding: 60px 0;
  margin: 0 auto;
}

.pro-info > img {
  display: block;
  width: 100%;
}

.pro-info-content {
  display: flex;
  flex-direction: row;
  justify-content: space-between;
  margin: auto;
}

.pro-info-list {
  width: 50%;
  margin: 40px 0 0 0;
  padding: 0;
}

.pro-info-list h4 {
  margin: 0 0 10px 0;
  font-size: 20px;
  font-weight: normal;
}

.pro-info-list li {
  list-style: none;
  margin: 5px 0;
  line-height: 24px;
  font-size: 16px;
}

.pro-info-list li::before {
  content: "· ";
}

@media screen and (max-width: 768px) {
  .pro-info {
    flex-direction: column;
    padding: 20px 0;
  }

  .pro-info-content {
    flex-direction: column;
    width: 90%;
  }

  .pro-info-list {
    width: 100%;
    margin: 20px 0 0 0;
  }

  .pro-info-list h4 {
    line-height: 22px;
    font-size: 18px;
  }

  .pro-info-list li {
    margin: 5px 0;
    line-height: 18px;
    font-size: 14px;
  }
}


.sh-type {
  width: 80%;
  margin: 0 auto;
  padding: 60px 0;
}

.sh-type h3 {
  margin: 0 0 40px 0;
  line-height: 32px;
  font-size: 28px;
  font-weight: normal;
}

.sh-type-list {
  display: flex;
  flex-direction: row;
  justify-content: space-between;
}

.sh-type-item {
  display: flex;
  flex-direction: column;
  align-items: center;
  width: calc((100% - 40px) / 3 );
}

.sh-type-item img {
  display: block;
  width: 100%;
}

.sh-type-item span {
  margin: 20px 0;
  font-weight: bold;
  font-size: 18px;
}

.sh-type-item p {
  margin: 0;
  text-align: center;
  line-height: 24px;
  font-size: 16px;
}

@media screen and (max-width: 768px) {
  .sh-type {
    padding: 20px 0;
  }

  .sh-type h3 {
    margin: 0 0 20px 0;
    line-height: 28px;
    font-size: 24px;
  }

  .sh-type-list {
    flex-direction: column;
  }

  .sh-type-item {
    width: 100%; 
    margin-bottom: 10px;
  }

  .sh-type-item span {
    margin: 10px 0;
    font-size: 16px;
  }

  .sh-type-item p {
    line-height: 18px;
    font-size: 14px;
  }
}