.cartBox {
    background-color: white;
    box-shadow: 0px 0px 4px 0px rgba(0, 0, 0, 0.1);
}
.checkBlank {
    width: 16px;
    height: 16px;
    border: 1px solid #cdcdcd;
    background-color: white;
    cursor: pointer;
}
.checked {
    width: 16px;
    height: 16px;
    background: url("../../images/checked.png") center no-repeat;
    background-size: 100% 100%;
    cursor: pointer;
}
.tableHead {
    width: 100%;
    height: 45px;
    display: flex;
    align-items: center;
    padding: 0 10px;
    background-color: #eef4fc;
}
.tdHead {
    display: flex;
    align-items: center;
}
.tdHead > p {
    margin-left: 5px;
}
.tdHead > .img {
    width: 80px;
    height: 80px;
    border: 1px solid #f3f3f3;
    margin-left: 20px;
    position: relative;
}
.tdHead > .img > p {
    width: 80px;
    height: 18px;
    display: flex;
    align-items: center;
    justify-content: center;
    background-color: #c1c1c1;
    /* font-family: 'phr'; */
    /* font-family: 微软雅黑; */
    font-size: 12px;
    line-height: 1em;
    color: white !important;
    position: absolute;
    left: 0;
    bottom: 0;
}

.tableHead > .item:nth-child(1) {
    width: 162px;
}
.tableHead > .item:nth-child(2) {
    width: 300px;
}
.tableHead > .item:nth-child(3) {
    width: 256px;
}
.tableHead > .item:nth-child(4) {
    width: 214px;
}
.tableHead > .item:nth-child(5) {
    width: 160px;
}
.tableHead > .item:nth-child(6) {
    width: 88px;
}

.tableBody {
    padding: 10px;
}
.tableBody p {
    /* font-family: 'phr'; */
    /* font-family: 微软雅黑; */
    font-size: 12px;
    line-height: 16px;
    color: #333333;
}
.tableBody p.itemSum {
    color: #003399;
}
.tableBody > .item {
    width: 100%;
    height: auto;
    margin-bottom: 10px;
    /* padding: 0 10px; */
    border: 1px solid #f3f3f3;
    border-top: 1px solid #bebebe;
}
.tableBody > .item > .tableBodyInfo {
    width: 100%;
    height: 120px;
    display: flex;
    align-items: center;
}
.tableBody > .item:last-child {
    margin-bottom: 0;
}

.tableBody > .item .td:nth-child(1) {
    width: 162px;
    padding-left: 10px;
}
.tableBody > .item .td:nth-child(2) {
    width: 300px;
}
.tableBody > .item .td:nth-child(3) {
    width: 256px;
}
.tableBody > .item .td:nth-child(4) {
    width: 214px;
}
.tableBody > .item .td:nth-child(5) {
    width: 160px;
}
.tableBody > .item .td:nth-child(6) {
    width: 88px;
    padding-right: 10px;
}

.tableBody > .item.disabled {
    background-color: #f3f3f3;
}
.tableBody > .item.disabled p {
    color: #999999;
}

.tableBody > .item > .tableBodyNotice {
    width: 100%;
    height: auto;
    padding: 10px;
}
.tableBody > .item > .tableBodyNotice > div {
    width: 100%;
    height: 36px;
    padding: 10px;
    display: flex;
    align-items: center;
    background-color: #fff4f4;
}
.tableBody > .item > .tableBodyNotice > div > img {
    display: block;
    width: 16px;
    height: 16px;
    margin-right: 5px;
}
.tableBody > .item > .tableBodyNotice > div > p {
    font-size: 12px;
    line-height: 1em;
    color: #e52f2c;
}

.numChange {
    width: 80px;
    height: 20px;
    display: flex;
    align-items: center;
    margin-right: 10px;
    position: relative;
}
.numChange > div {
    width: 20px;
    height: 20px;
    border: 1px solid #cdcdcd;
    background-color: white;
    display: flex;
    align-items: center;
    justify-content: center;
    /* font-family: 'phb'; */
    /* font-family: 微软雅黑; */
    font-weight: bold;
    font-size: 16px;
    color: #666666;
    line-height: 1em;
    cursor: pointer;
}
.numChange > div > div {
    width: 10px;
    height: 10px;
}
.numChange > div.minus > div {
    background: url("../../images/minus2.png") center no-repeat;
    background-size: 100% 100%;
}
.numChange > div.plus > div {
    background: url("../../images/plus2.png") center no-repeat;
    background-size: 100% 100%;
}
.numChange > .minus.disabled > div {
    background: url("../../images/minus.png") center no-repeat;
    background-size: 100% 100%;
}
.numChange > .plus.disabled > div {
    background: url("../../images/plus.png") center no-repeat;
    background-size: 100% 100%;
}
.numChange > div:hover {
    background-color: #f8f8f8;
}
.numChange > div.disabled {
    background-color: #f3f3f3;
    cursor: not-allowed;
}
.numChange.limitAlertShow > div {
    border-color: #e52f2c;
}
.numChange.limitAlertShow > input {
    border-color: #e52f2c;
}
.numChange > input {
    width: 40px;
    height: 20px;
    border-top: 1px solid #cdcdcd;
    border-bottom: 1px solid #cdcdcd;
    text-align: center;
    /* font-family: 'phr'; */
    /* font-family: 微软雅黑; */
    font-size: 12px;
    color: #333333;
}
.numChange > input::-webkit-outer-spin-button,
.numChange > input::-webkit-inner-spin-button {
    -webkit-appearance: none !important;
}
.numChange > input[type="number"] {
    -moz-appearance: textfield;
}
.tableBody > .item.disabled .disabledMask {
    width: 100%;
    height: 100%;
    background-color: white;
    filter: alpha(Opacity=50);
    -moz-opacity: 0.5;
    opacity: 0.5;
    position: absolute;
    top: 0;
    left: 0;
}

.deleteThis {
    color: #999999;
}

/* 底部操作 */
.panel {
    width: 100%;
    height: 76px;
    background-color: #eef4fc;
    display: flex;
    justify-content: space-between;
    padding: 20px;
}
.panel > .func {
    height: 16px;
    display: flex;
    align-items: center;
}
.panel > .func > div {
    margin-right: 10px;
}
.panel > .func > p {
    /* font-family: 'phr'; */
    /* font-family: 微软雅黑; */
    font-size: 12px;
    color: #333333;
    line-height: 1em;
    margin-right: 20px;
}
.panel > .func > a {
    /* font-family: 'phr'; */
    /* font-family: 微软雅黑; */
    font-size: 12px;
    color: #003399;
    line-height: 1em;
}
.panel > .sumInfo {
    width: auto;
    height: 100%;
    display: flex;
    align-items: center;
}
.panel > .sumInfo > p {
    /* font-family: 'phr'; */
    /* font-family: 微软雅黑; */
    font-size: 12px;
    color: #4a4a4a;
    line-height: 16px;
    margin-left: 20px;
}
.panel > .sumInfo > p > span {
    /* font-family: 'phr'; */
    /* font-family: 微软雅黑; */
    font-size: 18px;
    color: #003399;
    line-height: 24px;
    margin: 0 5px;
}
.panel > .sumInfo > p:nth-child(2) > span {
    font-weight: bold;
}
.panel > .sumInfo > p > i {
    font-style: inherit;
    color: #003399;
}
.panel > .sumInfo > a {
    display: block;
    width: 140px;
    height: 36px;
    background-color: #ffcc00;
    margin-left: 20px;
    cursor: pointer;
    /* font-family: 'phr'; */
    /* font-family: 微软雅黑; */
    font-size: 14px;
    line-height: 36px;
    text-align: center;
}
.panel > .sumInfo > a.disabled {
    background-color: #f3f3f3;
    color: #999999;
    border: 1px solid #cdcdcd;
    cursor: not-allowed;
}

.noResult {
    width: 100%;
    height: auto;
    padding: 100px 0;
    text-align: center;
}
.noResult > div {
    width: 40px;
    height: 40px;
    background: url("../../images/noOrder.png") center no-repeat;
    background-size: 100% 100%;
    margin: 0 auto;
    margin-bottom: 10px;
}
.noResult > p {
    width: 100%;
    /* font-family: 'phr'; */
    /* font-family: 微软雅黑; */
    font-size: 12px;
    line-height: 16px;
    color: #666666;
    text-align: center;
}

.td .goGoods {
    cursor: pointer;
}
.td .img.goGoods:hover {
    border: 1px solid #003399;
}
.td p.goGoods:hover {
    color: #003399;
    text-decoration: underline;
}
