.banner-container {
  width: 100%;
}

.banner-container > img {
  width: 100%;
  object-fit: cover;
}

.selection-container {
  width: 80%;
  min-height: 6.25rem;
  margin-left: 10%;
  margin-right: 10%;
  display: flex;
  flex-direction: row;
  justify-content: space-between;
  flex-wrap: wrap;
  align-items: center;
  border-bottom: 1px solid rgb(238, 238, 238);
}

.selection-items {
  display: flex;
  flex-direction: row;
  align-items: center;
  height: 100%;
  user-select: none;
  min-height: 6.25rem;
}

.selection-item {
  display: flex;
  align-items: center;
  cursor: pointer;
  border-bottom: 3px solid transparent;
  min-height: 6.25rem;
}

.selection-item:not(:last-child) {
  margin-right: 5rem;
}

.selection-item:hover {
  border-bottom: 3px solid rgb(253, 115, 32);
}

.selection-location {
  display: flex;
  flex-direction: row;
  align-items: center;
  user-select: none;
}

.selection-img {
  margin-right: 1.25rem;
  width: .9375rem;
  height: 1.3125rem;
}

.selection-img > img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.selection-text {
  display: flex;
  flex-direction: row;
  align-items: center;
  user-select: none;
}

.selection-text > div:not(.divide) {
  cursor: pointer;
}

.selection-text > div:not(.divide):hover {
  color: rgb(253, 115, 32);
}


.selection-text > div:not(:last-child) {
  margin-right: .5rem;
}

@media screen and (max-width: 1200px) {
  .selection-items {
    flex-wrap: wrap;
    margin-top: 1.25rem;
  }

  .selection-item {
    font-size: 2rem;
    margin-bottom: 1.25rem;
  }

  .selection-text {
    font-size: 2rem;
  }

  .selection-img {
    margin-right: 1.25rem;
    width: 1.875rem;
    height: 2.625rem;
    margin-top: 1.25rem;
    margin-bottom: 1.25rem;
  }
  
  .selection-img > img {
    width: 100%;
    height: 100%;
    object-fit: cover;
  }
}

@media screen and (max-width: 666px) {
  .selection-item {
    font-size: 2.5rem;
  }

  .selection-text {
    font-size: 2.5rem;
  }
}

.members-container {
  width: 80%;
  margin-left: 10%;
  margin-right: 10%;
  margin-top: 3.75rem;
  margin-bottom: 6.25rem;
  display: flex;
  flex-direction: column;
  align-items: center;
}

.members-title {
  font-size: 2.5rem;
  font-family: "SourceHanSansSC";
  color: rgb(51, 51, 51);
  font-weight: bold;
  margin-bottom: 5rem;
}

.members-title > span {
  color: rgb(253, 115, 32);
}

.members-box {
  display: flex;
  flex-direction: row;
  width: 100%;
}

.members-list {
  position: relative;
  width: 60%;
  min-height: 31.25rem;
}

.members-list-item {
  display: flex;
  flex-direction: row;
  width: 100%;
  border-bottom: 1px solid rgb(238, 238, 238);
  padding-top: 2.5rem;
  padding-bottom: 2.5rem;
  cursor: pointer;
}

.members-list-item:hover > .members-list-item-title {
  transition: all .2s;
  color: rgb(253, 115, 32);
}

.members-list-item-active > .members-list-item-title {
  color: rgb(253, 115, 32);
}

.members-list-item-title {
  flex: 0.7;
  font-size: 1.375rem;
  font-family: "SourceHanSansSC";
  color: rgb(51, 51, 51);
  font-weight: bold;
  display: flex;
  align-items: center;
  border-right: 2px solid rgb(168, 168, 168);
}

.members-list-item-contact { 
  flex: 1;
  padding-left: 1.625rem;
  display: flex;
  flex-direction: column;
  align-content: center;
}

.members-list-item-contact-phone {
  width: 100%;
  display: flex;
  flex-direction: row;
  align-content: center;
}

.members-list-item-contact-phone > img {
  color: rgb(253, 115, 32);
  height: 100%;
  margin-right: 1.25rem;
}

.members-list-item-contact-phone > span {
  display: flex;
  align-items: center;
  height: 100%;
  font-size: .875rem;
  font-family: "SourceHanSansSC";
  color: rgb(51, 51, 51);
}

.members-list-item-contact-email {
  width: 100%;
  display: flex;
  flex-direction: row;
  align-items: center;
}

.members-list-item-contact-email > img {
  color: rgb(253, 115, 32);
  height: 100%;
  margin-right: 1.25rem;
}

.members-list-item-contact-email > span {
  display: flex;
  align-items: center;
  height: 100%;
  font-size: .875rem;
  font-family: "SourceHanSansSC";
  color: rgb(51, 51, 51);
}

.member-list-item-address, .member-list-item-address-x, .member-list-item-address-y {
  display: none;
}

.members-map {
  width: 40%;
  min-height: 31.25rem;
}

.members-map > div {
  width: 100%;
  height: 100%;
}

.amap-info {
  width: 35rem;
}

.amap-info-content {
  color: white;
  background-color: rgb(254, 108, 34);
}

.amap-info-sharp {
  border-top: 8px solid rgb(254, 108, 34) !important;
}

@media screen and (max-width: 1400px) {
  .members-list {
    width: 65%;
  }

  .members-map {
    width: 35%;
  }
}

@media screen and (max-width: 1210px) {
  .members-title {
    font-size: 4rem;
  }

  .members-box {
    flex-wrap: wrap;
  }
  
  .members-list {
    width: 33%;
  }

  .members-map {
    width: 67%;
  }

  .members-list-item-title {
    border-right: 0px;
  }

  .members-list-item-contact {
    display: none;
  }
}

@media screen and (max-width: 1005px) {
  .members-list {
    width: 100%;
    display: flex;
    flex-direction: row;
    flex-wrap: wrap;
    justify-content: space-between;
  }

  .members-list-item {
    width: 33%;
    justify-content: center;
    text-align: center;
  }

  .members-map {
    width: 100%;
  }
}

@media screen and (max-width: 888px) {
  .members-list-item {
    width: 50%;
  }

  .members-list-item-title {
    font-size: 1.75rem;
  }  

  .members-map {
    min-height: 50rem;
  }
}

.contactus-container {
  width: 80%;
  padding-left: 10%;
  padding-right: 10%;
  padding-top: 5rem;
  padding-bottom: 6.25rem;
  display: flex;
  flex-direction: column;
  align-items: center;
  background-color: rgb(249, 251, 254);
}

.contactus-title {
  font-size: 2.5rem;
  font-family: "SourceHanSansSC";
  color: rgb(51, 51, 51);
  font-weight: bold;
  margin-bottom: 5rem;
}

.contactus-title > span {
  color: rgb(253, 115, 32);
}

.contactus-box {
  display: flex;
  flex-direction: row;
  flex-wrap: wrap;
  justify-content: space-between;
  width: 80%;
}

.contactus-input-box {
  width: 45%;
  display: flex;
  flex-direction: column;
  margin-bottom: 3.5rem;
}

.contactus-textarea-container {
  width: 100%;
}

.contactus-submit-btn {
  display: inline-block;
  width: 11.5rem;
  height: 3.5rem;
  background-color: rgb(253, 115, 32);
  display: flex;
  justify-content: center;
  align-items: center;
  color: white;
  cursor: pointer;
  user-select: none;
  font-size: 1rem;
}

.contactus-label {
  font-size: .875rem;
  font-family: "SourceHanSansSC";
  color: rgb(102, 102, 102);
  margin-bottom: 1rem;
}

.contactus-editbox-box {
  height: 3.5rem;
  width: 100%;
  position: relative;
}

.contactus-editbox-box > img {
  position: absolute;
  left: 2%;
  height: 40%;
  top: 32%;
}

.contactus-editbox {
  height: 3.5rem;
  width: 100%;
  padding-left: 8%;
  border: 1px solid rgb(230, 230, 230);
  background-color: rgb(255, 255, 255);
  font-size: 1rem;
}

.contactus-textarea-container {
  width: 100%;
  display: flex;
  flex-direction: column;
  margin-bottom: 3.5rem;
}

.contactus-textarea-box {
  height: 15.625rem;
  width: 100%;
  position: relative;
}

.contactus-textarea-box > img {
  position: absolute;
  height: 10%;
  padding: 1%;
}

.contactus-textarea {
  height: 15.625rem;
  width: 100%;
  padding: 1.3%;
  padding-left: 4%;
  border: 1px solid rgb(230, 230, 230);
  background-color: rgb(255, 255, 255);
  font-size: 1rem;
}

@media screen and (max-width: 1200px) {
  .contactus-title {
    font-size: 4rem;
  }

  .contactus-input-box {
    width: 100%;
  }

  .contactus-label {
    font-size: 1.5rem;
  }

  .contactus-editbox-box {
    height: 5rem;
  }

  .contactus-editbox {
    height: 5rem;
    font-size: 1.5rem;
  }

  .contactus-textarea {
    width: 100%;
    font-size: 1.5rem;
    padding: 2%;
    padding-left: 8%;
  }

  .contactus-textarea-box > img {
    position: absolute;
    height: 13%;
    padding: 2%;
  }

  .contactus-submit-btn {
    width: 18rem;
    height: 6rem;
    font-size: 1.5rem;
  }  
}

@media screen and (max-width: 888px) {
  .contactus-editbox-box {
    height: 6.5rem;
  }

  .contactus-editbox {
    height: 6.5rem;
    font-size: 2rem;
  }

  .contactus-textarea {
    font-size: 2rem;
    padding: 2%;
    padding-left: 8%;
  }

  .contactus-textarea-box > img {
    position: absolute;
    height: 15%;
    padding: 2.2%;
  }
}