.title_img {
  height: 184px;
  overflow: hidden;
  position: relative;

  img {
    width: 1920px;
    height: 184px;
    display: block;
    position: absolute;
    top: 0;
    left: 50%;
    margin-left: -980px;
  }
}

//
.order_info {
  margin: 100px auto;

  .confirm {
    text-indent: 15px;
    color: #d84848;
    font-size: 20px;
    font-weight: bold;
  }

  .user_address {
    padding-left: 60px;
    font-size: 16px;
    color: #333333;
    line-height: 30px;
    margin: 30px auto;

  }
}

.product_row {

  margin: 30px auto;

  .table_title {
    background: #eeeeee;
  }

  .product_list {
    display: flex;
    flex-direction: row;
    flex-wrap: nowrap;
    justify-content: space-between;
    margin: 30px auto;
  }

  .product_list div {
    min-height: 60px;
    line-height: 60px;
    text-align: center;
    display: table-cell;
  }

  .img {
    width: 200px;
  }

  .img img {
    max-width: 100px;
    max-height: 60px;
  }

  .title {
    width: 190px;
    padding: 0 5px;
  }

  .title p, .money p {
    line-height: 1.5;
    display: inline-block;
    vertical-align: middle;
  }

  .money {
    width: 190px;
    padding: 0 5px;
  }

  .number {
    width: 190px;
    padding: 0 5px;
  }

  .total {
    width: 190px;
    padding: 0 5px;
  }

  .paytime {
    width: 200px;
  }
}

//
.payment_method {
  width: 800px;
  height: auto;
  float: right;
  margin: 50px auto 150px auto;

  .p {
    font-size: 22px;
    color: #333333;
    margin: 20px auto;
    text-align: right;
  }

  .p .total {
    color: #d84848;
    font-size: 24px;
  }

  .method {
    height: 60px;
    line-height: 60px;
    text-align: right;
  }

  .method label {
    margin: auto 20px;
  }

  .method .pay_btn {
    width: 160px;
    height: 60px;
    line-height: 60px;
    background: #f74d4d;
    color: white;
    font-size: 18px;
    text-align: center;
    border-radius: 5px;
    display: inline-block;
  }
}

.method input[type="radio"] ,.user_address input[type="radio"] {
  display: none;
}

.method input[type="radio"] + span,.user_address input[type="radio"] + span {
  width: 15px;
  height: 15px;
  display: inline-block;
  vertical-align: middle;
  background: url("/static/images/ico2_12.png");
  background-repeat: no-repeat;
  background-size: 100% 100%;
}

.method input[type="radio"]:checked + span , .user_address input[type="radio"]:checked + span {
  background: url("/static/images/ico2_10.png");
  background-repeat: no-repeat;
  background-size: 100% 100%;
}