* {
  padding: 0;
  margin: 0;
  box-sizing: border-box;
  font-family: "Noto Sans TC", sans-serif;
}

html {
  height: 100%;
  overflow: hidden;
}

body {
  position: relative;
  height: 100%;
  overflow: auto;
}

ul {
  list-style: none;
}

img.orange {
  position: fixed;
  right: 0;
  z-index: -1;
  width: 55vw;
  height: 2400px;
}

header {
  padding: 2rem;
}
header nav {
  width: 100%;
}
header nav ul {
  width: 60%;
  display: flex;
  list-style-type: none;
  justify-content: start;
  gap: 5rem;
}
header nav ul li a {
  font-size: 1.5rem;
  color: black;
  text-decoration: none;
}
header nav ul li a.active {
  color: #e08958;
}

main {
  display: flex;
  flex-wrap: wrap;
}
main section.left {
  flex: 3 1 50%;
  padding: 2rem;
}
main section.left h1 {
  font-size: 4rem;
  color: #e08958;
}
main section.left p {
  font-size: 1.5rem;
  padding: 1rem 0;
}
main section.right {
  flex: 1 1 50%;
  position: relative;
}
main section.right img {
  border-radius: 50%;
  width: 20vw;
  height: 20vw;
  position: absolute;
  top: 50%;
  right: 25vw;
  transform: translateY(-50%);
  -o-object-fit: cover;
     object-fit: cover;
}
main section.table {
  flex: 3 1 500px;
  padding: 3rem;
}
main section.table table {
  border-collapse: collapse;
}
main section.table table tr {
  position: relative;
  border-bottom: 2px solid gray;
  background: transparent;
}
main section.table table tr td {
  padding: 2rem;
}
main section.table table tr::after {
  content: "";
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background: linear-gradient(to right, rgba(250, 182, 143, 0.5) 0%, rgba(250, 182, 143, 0) 80%);
  opacity: 0;
  transition: opacity 0.4s ease-in-out;
  z-index: -1;
}
main section.table table tr:hover::after {
  opacity: 1;
}
main td.icon img {
  width: 48px;
  height: 48px;
}
main section.picture {
  flex: 1 1 600px;
  position: relative;
}
main section.picture img {
  height: 100%;
}
main section.picture div.orangeRect {
  width: 30vw;
  height: 50vw;
  background-color: #e08958;
  position: absolute;
  top: 70px;
  left: 60px;
  z-index: -1;
}
main section.form {
  flex: 1 1 600px;
}
main section.form form {
  min-height: 70vh;
  display: flex;
  flex-direction: column;
  justify-content: space-around;
  padding: 0.5rem;
}
main section.form form div {
  margin: 0.5rem;
}
main section.form form div label {
  font-size: 1.5rem;
}
main section.form form div input,
main section.form form div textarea {
  background-color: #f9ac7f;
  color: #fff;
  font-size: 1.25rem;
  padding: 0.5rem 0.25rem;
  border: none;
  width: 80%;
  resize: none;
}
main section.form form div textarea {
  vertical-align: top;
}
main section.form form button {
  align-self: center;
  font-size: 1.5rem;
  border-radius: 0.75rem;
  padding: 0.75rem 1.5rem;
  border: none;
  background-color: #f9ac7f;
  color: #fff;
  cursor: pointer;
}
main div.line {
  background-color: gray;
  width: 3px;
}
main section.contact {
  flex: 1 1 500px;
  display: flex;
  align-items: center;
  padding: 2rem;
}
main section.contact div.content h2 {
  margin: 1rem 0rem;
}

footer a {
  padding: 1rem;
}

/*scrollbar setting*/
::-webkit-scrollbar {
  width: 10px;
}

/* Track */
::-webkit-scrollbar-track {
  background: #f1f1f1;
}

/* Handle */
::-webkit-scrollbar-thumb {
  background: #888;
}

/* Handle on hover */
::-webkit-scrollbar-thumb:hover {
  background: #555;
}

@media screen and (max-width: 1100px) {
  div.orange {
    opacity: 0.5;
  }
  header nav ul {
    width: 100%;
    flex-direction: column;
  }
  header nav ul li {
    padding: 1rem 0;
    border-bottom: 2px solid gray;
  }
  main section.left h1 {
    color: black;
  }
  main section.right {
    display: flex;
    justify-content: center;
    align-items: center;
    margin: 1rem;
  }
  main section.right img {
    position: static;
    transform: none;
    width: 50vw;
    height: 50vw;
  }
  main section.picture {
    display: flex;
    justify-content: center;
    align-items: center;
  }
  main section.picture img {
    height: 60vw;
  }
  main section.picture div.orangeRect {
    display: none;
  }
  main div.line {
    display: none;
  }
  footer {
    display: flex;
    justify-content: center;
    align-items: center;
  }
}/*# sourceMappingURL=style.css.map */