body {
  font-family: "Noto Sans CJK TC", Arial, sans-serif;
  box-sizing: border-box;
  background-color: #cce4e5;
}

.title {
  width: 1200px;
  padding: 20px 0;
  border-radius: 30px;
  margin: 20px auto;
  text-align: center;
}
.title img {
  width: 100%;
}

.title_m {
  display: none;
}

.wrapper {
  width: 1200px;
  background-color: rgb(255, 255, 255);
  border-radius: 50px;
  margin: 20px auto;
}
.wrapper .line {
  width: 96%;
  border: 0;
  border-top: 1px dashed #a2a9b6;
  margin: 0 auto;
}
.wrapper .box1 {
  display: flex;
  flex-direction: row;
  padding: 50px 20px;
}
.wrapper .box1 .pic img {
  width: 100%;
}
.wrapper .box1 .text {
  width: 50%;
  padding-left: 15px;
}
.wrapper .box1 .text h3 {
  font-size: 1.5rem;
  font-weight: 500;
  line-height: 2rem;
  padding-bottom: 20px;
}
.wrapper .box1 .text ul li {
  list-style-type: disc;
  margin-left: 1.5rem;
  line-height: 1.5rem;
  margin-bottom: 10px;
}
.wrapper .box2 {
  display: flex;
  flex-direction: row-reverse;
  padding: 50px 20px;
}
.wrapper .box2 .pic img {
  width: 100%;
}
.wrapper .box2 .text {
  width: 50%;
  padding-right: 15px;
}
.wrapper .box2 .text h3 {
  font-size: 1.5rem;
  font-weight: 500;
  line-height: 2rem;
  padding-bottom: 20px;
}
.wrapper .box2 .text ul li {
  list-style-type: disc;
  margin-left: 1.5rem;
  line-height: 1.5rem;
  margin-bottom: 10px;
}

footer {
  background: black;
  width: 100%;
  height: 80px;
  margin-top: 50px;
}
footer ul {
  width: auto;
  display: flex;
  flex-direction: row;
  justify-content: center;
  align-items: center;
}
footer ul li {
  font-size: small;
  letter-spacing: 1px;
  color: #FFFFFF;
  width: auto;
  display: flex;
  flex-direction: row;
  justify-content: center;
  align-items: center;
}
footer ul .bottom_logo {
  width: 200px;
  height: 80px;
}
footer ul .bottom_logo img {
  width: 75%;
  margin: 0 auto;
}

@media screen and (max-width: 1024px) {
  .title {
    width: 90%;
  }
  .title img {
    width: 100%;
  }
  .wrapper {
    width: 90%;
  }
  .wrapper .box1, .wrapper .box2 {
    flex-direction: column;
  }
  .wrapper .box1 .text, .wrapper .box2 .text {
    width: 100%;
    padding-left: 0px;
    margin-top: 20px;
  }
}
@media screen and (max-width: 768px) {
  .title {
    display: none;
  }
  .title_m {
    display: block;
    width: 96%;
    margin: 10px auto;
  }
  .title_m img {
    width: 100%;
  }
  .wrapper {
    width: 96%;
    border-radius: 20px;
  }
  .wrapper .box1, .wrapper .box2 {
    flex-direction: column;
    padding: 20px 10px;
  }
  .wrapper .box1 .text, .wrapper .box2 .text {
    width: 100%;
    padding-left: 0px;
    margin-top: 20px;
  }
  .wrapper .box1 .text h3, .wrapper .box2 .text h3 {
    font-size: 1.3rem;
    line-height: 1.8rem;
    padding-bottom: 20px;
  }
  .wrapper .box1 .text ul li, .wrapper .box2 .text ul li {
    margin-left: 1.5rem;
    line-height: 1.5rem;
    margin-bottom: 0px;
  }
  footer ul {
    width: 95%;
    margin: 0 auto;
    display: flex;
  }
  footer ul li {
    font-size: x-small;
    letter-spacing: 0px;
    color: #8f8d8d;
    line-height: 1.5rem;
  }
  footer ul li a {
    text-align: center;
  }
  footer ul .bottom_logo {
    width: 240px;
  }
  footer ul .bottom_logo img {
    width: 80%;
  }
}/*# sourceMappingURL=layout.css.map */