47 lines
754 B
SCSS
47 lines
754 B
SCSS
.header {
|
|
height: 80rpx;
|
|
display: flex;
|
|
flex-direction: column;
|
|
justify-content: center;
|
|
.container {
|
|
display: flex;
|
|
flex-direction: row;
|
|
justify-content: center;
|
|
.title {
|
|
padding-left: 20rpx;
|
|
font-size: 36rpx;
|
|
font-weight: 600;
|
|
letter-spacing: 10rpx;
|
|
}
|
|
}
|
|
}
|
|
.body{
|
|
margin-top: 0rpx;
|
|
.payinfo{
|
|
width: 90%;
|
|
margin: 0 auto;
|
|
}
|
|
}
|
|
.line {
|
|
width: 100%;
|
|
height: 10rpx;
|
|
background: #f0ecec;
|
|
}
|
|
|
|
.content {
|
|
margin: 30rpx;
|
|
background: #ffffff;
|
|
box-shadow: 0px 4px 10px 0px rgba(183, 182, 182, 0.5);
|
|
border-radius: 10px;
|
|
padding-left: 30rpx;
|
|
padding-right: 30rpx;
|
|
}
|
|
|
|
.button {
|
|
width: 90%;
|
|
font-size: 40rpx;
|
|
background-color: #ed6d00;
|
|
color: #ffffff;
|
|
letter-spacing: 10rpx;
|
|
}
|