首次提交
2397
FrontCode2/sunshine_levy/src/assets/css/app.css
Normal file
BIN
FrontCode2/sunshine_levy/src/assets/img/assess_1.png
Normal file
|
After Width: | Height: | Size: 1.5 KiB |
BIN
FrontCode2/sunshine_levy/src/assets/img/assess_2.png
Normal file
|
After Width: | Height: | Size: 1.4 KiB |
BIN
FrontCode2/sunshine_levy/src/assets/img/bg.png
Normal file
|
After Width: | Height: | Size: 226 KiB |
BIN
FrontCode2/sunshine_levy/src/assets/img/compensation.png
Normal file
|
After Width: | Height: | Size: 5.9 KiB |
BIN
FrontCode2/sunshine_levy/src/assets/img/credentials_icon.png
Normal file
|
After Width: | Height: | Size: 5.2 KiB |
BIN
FrontCode2/sunshine_levy/src/assets/img/evaluation .png
Normal file
|
After Width: | Height: | Size: 6.5 KiB |
BIN
FrontCode2/sunshine_levy/src/assets/img/expropriationPolicy.png
Normal file
|
After Width: | Height: | Size: 112 KiB |
BIN
FrontCode2/sunshine_levy/src/assets/img/government.png
Normal file
|
After Width: | Height: | Size: 196 KiB |
BIN
FrontCode2/sunshine_levy/src/assets/img/menu_yhxy.png
Normal file
|
After Width: | Height: | Size: 2.3 KiB |
BIN
FrontCode2/sunshine_levy/src/assets/img/project.png
Normal file
|
After Width: | Height: | Size: 1.2 KiB |
BIN
FrontCode2/sunshine_levy/src/assets/img/project_area.png
Normal file
|
After Width: | Height: | Size: 8.0 KiB |
BIN
FrontCode2/sunshine_levy/src/assets/img/project_bg.png
Normal file
|
After Width: | Height: | Size: 7.6 KiB |
BIN
FrontCode2/sunshine_levy/src/assets/img/project_dep.png
Normal file
|
After Width: | Height: | Size: 2.3 KiB |
BIN
FrontCode2/sunshine_levy/src/assets/img/project_no.png
Normal file
|
After Width: | Height: | Size: 4.9 KiB |
BIN
FrontCode2/sunshine_levy/src/assets/img/project_right.png
Normal file
|
After Width: | Height: | Size: 7.1 KiB |
BIN
FrontCode2/sunshine_levy/src/assets/img/project_year.png
Normal file
|
After Width: | Height: | Size: 4.6 KiB |
BIN
FrontCode2/sunshine_levy/src/assets/img/renyuanliebiao.png
Normal file
|
After Width: | Height: | Size: 6.9 KiB |
BIN
FrontCode2/sunshine_levy/src/assets/img/scan.png
Normal file
|
After Width: | Height: | Size: 3.6 KiB |
BIN
FrontCode2/sunshine_levy/src/assets/img/skip.png
Normal file
|
After Width: | Height: | Size: 5.1 KiB |
BIN
FrontCode2/sunshine_levy/src/assets/logo.png
Normal file
|
After Width: | Height: | Size: 6.7 KiB |
28
FrontCode2/sunshine_levy/src/assets/rem.js
Normal file
@@ -0,0 +1,28 @@
|
||||
/**
|
||||
* 设置根元素font-size
|
||||
* 当设备宽度为375(iPhone6)时,根元素font-size=16px;
|
||||
*/
|
||||
(function (doc, win) {
|
||||
var docEl = win.document.documentElement;
|
||||
var resizeEvt = 'orientationchange' in window ? 'orientationchange' : 'resize';
|
||||
|
||||
var refreshRem = function () {
|
||||
var clientWidth = win.innerWidth
|
||||
|| doc.documentElement.clientWidth
|
||||
|| doc.body.clientWidth;
|
||||
|
||||
// console.log(clientWidth)
|
||||
if (!clientWidth) return;
|
||||
var fz;
|
||||
var width = clientWidth;
|
||||
fz = 16 * width / 375; // 可以根据项目需要,自行修改
|
||||
docEl.style.fontSize = fz + 'px'; //这样每一份也是16px,即1rem=16px
|
||||
};
|
||||
|
||||
if (!doc.addEventListener) return;
|
||||
win.addEventListener(resizeEvt, refreshRem, false);
|
||||
doc.addEventListener('DOMContentLoaded', refreshRem, false);
|
||||
refreshRem();
|
||||
|
||||
})(document, window);
|
||||
|
||||
135
FrontCode2/sunshine_levy/src/assets/reset.css
Normal file
@@ -0,0 +1,135 @@
|
||||
/* http://meyerweb.com/eric/tools/css/reset/
|
||||
v2.0 | 20110126
|
||||
License: none (public domain)
|
||||
*/
|
||||
|
||||
html,
|
||||
body,
|
||||
div,
|
||||
span,
|
||||
applet,
|
||||
object,
|
||||
iframe,
|
||||
h1,
|
||||
h2,
|
||||
h3,
|
||||
h4,
|
||||
h5,
|
||||
h6,
|
||||
p,
|
||||
blockquote,
|
||||
pre,
|
||||
a,
|
||||
abbr,
|
||||
acronym,
|
||||
address,
|
||||
big,
|
||||
cite,
|
||||
code,
|
||||
del,
|
||||
dfn,
|
||||
em,
|
||||
img,
|
||||
ins,
|
||||
kbd,
|
||||
q,
|
||||
s,
|
||||
samp,
|
||||
small,
|
||||
strike,
|
||||
strong,
|
||||
sub,
|
||||
sup,
|
||||
tt,
|
||||
var,
|
||||
b,
|
||||
u,
|
||||
i,
|
||||
center,
|
||||
dl,
|
||||
dt,
|
||||
dd,
|
||||
ol,
|
||||
ul,
|
||||
li,
|
||||
fieldset,
|
||||
form,
|
||||
label,
|
||||
legend,
|
||||
table,
|
||||
caption,
|
||||
tbody,
|
||||
tfoot,
|
||||
thead,
|
||||
tr,
|
||||
th,
|
||||
td,
|
||||
article,
|
||||
aside,
|
||||
canvas,
|
||||
details,
|
||||
embed,
|
||||
figure,
|
||||
figcaption,
|
||||
footer,
|
||||
header,
|
||||
hgroup,
|
||||
menu,
|
||||
nav,
|
||||
output,
|
||||
ruby,
|
||||
section,
|
||||
summary,
|
||||
time,
|
||||
mark,
|
||||
audio,
|
||||
video {
|
||||
margin: 0;
|
||||
padding: 0;
|
||||
border: 0;
|
||||
font-size: 100%;
|
||||
font: inherit;
|
||||
vertical-align: baseline;
|
||||
}
|
||||
|
||||
/* HTML5 display-role reset for older browsers */
|
||||
article,
|
||||
aside,
|
||||
details,
|
||||
figcaption,
|
||||
figure,
|
||||
footer,
|
||||
header,
|
||||
hgroup,
|
||||
menu,
|
||||
nav,
|
||||
section {
|
||||
display: block;
|
||||
}
|
||||
|
||||
body {
|
||||
line-height: 1;
|
||||
}
|
||||
|
||||
ol,
|
||||
ul {
|
||||
list-style: none;
|
||||
}
|
||||
|
||||
blockquote,
|
||||
q {
|
||||
quotes: none;
|
||||
}
|
||||
|
||||
blockquote:before,
|
||||
blockquote:after,
|
||||
q:before,
|
||||
q:after {
|
||||
content: '';
|
||||
content: none;
|
||||
}
|
||||
|
||||
table {
|
||||
border-collapse: collapse;
|
||||
border-spacing: 0;
|
||||
}
|
||||