This commit is contained in:
2023-08-11 10:45:20 +08:00
commit 161ca982f3
31850 changed files with 2706500 additions and 0 deletions

40
src/styles/common.scss Normal file
View File

@ -0,0 +1,40 @@
.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: #354683 ;
}
::v-deep .van-nav-bar__title{
color: #fff;
opacity: .7;
font-weight: 500;
font-size: 15px;
}
::v-deep .van-nav-bar .van-icon{
color: #fff;
opacity: .7;
font-size: 15px;
width: 6px;
height: 13px;
}
::v-deep .van-radio__label{
margin-left: 0;
font-weight: 400;
font-size: 14px;
//@include fontWeightSize(400,14px);
color: #000000;
}

41
src/styles/mixin.scss Normal file
View File

@ -0,0 +1,41 @@
@mixin fontWeightSize($weight,$size){
font-size: $size;
font-weight: $weight;
}
@mixin bgFontColor($color,$bgcolor){
color:$color;
background: $bgcolor;
}
@mixin all-height($height) {
height: $height;
line-height: $height;
}
@mixin whLin($width,$height){
width: $width;
@include all-height($height)
}
@mixin widHeiMar($width,$height,$marin){
width: $width;
height: $height;
margin-right: $marin;
}
@mixin wh($w,$h){
width: $w;
height: $h;
}
@mixin flexColumn{
display: flex;
flex-direction: column;
}
@mixin flexBetween(){
@include flexColumn;
justify-content: space-between;
}
@mixin flexColBet(){
display: flex;
justify-content: space-between;
}
@mixin flexCenter(){
display: flex;
align-items: center;
}