@charset "UTF-8";
.mainArea.successPage {
  height: calc(100vh - 300px);
  min-height: 500px;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-pack: center;
      -ms-flex-pack: center;
          justify-content: center;
  padding: 60px 0;
  text-align: center;
}
.mainArea.successPage .successTxt {
  color: #0096e0;
  font-size: 35px;
  font-weight: 500;
  line-height: 1.3;
}

.contentBox .leftBox {
  padding: 0 50px 0 0;
}
@media (max-width: 1023px) {
  .contentBox .leftBox {
    padding: 0 0 30px 0;
  }
}
.contentBox .rightBox {
  padding: 0;
}

.side_contactInfo {
  margin-top: 20px;
}

.btnStyle {
  width: 250px;
}
.btnStyle .btnBox {
  position: relative;
  border-radius: 10px;
  height: 60px;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  margin-top: 0;
  -webkit-transition: all 0.5s ease-in-out;
  transition: all 0.5s ease-in-out;
  overflow: hidden;
}
@media (max-width: 450px) {
  .btnStyle .btnBox {
    width: 200px;
  }
}
.btnStyle .btnBox::after {
  content: "";
  position: absolute;
  opacity: 1;
  display: block;
  width: 300%;
  height: 100%;
  top: 0;
  left: 0;
  background: -webkit-gradient(linear, left top, right top, from(rgb(0, 150, 224)), color-stop(35%, rgb(232, 29, 33)), color-stop(35%, rgb(232, 29, 33)), color-stop(50%, rgb(0, 150, 224)), color-stop(60%, rgb(0, 150, 224)), to(rgb(119, 225, 98)));
  background: linear-gradient(90deg, rgb(0, 150, 224) 0%, rgb(232, 29, 33) 35%, rgb(232, 29, 33) 35%, rgb(0, 150, 224) 50%, rgb(0, 150, 224) 60%, rgb(119, 225, 98) 100%);
  border-radius: 10px;
  -webkit-transition: all 0.5s ease-in-out;
  transition: all 0.5s ease-in-out;
  -webkit-transform: translateX(-50%);
          transform: translateX(-50%);
}
.btnStyle .btnBox a {
  position: relative;
  width: 100%;
  color: #fff;
  padding-right: 80px;
  font-size: 14px;
  font-weight: 400;
}
.btnStyle .btnBox a::before {
  content: "";
  position: absolute;
  position: absolute;
  display: block;
  right: 60px;
  top: 50%;
  -webkit-transform: translateY(-50%);
          transform: translateY(-50%);
  width: 1px;
  height: 40px;
  background-color: #fff;
}
.btnStyle .btnBox a::after {
  content: "";
  position: absolute;
  position: absolute;
  display: block;
  right: 25px;
  top: 50%;
  -webkit-transform: translateY(-50%);
          transform: translateY(-50%);
  width: 10px;
  border-left: 10px solid #fff;
  border-top: 5px solid transparent;
  border-bottom: 5px solid transparent;
}
@media (min-width: 1181px) {
  .btnStyle .btnBox a:hover {
    color: #fff;
    background-color: transparent;
  }
  .btnStyle .btnBox a:hover::after {
    content: "";
    position: absolute;
    opacity: 1;
  }
}
@media (min-width: 1181px) {
  .btnStyle .btnBox:hover::after {
    -webkit-transform: translateX(0%);
            transform: translateX(0%);
  }
}

/*感謝資訊*/
.thankInfo {
  margin-bottom: 25px;
  padding: 0 0 20px 0;
  border-bottom: 1px solid rgba(0, 0, 0, 0.1);
  font-size: 14px;
  color: #2f2f2f;
  line-height: 1.8;
}