﻿body {}



/*聯絡我們標題字型大小*/
.title_font_size {
    font-size:16px;
}

/*填寫資料背景顏色*/
.field_bg_color {
    background-color:#E5E5E5
}

/*按鈕漸層*/
.btn_bg {
            background: #0071BA; /* For browsers that do not support gradients */
            background: -webkit-linear-gradient(left, #0071BA, #33333); /* For Safari 5.1 to 6.0 */
            background: -o-linear-gradient(right, #0071BA,  #33333); /* For Opera 11.1 to 12.0 */
            background: -moz-linear-gradient(right, #0071BA,  #33333); /* For Firefox 3.6 to 15 */
            background: linear-gradient(to right, #0071BA, #33333); /* Standard syntax (must be last) */
            float: left;
            /* div 並排;*/
}

.btn_bg:hover {
            background-color: #0071BA; /* For browsers that do not support gradients */
            background-color: -webkit-linear-gradient(left, #0071BA, #33333); /* For Safari 5.1 to 6.0 */
            background-color: -o-linear-gradient(right, #0071BA,  #33333); /* For Opera 11.1 to 12.0 */
            background-color: -moz-linear-gradient(right, #0071BA,  #33333); /* For Firefox 3.6 to 15 */
            background-color: linear-gradient(to right, #0071BA, #33333); /* Standard syntax (must be last) */
            /*float: left;*/
            /* div 並排;*/
}