﻿.contact_txt {
    margin-top: 10px;
    margin-bottom: 0px !important;
}

    .contact_txt ul {
        padding-left: 0;
        margin-left: 0;
        list-style-position: inside; /* marker 會貼齊 ul 左邊 */
    }

        .contact_txt ul li a {
            color: #0066cc; /* 常見預設超連結顏色，可省略 */
            font-weight: bold; /* 恢復正常字重 */
            text-decoration: underline; /* 一般超連結會有底線 */
        }

.contactform {
    margin-top: 0px;
}

#CaptchaInputText {
    -webkit-box-flex: 1;
    -webkit-flex: 1;
    -ms-flex: 1;
    flex: 1;
    position: absolute;
    /*top: 3px;*/
    left: 40px;
    width: calc(100% - 60px);
    height: 24px;
    padding: 7px;
    font-weight: 400;
    font-size: 16px;
    line-height: 16px;
    border: 0 none;
    border-left: 1px solid #DFDFDF;
    background: none;
    border-radius: 0;
    -moz-border-radius: 0;
    -webkit-border-radius: 0;
    z-index: 1;
    -webkit-transition: -webkit-transform .15s ease;
    transition: transform .15s ease;
    -webkit-transform: scale(1);
    -ms-transform: scale(1);
    transform: scale(1);
    box-sizing: content-box;
    -moz-box-sizing: content-box;
    -webkit-box-sizing: content-box
}

.input_field {
    width: 200px;
    display: inline-block
}

.input_field {
    position: relative;
    height: 45px;
    border: 1px solid #C2C2C2;
    -webkit-border-radius: 3px;
    -moz-border-radius: 3px;
    border-radius: 3px;
    background: #fff;
    box-shadow: 0 0 10px 2px rgba(0,0,0,0.1) inset
}

.fa {
    width: 40px;
    text-align: center;
    font-size: 18px;
    line-height: 40px;
    color: #cecece
}

.captcha {
    width: 190px;
    display: inline-block;
    /*float: right;*/
    margin: 0;
    vertical-align: top
}

.resetCaptchabutton {
    position: absolute;
    margin-left: 40px;
    top: 0
}

    .resetCaptchabutton img {
        width: 148px;
        height: 43px;
        position: relative;
        top: 0;
        border: 0;
        border-left: 1px solid #cecece;
        -webkit-border-top-right-radius: 3px;
        -webkit-border-bottom-right-radius: 3px;
        -moz-border-radius-topright: 3px;
        -moz-border-radius-bottomright: 3px;
        border-top-right-radius: 3px;
        border-bottom-right-radius: 3px
    }

button:disabled {
    cursor: not-allowed;
    opacity: 0.6;
}

@media only screen and (max-width: 767px) {
    .input_field {
        width: 100%;
    }

    /*.captcha::before {
        content: "刷新";
        position: absolute;
        top: -22px;
        left: 0;
        font-size: .8em;
        font-weight: 700;
        cursor: pointer;
    }*/

    .captcha {
        width: 100%;
        float: none;
        margin-top: 27px;
    }

    .resetCaptchabutton img {
        width: 100%;
        min-width: 200px
    }
}