/*提供聯絡我們行動電話鎖定只能輸入數字且無上下按鈕*/
input::-webkit-outer-spin-button,
input::-webkit-inner-spin-button {
        -webkit-appearance: none;
 }
input[type="number"]{
    -moz-appearance: textfield;
}

/*search 頁面自動遮蔽文字內容*/
.ellipsis {
	overflow: hidden;
	white-space: nowrap;
	text-overflow: ellipsis;
}