...
|
...
|
@@ -31,7 +31,7 @@ $suggest: sprite-map("me/suggest/*.png",$spacing: 5px); |
|
|
|
|
|
//意见反馈主体
|
|
|
.suggest-content {
|
|
|
border-top: pxToRem(30px) solid #fff;
|
|
|
border-top: 1px solid #e0e0e0;
|
|
|
|
|
|
.suggest-item {
|
|
|
width: 100%;
|
...
|
...
|
@@ -76,6 +76,7 @@ $suggest: sprite-map("me/suggest/*.png",$spacing: 5px); |
|
|
&.suggest-active {
|
|
|
> div {
|
|
|
width: 50%;
|
|
|
height: 100%;
|
|
|
float: left;
|
|
|
text-align: left;
|
|
|
padding-left: pxToRem(128px);
|
...
|
...
|
@@ -135,8 +136,29 @@ $suggest: sprite-map("me/suggest/*.png",$spacing: 5px); |
|
|
line-height: pxToRem(88px);
|
|
|
text-align: center;
|
|
|
font-size: pxToRem(30px);
|
|
|
border-top: 1px solid #e0e0e0;
|
|
|
border-bottom: 1px solid #e0e0e0;
|
|
|
//border-top: 1px solid #e0e0e0;
|
|
|
//border-bottom: 1px solid #e0e0e0;
|
|
|
border-top: pxToRem(30px) solid #f0f0f0;
|
|
|
border-bottom: pxToRem(30px) solid #f0f0f0;
|
|
|
position: relative;
|
|
|
&:after {
|
|
|
content: '';
|
|
|
width: 100%;
|
|
|
height: 1px;
|
|
|
border-top: 1px solid #e0e0e0;
|
|
|
position: absolute;
|
|
|
left: 0;
|
|
|
top: 0;
|
|
|
}
|
|
|
&:before {
|
|
|
content: '';
|
|
|
width: 100%;
|
|
|
height: 1px;
|
|
|
border-bottom: 1px solid #e0e0e0;
|
|
|
position: absolute;
|
|
|
left: 0;
|
|
|
bottom: 0;
|
|
|
}
|
|
|
|
|
|
a {
|
|
|
color: #444;
|
...
|
...
|
|