﻿@charset "utf-8";

/* 表单输入样式 */
.inputBox {
    background: #fff;
    padding: 0px 0px;
    margin-bottom: 15px;
    overflow: hidden;
}

    .inputBox .inputBody {
        border: 1px solid #ededed;
        margin-bottom: 10px;
        overflow: hidden;
    }

        /*标题栏样式*/
        .inputBox .inputBody .inputTitle {
            width: auto;
            height: 36px;
            line-height: 36px;
            background: #eaeaea;
            padding: 0 10px;
            font-size: 12pt;
        }

            /*标题栏的按钮*/
            .inputBox .inputBody .inputTitle input {
                background: #f60;
                height: 26px;
                margin: 5px 5px;
                padding: 0 15px;
                color: #fff;
                border-radius: 5px !important;
                font-size: 14px;
                float: right;
            }

                .inputBox .inputBody .inputTitle input:hover {
                    background: #f30;
                }

        .inputBox .inputBody .inputTitle333 {
            background: #cccccc;
        }

        .inputBox .inputBody .inputUlBox {
            padding: 10px 0;
            background: #ffffff;
            height: auto;
            overflow: hidden;
        }


    /*另一种input区域样式*/
    .inputBox .inputClearBody {
        width: auto;
        height: auto;
        overflow: hidden;
        background: #f7f7f7;
        border: 1px solid #e1e1e1;
        padding: 10px;
        margin-bottom: 10px;
    }

    /*分行样式*/
    .inputBox ul li {
        clear: both;
        display: block;
        padding: 6px 10px;
        overflow: hidden;
    }

        /*表单填写左侧标题区域*/
        .inputBox ul li span {
            display: inline-block;
            width: 120px;
            float: left;
            text-align: right;
            font-weight: normal;
            font-size: 14px;
            color: #666;
            line-height: 30px;
        }

            .inputBox ul li span i {
                font-size: 9pt;
                color: #f00;
                margin-right: 5px;
            }


        /*表单填写右侧填写主体区域*/
        .inputBox ul li div {
            width: auto;
            padding-left: 130px;
        }

            /*表单填写右侧文本样式*/
            .inputBox ul li div span,
            .inputNoSmallBox ul li div span {
                width: auto;
                line-height: 30px;
                font-size: 14px;
                color: #000000;
                text-align: left;
                margin-right: 5px;
            }

                .inputBox ul li div span b,
                .inputNoSmallBox ul li div span b {
                    /*在表单样式中，状态值可能返回b标题，重置b标签的样式*/
                    font-weight: normal;
                }

            .inputBox ul li div a,
            .inputNoSmallBox ul li div a {
                font-size: 10pt;
                color: #f30;
            }

                .inputBox ul li div a.abutton,
                .inputNoSmallBox ul li div a.abutton {
                    font-size: 10pt;
                    color: #ffffff;
                    padding: 2px 5px;
                    background: #f30;
                }

                .inputBox ul li div a.editButton,
                .inputNoSmallBox ul li div a.editButton {
                    display: inline-block;
                    width: auto;
                    height: 30px;
                    line-height: 30px;
                    background: #ff9900;
                    color: #ffffff;
                    font-size: 10pt;
                    border: 0;
                    border-radius: 5px;
                    padding: 0 15px;
                    margin-right: 5px;
                    margin-bottom: 5px;
                }

                .inputBox ul li div a.delButton,
                .inputNoSmallBox ul li div a.delButton {
                    background: #ff0000;
                    color: #ffffff;
                }

            /*图片显示*/
            .inputBox ul li div input.imageRadioInput {
                float: left;
                margin-top: 16px;
                margin-right: 8px;
            }

            .inputBox ul li div img.imageRadioPic {
                cursor: pointer;
                float: left;
            }


        /*多行文本输入框*/
        .inputBox ul li textarea,
        .inputNoSmallBox ul li textarea {
            display: inline-block;
            margin-right: 5px;
            margin-bottom: 0px;
            width: 500px;
        }

        .inputBox ul li select,
        .inputNoSmallBox ul li select {
            display: inline-block;
            margin-right: 5px;
            margin-bottom: 0px;
            font-size: 10pt;
            width: 100px;
            height: 30px;
            line-height: 30px;
        }
            /*限制下拉框的长度*/
            .inputBox ul li select.maxwidth,
            .inputNoSmallBox ul li select.maxwidth {
                max-width: 100px;
            }

            /*根据内容调整长度*/
            .inputBox ul li select.autowidth,
            .inputNoSmallBox ul li select.autowidth {
                min-width: 100px;
                width: auto;
            }

            .inputBox ul li select.error,
            .inputNoSmallBox ul li select.error {
                border-color: rgba(255,0,0,0.8);
                outline: 0;
                outline: thin dotted \9;
                -webkit-box-shadow: inset 0 1px 1px rgba(0,0,0,0.075), 0 0 8px rgba(255,0,0,0.6);
                -moz-box-shadow: inset 0 1px 1px rgba(0,0,0,0.075), 0 0 8px rgba(255,0,0,0.6);
                box-shadow: inset 0 1px 1px rgba(0,0,0,0.075), 0 0 8px rgba(255,0,0,0.6);
            }

        /*input输入框类的样式*/
        .inputBox ul li input[type="text"],
        .inputBox ul li input[type="number"],
        .inputBox ul li input[type="password"],
        .inputBox ul li input[type="button"],
        .inputBox ul li input[type="submit"] {
            display: inline-block;
            margin-right: 10px;
            margin-bottom: 0px;
            font-size: 10pt;
            height: 30px;
            line-height: 30px;
            padding: 0px 6px;
            box-sizing: border-box;
            -moz-box-sizing: border-box; /* Firefox */
            -webkit-box-sizing: border-box; /* Safari */
            border: 1px solid #cccccc;
        }

        /*输入框第一长*/
        .inputBox ul li input.longInput,
        .inputNoSmallBox ul li input.longInput {
            width: 350px;
        }

        /*输入框第二长*/
        .inputBox ul li input.longTwoInput,
        .inputNoSmallBox ul li input.longTwoInput {
            width: 250px;
        }

        .inputBox ul li input[type="number"],
        .inputNoSmallBox ul li input[type="number"] {
            width: 80px;
        }

        .inputBox ul li input[type="checkbox"],
        .inputNoSmallBox ul li input[type="checkbox"] {
            margin-right: 5px;
            vertical-align: middle;
        }

        .inputBox ul li input.error,
        .inputNoSmallBox ul li input.error {
            border-color: rgba(255,0,0,0.8);
            outline: 0;
            outline: thin dotted \9;
            -webkit-box-shadow: inset 0 1px 1px rgba(0,0,0,0.075), 0 0 8px rgba(255,0,0,0.6);
            -moz-box-shadow: inset 0 1px 1px rgba(0,0,0,0.075), 0 0 8px rgba(255,0,0,0.6);
            box-shadow: inset 0 1px 1px rgba(0,0,0,0.075), 0 0 8px rgba(255,0,0,0.6);
        }

        .inputBox ul li input[type="button"],
        .inputBox ul li input.buttonCancel {
            width: 100px;
            background: #0d47e8;
            border: 0px solid #0d47e8;
            color: #ffffff;
            height: 36px;
            line-height: 36px;
            font-family: Microsoft YaHei, '微软雅黑', Arial;
            font-size: 11pt;
            margin-right: 10px;
        }

        .inputBox ul li input[type="submit"],
        .inputBox ul li input.buttonUp {
            width: 100px;
            background: #e76726;
            border: 0px solid #e76726;
            color: #ffffff;
            height: 36px;
            line-height: 36px;
            font-family: Microsoft YaHei, '微软雅黑', Arial;
            font-size: 11pt;
            margin-right: 10px;
        }

        .inputBox ul li input.buttonCss,
        .inputNoSmallBox ul li input.buttonCss {
            display: inline-block;
            width: auto;
            height: 30px;
            line-height: 30px;
            background: #ff9900;
            color: #ffffff;
            font-size: 10pt;
            border: 0;
            border-radius: 5px;
            padding: 0 15px;
            margin-right: 5px;
            margin-bottom: 5px;
        }

        .inputBox ul li input.buttonCssRed,
        .inputNoSmallBox ul li input.buttonCssRed {
            background: #ff0000;
            color: #ffffff;
        }

        /*单独设置验证码*/
        .inputBox ul li img.yzm,
        .inputNoSmallBox ul li img.yzm {
            width: auto;
            height: 30px;
            display: inline-block;
        }

        /*辅助提示信息样式*/
        .inputBox ul li i,
        .inputNoSmallBox ul li i {
            display: inline-block;
            color: #999;
            font-size: 9pt;
            line-height: 30px;
        }

            .inputBox ul li i.error,
            .inputNoSmallBox ul li i.error {
                color: #f00;
                padding: 0 5px;
                border: 1px solid #f00;
            }

            .inputBox ul li i.bigshow,
            .inputNoSmallBox ul li i.bigshow {
                font-size: 11pt;
                color: #333;
                line-height: 30px;
            }

        .inputBox ul li font,
        .inputNoSmallBox ul li font {
            color: #f00;
            padding: 0 5px;
        }

        .inputBox ul li a.changeLink,
        .inputNoSmallBox ul li a.changeLink {
            font-size: 9pt;
            background: #0091fa;
            color: #fff;
            padding: 5px 10px;
        }

        .inputBox ul li label,
        .inputNoSmallBox ul li label {
            display: inline-block;
            line-height: 30px;
            color: #555555;
            margin-right: 5px;
            cursor: pointer;
            font-size: 14px;
            vertical-align: middle;
        }

            .inputBox ul li label.error,
            .inputNoSmallBox ul li label.error {
                color: #f00;
            }

        .inputBox ul li em,
        .inputNoSmallBox ul li em {
            display: inline-block;
            background: #0e90d2;
            width: 10px;
            height: 10px;
            border-radius: 50%;
            float: left;
            margin: 10px;
        }

        .inputBox ul li .wen,
        .inputNoSmallBox ul li .wen {
            display: inline-block;
            width: 45px;
            height: 45px;
            float: left;
            margin: 10px;
        }


        /*输入表单右侧单独行body区域*/
        .inputBox ul li div div.inputRightDivBody {
            width: auto;
            padding: 0px;
        }

            .inputBox ul li div div.inputRightDivBody i.showRemark {
                margin-top: 3px;
                padding: 3px 10px 3px 30px;
                line-height: 24px;
                border: 1px solid #fede9e;
                background: #fdfce4 url(../images/deng.gif) no-repeat 8px center;
            }

            .inputBox ul li div div.inputRightDivBody a {
                display: inline-block;
                font-size: 9pt;
                color: #fff;
                background: #f90;
                height: 22px;
                line-height: 22px;
                padding: 0 10px;
                margin: 0 10px;
            }

                .inputBox ul li div div.inputRightDivBody a.linkurl {
                    display: inline-block;
                    font-size: 10pt;
                    color: #f00;
                    background: none;
                    height: 30px;
                    line-height: 30px;
                    padding: 0 5px;
                    margin: 0 5px;
                }



    .inputBox .tableShow {
        width: 100%;
        border-collapse: collapse;
        border-spacing: 1;
    }

        .inputBox .tableShow th {
            width: 120px;
            font-weight: normal;
            text-align: left;
            height: 36px;
            line-height: 36px;
            padding-left: 20px;
            color: #666;
            font-size: 9pt;
            vertical-align: top;
            background: #fffacd;
            border: #fbf4ba 1px solid;
            text-align: center !important;
        }

        .inputBox .tableShow td {
            padding: 0px 5px;
            color: #000;
            font-size: 9pt;
            line-height: 36px;
            border: #fbf4ba 1px solid;
        }

            .inputBox .tableShow td a {
                display: inline-block;
                width: auto;
                margin: 5px 3px;
                padding: 0px 10px;
                background: #f90;
                color: #fff;
                height: 26px;
                line-height: 26px;
            }


/*不根据界面调整大小的*/
.inputNoSmallBox {
    background: #fff;
    padding: 0px 0px;
    margin-bottom: 15px;
    overflow: hidden;
}

    .inputNoSmallBox ul li {
        clear: both;
        display: block;
        padding: 6px 10px;
        overflow: hidden;
    }

        .inputNoSmallBox ul li span {
            display: inline-block;
            width: 80px;
            float: left;
            text-align: right;
            font-weight: normal;
            font-size: 14px;
            color: #666;
            line-height: 30px;
        }

        .inputNoSmallBox ul li div {
            width: auto;
            padding-left: 100px;
        }

        .inputNoSmallBox ul li i {
            display: inline-block;
            color: #999;
            font-size: 9pt;
            line-height: 30px;
        }

        .inputNoSmallBox ul li input[type="text"], .inputNoSmallBox ul li input[type="number"], .inputNoSmallBox ul li input[type="password"], .inputNoSmallBox ul li input[type="submit"] {
            display: inline-block;
            margin-right: 10px;
            margin-bottom: 0px;
            font-size: 10pt;
            height: 30px;
            line-height: 30px;
            padding: 0px 6px;
            box-sizing: border-box;
            -moz-box-sizing: border-box; /* Firefox */
            -webkit-box-sizing: border-box; /* Safari */
            border: 1px solid #cccccc;
        }


/*地址区域选择框*/
.addSelectBox {
    padding: 10px 10px 10px 10px;
    width: auto;
    height: auto;
    overflow: hidden;
}

    .addSelectBox span {
        padding: 10px;
        color: #333;
        font-size: 14px;
        background: url(../images/error.png) no-repeat 15px center;
        background-size: 16px 16px;
        padding: 0 10px 0 40px;
    }

    .addSelectBox ul {
    }

        .addSelectBox ul li {
            display: inline-block;
            padding: 10px;
            border: 1px solid #f7f7f7;
            margin-right: 5px;
            background: #f3f3f3 url(../images/change_04.png) no-repeat 5px center;
            padding-left: 25px;
            cursor: pointer;
            font-size: 9pt;
        }

            .addSelectBox ul li.on {
                background: #f50 url(../images/check.png) no-repeat 5px center;
                padding-left: 25px;
                color: #fff;
            }

/*显示选择或填写的地址信息*/
.addressInfoShow {
    padding: 3px 30px;
    line-height: 24px;
    border: 1px solid #fede9e;
    background: #fdfce4 url(../images/deng.gif) no-repeat 8px center;
    font-size: 10pt;
    margin: 0px 10px 10px 10px;
    color: #333333;
}

    .addressInfoShow i {
        margin: 0 5px;
        color: #bbbbbb;
    }

    .addressInfoShow a {
        display: inline-block;
        font-size: 9pt;
        color: #fff;
        background: #f90;
        height: 22px;
        line-height: 22px;
        padding: 0 10px;
        margin: 0 10px;
    }

/*新的寄件信息显示样式*/
.inAddressInfoShow {
    font-size: 11pt;
    margin: 10px;
    padding: 3px 10px;
    color: #333333;
}

    .inAddressInfoShow i {
        margin: 0 5px;
        color: #bbbbbb;
    }

    .inAddressInfoShow a {
        display: inline-block;
        font-size: 9pt;
        color: #fff;
        background: #f90;
        height: 22px;
        line-height: 22px;
        padding: 0 10px;
        margin: 0 10px;
    }

/*提交按钮区域*/
.submitButton {
    width: auto;
    height: auto;
    margin: 20px auto 10px auto;
    text-align: center;
}

    .submitButton input[type=text] {
        margin-bottom: 0px;
    }

    .submitButton input[type=button], .submitButton input[type=submit], .submitButton input[type="reset"], .submitButton a {
        display: inline-block;
        width: 120px;
        height: 36px;
        line-height: 36px;
        background: #4ac302;
        color: #fff;
        font-size: 14px;
        margin-right: 5px;
        text-align: center;
        cursor: pointer;
    }

        .submitButton input.buttonUp, .submitButton a.buttonUp {
            background: #f60;
        }

    .submitButton input[type="submit"] {
        background: #f60;
    }

    .submitButton input[type="reset"], .submitButton input.backButton {
        background: #2a89ff;
    }

    .submitButton a.buttonDel {
        background: #ff0000;
    }

/*表格输入样式*/

.inputBox .inputBody .inputTable {
}

.inputTable {
    width: 100%;
    border-collapse: collapse;
    border-spacing: 1;
}

    .inputTable tr {
        margin-bottom: 10px;
    }

    .inputTable th {
        width: 100px;
        font-weight: normal;
        text-align: right;
        height: 40px;
        line-height: 40px;
        padding-left: 20px;
        color: #666;
        font-size: 10pt;
        font-family: Microsoft YaHei,'微软雅黑',Arial,Helvetica,sans-serif,Tahoma !important;
        vertical-align: top;
    }

        .inputTable th i {
            color: #f00;
            font-style: normal;
            font-size: 10pt;
        }

    .inputTable td {
        padding-left: 5px;
        color: #000;
        font-size: 11pt;
        vertical-align: top;
    }

        .inputTable td input[type="text"] {
            width: 200px;
            height: 30px;
            margin-right: 5px;
            line-height: 30px;
            padding: 0 5px 0 5px;
            font-size: 9pt;
            border: #cccccc 1px solid;
            color: #000;
            float: left;
            -moz-border-radius: 3px;
            -webkit-border-radius: 3px;
            border-radius: 3px;
        }

        .inputTable td input[type="number"] {
            width: 80px;
            height: 30px;
            margin-right: 5px;
            line-height: 30px;
            padding: 0 5px 0 5px;
            font-size: 9pt;
            border: #cccccc 1px solid;
            color: #000;
            float: left;
            -moz-border-radius: 3px;
            -webkit-border-radius: 3px;
            border-radius: 3px;
        }

        .inputTable td input[type="password"] {
            width: 200px;
            height: 30px;
            margin-right: 5px;
            line-height: 30px;
            padding: 0 5px 0 5px;
            font-size: 9pt;
            border: #cccccc 1px solid;
            color: #000;
            float: left;
            -moz-border-radius: 3px;
            -webkit-border-radius: 3px;
            border-radius: 3px;
        }

        .inputTable td input[type="file"] {
            width: 250px;
            height: 30px;
            line-height: 30px;
            float: left;
            margin-right: 5px;
            padding: 0 5px 0 5px;
            font-size: 9pt;
            -moz-border-radius: 3px;
            -webkit-border-radius: 3px;
            border-radius: 3px;
            border: #999 1px solid;
            color: #000;
        }

        .inputTable td input[type="submit"] {
            width: 100px;
            height: 40px;
            background: #097edc;
            color: #fff;
            -moz-border-radius: 5px;
            -webkit-border-radius: 5px;
            border-radius: 5px;
        }

        .inputTable td input[type="reset"] {
            width: 100px;
            height: 40px;
            line-height: 40px;
            padding: 0 5px 0 5px;
            font-size: 9pt;
            color: #000;
        }

        .inputTable td input[type="radio"] {
            height: 40px;
            line-height: 40px;
            float: left;
        }

        .inputTable td input[type="checkbox"] {
            height: 30px;
            line-height: 30px;
            float: left;
        }

        .inputTable td input.bsearch {
            background: #669900;
            height: 30px;
            line-height: 30px;
            padding: 0 9px;
            color: #fff;
            -moz-border-radius: 5px;
            -webkit-border-radius: 5px;
            border-radius: 5px;
        }

        .inputTable td span {
            font-size: 9pt;
            display: inline-block;
            height: 40px;
            line-height: 40px;
            float: left;
            margin-right: 5px;
            color: #999999;
        }

        .inputTable td font {
            font-size: 11pt;
            display: inline-block;
            height: auto;
            line-height: 40px;
            float: left;
            margin-right: 5px;
            color: #333333;
        }

        .inputTable td i {
            font-size: 9pt;
            height: auto;
            line-height: 40px;
            margin-right: 5px;
            color: #999999;
        }

        .inputTable td a {
            font-size: 9pt;
            height: auto;
            line-height: 40px;
            margin-right: 5px;
            color: #f30;
        }

            .inputTable td a.editButton {
                display: inline-block;
                width: auto;
                height: 30px;
                line-height: 30px;
                background: #ff9900;
                color: #ffffff;
                font-size: 10pt;
                border: 0;
                border-radius: 5px;
                padding: 0 15px;
                margin-right: 5px;
            }

            .inputTable td a.delButton {
                background: #ff0000;
                color: #ffffff;
            }

        /*label默认*/
        .inputTable td label {
            display: none;
            border: 0px;
            float: left;
        }
            /*基本提示信息*/
            .inputTable td label.minfo {
                display: block;
                width: 100%;
                height: 40px;
                line-height: 40px;
                color: #666;
                font-size: 12px;
                background: url(../mainpage/16_05/shape_square_edit.png) no-repeat left center;
                padding-left: 20px;
                border: 0px;
                font-family: SimSun, '宋体', Helvetica, Arial, sans-serif;
                clear: both;
            }
            /*出错提示*/
            .inputTable td label.merror {
                display: block;
                width: 100%;
                height: 40px;
                line-height: 40px;
                color: #c00;
                font-size: 9pt;
                clear: both;
                background: url(../mainpage/16_05/exclamation.png) no-repeat left center;
                padding-left: 20px;
            }
            /*正确的提示*/
            .inputTable td label.mok {
                display: inline-block;
                width: auto;
                height: 40px;
                line-height: 40px;
                color: #0AB01D;
                font-size: 9pt;
                background: url(../mainpage/16_05/tick.png) no-repeat left center;
                padding-left: 20px;
            }

            .inputTable td label.inputlb {
                display: block;
                line-height: 40px;
                background: #fff;
                margin: 0 10px 0 5px;
                color: #000;
                border: 0px;
                float: left;
            }
        /*表单中的checkbox radio附加文本*/

        /*文本输入框样式*/
        .inputTable td textarea {
            border: 1px solid #ccc;
            padding: 5px;
            width: 350px;
            height: 40px;
            -moz-border-radius: 3px;
            -webkit-border-radius: 3px;
            border-radius: 3px;
            resize: none;
            float: left;
            margin: 5px 5px 0 0;
        }


        .inputTable td select {
            display: inline-block;
            float: left;
            margin-right: 5px;
            margin-bottom: 0px;
            font-size: 10pt;
            width: 100px;
            height: 32px;
            line-height: 32px;
        }
            /*限制下拉框的长度*/
            .inputTable td select.maxwidth {
                max-width: 100px;
            }

            /*根据内容调整长度*/
            .inputTable td select.autowidth {
                min-width: 100px;
                width: auto;
            }

            .inputTable td select.error {
                border-color: rgba(255,0,0,0.8);
                outline: 0;
                outline: thin dotted \9;
                -webkit-box-shadow: inset 0 1px 1px rgba(0,0,0,0.075), 0 0 8px rgba(255,0,0,0.6);
                -moz-box-shadow: inset 0 1px 1px rgba(0,0,0,0.075), 0 0 8px rgba(255,0,0,0.6);
                box-shadow: inset 0 1px 1px rgba(0,0,0,0.075), 0 0 8px rgba(255,0,0,0.6);
            }

        /*输入表单右侧单独行body区域*/
        .inputTable td div.inputRightDivBody {
            display: block;
            width: auto;
            height: auto;
            overflow: hidden;
            padding: 0px;
            margin-bottom: 5px;
        }

            .inputTable td div.inputRightDivBody i.showRemark {
                display: inline-block;
                padding: 0px 10px 0px 30px;
                line-height: 24px;
                border: 1px solid #fede9e;
                background: #fdfce4 url(../images/deng.gif) no-repeat 6px center;
            }


/*特殊样式标记区*/
.areacodeshow, .areaemailshow, .cardshow {
    display: none;
}

/*其他按钮样式*/
.selectMore {
    display: block;
    width: auto;
    height: auto;
    overflow: hidden;
    background: #fffacd;
    border: 1px solid #ffa500;
    margin-bottom: 15px;
    padding: 8px 10px;
}

    .selectMore label {
        font-size: 10pt;
        cursor: pointer;
    }



table.rt-responsive-table {
    width: 100%;
    border-collapse: collapse;
    font-size: 14px;
    margin-bottom: 10px;
}

    table.rt-responsive-table th {
        padding: 6px;
        border: 1px solid #e9eaec;
        text-align: left;
        height: 24px;
        line-height: 24px;
        background: #f1f1f2;
        color: #333333;
        font-weight: bold;
        text-align: center;
    }

.inputBox .inputBody .inputListBox td {
    line-height: 20px;
    /*text-align: center;*/
}

.inputBox .inputBody .inputListBox td {
    font-size: 10pt;
}

table.rt-responsive-table td, table.rt-responsive-table th {
    padding: 6px;
    border: 1px solid #e9eaec;
    /* text-align: left; */
    /* height: 24px; */
    line-height: 24px;
}

.inputBox .inputBody .inputListBox span {
    display: block;
    line-height: 20px;
    font-size: 10pt;
}

.sysMessageBox {
    width: auto;
    height: 34px;
    line-height: 34px;
    background: #fdfce4 url(../images/error.png) no-repeat 15px center;
    background-size: 16px 16px;
    border: 1px solid #fede9e;
    border-radius: 0px;
    font-size: 9pt;
    color: #444444;
    padding: 0 10px 0 40px;
    overflow: hidden;
    white-space: nowrap;
    text-overflow: ellipsis;
    margin-bottom: 10px;
}

.addButtonCenterBox {
    text-align: center;
}

    .addButtonCenterBox input {
        width: 100px;
        height: 30px;
        background: #f90;
        color: #fff;
        margin: 5px auto;
        cursor: pointer;
    }

@media screen and (max-width:980px) {

    .inputBox ul li {
        /*padding: 0px 10px;*/
    }

        .inputBox ul li span {
            display: block;
            text-align: left;
            float: none;
        }

    .inputBox[class~="inputBox11"] ul li span {
        width: auto;
    }

    .inputBox ul li div {
        display: block;
        padding-left: 0px;
    }

    .inputBox[class~="inputBox11"] ul li div {
        padding-left: 100px;
    }

    .inputBox ul li div input[type="text"],
    .inputBox ul li div select,
    .inputBox ul li div select.autowidth,
    .inputBox ul li textarea,
    .inputBox ul li div input[type="password"] {
        width: 100%;
        margin: 0;
    }

    .inputBox ul li input[type="text"].address {
        width: 100%;
    }

    .odershow, .odershowPic, .odershowTxt {
        width: 100%;
    }

    .bianji {
        padding: 0 5px;
    }

    .inputBox ul li .wen {
        float: left;
        margin: 5px;
    }


    .inputTable {
    }

        .inputTable tr th {
            width: 70px;
        }
}



@media screen and (max-width:400px) {

    .inputNoSmallBox {
    }

        .inputNoSmallBox ul li {
        }

            .inputNoSmallBox ul li span {
                width: 70px;
            }

            .inputNoSmallBox ul li div {
                width: auto;
                padding-left: 80px;
            }

                .inputNoSmallBox ul li div i {
                    display: block;
                    width: auto;
                    color: #999;
                    font-size: 9pt;
                    line-height: 30px;
                }

            .inputNoSmallBox ul li input[type="text"],
            .inputNoSmallBox ul li input[type="number"],
            .inputNoSmallBox ul li input[type="password"],
            .inputNoSmallBox ul li input[type="submit"] {
                display: block;
                margin-right: 10px;
                margin-bottom: 0px;
                font-size: 10pt;
                height: 30px;
                line-height: 30px;
                padding: 0px 6px;
                box-sizing: border-box;
                -moz-box-sizing: border-box; /* Firefox */
                -webkit-box-sizing: border-box; /* Safari */
                border: 1px solid #cccccc;
            }

    /*强制在小窗口时显示在一行*/
    .showline {
        display: inline-block !important;
    }
}
