.Consultation-content {
    width: 100%;
}
.Consultation-content .Consultation-headImg {
    width: 100%;
    height: 260px;
    background-image: url("../images/consultation/bannerBG.png");
    background-color: #e32e4b;
}
.Consultation-content .Consultation-headImg p {
    color: #FFF;
    font-size: 35px;
    font-weight: normal;
    text-align: center;
    padding: 115px 0;
    margin: 0;
    text-shadow: 2px 2px 3px rgba(0,0,0,0.5);
}
.Consultation-content .Consultation-Title {
    width: 100%;
    text-align: center;
    margin: 20px auto 30px auto;
}
.Consultation-content .Consultation-Title .main-Tit {
    font-weight: bold;
    color: #026acd;
    margin-bottom: 5px;
}
.Consultation-content .Consultation-Title .main-Desc {
    font-size: 15px;
    font-weight: bold;
}
.Consultation-content .Consultation-Table {
    width: 80%;
    margin: 0 auto;
}
.Consultation-content .Consultation-Table .main-right input {
    padding-left: 5px;
}
.Consultation-content .Consultation-Table .main-left,
.Consultation-content .Consultation-Table .main-right {
    padding: 0;
}
.Consultation-content .Consultation-Table .main-right .step-1 {
    display: block;
}
.Consultation-content .Consultation-Table .main-right .step-2 {
    display: none;
}
.Consultation-content .Consultation-Table .main-left img {
    width: 100%;
    max-width: 100%;
}
.main-right .TitleBar {
    width: 100%;
    height: 50px;
    background: #3c388d; /* Old browsers */
    background: -moz-linear-gradient(left, #3c388d 0%, #dd0126 100%); /* FF3.6-15 */
    background: -webkit-linear-gradient(left, #3c388d 0%,#dd0126 100%); /* Chrome10-25,Safari5.1-6 */
    background: linear-gradient(to right, #3c388d 0%,#dd0126 100%); /* W3C, IE10+, FF16+, Chrome26+, Opera12+, Safari7+ */
    filter: progid:DXImageTransform.Microsoft.gradient( startColorstr='#3c388d', endColorstr='#dd0126',GradientType=1 ); /* IE6-9 */
}
.main-right #Prev-Step {
    cursor: pointer;
}
.main-right .TitleBar span {
    display: block;
    width: 80%;
    margin: 0 auto;
    line-height: 3em;
    color: #FFF;
    font-size: 16px;
    font-weight: bold;
}
.main-right .from_content {
    width: 80%;
    margin: 0 auto;
}
.main-right .from_content .Tit {
    margin: 0 0 5px 0;
    color: #3a3091;
    font-weight: 500;
    font-size: 15px;
}
.main-right .from_content input {
    border: 1px solid #a5a5a5;
}
.main-right .from_content input[type*="date"],
.main-right .from_content input[type*="text"],
.main-right .from_content textarea {
    width: 100%;
}
.main-right .from_content select {
    width: 100%;
}
.main-right .from_content textarea {
    min-height: 90px;
}
.main-right .from_content .confirm,.Date,.Time,.question,.Next,.name,.email,.phone,.VerifiCode,.Consultation-Desc {
    margin: 15px 0;
}
.main-right .from_content .confirm span {
    margin-left: 5px;
    vertical-align: super;
    color: #000;
    font-size: 15px;
    font-weight: bold;
}
.main-right .from_content .question {
    display: grid;
}
.main-right .from_content .question select {
    width: 100%;
    margin-bottom: 5px;
}
.main-right .from_content .name input {
    width: 49.2%;
}
.main-right .from_content .VerifiCode input {
    width: 40%;
}
.main-right .from_content .VerifiCode .Verification_code {
    display: inline-block;
    width: 120px;
    height: auto;
    color: #FFF;
    background-color: #e5e5e5;
    text-align: center;
    padding: 1px 0;
}
.main-right .from_content .Consultation-Desc {
    color: #000;
    font-size: 13px;
    background: #e5e5e5;
    padding: 5px 15px;
}
.main-right .from_content .Consultation-Desc .Agree_Check {
    margin-top: 10px;
}
.main-right .from_content .submitBTN {
    display: block;
    width: 100%;
    color: #FFF;
    background-color: #e5819d;
    border: 0;
    padding: 10px 0;
    outline: none;
    cursor: pointer;
    text-align: center;
}
.main-right .from_content .submitBTN:hover {
    color: #FFF;
}
.main-right .from_content .submitBTN.disabled {
    opacity: 0.3;
}
.main-right .from_content .submitBTN i {
    margin-left: 5px;
}
@media screen and (max-width:1200px) {
    .Consultation-content .Consultation-Table {
        width: 100%;
    }
}




/* 不需預約開關樣式 */
.switch {
    position: relative;
    display: inline-block;
    width: 50px;
    height: 25px;
    margin: 0;
}
.switch input {
    display:none;
}
.slider {
    position: absolute;
    cursor: pointer;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background-color: #ccc;
    -webkit-transition: .4s;
    transition: .4s;
}
.slider:before {
    position: absolute;
    content: "";
    height: 18px;
    width: 18px;
    left: 4px;
    bottom: 4px;
    background-color: white;
    -webkit-transition: .4s;
    transition: .4s;
}
input:checked + .slider {
    background-color: #3a3091;
}
input:focus + .slider {
    box-shadow: 0 0 1px #3a3091;
}
input:checked + .slider:before {
    -webkit-transform: translateX(24px);
    -ms-transform: translateX(24px);
    transform: translateX(24px);
}
/* Rounded sliders */
.slider.round {
    border-radius: 25px;
}
.slider.round:before {
    border-radius: 50%;
}