
/*会员认证管理的状态 待认证 */
span.verify-status-1{
    color:darkorange;
}

/*会员认证管理的状态 认证通过 */
span.verify-status-2{
    color:green;
}

/*会员认证管理的状态 认证不通过 */
span.verify-status-3{
    color:darkred;
}

/* 案件金额显示 整数部分 */
.int_part{
    font-weight: bold;
    font-size: larger;
}

/* 案件金额显示 小数部分 */
.decimal_part{
    color: grey;
    font-style: italic;
    font-size: larger;
}


ul{
    list-style-type: none;
}

/*无a标签显示*/
a.normal-a{
    text-decoration: none;
    color: black;
}

a.normal-a:hover{
    color: darkorange;
}

.table tbody tr td {
    vertical-align: middle;

}

tr.active {
    border-left: 3px solid #fdc00f;
}

th{
    text-align:center;

}

span.active{
    color: darkorange;
}

.party-display{
    color: #428bca ;
    margin-right: 6px;

}

.fa-chain {
    color: grey;
}

table {
    font-size: 12px;
}

.panel-body {
    font-size: 12px;
}

.search-group .row {
    margin-left: 5px;
}

.search-group .row a {
    display: inline-block;
    padding: 5px;
    margin: 5px;
    border: 1px solid lightgrey;
    font-size: 13px;
}

.search-group .row a.active {
    background-color: paleturquoise;
}

.search-group .others {
    display: inline-block;
}

.sequence-input {
    width: 50px;

}

/*.save-sequence {*/
/*    cursor: pointer;*/
/*    color: dodgerblue;*/
/*}*/


.text-display, .date-display, .status-display, .invoice-amount-display {
    cursor: pointer;

}

.fa-check {
    color: green;
    font-size: 20px;
}

/*标签导航active*/
.nav-tabs li a {
    font-weight: bolder;
    font-size: small;
}


/*标签导航active*/
.nav-tabs li.active a {
    color: darkorange;
    font-weight: bolder;
    font-size: small;
}

/*批量操作的select标签样式*/
select.handle-select, button.handle-btn {
    height: 26px;
    vertical-align: middle;
}

/*批量操作的select标签后面的执行按钮样式*/
button.handle-btn {
    padding: 2px 4px;
    line-height: 20px;
}

/* 列表页的添加按钮 */
a.add-record-btn {

    vertical-align: middle;
    height: 28px;
    margin: 0 20px;
    padding: 2px 3px;
    line-height: 20px;
}





/* 控制表格列宽  基本信息 */
.followorder-table-head-2, .weekly-plan-col-1 {
    width: 9%;

}

/* 控制表格列宽  客户货物 */
.followorder-table-head-3, .weekly-plan-col-2 {
    width: 11%;

}

/* 控制表格列宽  状态 */
.weekly-plan-col-3 {
    width: 3%;

}

/* 控制表格列宽  装箱信息 */
.followorder-table-head-7, .weekly-plan-col-7 {
    width: 20%;

}

/* 控制表格列宽  订舱信息 */
.followorder-table-head-8, .weekly-plan-col-8 {
    width: 19%;

}

/* 控制表格列宽  生产信息 */
.followorder-table-head-9, .weekly-plan-col-9 {
    width: 10%;

}

/* 集装箱号的span格式 */
.container_tag {
    margin-left: 20px;
}

/* 集装箱号copy to clipboard的btn格式 */
button[id^='clipboard-btn-'] {
    display: none;
}

/* 船公司的span格式 */
span.shipline-tag {
    margin-right: 20px;
}

/* 集装箱号的span格式 */
span.container_tag {
    margin-left: -1px;
}

/* 费用的span格式 */
span.charge_tag {
    float: right;
    margin-right: 20%;
}

span.charge_tag:hover {
    cursor: pointer;
}

/* 船和箱子的图标 */
.fa-ship, .fa-building {
    color: lightgrey;
}



/* 更多按钮的三个点 */
.more_tag {

}


tr.active {
    border-left: 3px solid #fdc00f;
}

table {
    font-size: 12px;
}

.panel-body {
    font-size: 12px;
}

.search-group .row {
    margin-left: 5px;
}

.search-group .row a {
    display: inline-block;
    padding: 5px;
    margin: 5px;
    border: 1px solid lightgrey;
    font-size: 13px;
}

.search-group .row a.active {
    background-color: paleturquoise;
}

.search-group .others {
    display: inline-block;
}

/* ***********弹窗图片的样式 *************/
/* 弹窗背景 */
.newmodal {
    display: none; /* Hidden by default */
    position: fixed; /* Stay in place */
    z-index: 9; /* Sit on top */
    padding-top: 100px; /* Location of the box */
    left: 0;
    top: 0;
    width: 100%; /* Full width */
    height: 100%; /* Full height */
    overflow: auto; /* Enable scroll if needed */
    background-color: rgb(0, 0, 0); /* Fallback color */
    background-color: rgba(0, 0, 0, 0.6); /* Black w/ opacity */
}

/* 图片 */
.newmodal-content {
    position: relative;
    margin: auto;
    display: block;
    width: 100%;
    max-width: 900px;
}


/* 添加动画 */
.newmodal-content, #caption {
    -webkit-animation-name: zoom;
    -webkit-animation-duration: 0.6s;
    animation-name: zoom;
    animation-duration: 0.6s;
}

/* 这些是什么意思，后面再慢慢搞懂，先用起来再说 */
@-webkit-keyframes zoom {
    from {
        -webkit-transform: scale(0)
    }
    to {
        -webkit-transform: scale(1)
    }
}

@keyframes zoom {
    from {
        transform: scale(0)
    }
    to {
        transform: scale(1)
    }
}


/* 关闭按钮 */
.img-close {
    position: fixed;
    z-index: 999; /* Sit on top */
    top: 75px;
    right: 35px;
    color: #f1f1f1;
    font-size: 40px;
    font-weight: bold;
    transition: 0.3s;
    opacity: 2.2;
}


.img-close:hover, .img-close:focus {
    color: #bbb;
    text-decoration: none;
    cursor: pointer;
}

img.ttcopy-small-img:hover {
    cursor: pointer;

}


/* ***********end  弹窗图片的样式 *************/


/* 普通modal框的关闭按钮 */
.close {
    position: relative;
    z-index: 999; /* Sit on top */
    top: -14px;
    right: 6px;
    color: lightgrey;
    font-size: 40px;
    font-weight: bold;
    transition: 0.3s;
    opacity: 3.2;
}

#myModal .modal-header {
    height: 46px;

}


/* 任务页面的css */
span[id^="content"].red {
    color: red;
}

#task_input {
    width: 320px;
}

#id_remind_date, #task_input {
    height: 36px;
}

span.dailyplan {
    margin-top: 30px

}


/* end of  任务页面的css */


/* 一般添加按钮的 css */
a.add-record {
    font-weight: 100;
    font-size: 28px;
    padding: 0px 10px 4px;
    line-height: 28px;
    align-content: center;
    margin-bottom: 6px;
    margin-top: -12px;
    margin-right: 15px;
}

/* 新增收款记录的 添加按钮的 css */
a.inwardpay-add-record {
    font-weight: 100;
    font-size: 28px;
    padding: 0px 10px 4px;
    line-height: 28px;
    align-content: center;
    margin-bottom: -11px;
    margin-top: -12px;
    margin-right: 15px;
}


/* 跟单列表的customer,order_number链接的 css */
a.customer-link, a.order-link {
    text-decoration: none;
    color: black;
}

/* 港杂清单的total amount的css */
.status-paid {

}

/* 港杂清单的total amount的css */
.status-unpaid {
    color: lightcoral;
}

/* 点选的港杂清单的total amount的合计显示 */
#total-chozen-amount, #total-chozen-amount-currency {
    font-size: 20px;
    color: #d9534f;
}

/* 货代费用单和付费单的状态栏显示 */
.money.status-unpaid, .charge-status-0, .chargepay-status-0 {
    color: #d9534f;
}

/* 货币符号显示 */
.money {
    margin-right: 3px;
}
