131 lines
2.1 KiB
SCSS
131 lines
2.1 KiB
SCSS
input{
|
|
border: none;
|
|
}
|
|
button{
|
|
border: none;
|
|
}
|
|
select{
|
|
background-color: transparent; /* 设置透明背景色 */
|
|
border: none; /* 取消边框 */
|
|
outline: none;
|
|
}
|
|
.van-toast--html, .van-toast--text {
|
|
z-index: 100000000002 !important;
|
|
}
|
|
.van-popup--bottom {
|
|
z-index: 10000000000 !important;
|
|
}
|
|
.van-dialog {
|
|
z-index: 100000000001 !important;
|
|
}
|
|
.van-overlay {
|
|
z-index: 9999999999 !important;
|
|
}
|
|
.van-dialog__content {
|
|
max-height: 70vh;
|
|
overflow-y: auto;
|
|
}
|
|
::v-deep .van-nav-bar__content{
|
|
background-color: #2C395F ;
|
|
}
|
|
::v-deep .van-nav-bar__title{
|
|
color: #fff;
|
|
opacity: .7;
|
|
font-weight: bolder;
|
|
font-size: 18px;
|
|
}
|
|
::v-deep .van-nav-bar .van-icon{
|
|
color: #fff;
|
|
opacity: .7;
|
|
font-size: 18px;
|
|
width: 6px;
|
|
height: 13px;
|
|
}
|
|
::v-deep .van-radio__label{
|
|
margin-left: 0;
|
|
font-weight: normal;
|
|
font-size: 14px;
|
|
color: #000000;
|
|
}
|
|
.text_center {
|
|
text-align: center;
|
|
}
|
|
//同意协议勾选
|
|
.protocol-list {
|
|
display: flex;
|
|
//align-items: top;
|
|
margin-top: 5px;
|
|
justify-content: center;
|
|
position: fixed;
|
|
bottom: 20px;
|
|
text-align: center;
|
|
width: 100%;
|
|
padding: 20px;
|
|
box-sizing: border-box;
|
|
.protocol-text {
|
|
font-size: 12px;
|
|
color: #203152;
|
|
line-height: 18px;
|
|
//text-align: left;
|
|
.linkColor {
|
|
color: #3364B7;
|
|
word-break: keep-all;
|
|
}
|
|
}
|
|
}
|
|
|
|
.icon_register {
|
|
width: 100%;
|
|
height: auto;
|
|
}
|
|
.mr15 {
|
|
margin-right: 15px;
|
|
}
|
|
.mt20 {
|
|
margin-top: 20px;
|
|
}
|
|
.flex_vertical_center {
|
|
display: flex;
|
|
align-items: center;
|
|
}
|
|
.flex {
|
|
display: flex;
|
|
}
|
|
.flex_between {
|
|
justify-content: space-between;
|
|
}
|
|
|
|
|
|
/*@mixin wh($w,$h) {
|
|
width: $w;
|
|
height: $h;
|
|
}
|
|
@mixin flex(){
|
|
display: flex;
|
|
}
|
|
@mixin alignCenter(){
|
|
@include flex();
|
|
align-items: center;
|
|
}
|
|
@mixin col(){
|
|
@include flex();
|
|
flex-direction: column;
|
|
}
|
|
@mixin colBothCenter(){
|
|
@include col();
|
|
justify-content: center;
|
|
align-items: center;
|
|
}
|
|
@mixin sizingPadding($t,$r,$b,$l) {
|
|
box-sizing: border-box;
|
|
padding: $t $r $b $l;
|
|
}*/
|
|
/*@mixin weigthSize($wei,$size){
|
|
font-weight:$wei ;
|
|
font-size: $size;
|
|
}
|
|
@mixin weigthSizeColor($wei,$size,$col){
|
|
@include weigthSize($wei,$size);
|
|
color: $col;
|
|
}*/
|