添加设置收款账户部分

This commit is contained in:
2019-09-08 15:26:13 +08:00
parent 91332295a8
commit 687fbf7551
4 changed files with 83 additions and 2 deletions

View File

@ -112,3 +112,19 @@ body .header1{
/*Opera11*/
color: #fff;
}
.cancellation{
width: 96%;
height: 42px;
line-height: 42px;
text-align: center;
margin: 36px 2%;
background: -moz-linear-gradient(left, #f5354b, #ff005a);
/*Mozilla*/
background: -webkit-gradient(linear, 0 50%, 100% 50%, from(#f5354b), to(#ff005a));
/*Old gradient for webkit*/
background: -webkit-linear-gradient(left, #f5354b, #ff005a);
/*new gradient for Webkit*/
background: -o-linear-gradient(left, #f5354b, #ff005a);
/*Opera11*/
color: #fff;
}