You can not select more than 25 topics
Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.
|
|
|
|
|
|
|
|
|
@import "../fonts/index.css";
|
|
|
|
|
html,
|
|
|
|
|
body #app {
|
|
|
|
|
color: @black;
|
|
|
|
|
background-color: @background-color;
|
|
|
|
|
}
|
|
|
|
|
|
|
|
|
|
#app {
|
|
|
|
|
font-size: 16px;
|
|
|
|
|
background-size: 100% auto;
|
|
|
|
|
}
|
|
|
|
|
|
|
|
|
|
.card{
|
|
|
|
|
background-color: #fff;
|
|
|
|
|
border-radius: 8px;
|
|
|
|
|
box-shadow: 0 1px 3px rgba(0,0,0,.3);
|
|
|
|
|
padding: 13px;
|
|
|
|
|
box-sizing: border-box;
|
|
|
|
|
width: auto;
|
|
|
|
|
}
|
|
|
|
|
.flex{
|
|
|
|
|
display: flex;
|
|
|
|
|
.flex1{
|
|
|
|
|
flex: 1;
|
|
|
|
|
}
|
|
|
|
|
&-y{
|
|
|
|
|
flex-direction: column;
|
|
|
|
|
}
|
|
|
|
|
&-center1{
|
|
|
|
|
justify-content: center;
|
|
|
|
|
}
|
|
|
|
|
&-center2{
|
|
|
|
|
align-items: center;
|
|
|
|
|
}
|
|
|
|
|
&-center3{
|
|
|
|
|
align-items: flex-start;
|
|
|
|
|
}
|
|
|
|
|
|
|
|
|
|
&-mean{
|
|
|
|
|
justify-content: space-around;
|
|
|
|
|
}
|
|
|
|
|
&-end{
|
|
|
|
|
justify-content: space-between;
|
|
|
|
|
}
|
|
|
|
|
&-fend{
|
|
|
|
|
justify-content: flex-end;
|
|
|
|
|
}
|
|
|
|
|
}
|
|
|
|
|
.m{
|
|
|
|
|
&-left12{
|
|
|
|
|
margin-left: 12px;
|
|
|
|
|
}
|
|
|
|
|
&-left18{
|
|
|
|
|
margin-left: 18px;
|
|
|
|
|
}
|
|
|
|
|
&-right12{
|
|
|
|
|
margin-right: 12px;
|
|
|
|
|
}
|
|
|
|
|
&-right7{
|
|
|
|
|
margin-right: 7px;
|
|
|
|
|
}
|
|
|
|
|
&-top12{
|
|
|
|
|
margin-top: 12px;
|
|
|
|
|
}
|
|
|
|
|
&-top5{
|
|
|
|
|
margin-top: 5px;
|
|
|
|
|
}
|
|
|
|
|
&-bottom{
|
|
|
|
|
margin-bottom: 5px;
|
|
|
|
|
}
|
|
|
|
|
}
|
|
|
|
|
|
|
|
|
|
.p-18{
|
|
|
|
|
padding: 0 18px;
|
|
|
|
|
}
|
|
|
|
|
|
|
|
|
|
.bto_btn{
|
|
|
|
|
position: fixed;
|
|
|
|
|
bottom: 5px;
|
|
|
|
|
left: 0;
|
|
|
|
|
background: #ffffff;
|
|
|
|
|
width: 100%;
|
|
|
|
|
padding: 6px 26px;
|
|
|
|
|
box-sizing: border-box;
|
|
|
|
|
text-align: right;
|
|
|
|
|
}
|
|
|
|
|
|
|
|
|
|
.required{
|
|
|
|
|
position: relative;
|
|
|
|
|
}
|
|
|
|
|
|
|
|
|
|
.required::after{
|
|
|
|
|
content: '*';
|
|
|
|
|
position: absolute;
|
|
|
|
|
left: -10px;
|
|
|
|
|
top: 0;
|
|
|
|
|
color: red;
|
|
|
|
|
}
|
|
|
|
|
|
|
|
|
|
.mr10 {
|
|
|
|
|
margin-right: 10px;
|
|
|
|
|
}
|
|
|
|
|
|
|
|
|
|
.primary-color {
|
|
|
|
|
color: @blue;
|
|
|
|
|
}
|
|
|
|
|
|
|
|
|
|
.jcsb {
|
|
|
|
|
justify-content: space-between;
|
|
|
|
|
}
|
|
|
|
|
|
|
|
|
|
.aic {
|
|
|
|
|
align-items: center;
|
|
|
|
|
}
|
|
|
|
|
.container {
|
|
|
|
|
padding: 10px;
|
|
|
|
|
}
|
|
|
|
|
|