/*select*/


.sod_select,
.sod_select *
    {
        -webkit-box-sizing: border-box;
           -moz-box-sizing: border-box;
                box-sizing: border-box;
        -webkit-user-select: none;
           -moz-user-select: none;
            -ms-user-select: none;
    }

.sod_select
    {
        display: inline-block;
        position: relative;
        line-height: 1;
        width: 240px;
        padding:7px 10px;
        background-color: #ffffff;
        background:url(../images/gkfw/xia-la.png) 220px no-repeat;
        background-image: -o-linear-gradient(bottom, #f7f7f7 0%, #fff 100%);
        background-image: linear-gradient(bottom, #f7f7f7 0%, #fff 100%);
        -webkit-background-clip: padding-box;
           -moz-background-clip: padding;
                background-clip: padding-box;
        border: 1px solid #dbdbdb;
        /*border-radius: 3px;*/
        color: #666666;
        font-size: 12px;
        /*font-weight: 700;*/
        text-align: left;
        text-transform: none;
        outline: 0;
        outline-offset: -2px; /* Opera */
        cursor: default;
    }

    .sod_select:before,
    .sod_select:after
        {
            content: "";
            position: absolute;
            right: 30px;
            top: 0;
            bottom: 0;
           /* border-left: 1px solid #dbdbdb;*/ 
       }

        .sod_select:after
            {
                /*content: "\25BC";*/
                right: 12px;
                top: 15px;
                border-left: none;
                color: #bbbbbb;
                font-size: 8px;
            }

    .sod_select:hover,
    .sod_select.focus,
    .sod_select.disabled,

        .sod_select.focus { /*box-shadow: 0 0 2px rgba(0,0,0,.1);*/ }

        .sod_select.open
            {
                /*border-radius: 3px 3px 0 0;
                color: #919191;*/
            }

            .sod_select.open.above { border-radius: 0 0 3px 3px; }

    .sod_select.disabled,
    .sod_select.disabled:hover
        {
            opacity: .8;
            color: #b2b2b2;
            cursor: not-allowed;
        }

    .sod_select .sod_label
        {
            overflow: hidden;
            white-space: nowrap;
            text-overflow: ellipsis;

            padding-right: 25px;
        }

        .sod_select .sod_prefix {}
        .sod_select .sod_placeholder {}

    .sod_select .sod_list
        {
            position: absolute;
            top: 100%;
            left: 0;
            display: none;
            height: auto;
            width:240px;
            margin: 0 0 0 -1px;
            border: 1px solid #dbdbdb;
            /*border-radius: 0 0 3px 3px;
            box-shadow: 1px 2px 5px rgba(0,0,0,.1);*/
            background: #ffffff;
            color: #676767;
            font-weight: 300;
            z-index: 1;
        }

        .sod_select.open .sod_list { display: block;  }

        .sod_select.disabled.open .sod_list { display: none;  }

        .sod_select.above .sod_list
            {
                top: auto;
                bottom: 100%;
                border-radius: 3px 3px 0 0;
                box-shadow: 1px -2px 5px rgba(0,0,0,.1);
            }


    .sod_select .sod_list ul
        {
            overflow-y: auto;
            padding: 0;
            margin: 0;
        }

        .sod_select .sod_list li
            {
                overflow: hidden;
                white-space: nowrap;
                text-overflow: ellipsis;

                position: relative;
                padding-left:10px;
                list-style-type: none;
				line-height:30px;
            }

            .sod_select .sod_list .optgroup,
            .sod_select .sod_list .optgroup.disabled
                {
                    background: inherit;
                    color: #939393;
                    font-size: 11px;
                    font-style: italic;
                }

                .sod_select .sod_list .groupchild { padding-left: 35px; }

            .sod_select .sod_list .disabled
                {
                    background: inherit;
                    color: #cccccc;
                }

            .sod_select .sod_list .active
                {
                    background: #55b6ed;
                    color: #ffffff;
                }

            .sod_select .sod_list .selected {}

                .sod_select .sod_list .selected:before
                    {
                        content: "";
                        position: absolute;
                        left: 10px;
                        top: 50%;
                        -webkit-transform: translateY(-50%);
                            -ms-transform: translateY(-50%);
                                transform: translateY(-50%);
                        display: inline-block;
                        color: #808080;
                        height: 9px;
                        width: 10px;
                        background: url(data:image/svg+xml;);
                    }

                .sod_select.no_highlight .sod_list .selected:before { display: none; }

            .sod_select .sod_list .link {}
            .sod_select .sod_list .linkexternal {}


    .sod_select select { display: none !important;}

        .sod_select.touch select
            {
                -webkit-appearance: menulist-button;

                position: absolute;
                top: 0;
                left: 0;
                display: block !important;
                height: 100%;
                width: 100%;
                opacity: 0;
                z-index: 1;
            }