138 lines
4.5 KiB
Plaintext
138 lines
4.5 KiB
Plaintext
page{
|
|
background: #ccc;
|
|
}
|
|
.container {
|
|
position: relative;
|
|
width: 100%;
|
|
height: 100%;
|
|
font-size: 14px;
|
|
color: #000;
|
|
}
|
|
.mydata-box{display: flex;flex-direction: column;align-items: center;justify-content: center;width:100%;}
|
|
|
|
.mydata-box .frombody{ padding:0.5em 1em;width:100%; display: flex;flex-direction: column; align-items: center; background-color:#fff;box-sizing: border-box;}
|
|
.mydata-box .frombody view{position: relative; width:100%;display: flex;flex-direction:row;padding:0.5em 0; box-sizing: border-box; text-align: center; }
|
|
.mydata-box .frombody view text{padding:0;height:2.5em; line-height: 2.5em;}
|
|
.mydata-box .frombody view input{width:14em;height:2.5em; line-height: 2.5em; background-color:#f5f5f5;border:1px solid #dfdfdf;border-radius:0.5em;padding: 0 0.2em;text-align:left; }
|
|
.mydata-box .frombody view.area input{width:12.8em;}
|
|
.mydata-box .frombody view.area image{position: absolute; top:1.1em; right:0; width:1.2em;height:1.2em;}
|
|
.mydata-box .frombody view.button{border: 0;}
|
|
.mydata-box .frombody view.button button{width:7em;height:2.5em; line-height: 2.5em; background:linear-gradient(to right,#00B050,#00B050); color:#fff; border-radius:0.5em;font-size: 1em;}
|
|
.Hidden_box{ position: fixed;display: flex;align-items: center; justify-content: center; top:0; left:0; width:100%;height:100vh; background:rgba(0, 0, 0, 0.5);z-index: 2;}
|
|
|
|
.text{
|
|
margin-bottom: 0.8em;
|
|
height: 2.5em;
|
|
line-height: 2.5em;
|
|
display: flex;
|
|
flex-direction: row;
|
|
align-items: center;
|
|
width: 100%;
|
|
border-bottom:1px solid #f1f1f1;
|
|
}
|
|
.text .line_flag{
|
|
margin-top: 0em;
|
|
margin-left: 0.8em;
|
|
margin-right: 0.5em;
|
|
width:0.5em;
|
|
height: 1.5em;
|
|
line-height: 1.5em;
|
|
background-color: #00B050;
|
|
border-radius:0.2em;
|
|
}
|
|
|
|
.text .line_more{
|
|
flex: 1;
|
|
text-align: right;
|
|
align-self: center;
|
|
color:#ff0000
|
|
}
|
|
.mybalance-box{display: flex;flex-direction: column;align-items: center;justify-content: center;width:100%; padding:0 0.8em; box-sizing: border-box;}
|
|
.mybalance-item{width:100%;display: flex;flex-direction: column; align-items: center;justify-content: center;box-sizing: border-box; padding:0.8em; margin:0.8em 0; margin-top: 0; line-height: 2em; background-color:#fff;border-radius:0.5em;}
|
|
.mybalance-item view{width:100%;display: flex;flex-direction: row; align-items: center;justify-content:left;color: #848484;}
|
|
.mybalance-item view text{color: #000;}
|
|
.mybalance-item view text.Totalprice{ margin-left: 1em;}
|
|
.mybalance-item view.Total{float: left; display: block;}
|
|
.mybalance-item view.Total view{float: left; display: block;width:auto; margin:0; padding:0; box-sizing: border-box; overflow: hidden;}
|
|
.mybalance-item view.Total view.right{float:right;color:#848484}
|
|
.mybalance-item view.Total view text{float: left; display: block;width:auto;color: #000;}
|
|
.mybalance-item view.Total0{float: left; display: block;color:#ff4d00;}
|
|
.mybalance-item view.Total0 view{float: left; display: block;width:auto; margin:0; padding:0;color:#ff4d00; box-sizing: border-box; overflow: hidden;}
|
|
.mybalance-item view.Total0 view.right{float:right;width:auto;color:#ff4d00;}
|
|
.mybalance-item view.Total0 view.right text{color:#000;}
|
|
.mybalance-item view.Total0 view.alink{color:#00B050;}
|
|
.mybalance-item view.Total0 view.alink text{color:#00B050;}
|
|
/* 弹出窗 */
|
|
.toast-box {
|
|
width: 100%;
|
|
height: 100%;
|
|
opacity: 1;
|
|
position: fixed;
|
|
top: 0px;
|
|
left: 0px;
|
|
}
|
|
.toastbg {
|
|
opacity: 0.5;
|
|
background-color: black;
|
|
position: absolute;
|
|
width: 100%;
|
|
min-height: 100vh;
|
|
}
|
|
.showToast {
|
|
position: absolute;
|
|
opacity: 1;
|
|
width: 80%;
|
|
margin-left: 10%;
|
|
margin-top: 70%;
|
|
}
|
|
.toast-main {
|
|
padding-top: 2vh;
|
|
padding-bottom: 2vh;
|
|
background-color: white;
|
|
text-align: center;
|
|
border-top-left-radius: 16rpx;
|
|
border-top-right-radius: 16rpx;
|
|
}
|
|
.toast-input {
|
|
margin-left: 5%;
|
|
margin-right: 5%;
|
|
margin-top:10%;
|
|
margin-bottom:10%;
|
|
background-color: rgb(240, 240, 240);
|
|
padding-left: 2vh;
|
|
padding-right: 2vh;
|
|
padding-top: 1vh;
|
|
padding-bottom: 1vh;
|
|
border-radius:0.5em;
|
|
}
|
|
.toast-input input{
|
|
background-color: rgb(240, 240, 240);
|
|
|
|
}
|
|
.toast-button {
|
|
display: flex;
|
|
background-color: white;
|
|
height:50px;
|
|
width:100%;
|
|
border-radius: 0px;
|
|
border-bottom-left-radius: 16rpx;
|
|
border-bottom-right-radius: 16rpx;
|
|
border-top:1px solid rgb(211, 211, 211);
|
|
}
|
|
.button1 {
|
|
width: 50%;
|
|
display: flex;
|
|
align-items: center;
|
|
justify-content: center;
|
|
border-radius: 0px;
|
|
border-bottom-left-radius: 16rpx;
|
|
}
|
|
.button2 {
|
|
width: 50%;
|
|
border-left:1px solid rgb(211, 211, 211);
|
|
display: flex;
|
|
align-items: center;
|
|
justify-content: center;
|
|
color:#40A4D6;
|
|
}
|