41 lines
783 B
Plaintext
41 lines
783 B
Plaintext
@import '@/styles/common.less';
|
|
@import '@/styles/variables.less';
|
|
|
|
.agreement-popup {
|
|
&__content {
|
|
.flex-column();
|
|
padding: 40px 32px;
|
|
}
|
|
|
|
&__title {
|
|
font-size: 32px;
|
|
font-weight: 500;
|
|
line-height: 48px;
|
|
color: @blColor;;
|
|
margin-bottom: 24px;
|
|
}
|
|
|
|
&__body {
|
|
font-weight: 400;
|
|
font-size: 28px;
|
|
line-height: 40px;
|
|
color: @blColor;
|
|
margin-bottom: 24px;
|
|
align-self: flex-start;
|
|
};
|
|
|
|
&__btn-group {
|
|
margin-top: 32px;
|
|
.flex-row();
|
|
gap: 30px;
|
|
}
|
|
|
|
&__confirm-button {
|
|
.button(@width: 230px, @height: 72px, @fontSize: 28px, @fontWeight: 400, @borderRadius: 44px);
|
|
|
|
}
|
|
|
|
&__cancel-button {
|
|
.button(@width: 230px, @height: 72px, @fontSize: 28px, @fontWeight: 400, @borderRadius: 44px, @highlight: 0);
|
|
}
|
|
} |