﻿
.contact-box{
    width: 100%;
    display: block;
    position: relative;
}
.contact-line-box{
    width: 100%;
    height: 47px;
    display: block;
    background-repeat: no-repeat;
    background-size: cover;
    background-position: top;
    position: relative;
    z-index: 3;
    pointer-events: none;
    background-image: url('../img/border.png');
}
.contact-bg-box{
    width: 100%;
    height: 100%;
    display: block;
    background-repeat: no-repeat;
    background-size: cover;
    background-position: center;
    background-image: url('../img/contact-bg.jpg');
    position: absolute;
    top: 0;
    transition: all .3s linear;
}
.contact-info-box{
    width: 600px;
    max-width: 100%;
    display: block;
    margin: 0 auto;
    position: relative;
    z-index: 9;
    padding: 40px 0;
}
.contact-info-title{
    font-size: 60px;
    color: #FFF;
    text-align: center;
    display: block;
    letter-spacing: 4px;
    padding: 20px 0;
}
.contact-list-box{
    width: 100%;
    display: block;
}
.contact-list-box li{
    list-style: none;
}
.contact-list{
    width: 100%;
    display: block;
    overflow: hidden;
    border-radius: 5px;
    font-size: 0;
    background-color: #FFF;
    margin-bottom: 30px;
}
.contact-list-input{
    width: calc(100% - 100px);
    display: block;
    float: right;
    vertical-align: middle;
    height: 46px;
    font-size: 18px;
    letter-spacing: 2px;
    padding-left: 10px;
    box-sizing: border-box;
    border: 0;
    border-left: 1px solid #a0a0a0;
    outline: none;
}
.contact-list-label{
    font-size: 18px;
    text-align: center;
    vertical-align: middle;
    display: block;
    float: left;
    width: 100px;
    height: 46px;
    line-height: 46px;
    transition: all .3s linear;
}
.contact-list-box li:nth-child(4) .contact-list-label{
    height: 150px;
    line-height: 150px;
}
.contact-list-textarea{
    width: calc(100% - 100px);
    display: block;
    float: right;
    vertical-align: middle;
    height: 150px;
    resize: none;
    font-size: 18px;
    letter-spacing: 2px;
    padding-left: 10px;
    box-sizing: border-box;
    border: 0;
    border-left: 1px solid #a0a0a0;
    outline: none;
}
.button input{
  width: 200px;
  height: 46px;
  display: block;
  margin: 0 auto;
  background-color: #1b1b1b;
  font-size: 18px;
  color: #FFF;
  font-family: "微軟正黑體";
  letter-spacing: 1px;
  transition: all .3s linear;
  border: 0;
  border-radius: 5px;
  -webkit-tap-highlight-color: transparent;
  -webkit-appearance: none;
  transition: all .3s linear;
  cursor: pointer;
}
.button{
  padding: 20px 0;
}
.contact-list-textarea,
.contact-list-input{
  text-align: left;
}
/*表單送出*/
.contact-thanks-box{
  width: 100%;
  height: 100vh;
  display: none;
  position: fixed;
  z-index: 9;
  top: 0;
  left: 0;
}
.contact-thanks-box.active{
  -webkit-align-items: center;
          align-items: center;
    -webkit-justify-content: center;
          justify-content: center;
    display: -webkit-flex;
    display:         flex;
}
.contact-thanks{
  background-color:#ed7102;
  position: relative;
  padding: 80px;
  border-radius: 20px;
  z-index: 6;
}
.contact-thanks-p{
  font-size: 26px;
  line-height: 1.6;
  letter-spacing: 2px;
  font-weight: bold;
  color: #FFF;
  display: block;
}
.contact-out{
  width: 20px;
  height: 20px;
  max-width: 100%;
  display: block;
  position: absolute;
  border-radius: 50%;
  border: 1px solid #FFF;
  top: 4%;
  right: 4%;
  cursor: pointer;
}
.contact-out span{
  width: 15px;
  height: 1px;
  background-color: #FFF;
  display: block;
  margin: 0 auto;
  position: relative;
}
.contact-out span:nth-child(1){
  top: 9px;
    left: 0.5px;
    transform: rotate(45deg);
}
.contact-out span:nth-child(2){
    top: 8px;
    left: 0.5px;
    transform: rotate(-45deg);
}
.contact-thanks-mask{
  width: 100%;
  height: 100vh;
  display: block;
  position: fixed;
  top: 0;
  left: 0;
  z-index: 1;
  background-color: rgba(0, 0, 0, 0.3);
}

