1234567891011121314151617181920212223242526272829303132333435363738394041424344454647484950515253545556 |
- .container_bill{
- padding: 5px 0;
- }
- .bill_top{
- width: 90%;
- margin: 0 auto;
- font-size: 14px;
- color: #222;
- display: flex;
- margin-bottom: 10px;
- }
- .bill_top .top_style{
- width: 50%;
- }
- .input_style{
- width: 90%;
- height: 35px;
- margin: 0 auto;
- background: #efefef;
- border-radius: 3px;
- box-sizing: border-box;
- padding: 2px 5px;
- margin-top: 30px;
- }
- .money_num{
- width: 90%;
- margin: 0 auto;
- margin-top: 25px;
- display: flex;
- align-items: center;
- justify-content: space-between;
- margin-bottom: 100px;
- }
- .num_inner{
- width: 60px;
- height: 35px;
- line-height: 35px;
- background: #ebebeb;
- color: #ffffff;
- text-align: center;
- border-radius: 3px;
- }
- .blue_style{
- background: #7dc5eb;
- }
- .btn_box{
- width: 90%;
- margin: 0 auto;
- background: #1296db;
- color: #ffffff;
- font-size: 14px;
- text-align: center;
- height: 35px;
- border-radius: 3px;
- line-height: 35px;
- }
|