    /*本檔案專門用來使用 頁面上方抬頭 + 搜尋框 css樣式
    */

    /*以下ipt 自訂搜尋UI*/
    .iptcontent{/*最外層div*/
        margin-bottom: 10px;
    }
    .iptheader{/*標題div*/
        font-size: 140%;
        font-weight: 900;
        border-bottom: 1px solid #CCC;
    }
    .iptbody{/*內容div*/
        padding: 6px 5px;
        /*收縮*/
        transition: -webkit-height 0.3s, -webkit-opacity 0.3s;
        transition: height 0.3s, opacity 0.3s;
        transition: height 0.3s, -webkit-height 0.3s, opacity 0.3s, -webkit-opacity 0.3s;
    }
    .iptdisplay_btn{
        /*旋轉*/
        transition: -webkit-transform 0.3s;
        transition: transform 0.3s;
        transition: transform 0.3s, -webkit-transform 0.3s;
        /*不框選*/
        -moz-user-select:none;/*火狐*/
        -webkit-user-select:none;/*webkit浏览器*/
        -ms-user-select:none;/*IE10*/
        -khtml-user-select:none;/*早期浏览器*/
        user-select:none;

        cursor: pointer;
    }
    .iptdisplay_btn_act{
        transform: rotate(90deg);
    }
    .iptlabel { /*已下是內容lable專用css*/
        width: auto;
        margin-right: 15px;
        margin-bottom: 5px;
    }
    .iptlabel input, .iptlabel select{
        width: auto;
        height: calc(1.5em + 0.75rem + 2px);
        padding: 0.375rem 0.75rem;
        font-size: 0.875rem;
        font-weight: 400;
        line-height: 1.5;
        background-clip: padding-box;
        border: 1px solid;
        color: #5c6873;
        /*background-color: #fff;*/
        border-color: #e4e7ea;
        border-radius: 0.25rem;
        transition: border-color 0.15s ease-in-out, box-shadow 0.15s ease-in-out;
    }
    .iptlabel button{
        padding-left: 25px;
        padding-right: 25px;
    }
    .iptlabel input:focus, .iptlabel select:focus{
        border-color: #6280ff;
        box-shadow: 0px 0px 5px #6280ff;
        outline: none;
    }
    @media (max-width: 767px) { /*手機板*/
        .iptlabel{
            width: 99%;
        }
        .iptlabel input, .iptlabel select{
            width: 99%;
            margin-left: 5px;
        }
    }

    /*下方 代理x總代理x系統前綴 輸入框列表樣式*/
    .agentGroupIpt_clone, .agentIpt_clone{ /*總代理x代理克隆輸入框*/
        background-image: url('../img/down.png');
        background-position:right center;
        background-repeat: no-repeat;
    }
    .agentGroupIpt_selectdiv, .agentIpt_selectdiv, .accountIpt_selectdiv{ /*總代理x代理 選單外框樣式*/
        display: none;
        position:absolute;
        z-index:10; 
        background:white; 
        padding:0.5rem; 
        border:solid 1px #e4e7ea; 
        border-radius:0.25rem; 
        color:#3c4b64;
    }
    .agentGroupIpt_optiondiv, .agentIpt_optiondiv, .accountIpt_optiondiv{ /*總代理x代理 選單選項樣式*/
        cursor: pointer;
        padding: 0.1rem;
        overflow-x: hidden;
        white-space: nowrap;
    }
    .agentGroupIpt_optiondiv:hover, .agentIpt_optiondiv:hover, .accountIpt_optiondiv:hover{
        color: white;
        background-color: #321fdb;
    }
    #system_prefix_info{ /*系统前缀說明按鈕*/
        /*border: 1px #000 solid;*/
        border-radius: 100%;
        display: block;
        float: right;
        width: 20px;
        height: 20px;
        background-color: #321fdb;
        text-align: center;
        color: #fff;
        font-size: 13px;
        cursor: pointer;
        font-weight: 900;
    }
    #system_prefix_info:hover{
        background-color: #2a1ab9;
    }