﻿.width100 {
    width: 100%;
}
/*加粗*/
.b {
    font-weight: bold;
}

.txt-left {
    text-align: left;
}

.padding-left20 {
    padding-left: 20px;
}

.input-text {
    height: 34px;
    padding: 6px 12px;
    font-size: 14px;
    line-height: 1.42857143;
    color: #555;
    background-color: #fff;
    background-image: none;
    border: 1px solid #ccc;
    border-radius: 4px;
}

.hr-normal {
    margin-top: 0px;
}

@media screen and (min-width:550px) {
    /* 内容 */
    .Container {
        width: 100%;
        margin: 60px auto;
    }
    /* 右上角按钮 */
    .top-right-button {
        position: fixed;
        right: 5px;
        top: 8px;
        z-index: 9999;
    }

    /* 左上角按钮 */
    .top-left-button {
        position: fixed;
        left: 5px;
        top: 8px;
        z-index: 9999;
    }

        .top-left-button a {
            color: black;
        }

    .pc-show {
        display: block;
    }

    .phone-show {
        display: none;
    }

    /*其他当前位置*/
    .position {
        height: 50px;
        line-height: 50px;
        padding-left: 20px;
        width: 100%;
        border-bottom: 2px solid #00AAEF;
    }
    /* 具体内容 */
    .contextTable {
        width: 100%;
    }
    /*返回按钮*/
    .return-button {
        margin-left: 20px;
    }

    .return_button_div {
        padding-left: 20px;
        width: 100%;
        text-align: left;
    }
}

@media screen and (max-width:550px) {
    /* 内容 */
    .Container {
        width: 100%;
        margin: 60px auto;
        text-align: center;
        padding-left: 15px;
        padding-right: 15px;
    }
    /* 右上角按钮 */
    .top-right-button {
        float: left;
        width: 50%;
        text-align: right;
        padding-right: 8px;
    }

    /* 左上角按钮 */
    .top-left-button {
        float: left;
        width: 50%;
        text-align: left;
        padding-left: 8px;
    }

        .top-left-button a {
            color: black;
        }
    /*手机显示 按钮所在的div的样式*/
    .btn-div {
        border-top: 1px solid #ccc;
        margin-bottom: 40px;
    }

    .hr-normal {
        border-top: 1px solid white;
    }

    .border-top {
        border-top: 1px dashed #CCC;
        padding-top: 10px;
    }

    .pc-show {
        display: none;
    }

    .phone-show {
        display: block;
    }

    /*其他当前位置*/
    .position {
        display: block;
        height: 50px;
        line-height: 50px;
        padding-left: 10px;
        border-bottom: 1px solid #ccc;
        width: 100%;
    }

    /* 具体内容 */
    .contextTable {
        width: 100%;
        margin-top: 10px;
        margin-bottom: 165px;
        overflow: auto;
    }

    /* 手机上的列表 */
    .phone-list {
        width: 100%;
        height: 100%;
        overflow: auto;
    }

        .phone-list .row-item {
            width: 100%;
            height: 60px;
            border-bottom: 1px solid #E6E9F0;
            /*padding: 5px;*/
            margin: 0px;
        }

            .phone-list .row-item .column-normal {
                width: 100%;
                float: left;
                text-align: left;
                height: 25px;
                font-size: 14px;
                padding: 5px;
            }

            .phone-list .row-item .column-text {
                width: 50%;
                float: left;
                padding-top: 9px;
                font-size: 12px;
                color: #B0BCC9;
                text-align: left;
            }

            .phone-list .row-item .column-text-not-padding {
                width: 50%;
                float: left;
                font-size: 12px;
                color: #B0BCC9;
                text-align: left;
            }

            .phone-list .row-item .column-button {
                width: 50%;
                float: left;
                text-align: right;
            }
    /*返回按钮*/
    .return-button {
        margin-left: 10px;
    }
   
    .return_button_div {
        padding-left: 10px;
        width: 100%;
        text-align: left;
    }
}

.bodyContent {
    width: 98%;
    margin-left: 1%;
    margin-top: 70px;
}

/* 表格隔行换色 */
.table tbody tr:nth-child(odd) {
    background-color: white;
}

.table tbody tr:nth-child(even) {
    background-color: #F7F8FA;
}
/* 表格的行高 */
.table tbody tr td {
    line-height: 40px;
}

/* 必填颜色 */
.necessary {
    color: red;
    margin-right: 7px;
}

/* 复选框列表样式 */
.checkboxlist ul {
    list-style: none;
    padding: 0;
    margin: 0;
}

.checkboxlist li {
    margin-left: 10px;
    text-align: left;
}

/* 一行的内容，内容中的高度会比当前行要高 */
.row-item-other {
    width: 100%;
    height: 35px;
    line-height: 35px;
    text-align: center;
    display: inline-table;
    margin-top: 0px;
    margin-bottom: 0px;
}
.td-title {
    text-align: center;
    width: 30%;
    min-width: 100px;
}

.td-content {
    width: 70%;
}

.div-default {
    width: 100%;
}