@import url("https://fonts.googleapis.com/css?family=Muli:300");
@import url("https://fonts.googleapis.com/css?family=Crimson+Text");
.top .bg {
  background-image: url("../images/future/top1.jpg");
  background-position: 30%;
}
.top-slogn {
  position: fixed;
  left: 10%;
  top: 80%;
  color: #fff;
  z-index: 10;
}
.top-slogn1-name {
  font-size: 40px;
}

.smart {
  max-width: unset;
  width: 80%;
  padding: 80px 0;
}
.smart-title {
  color: #000;
  font-size: 34px;
}
.smart-slogn {
  color: #000;
  font-size: 20px;
  padding: 20px 0 30px;
}
.smart-box {
  display: flex;
  flex-wrap: wrap;
  justify-content: space-between;
  align-items: stretch;
}
.smart-list {
  width: 45%;
  padding: 20px 0;
}
.smart-tbox {
  display: flex;
  align-items: center;
  padding-bottom: 20px;
}
.smart-pic {
  width: 70px;
  height: 70px;
  padding-right: 20px;
}
.smart-pic img {
  width: 100%;
}
.smart-stitle {
  color: #5a3e8c;
  font-size: 24px;
}
.smart-sstitle {
  font-weight: 600;
  padding-top: 10px;
}
.smart-content {
  padding-left: 55px;
  margin-left: 35px;
  border-left: 1px solid #ccc;
}
.smart ol {
  list-style-type: decimal;
  padding-left: 20px;
}
.smart li {
  padding-bottom: 10px;
}

.future-box {
  display: flex;
  justify-content: center;
  align-items: center;
  flex-direction: row-reverse;
}
.future-content {
  width: 50%;
  padding: 8%;
  box-sizing: border-box;
  background: #5a3e8c;
  color: #fff;
}
.future-pic {
  width: 50%;
  padding: 0 5%;
  box-sizing: border-box;
}
.future-pic img {
  width: 100%;
}
.future-title {
  font-size: 32px;
  padding-bottom: 30px;
}
.future ul {
  list-style-type: circle;
  padding-left: 20px;
}
.future li {
  padding-bottom: 20px;
}
.future .mar {
  margin-right: 20px;
}
.future .com {
  padding: 0 40px;
  position: relative;
  display: inline-block;
}
.future .com:before {
  content: "";
  position: absolute;
  top: 15px;
  left: 0;
  background: #fff;
  width: 20px;
  height: 1px;
  padding-right: 10px;
}
.future .com:after {
  content: "";
  position: absolute;
  top: 15px;
  right: 0;
  background: #fff;
  width: 20px;
  height: 1px;
  padding-right: 10px;
}

.join-pic {
  height: 500px;
  background: url("../images/future/f2.jpg");
  background-attachment: fixed;
  background-size: cover;
  background-position: center;
}
.join-title {
  text-align: center;
  font-size: 34px;
  color: #000;
  padding: 50px 0;
}
.join-text {
  text-align: center;
  max-width: 80%;
  margin: auto;
}

form {
  width: 80%;
  max-width: 1400px;
  padding: 80px 0;
  margin: auto;
}
form .form-box {
  display: flex;
  justify-content: space-around;
}
form ul {
  width: 35%;
}
form li {
  padding-bottom: 20px;
}
form label {
  width: 100%;
  color: #000;
}
form label span {
  color: red;
}
form input {
  width: 100%;
  border: none;
  border-bottom: 1px solid #ccc;
  margin-top: 8px;
  font-family: Muli, "Microsoft JhengHei", Helvetica, Arial, sans-serif;
}
form textarea {
  width: 100%;
  resize: none;
  margin-top: 8px;
  border: 1px solid #ccc;
  font-family: Muli, "Microsoft JhengHei", Helvetica, Arial, sans-serif;
}
form .cdout {
  display: flex;
  align-items: center;
}
form .cd {
  width: 15%;
  margin: 0 3% 0 calc(30% / 4);
  display: inline-block;
}
form .cdpic {
  display: inline-block;
}
form .cdbox {
  display: flex;
  align-items: center;
  justify-content: center;
}
form .cdbox img {
  margin: 0 10px;
}
form .sd {
  width: 85%;
  text-align: center;
  padding: 20px 0;
  margin: 30px auto 0;
}

.smart-list,
.future-pic {
  opacity: 0;
  -moz-transform: translateX(80px);
  -ms-transform: translateX(80px);
  -webkit-transform: translateX(80px);
  transform: translateX(80px);
  -moz-transition: opacity 2s, -moz-transform 1.5s;
  -o-transition: opacity 2s, -o-transform 1.5s;
  -webkit-transition: opacity 2s, -webkit-transform 1.5s;
  transition: opacity 2s, transform 1.5s;
}
.smart-list.show,
.future-pic.show {
  opacity: 1;
  -moz-transform: translateX(0);
  -ms-transform: translateX(0);
  -webkit-transform: translateX(0);
  transform: translateX(0);
}

.future-content {
  opacity: 0;
  -moz-transform: translateX(-80px);
  -ms-transform: translateX(-80px);
  -webkit-transform: translateX(-80px);
  transform: translateX(-80px);
  -moz-transition: opacity 2s, -moz-transform 1.5s;
  -o-transition: opacity 2s, -o-transform 1.5s;
  -webkit-transition: opacity 2s, -webkit-transform 1.5s;
  transition: opacity 2s, transform 1.5s;
}
.future-content.show {
  opacity: 1;
  -moz-transform: translateX(0);
  -ms-transform: translateX(0);
  -webkit-transform: translateX(0);
  transform: translateX(0);
}

.join-text {
  opacity: 0;
  -moz-transition: opacity 1s;
  -o-transition: opacity 1s;
  -webkit-transition: opacity 1s;
  transition: opacity 1s;
}
.join-text.show {
  opacity: 1;
}

form {
  opacity: 0;
  -moz-transform: translateY(80px);
  -ms-transform: translateY(80px);
  -webkit-transform: translateY(80px);
  transform: translateY(80px);
  -moz-transition: opacity 2s, -moz-transform 1.5s;
  -o-transition: opacity 2s, -o-transform 1.5s;
  -webkit-transition: opacity 2s, -webkit-transform 1.5s;
  transition: opacity 2s, transform 1.5s;
}
form.show {
  opacity: 1;
  -moz-transform: translateY(0);
  -ms-transform: translateY(0);
  -webkit-transform: translateY(0);
  transform: translateY(0);
}

@media screen and (max-width: 1600px) {
  .future-content {
    padding: 5%;
  }
}
@media screen and (max-width: 1200px) {
  .future-box {
    display: block;
  }
  .future-pic {
    width: 70%;
    margin: auto;
    padding: 0 0 30px;
  }
  .future-content {
    width: 100%;
    padding: 5% 10%;
  }

  form {
    justify-content: space-between;
  }
  form ul {
    width: 45%;
  }
  form .cd {
    margin: 0 3% 0 calc(10% /4);
    width: 20%;
  }
  form .sd {
    width: 95%;
  }
}
@media screen and (max-width: 1100px) {
  .smart-box {
    display: block;
  }
  .smart-list {
    width: 100%;
  }

  form .form-box {
    justify-content: space-between;
  }
  form .cd {
    margin: 0 2% 0 0;
  }
  form .sd {
    width: 100%;
  }

  .join-pic {
    background-attachment: unset;
  }
}
@media screen and (max-width: 860px) {
  .future-pic {
    width: 90%;
  }
  .future-content {
    padding: 10%;
  }

  .join-text {
    text-align: left;
  }

  form {
    padding: 0 0 80px;
  }
  form .form-box {
    display: block;
    padding: 50px 0;
  }
  form ul {
    width: 100%;
  }
  form .form-box {
    padding: 50px 0 0;
  }
  form .cd {
    width: 100%;
  }
}
@media screen and (max-width: 640px) {
  .smart {
    padding: 50px 0 30px;
  }
  .smart-pic {
    width: 50px;
    height: 50px;
  }
  .smart-tbox {
    align-items: unset;
  }
  .smart-tb {
    width: calc(100% - 50px);
  }
  .smart-content {
    padding-left: 40px;
    margin-left: 25px;
  }

  .join-pic {
    height: 300px;
  }
}
@media screen and (max-width: 460px) {
  .top-slogn1-name {
    font-size: 34px;
  }

  .smart-title {
    font-size: 30px;
  }
  .smart-slogn {
    font-size: 18px;
    padding: 20px 0;
  }
  .smart-tbox {
    display: block;
  }
  .smart-tb {
    margin-left: 5px;
    width: 100%;
  }
  .smart-pic {
    padding-bottom: 10px;
  }
  .smart-content {
    padding-left: 20px;
    margin-left: 5px;
  }
  .smart-stitle {
    font-size: 22px;
  }

  .future-title {
    font-size: 30px;
  }

  .join-title {
    font-size: 30px;
  }
}
