页面调整
|
@ -2,110 +2,112 @@
|
||||||
@charset "utf-8";
|
@charset "utf-8";
|
||||||
/* reset section */
|
/* reset section */
|
||||||
*{
|
*{
|
||||||
padding:0;
|
padding:0;
|
||||||
margin:0;
|
margin:0;
|
||||||
-webkit-font-smoothing: antialiased;
|
-webkit-font-smoothing: antialiased;
|
||||||
font-family: "微软雅黑" !important;
|
font-family: 'Microsoft Yahei', sans-serif, 'SimSun', 'SimHei';
|
||||||
color: #333333;
|
color: #333333;
|
||||||
box-sizing: border-box;
|
box-sizing: border-box;
|
||||||
-webkit-box-sizing: border-box;
|
-webkit-box-sizing: border-box;
|
||||||
-moz-box-sizing: border-box;
|
-moz-box-sizing: border-box;
|
||||||
-ms-box-sizing: border-box;
|
-ms-box-sizing: border-box;
|
||||||
-o-box-sizing: border-box;
|
-o-box-sizing: border-box;
|
||||||
word-break: break-word;
|
word-break: break-word;
|
||||||
word-break: break-all;/*英文不溢出*/
|
word-break: break-all;/*英文不溢出*/
|
||||||
}
|
}
|
||||||
html,body{
|
html,body{
|
||||||
margin: 0;
|
margin: 0;
|
||||||
padding: 0;
|
padding: 0;
|
||||||
}
|
}
|
||||||
a{
|
a{
|
||||||
text-decoration:none;
|
text-decoration:none;
|
||||||
cursor:pointer;
|
cursor:pointer;
|
||||||
outline:none;
|
outline:none;
|
||||||
}
|
}
|
||||||
h1,h2,h3,h4,h5,h6{
|
h1,h2,h3,h4,h5,h6{
|
||||||
font-weight: normal;
|
font-weight: normal;
|
||||||
}
|
}
|
||||||
input:focus {
|
input:focus {
|
||||||
outline:none;
|
outline:none;
|
||||||
}
|
}
|
||||||
button{
|
button{
|
||||||
cursor:pointer;
|
cursor:pointer;
|
||||||
border:none;
|
border:none;
|
||||||
outline:none;
|
outline:none;
|
||||||
background:none;
|
background:none;
|
||||||
}
|
}
|
||||||
img{
|
img{
|
||||||
border: none;
|
border: none;
|
||||||
width: 100%;
|
width: 100%;
|
||||||
max-width: 100%;
|
max-width: 100%;
|
||||||
display: block;
|
display: block;
|
||||||
}
|
}
|
||||||
object {
|
object {
|
||||||
max-width: 100%;
|
max-width: 100%;
|
||||||
}
|
}
|
||||||
ul,li {
|
ul,li {
|
||||||
list-style: none;
|
list-style: none;
|
||||||
list-style-type:none;
|
list-style-type:none;
|
||||||
text-transform:capitalize;/*首字母大写*/
|
text-transform:capitalize;/*首字母大写*/
|
||||||
margin: 0;
|
margin: 0;
|
||||||
padding: 0;
|
padding: 0;
|
||||||
}
|
}
|
||||||
table{
|
table{
|
||||||
border-collapse:collapse;
|
border-collapse:collapse;
|
||||||
border-spacing:0;
|
border-spacing:0;
|
||||||
}
|
}
|
||||||
table td{
|
table td{
|
||||||
|
|
||||||
}
|
}
|
||||||
input{
|
input{
|
||||||
border:none;
|
border:none;
|
||||||
background:none;
|
background:none;
|
||||||
outline:none;
|
outline:none;
|
||||||
margin: 0;
|
margin: 0;
|
||||||
padding: 0;
|
padding: 0;
|
||||||
}
|
}
|
||||||
button{
|
button{
|
||||||
margin: 0;
|
margin: 0;
|
||||||
padding: 0;
|
padding: 0;
|
||||||
}
|
}
|
||||||
/*所有元素去高光*/
|
/*所有元素去高光*/
|
||||||
a,img,button,input,textarea,div{
|
a,img,button,input,textarea,div{
|
||||||
-webkit-tap-highlight-color:rgba(255,255,255,0);
|
-webkit-tap-highlight-color:rgba(255,255,255,0);
|
||||||
}
|
}
|
||||||
input,textarea{
|
input,textarea{
|
||||||
|
|
||||||
}
|
}
|
||||||
select::-ms-expand {
|
select::-ms-expand {
|
||||||
display: none;
|
display: none;
|
||||||
}
|
}
|
||||||
input,img,button{
|
input,img,button{
|
||||||
vertical-align:middle;
|
vertical-align:middle;
|
||||||
font-family: "微软雅黑";
|
font-family: "微软雅黑";
|
||||||
}
|
}
|
||||||
|
|
||||||
.left{
|
.left{
|
||||||
display: block;
|
display: block;
|
||||||
float: left;
|
float: left;
|
||||||
}
|
}
|
||||||
.right{
|
.right{
|
||||||
display: block;
|
display: block;
|
||||||
float: right;
|
float: right;
|
||||||
}
|
}
|
||||||
.hide{
|
.hide{
|
||||||
display: none;
|
display: none;
|
||||||
}
|
}
|
||||||
.clear{
|
.clear{
|
||||||
clear: both;
|
clear: both;
|
||||||
}
|
}
|
||||||
.clearfloat:after{
|
.clearfloat:after{
|
||||||
display: block;
|
display: block;
|
||||||
clear: both;
|
clear: both;
|
||||||
content: "";
|
content: "";
|
||||||
visibility: hidden;
|
visibility: hidden;
|
||||||
height: 0;
|
height: 0;
|
||||||
}
|
}
|
||||||
.clearfloat{
|
.clearfloat{
|
||||||
zoom:1
|
zoom:1
|
||||||
}
|
}
|
||||||
|
|
||||||
|
|
||||||
|
@ -114,29 +116,29 @@ input,img,button{
|
||||||
|
|
||||||
/*一行超出变..*/
|
/*一行超出变..*/
|
||||||
.elli{
|
.elli{
|
||||||
display: block;
|
display: block;
|
||||||
text-overflow: ellipsis;
|
text-overflow: ellipsis;
|
||||||
white-space: nowrap;
|
white-space: nowrap;
|
||||||
overflow: hidden;
|
overflow: hidden;
|
||||||
word-break:break-all;
|
word-break:break-all;
|
||||||
}
|
}
|
||||||
/*超2行变...*/
|
/*超2行变...*/
|
||||||
.over-line2{
|
.over-line2{
|
||||||
display: -webkit-box;
|
display: -webkit-box;
|
||||||
-webkit-box-orient: vertical;
|
-webkit-box-orient: vertical;
|
||||||
-webkit-line-clamp: 2;
|
-webkit-line-clamp: 2;
|
||||||
overflow: hidden;
|
overflow: hidden;
|
||||||
word-break:break-all;
|
word-break:break-all;
|
||||||
word-wrap:break-word;
|
word-wrap:break-word;
|
||||||
}
|
}
|
||||||
/*超3行变...*/
|
/*超3行变...*/
|
||||||
.over-line3{
|
.over-line3{
|
||||||
display: -webkit-box;
|
display: -webkit-box;
|
||||||
-webkit-box-orient: vertical;
|
-webkit-box-orient: vertical;
|
||||||
-webkit-line-clamp: 3;
|
-webkit-line-clamp: 3;
|
||||||
overflow: hidden;
|
overflow: hidden;
|
||||||
word-break:break-all;
|
word-break:break-all;
|
||||||
word-wrap:break-word;
|
word-wrap:break-word;
|
||||||
}
|
}
|
||||||
/*盒子模型*/
|
/*盒子模型*/
|
||||||
.flex-box{
|
.flex-box{
|
||||||
|
|
1769
public/css/style.css
Before Width: | Height: | Size: 1.4 MiB |
Before Width: | Height: | Size: 1.8 MiB |
After Width: | Height: | Size: 1.4 MiB |
After Width: | Height: | Size: 204 KiB |
After Width: | Height: | Size: 3.1 KiB |
Before Width: | Height: | Size: 365 KiB |
After Width: | Height: | Size: 326 KiB |
After Width: | Height: | Size: 810 B |
Before Width: | Height: | Size: 548 KiB |
Before Width: | Height: | Size: 13 KiB |
After Width: | Height: | Size: 1.2 KiB |
After Width: | Height: | Size: 353 KiB |
After Width: | Height: | Size: 133 KiB |
Before Width: | Height: | Size: 2.6 KiB |
Before Width: | Height: | Size: 150 KiB |
Before Width: | Height: | Size: 181 KiB |
Before Width: | Height: | Size: 184 KiB |
After Width: | Height: | Size: 272 KiB |
After Width: | Height: | Size: 742 KiB |
After Width: | Height: | Size: 963 B |
After Width: | Height: | Size: 966 B |
Before Width: | Height: | Size: 1.2 KiB |
Before Width: | Height: | Size: 1.2 KiB |
After Width: | Height: | Size: 809 B |
After Width: | Height: | Size: 2.3 KiB |
After Width: | Height: | Size: 3.0 KiB |
After Width: | Height: | Size: 1.5 KiB |
After Width: | Height: | Size: 2.1 KiB |
After Width: | Height: | Size: 672 B |
After Width: | Height: | Size: 820 B |
After Width: | Height: | Size: 1.2 KiB |
After Width: | Height: | Size: 2.3 KiB |
After Width: | Height: | Size: 1.5 KiB |
After Width: | Height: | Size: 2.2 KiB |
After Width: | Height: | Size: 1.2 KiB |
After Width: | Height: | Size: 1.6 KiB |
After Width: | Height: | Size: 75 KiB |
After Width: | Height: | Size: 176 KiB |
After Width: | Height: | Size: 1.1 KiB |
Before Width: | Height: | Size: 57 KiB After Width: | Height: | Size: 6.8 KiB |
Before Width: | Height: | Size: 11 KiB |
After Width: | Height: | Size: 180 KiB |
After Width: | Height: | Size: 1.1 KiB |
After Width: | Height: | Size: 1.1 KiB |
After Width: | Height: | Size: 789 B |
After Width: | Height: | Size: 570 B |
After Width: | Height: | Size: 572 B |
After Width: | Height: | Size: 973 B |
After Width: | Height: | Size: 1.0 KiB |
After Width: | Height: | Size: 221 B |
After Width: | Height: | Size: 1.1 KiB |
After Width: | Height: | Size: 971 B |
After Width: | Height: | Size: 1.1 KiB |
After Width: | Height: | Size: 1.2 KiB |
After Width: | Height: | Size: 899 B |
After Width: | Height: | Size: 991 B |
After Width: | Height: | Size: 64 KiB |
After Width: | Height: | Size: 49 KiB |
After Width: | Height: | Size: 225 KiB |
After Width: | Height: | Size: 288 KiB |
After Width: | Height: | Size: 1.3 KiB |
After Width: | Height: | Size: 121 KiB |
After Width: | Height: | Size: 6.0 KiB |
Before Width: | Height: | Size: 440 B After Width: | Height: | Size: 632 B |
After Width: | Height: | Size: 74 KiB |
After Width: | Height: | Size: 489 B |
After Width: | Height: | Size: 286 B |
After Width: | Height: | Size: 59 KiB |
After Width: | Height: | Size: 443 KiB |
After Width: | Height: | Size: 65 KiB |
After Width: | Height: | Size: 106 KiB |
After Width: | Height: | Size: 53 KiB |
After Width: | Height: | Size: 530 KiB |
After Width: | Height: | Size: 430 KiB |
Before Width: | Height: | Size: 320 KiB |
Before Width: | Height: | Size: 2.7 KiB |
Before Width: | Height: | Size: 3.0 KiB |
Before Width: | Height: | Size: 71 KiB |
Before Width: | Height: | Size: 60 KiB |
After Width: | Height: | Size: 254 KiB |
Before Width: | Height: | Size: 2.6 KiB |
Before Width: | Height: | Size: 37 KiB |
Before Width: | Height: | Size: 32 KiB |
After Width: | Height: | Size: 384 B |
Before Width: | Height: | Size: 3.1 KiB |
Before Width: | Height: | Size: 12 KiB |
Before Width: | Height: | Size: 15 KiB |
Before Width: | Height: | Size: 12 KiB |
Before Width: | Height: | Size: 18 KiB |
Before Width: | Height: | Size: 17 KiB |
Before Width: | Height: | Size: 12 KiB |
After Width: | Height: | Size: 100 KiB |
After Width: | Height: | Size: 1.1 KiB |
After Width: | Height: | Size: 279 KiB |
After Width: | Height: | Size: 87 KiB |
After Width: | Height: | Size: 50 KiB |
After Width: | Height: | Size: 56 KiB |
After Width: | Height: | Size: 77 KiB |