|
1234567891011121314151617181920212223242526272829303132333435363738394041424344454647484950515253545556575859606162636465666768697071727374757677787980818283848586 |
- /* pages/apply/paymentTemplate/paymentTemplate.wxss */
- text{display: block;}
- .top{
- height: 64px;
- width: 100%;
- position: fixed;
- z-index: 999;
- top:0px;
- }
- .top text{
- position: relative;
- top: 30px;
- margin-right: 30px;
- display: block;
- color: #eee;
- text-align: center;
- width: 100%;
- font-size: 16px;
- }
- .bgPage{
- width: 140%;
- position:absolute;
- transform: translate(-15%, -50%);
- height: 300px;
- z-index: -1;
- }
-
- .main-box{
- background: #ffffff;
- padding: 20px;
- width: 94%;
- margin: 0 auto;
- border-radius: 10px;
- box-shadow: 0px 5px 5px rgba(0, 0, 0, 0.16);
- }
- .top-box{
- /* margin-top: 20px; */
- /* margin-bottom: 28px; */
- }
- .top-box text{
- margin-bottom: 15px;
- }
- .top-box text:last-child{
- margin-bottom: 0px;
- }
- .box-title{
- color: #2C8E68;
- text-align: center;
- font-size: 16px;
- }
-
- .input_tit{
- border: 1px solid #DCDCDC;
- padding: 0px 10px;
- height: 32px;
- line-height: 32px;
- border-radius: 5px;
- margin-bottom: 15px;
- }
-
- .input_money{
- padding: 0px 10px;
- height: 32px;
- line-height: 32px;
- color: #E90000;
- font-size: 26px;
- display: inline-block;
- width: 50%;
- }
-
- .money_box{
- font-size: 26px;
- border-bottom:1px solid #DCDCDC;
- width: 70%;
- margin: 0 auto;
- margin-bottom: 15px;
- color: #E90000;
- display: flex;
- align-items: center;
- justify-content: center;
- }
- .title{
- padding: 10px calc(3% + 20px);
- color: #2C8E68;
- font-size: 16px;
- }
|