first commit

This commit is contained in:
编码猿
2024-09-27 02:06:13 +08:00
commit 852d94fbb9
36760 changed files with 3274413 additions and 0 deletions

View File

@@ -0,0 +1,22 @@
// 商家主题颜色
@background : #4c86f7;
@pagebackground : #ffffff;
@backgroundF5 : #f5f5f5;
// 字体颜色
@color1 : #4f6d95;
@color2 : #0e2f5e;
@color3 : #333333;
@color4 : #4c86f7;
@color8F : #8f8f8f;
@color81 : #818181;
@colorR : #ed3534;
// 登录页input下边线颜色
@inputbottomline : #e5e5e5;
// 订单详情页背景颜色
@infoBackground : #f7f7f7;
// 卡片背景颜色
@unitBbcolor : #ffffff;

View File

@@ -0,0 +1,3 @@
@import "./reset.less" ;
@import "./color.less" ;
@import "./mixin.less" ;

View File

@@ -0,0 +1,27 @@
// 弹性盒子 水平垂直居中
.alineCenter{
display : flex;
justify-content: center;
align-items: center;
}
// 弹性盒子 多元素垂直居中
.verticalCenter{
display: flex;
flex-flow: column;
align-items: center;
}
// 弹性盒子 单行元素水平居中
.levelCenter{
display: flex;
align-items: center;
}
// 设置下边线
.undeLine(@backgroundColor,@bottom){
content: "";
width: 100%;
height: 2upx;
background-color: @backgroundColor;
position: absolute;
left: 0;
bottom: @bottom;
}

View File

@@ -0,0 +1,20 @@
body {margin:0; padding:0; font:12px/1.5 helvetica,arial,"Microsoft YaHei",\5b8b\4f53;}
div,dl,dt,dd,ul,ol,li,h1,h2,h3,h4,h5,h6,pre,form,fieldset,input,textarea,blockquote,p{padding:0; margin:0;}
table,td,tr,th{font-size:12px;}
ol,ul {list-style:none;}
li{list-style-type:none;}
img{vertical-align:top;border:0;max-width: 100%; height:auto;}
h1,h2,h3,h4,h5,h6{font-size:inherit; font-weight:normal;}
address,cite,code,em,th,i,var{font-weight:normal; font-style:normal;}
.clearfix{zoom:1;}
.clearfix:after{display:block; overflow:hidden; clear:both; height:0; visibility:hidden; content:".";}
a:link,a:visited
{
color:#000;
text-decoration: none;
}
input
{
outline: 0;
outline: none;
}