/*定义全局基础样式*/
/*整体布局*/
.content {
  width: 100%;
  height: 100%;
  overflow-y: auto;
  padding-bottom: 20px;
  box-sizing: border-box;
  background-color: #F2F2F2;
}
/*标题*/
/*标题*/
header {
  width: 100%;
  height: 50px;
  background-color: #fff;
  box-sizing: border-box;
  padding-top: 16px;
  position: relative;
  text-align: center;
}
header span:nth-child(1) {
  position: absolute;
  left: 12px;
  top: 10px;
  width: 120px;
  height: 72%;
}
header span:nth-child(1) img {
  width: 100%;
  height: 100%;
}
header h2 {
  margin: 0px;
  font-size: 18px;
}
/*支付状态信息*/
.pay-status {
  background-color: #fee4e2;
  margin: 10px 20px;
  padding: 10px 0;
  text-align: center;
}
.pay-status i {
  font-size: 18px;
  color: #4a4a4a;
  font-weight: bold;
}
/*单据信息*/
section {
  background-color: #fff;
  width: 100%;
  box-sizing: border-box;
  padding: 15px 0 15px 30px;
  position: relative;
}
section li {
  line-height: 1rem;
  margin-bottom: 15px;
  width: 90%;
  overflow: hidden;
  white-space: nowrap;
  text-overflow: ellipsis;
}
section li span {
  display: inline-block;
  margin-right: 10px;
}
section li .two-text {
  text-indent: 2rem;
}
section li i {
  color: #7A7A7A;
}
section li .amount,
section li #amount {
  color: #F7C504;
}
section li:last-child {
  margin-bottom: 0;
}
section > span {
  position: absolute;
  top: 40px;
  right: 20px;
  font-size: 2rem;
  color: #F7C504;
  font-weight: bold;
}
/*缴款方式*/
.pay-method {
  margin-top: 15px;
}
.pay-method p {
  line-height: 14px;
  margin-bottom: 15px;
  padding-left: 30px;
}
.pay-method ul {
  width: 100%;
  background-color: #fff;
}
.pay-method ul li {
  height: 45px;
  line-height: 45px;
  padding: 0 0 0 30px;
}
.pay-method ul li img {
  vertical-align: middle;
  margin-right: 6px;
  width: 22px;
}
.pay-method ul li span {
  margin-left: 20px;
}
/*支付按钮*/
.pay-button {
  margin-top: 35px;
  padding: 0 37px;
}
.pay-button button {
  width: 100%;
  height: 35px;
  border-radius: 2rem;
  background-color: #feb403;
  color: #fff;
  border: none;
  font-size: 1rem;
}
.pay-button .gray {
  background-color: #feb403;
}
/*订单详情*/
#line-item {
  width: 100%;
  overflow: hidden;
}
#line-item p {
  line-height: 14px;
  margin: 15px 0;
  text-align: center;
  position: relative;
}
#line-item p span {
  position: absolute;
  left: 10px;
  font-size: 2rem;
  color: #F7C504;
  font-weight: 700;
}
#line-item section ul span {
  width: 5rem;
  text-align: right;
}
#line-item .pay-button {
  margin-top: 20px;
}
#line-item .pay-button button {
  color: #F7C504;
  background-color: rgba(0, 0, 0, 0);
  border: 1px solid #F7C504;
}
/*错误信息*/
#error-msg {
  position: absolute;
  top: 80%;
  left: 50%;
  margin-left: -160px;
  background-color: rgba(0, 0, 0, 0.6);
  color: #ccc;
  padding: 4px;
  border-radius: 5px;
}
/*切换动画*/
#select-content {
  width: 100%;
  float: left;
  transition: margin 0.5s, display 0.5s;
}
#line-item {
  float: right;
  transition: margin 0.5s, display 0.5s;
}
.mg-left {
  margin-left: -100% !important;
}
.mg-right {
  margin-right: -100% !important;
}
/*底部文字*/
#btm-text {
  position: absolute;
  bottom: 6px;
  text-align: center;
  width: 100%;
  font-size: 12px;
  color: #ccc;
}
/*# sourceMappingURL=public.css.map */