|
@@ -159,16 +159,16 @@ body {
|
|
|
&-bulletList {
|
|
|
position: absolute;
|
|
|
bottom: 10px;
|
|
|
- left: calc(50% - 650px);
|
|
|
+ // left: calc(50% - 650px);
|
|
|
width: 1300px;
|
|
|
+ max-width: 100%;
|
|
|
box-sizing: border-box;
|
|
|
display: flex;
|
|
|
z-index: 10;
|
|
|
background-color: rgba(0, 0, 0, 0.1);
|
|
|
|
|
|
- @media (max-width:576px) {
|
|
|
- width: 100%;
|
|
|
- left: 0px;
|
|
|
+ @media (max-width: 991px) {
|
|
|
+ bottom: 0;
|
|
|
}
|
|
|
}
|
|
|
|
|
@@ -3365,6 +3365,7 @@ iframe {
|
|
|
color: #fff;
|
|
|
text-shadow: 1px 2px 4px rgb(188 84 6);
|
|
|
background-color: transparent !important;
|
|
|
+
|
|
|
span {
|
|
|
width: 225%;
|
|
|
height: 500%;
|
|
@@ -3378,10 +3379,50 @@ iframe {
|
|
|
.top-card {
|
|
|
a {
|
|
|
span {
|
|
|
- // background-color: #f5d2b7; // 測試
|
|
|
+ // background-color: #f5d2b7;
|
|
|
background-color: var(--sub-color);
|
|
|
}
|
|
|
}
|
|
|
+
|
|
|
+ .bag-btn {
|
|
|
+ color: var(--sub-color) !important;
|
|
|
+
|
|
|
+ &:hover {
|
|
|
+ color: #fff !important;
|
|
|
+
|
|
|
+ section {
|
|
|
+ img {
|
|
|
+ transition: all .5s;
|
|
|
+
|
|
|
+ &:last-child {
|
|
|
+ opacity: 1;
|
|
|
+ }
|
|
|
+ }
|
|
|
+ }
|
|
|
+ }
|
|
|
+
|
|
|
+ section {
|
|
|
+ width: 20px;
|
|
|
+ position: relative;
|
|
|
+
|
|
|
+ img {
|
|
|
+ width: 15px;
|
|
|
+ text-shadow: 1px 2px 4px rgb(188, 84, 6);
|
|
|
+ top: -10px;
|
|
|
+ left: -2px;
|
|
|
+ position: absolute;
|
|
|
+
|
|
|
+ &:first-child {
|
|
|
+ filter: invert(46%) sepia(79%) saturate(779%) hue-rotate(350deg) brightness(98%) contrast(91%);
|
|
|
+ }
|
|
|
+
|
|
|
+ &:last-child {
|
|
|
+ opacity: 0;
|
|
|
+ filter: invert(100%) sepia(2%) saturate(0%) hue-rotate(21deg) brightness(107%) contrast(101%);
|
|
|
+ }
|
|
|
+ }
|
|
|
+ }
|
|
|
+ }
|
|
|
}
|
|
|
|
|
|
.center-card {
|
|
@@ -3913,9 +3954,25 @@ iframe {
|
|
|
}
|
|
|
|
|
|
h2 {
|
|
|
+ width: 12vw;
|
|
|
font-size: 16px;
|
|
|
- margin: 5px 0 0 10px;
|
|
|
+ margin: 10px 0 0 10px;
|
|
|
color: #707070;
|
|
|
+ overflow: hidden;
|
|
|
+ text-overflow: ellipsis;
|
|
|
+ display: -webkit-box;
|
|
|
+ -webkit-line-clamp: 2;
|
|
|
+ -webkit-box-orient: vertical;
|
|
|
+ line-break: after-white-space; // for safari
|
|
|
+ transition: all .2s;
|
|
|
+
|
|
|
+ @media (max-width: 1200px) {
|
|
|
+ width: 9vw;
|
|
|
+ }
|
|
|
+
|
|
|
+ @media (max-width: 991px) {
|
|
|
+ width: 22vw;
|
|
|
+ }
|
|
|
}
|
|
|
}
|
|
|
}
|
|
@@ -3987,7 +4044,7 @@ iframe {
|
|
|
overflow: hidden;
|
|
|
text-overflow: ellipsis;
|
|
|
display: -webkit-box;
|
|
|
- -webkit-line-clamp: 1; // 超過兩行則省略
|
|
|
+ -webkit-line-clamp: 1; // 超過則省略
|
|
|
-webkit-box-orient: vertical;
|
|
|
line-break: after-white-space; // for safari
|
|
|
transition: all .2s;
|