Authored by 李奇

fixed:css图片路径修正

@@ -37,7 +37,7 @@ $color-3a3a3a: #3a3a3a; @@ -37,7 +37,7 @@ $color-3a3a3a: #3a3a3a;
37 width: 17px; 37 width: 17px;
38 height: 20px; 38 height: 20px;
39 background-size: 17px 20px; 39 background-size: 17px 20px;
40 - background-image: url("/img/service/chat.png"); 40 + background-image: resolve('service/chat.png');
41 } 41 }
42 42
43 .logo { 43 .logo {
@@ -69,7 +69,7 @@ $color-3a3a3a: #3a3a3a; @@ -69,7 +69,7 @@ $color-3a3a3a: #3a3a3a;
69 width: 16px; 69 width: 16px;
70 cursor: pointer; 70 cursor: pointer;
71 background-size: 16px 16px; 71 background-size: 16px 16px;
72 - background-image: url("/img/service/close.png"); 72 + background-image: resolve('service/close.png');
73 } 73 }
74 } 74 }
75 75
@@ -127,7 +127,7 @@ $color-3a3a3a: #3a3a3a; @@ -127,7 +127,7 @@ $color-3a3a3a: #3a3a3a;
127 width: 24px; 127 width: 24px;
128 margin: 24px 16px 0 24px; 128 margin: 24px 16px 0 24px;
129 background-size: 24px 24px; 129 background-size: 24px 24px;
130 - background-image: url('/img/service/scan.png'); 130 + background-image: resolve('service/scan.png');
131 131
132 } 132 }
133 133
@@ -213,7 +213,7 @@ $color-3a3a3a: #3a3a3a; @@ -213,7 +213,7 @@ $color-3a3a3a: #3a3a3a;
213 margin-right: 6px; 213 margin-right: 6px;
214 margin-bottom: -2px; 214 margin-bottom: -2px;
215 background-size: 11px 11px; 215 background-size: 11px 11px;
216 - background-image: url('/img/service/tip.png'); 216 + background-image: resolve('service/tip.png');
217 } 217 }
218 218
219 a { 219 a {
@@ -365,7 +365,7 @@ $color-3a3a3a: #3a3a3a; @@ -365,7 +365,7 @@ $color-3a3a3a: #3a3a3a;
365 width: 11px; 365 width: 11px;
366 margin-right: 3px; 366 margin-right: 3px;
367 margin-bottom: -2px; 367 margin-bottom: -2px;
368 - background-image: url('../img/service/tip.png'); 368 + background-image: resolve('service/tip.png');
369 } 369 }
370 } 370 }
371 } 371 }
@@ -379,7 +379,7 @@ $color-3a3a3a: #3a3a3a; @@ -379,7 +379,7 @@ $color-3a3a3a: #3a3a3a;
379 height: 12px; 379 height: 12px;
380 width: 11px; 380 width: 11px;
381 background-size: contain; 381 background-size: contain;
382 - background-image: url('../img/service/loading.gif'); 382 + background-image: resolve('service/loading.gif');
383 } 383 }
384 384
385 img { 385 img {
@@ -462,7 +462,7 @@ $color-3a3a3a: #3a3a3a; @@ -462,7 +462,7 @@ $color-3a3a3a: #3a3a3a;
462 margin-right: 5px; 462 margin-right: 5px;
463 vertical-align: bottom; 463 vertical-align: bottom;
464 cursor: pointer; 464 cursor: pointer;
465 - background-image: url('/img/service/chat-sprite.png'); 465 + background-image: resolve('service/chat-sprite.png');
466 } 466 }
467 467
468 &:nth-child(2):before { 468 &:nth-child(2):before {
@@ -487,7 +487,7 @@ $color-3a3a3a: #3a3a3a; @@ -487,7 +487,7 @@ $color-3a3a3a: #3a3a3a;
487 width: 14px; 487 width: 14px;
488 height: 14px; 488 height: 14px;
489 background-size: contain; 489 background-size: contain;
490 - background-image: url('/img/service/human-service.png'); 490 + background-image: resolve('service/human-service.png');
491 } 491 }
492 } 492 }
493 493
@@ -854,7 +854,7 @@ $color-3a3a3a: #3a3a3a; @@ -854,7 +854,7 @@ $color-3a3a3a: #3a3a3a;
854 width: 35px; 854 width: 35px;
855 margin: 0 auto; 855 margin: 0 auto;
856 background-size: 35px 35px; 856 background-size: 35px 35px;
857 - background-image: url('/img/service/chat_02.png'); 857 + background-image: resolve('service/chat_02.png');
858 } 858 }
859 } 859 }
860 } 860 }
@@ -1024,11 +1024,11 @@ $color-3a3a3a: #3a3a3a; @@ -1024,11 +1024,11 @@ $color-3a3a3a: #3a3a3a;
1024 width: 30px; 1024 width: 30px;
1025 margin-right: 20px; 1025 margin-right: 20px;
1026 margin-bottom: 20px; 1026 margin-bottom: 20px;
1027 - background-image: url('../img/service/star-negative.png'); 1027 + background-image: resolve('service/star-negative.png');
1028 cursor: pointer; 1028 cursor: pointer;
1029 1029
1030 &.positive { 1030 &.positive {
1031 - background-image: url('../img/service/star-positive.png'); 1031 + background-image: resolve('service/star-positive.png');
1032 } 1032 }
1033 1033
1034 &:last-child { 1034 &:last-child {
@@ -1079,7 +1079,7 @@ $color-3a3a3a: #3a3a3a; @@ -1079,7 +1079,7 @@ $color-3a3a3a: #3a3a3a;
1079 display: inline-block; 1079 display: inline-block;
1080 height: 27px; 1080 height: 27px;
1081 width: 27px; 1081 width: 27px;
1082 - background-image: url('../img/service/btn-chosen.png'); 1082 + background-image: resolve('service/btn-chosen.png');
1083 1083
1084 } 1084 }
1085 } 1085 }