/* 状态选择 搜索 */
#myaccount_order .nav {
  display: -webkit-box;
  display: flex;
  -webkit-box-pack: justify;
  justify-content: space-between;
}

/* 每项状态 */
#myaccount_order .nav .menuList span {
  margin-right: 25px;
}

/* 当前选中状态 */
#myaccount_order .nav .menuList span.active {
  color: var(--main-color);
  border-bottom: 2px solid var(--main-color);
}

/* 搜索框 */
#myaccount_order .nav .searchBox .v-input {
  width: 144px;
  border: 1px solid #d4d4d4;
  border-radius: 18px 0 0 18px;
}

#myaccount_order .nav .searchBox .v-input.foucs {
  border-color: var(--main-color);
}

#myaccount_order .nav .searchBox .v-input input {
  border-radius: 18px 0 0 18px;
}

.v-input .iconfont {
  display: none;
  height: 100%;
  width: 40px;
  line-height: 34px;
  text-align: center;
  color: var(--error-color);
  cursor: pointer;
}

/* 搜索按钮 */
#myaccount_order .nav .searchBox .s-btn {
  min-width: 65px;
  border-radius: 0 18px 18px 0;
}

/* 水波纹大小 */
#myaccount_order .nav .searchBox .s-btn .ripple {
  width: 46px !important;
  height: 46px !important;
}

#myaccount_order .orderList {
  min-height: 603.2x;
  max-height:603.2px;
  overflow-y: auto;
  
}

/* 每张订单 */
.tableModule .items {
  -webkit-transition: all 0.3s;
  transition: all 0.3s;
}

.tableModule .items + .items {
  margin-top: 16px;
}

.tableModule .items:hover {
  box-shadow: 4px 6px 9px rgb(0 0 0 / 4%);
}

/* 每张订单标题栏 */
#orderItem .tit {
  height: 33px;
}

/* 订单支付按钮 */
#orderItem .tit > div .pay_cont {
  min-width: 113px;
  height: 25px;
  margin-right: 10px;
}

/* 订单表格 */
table {
  border-collapse: collapse;
  border-spacing: 0;
}

/* 表格标题行 */
#orderItem table thead tr {
  background-color: var(--ass-color);
}

/* 前三个标题 */
#orderItem table thead tr th:first-child,
#orderItem table thead tr th:nth-of-type(2),
#orderItem table thead tr th:nth-of-type(3) {
  width: 225px;
}

/* 后三个标题 */
#orderItem table thead tr th:last-child,
#orderItem table thead tr th:nth-of-type(4),
#orderItem table thead tr th:nth-of-type(5) {
  width: 120px;
}

/* 订单明细行 */
#orderItem table tbody tr {
  height: 60px;
}

/* 多行明细时 */
#orderItem table tbody tr + tr {
  border-top: 1px solid #d4d4d4;
}

#orderItem table tbody tr td:first-child,
#orderItem table tbody tr td:nth-of-type(2),
#orderItem table tbody tr td:nth-of-type(3) {
  width: 225px;
}

#orderItem table tbody tr td:last-child,
#orderItem table tbody tr td:nth-of-type(4),
#orderItem table tbody tr td:nth-of-type(5) {
  width: 120px;
}



