@charset "UTF-8";
@import url("https://fonts.googleapis.com/css2?family=EB+Garamond:wght@400;500;600&family=Noto+Serif+TC:wght@200;400;500;600&family=Poppins:wght@700&display=swap");
.contentBox {
    position: relative;
    padding: 0 0 28px;
}

.contentBox .bgBox {
    width: 100%;
    height: 685px;
}

.contentBox .bgBox img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    display: block;
}

.contentBox .rightBox {
    position: absolute;
    top: 50%;
    right: 0;
    transform: translateY(-50%);
    padding: 50px;
    width: 760px;
    background-color: rgba(255, 255, 255, 0.9);
}

@media (max-width: 1080px) {
    .contentBox {
        padding: 0;
    }
    .contentBox .bgBox {
        width: 100%;
        height: auto;
    }
    .contentBox .rightBox {
        position: relative;
        top: 0;
        transform: translateY(0);
        width: 100%;
        padding: 30px 0 0;
    }
}

@media (max-width: 640px) {
    .contentBox .bgBox {
        height: 200px;
    }
    .contentBox .rightBox {
        padding: 20px 0 0;
    }
}

.thankInfo {
    /*感謝資訊*/
    border-bottom: 1px solid rgba(0, 0, 0, 0.2);
    font-size: 14px;
    font-weight: 400;
    line-height: 25px;
    letter-spacing: 1px;
    font-family: "Noto Serif TC";
    color: #000;
    padding: 0 0 15px;
}

.formList {
    display: flex;
    flex-wrap: wrap;
    font-size: 13px;
    line-height: 25px;
    color: #000;
    /*字的顏色*/
}

.formList [class^='g-'] {
    float: none;
}

.formList li {
    display: flex;
    align-items: center;
    height: 68px;
    padding: 0;
    position: relative;
    overflow: hidden;
}

.formList li::before {
    display: block;
    content: "";
    width: 100%;
    height: 1px;
    background-color: rgba(0, 0, 0, 0.2);
    position: absolute;
    bottom: 0px;
    left: 0;
}

.formList li::after {
    display: block;
    content: "";
    width: 60px;
    height: 1px;
    background-color: #000;
    position: absolute;
    bottom: 0px;
    left: 0;
}

.formList li.helfLeft {
    padding-right: 11px;
}

.formList li.helfLeft::before {
    width: calc(100% - 11px);
}

.formList li.helfRight {
    padding-left: 11px;
}

.formList li.helfRight::before {
    width: calc(100% - 11px);
    left: 11px;
}

.formList li.helfRight::after {
    left: 11px;
}

@media (max-width: 768px) {
    .formList li.helfRight {
        padding-left: 0;
    }
    .formList li.helfRight::before, .formList li.helfRight::after {
        left: 0;
    }
}

.formList li.classification label {
    width: 60px;
}

.formList li.classification select {
    width: calc(100% - 60px);
    height: 65px;
    background-color: transparent;
    appearance: none;
    position: relative;
    cursor: pointer;
    font-family: 'Noto Serif TC';
}

.formList li.classification .decoArrow {
    position: absolute;
    top: calc(50% - 9px);
    right: 0px;
    display: block;
    width: 18px;
    height: 18px;
    border-radius: 50%;
    border: 1px solid rgba(0, 0, 0, 0.2);
}

.formList li.classification .decoArrow::before {
    content: "";
    display: block;
    width: 6px;
    height: 1px;
    background-color: rgba(0, 0, 0, 0.2);
    position: absolute;
    top: 8px;
    left: 3px;
    transform: rotate(50deg);
}

.formList li.classification .decoArrow::after {
    content: "";
    display: block;
    width: 6px;
    height: 1px;
    background-color: rgba(0, 0, 0, 0.2);
    position: absolute;
    top: 8px;
    right: 3px;
    transform: rotate(-50deg);
}

.formList li.checkArea {
    align-items: flex-end;
}

.formList li.checkArea::before, .formList li.checkArea::after {
    display: none;
}

.formList .left {
    margin-bottom: 5px;
    width: 60px;
}

.formList .right {
    width: calc(100% - 60px);
}

.formList .right.name {
    padding-right: 98px;
}

.formList label {
    display: inline-block;
    font-size: 13px;
    color: #000;
}

.formList em {
    font-style: normal;
    font-weight: 400;
    color: #e61f6e;
    /*星號的顏色*/
}

.formList .inputStyle,
.formList select,
.formList textarea {
    padding: 5px;
    border: 1px solid rgba(0, 0, 0, 0);
    border-radius: 3px;
}

.formList .inputStyle {
    width: 100%;
    height: 65px;
    line-height: 65px;
    font-size: 14px;
    letter-spacing: 0.8px;
    color: #000;
}

.formList select {
    height: 35px;
}

.formList textarea {
    display: block;
    width: 100%;
    height: 65px;
    line-height: 65px;
    font-size: 14px;
    letter-spacing: 0.8px;
    color: #000;
}

.formList .sexBtn {
    position: absolute;
    top: calc(50% - 12.5px);
    right: 11px;
    width: 45px;
}

.formList .sexBtn.first {
    right: 61px;
}

.formList .sexBtn input[type="radio"] {
    opacity: 0;
    margin: 0 5px 0 0;
}

.formList .sexBtn input:checked + .radioDeco {
    opacity: 1;
    border-color: #cd5e3c;
}

.formList .sexBtn input:checked + .radioDeco::before {
    opacity: 1;
    content: "";
    display: block;
    width: 8px;
    height: 8px;
    border-radius: 50%;
    position: absolute;
    top: calc(50% - 4px);
    left: 2px;
    background-color: #cd5e3c;
}

.formList .sexBtn .radioDeco {
    opacity: 1;
    display: block;
    width: 14px;
    height: 14px;
    border-radius: 50%;
    border: 1px solid rgba(0, 0, 0, 0.2);
    position: absolute;
    top: calc(50% - 7px);
    left: 0;
}

@media (max-width: 480px) {
    .formList .sexBtn {
        font-size: 12px;
    }
}

/*驗證碼*/
.checkArea {
    clear: both;
    margin-top: 40px;
}

.checkArea .btn {
    /*送出按鈕*/
    display: inline-block;
    vertical-align: middle;
}

@media (max-width: 640px) {
    .checkArea {
        margin-top: 20px;
    }
}

.sliderBox {
    position: relative;
    display: inline-block;
    margin-right: 8px;
    vertical-align: middle;
}

.note {
    /*向右滑動解鎖*/
    position: absolute;
    left: 55px;
    top: 7px;
    font-family: '微軟正黑體';
    font-size: 15px;
    color: #999;
}

.error {
    box-shadow: 0 0 10px 0px #f00 inset;
}
/*# sourceMappingURL=contact.css.map */