|
123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172 |
- /* pages/apply/paymentTemplate/add/upError/upError.wxss */
-
- .top_tit{
- color: #878787;
- text-align: center;
- margin-bottom: 10px;
- }
- .top_tit text{
- display: inline-block;
- background-color: #E90000;
- padding: 5px 10px;
- color: #ffffff;
- border-radius: 8px;
- margin: 0 5px;
- }
- .main-box{
- background: #ffffff;
- padding: 15px 20px;
- width: 94%;
- margin: 0px auto 20px;
- border-radius: 10px;
- box-shadow: 0px 5px 5px rgba(0, 0, 0, 0.16);
- }
- .main_tit {
- display: flex;
- align-items: center;
- margin-bottom: 10px;
- }
- .main_bank {
- display: flex;
- justify-content: space-between;
- align-items: center;
- padding-left: 20px;
- margin-bottom: 10px;
- }
-
- .main_money {
- display: flex;
- justify-content: space-between;
- padding-left: 20px;
- margin-bottom: 10px;
- }
-
- .main_bank text:nth-child(1),.main_money text:nth-child(1){
- color: #878787;
- }
-
- .main_text {
- display: flex;
- }
- .tit_num{
- margin: 0 25px 0 5px;
- color: #E90000;
- }
- .text_tit{
- margin-left: 5px;
- color: #FC9A55;
- }
- .bank_type{
- display: inline-block;
- background-color: rgb(91, 174, 119,0.2);
- padding: 2px 5px;
- color: #5CAE77;
- border-radius: 5px;
- }
- .money{
- font-size: 18px;
- }
- .icon_money{
- font-size: 12px;
- color: #000000!important;
- }
|