|
@@ -46,17 +46,27 @@
|
|
|
|
|
|
.wrap {
|
|
|
position: relative;
|
|
|
- padding: 10Px;
|
|
|
height: 100%;
|
|
|
overflow: hidden;
|
|
|
background-color: #FFD8A1;
|
|
|
|
|
|
+ &::before {
|
|
|
+ content: '';
|
|
|
+ position: absolute;
|
|
|
+ left: 10Px;
|
|
|
+ right: 10Px;
|
|
|
+ top: 10Px;
|
|
|
+ bottom: 10Px;
|
|
|
+ background-color: #fff;
|
|
|
+ z-index: 1;
|
|
|
+ }
|
|
|
+
|
|
|
.wrapItem {
|
|
|
- padding: 10Px;
|
|
|
+ position: relative;
|
|
|
+ padding: 20Px;
|
|
|
height: 100%;
|
|
|
- background-color: #fff;
|
|
|
- border-radius: 3Px;
|
|
|
overflow: hidden;
|
|
|
+ z-index: 2;
|
|
|
}
|
|
|
|
|
|
.item {
|
|
@@ -64,12 +74,13 @@
|
|
|
font-size: 14px;
|
|
|
font-weight: 600;
|
|
|
color: #333;
|
|
|
- line-height: 22Px;
|
|
|
- padding: 6Px 0;
|
|
|
+ line-height: 20Px;
|
|
|
+ padding: 13Px 0;
|
|
|
word-break: break-all;
|
|
|
}
|
|
|
|
|
|
.des {
|
|
|
+ line-height: 16Px;
|
|
|
font-size: 12px;
|
|
|
font-weight: 400;
|
|
|
}
|
|
@@ -88,32 +99,47 @@
|
|
|
}
|
|
|
}
|
|
|
|
|
|
-:global(.odd) {
|
|
|
+:global(.even) {
|
|
|
.wrap {
|
|
|
- padding-left: 0;
|
|
|
-
|
|
|
- }
|
|
|
+ &::before {
|
|
|
+ right: 0;
|
|
|
+ border-radius: 4Px 0 0 4Px;
|
|
|
+ }
|
|
|
|
|
|
- .wrapItem {
|
|
|
- padding-left: 14Px;
|
|
|
- background-image: url('./pics/right-border.png');
|
|
|
- background-position: left top;
|
|
|
- background-repeat: no-repeat;
|
|
|
- background-size: 24Px 100%;
|
|
|
+ &::after {
|
|
|
+ content: '';
|
|
|
+ position: absolute;
|
|
|
+ right: 0;
|
|
|
+ top: 0;
|
|
|
+ bottom: 0;
|
|
|
+ width: 24Px;
|
|
|
+ background: linear-gradient(to right,rgba(255, 255, 255, 0) 20% ,rgba(229, 199, 156, .4) 100%);
|
|
|
+ z-index: 3;
|
|
|
+ }
|
|
|
}
|
|
|
}
|
|
|
|
|
|
-:global(.even) {
|
|
|
+:global(.odd) {
|
|
|
.wrap {
|
|
|
- padding-right: 0;
|
|
|
+ &::before {
|
|
|
+ left: 0;
|
|
|
+ border-radius: 0 4Px 4Px 0;
|
|
|
+ }
|
|
|
|
|
|
+ &::after {
|
|
|
+ content: '';
|
|
|
+ position: absolute;
|
|
|
+ left: 0;
|
|
|
+ top: 0;
|
|
|
+ bottom: 0;
|
|
|
+ width: 24Px;
|
|
|
+ background: linear-gradient(to right, rgba(255, 225, 183, .35) 8%, rgba(255, 255, 255, 0) 100%);
|
|
|
+ z-index: 2;
|
|
|
+ }
|
|
|
}
|
|
|
|
|
|
.wrapItem {
|
|
|
- padding-right: 14Px;
|
|
|
- background-image: url('./pics/left-border.png');
|
|
|
- background-position: right top;
|
|
|
- background-repeat: no-repeat;
|
|
|
- background-size: 24Px 100%;
|
|
|
+ padding-left: 20Px;
|
|
|
+
|
|
|
}
|
|
|
}
|