|
@@ -1,6 +1,6 @@
|
|
|
#drawer-footer {
|
|
|
width: 94.4vw;
|
|
|
- margin: 0 auto 4vw auto;
|
|
|
+ margin: 4vw auto;
|
|
|
height: 76.9vw;
|
|
|
white-space: nowrap;
|
|
|
overflow-x: scroll;
|
|
@@ -84,14 +84,14 @@
|
|
|
}
|
|
|
|
|
|
.advertisement {
|
|
|
- position: sticky;
|
|
|
+ /*position: sticky;*/
|
|
|
height: 35.6vw;
|
|
|
width: 94.4vw;
|
|
|
- bottom: -36vw;
|
|
|
+ /*bottom: -36vw;*/
|
|
|
margin: 0 auto 18vw auto;
|
|
|
overflow-x: scroll;
|
|
|
white-space: nowrap;
|
|
|
- animation: AdvsFrames .5s linear forwards;
|
|
|
+ /*animation: AdvsFrames .5s linear forwards;*/
|
|
|
}
|
|
|
.advertisement .advertisement-link {
|
|
|
display: inline-block;
|
|
@@ -106,11 +106,270 @@
|
|
|
height: 100%;
|
|
|
object-fit: contain;
|
|
|
}
|
|
|
-@keyframes AdvsFrames {
|
|
|
- 0% {
|
|
|
- bottom: -36vw;
|
|
|
+/*@keyframes AdvsFrames {*/
|
|
|
+/* 0% {*/
|
|
|
+/* bottom: -36vw;*/
|
|
|
+/* }*/
|
|
|
+/* 100% {*/
|
|
|
+/* bottom: 0;*/
|
|
|
+/* }*/
|
|
|
+/*}*/
|
|
|
+.bg-filter {
|
|
|
+ width: 100%;
|
|
|
+ backdrop-filter: blur(33px);
|
|
|
+ background-color: rgba(255, 255, 255, 0.4);
|
|
|
+}
|
|
|
+@media screen and (min-width:768px) {
|
|
|
+ .related-Reading {
|
|
|
+ position: fixed;
|
|
|
+ bottom: 0;
|
|
|
+ left: 0;
|
|
|
+ width: 100%;
|
|
|
+ height: 200px;
|
|
|
+ animation: retractAnimation 1s ease-in-out forwards;
|
|
|
+ }
|
|
|
+ .related-Reading .related-content {
|
|
|
+ width: 1185px;
|
|
|
+ height: 100%;
|
|
|
+ margin: 0 auto;
|
|
|
+ display: flex;
|
|
|
+ flex-direction: column;
|
|
|
+ }
|
|
|
+ .related-content-title {
|
|
|
+ color: #333;
|
|
|
+ font-size: 16px;
|
|
|
+ font-weight: bold;
|
|
|
+ margin: 31px 0 20px 0;
|
|
|
+ width: 100%;
|
|
|
+ position: relative;
|
|
|
+ }
|
|
|
+ .related-content-close {
|
|
|
+ position: absolute;
|
|
|
+ width: 24px;
|
|
|
+ height: 24px;
|
|
|
+ border: 1px solid;
|
|
|
+ right: 100px;
|
|
|
+ top: 16px;
|
|
|
+ border-radius: 50%;
|
|
|
+ font-size: 17px;
|
|
|
+ cursor: pointer;
|
|
|
+ text-align: center;
|
|
|
+ }
|
|
|
+ .related-content-close :hover {
|
|
|
+ color: #FF5B00;
|
|
|
+ border: 1px solid #FF5B00;
|
|
|
+ }
|
|
|
+ .related-content-item {
|
|
|
+ height: 80px;
|
|
|
+ width: 100%;
|
|
|
+ display: grid;
|
|
|
+ grid-template-columns: 1fr 1fr 1fr;
|
|
|
+ }
|
|
|
+ .related-content-item .reading-content {
|
|
|
+ width: 336px;
|
|
|
+ height: 80px;
|
|
|
+ display: flex;
|
|
|
+ justify-content: space-between;
|
|
|
+ }
|
|
|
+ .related-content-item .reading-content img {
|
|
|
+ width: 128px;
|
|
|
+ height: 100%;
|
|
|
+ box-sizing: border-box;
|
|
|
+ }
|
|
|
+ .related-content-item .reading-content img:hover {
|
|
|
+ border: 1px solid #FF5B00;
|
|
|
+ }
|
|
|
+ .related-content-item .reading-content .content-text {
|
|
|
+ height: 100%;
|
|
|
+ width: 192px;
|
|
|
+ display: flex;
|
|
|
+ flex-direction: column;
|
|
|
+ justify-content: space-between;
|
|
|
+ }
|
|
|
+ .related-content-item .reading-content .content-text .content-title {
|
|
|
+ text-overflow:ellipsis;
|
|
|
+ display:-webkit-box;
|
|
|
+ -webkit-line-clamp: 2;
|
|
|
+ -webkit-box-orient:vertical;
|
|
|
+ font-size: 16px;
|
|
|
+ color: #333333;
|
|
|
+ white-space: pre-wrap;
|
|
|
+ overflow: hidden;
|
|
|
+ height: 45px;
|
|
|
+ }
|
|
|
+ .related-content-item .reading-content .content-text .content-title:hover {
|
|
|
+ color: #FF5B00;
|
|
|
+ }
|
|
|
+ .related-content-item .reading-content .content-text .content-icon {
|
|
|
+ display: flex;
|
|
|
+ align-items: center;
|
|
|
+ }
|
|
|
+ .related-content-item .reading-content .content-text .content-icon .icon-recommend {
|
|
|
+ width: 56px;
|
|
|
+ height: 24px;
|
|
|
+ background: #FFF4EE;
|
|
|
+ color: #FF5B00;
|
|
|
+ font-size: 12px;
|
|
|
+ display: flex;
|
|
|
+ align-items: center;
|
|
|
+ justify-content: space-around;
|
|
|
+ margin-right: 24px;
|
|
|
+ border-right: 2px;
|
|
|
+ }
|
|
|
+ .related-content-item .reading-content .content-text .content-icon .icon-recommend div:nth-child(1) {
|
|
|
+ background: url(/img/article/PC-fire.png) no-repeat;
|
|
|
+ width: 12px;
|
|
|
+ height: 12px;
|
|
|
+ background-size: 100% 100%;
|
|
|
+ }
|
|
|
+ .related-content-item .reading-content .content-text .content-icon .icon-group {
|
|
|
+ display: flex;
|
|
|
+ align-items: center;
|
|
|
+ }
|
|
|
+ .related-content-item .reading-content .content-text .content-icon .icon-group .icon-text {
|
|
|
+ color: #B2B2B2;
|
|
|
+ font-size: 14px;
|
|
|
+ }
|
|
|
+ .related-content-item .reading-content .content-text .content-icon .icon-pv {
|
|
|
+ width:24px;
|
|
|
+ height:24px;
|
|
|
+ vertical-align:top;
|
|
|
+ background: url(/img/base/icon.png) no-repeat -185px -329px;
|
|
|
}
|
|
|
- 100% {
|
|
|
+ @keyframes retractAnimation {
|
|
|
+ 0% {
|
|
|
+ bottom: -200px;
|
|
|
+ }
|
|
|
+ 100% {
|
|
|
+ border: 0;
|
|
|
+ }
|
|
|
+ }
|
|
|
+}
|
|
|
+
|
|
|
+@media screen and (max-width:768px) {
|
|
|
+ .related-Reading {
|
|
|
+ position: fixed;
|
|
|
bottom: 0;
|
|
|
+ left: 0;
|
|
|
+ width: 100%;
|
|
|
+ animation: retractAnimation .5s ease-in-out forwards;
|
|
|
+ box-sizing: border-box;
|
|
|
+ padding: 3.6vw 3.6vw 8.3vw 3.6vw;
|
|
|
+ }
|
|
|
+ .related-Reading .related-content {
|
|
|
+ width: 100%;
|
|
|
+ height: 100%;
|
|
|
+ margin: 0 auto;
|
|
|
+ display: flex;
|
|
|
+ flex-direction: column;
|
|
|
+ }
|
|
|
+ .related-content-title {
|
|
|
+ color: #4A4F58;
|
|
|
+ font-size: 4vw;
|
|
|
+ font-weight: bold;
|
|
|
+ margin: 3.6vw 0 0 1vw;
|
|
|
+ width: 100%;
|
|
|
+ position: relative;
|
|
|
+ }
|
|
|
+ .related-content-close {
|
|
|
+ position: absolute;
|
|
|
+ width: 6vw;
|
|
|
+ height: 6vw;
|
|
|
+ border: 1px solid #343131;
|
|
|
+ right: 5.7vw;
|
|
|
+ top: 3.2vw;
|
|
|
+ border-radius: 50%;
|
|
|
+ font-size: 17px;
|
|
|
+ cursor: pointer;
|
|
|
+ text-align: center;
|
|
|
+ color: #343131;
|
|
|
+ line-height: 6vw;
|
|
|
+ }
|
|
|
+ .related-content-close :hover {
|
|
|
+ color: #FF5B00;
|
|
|
+ border: 1px solid #FF5B00;
|
|
|
+ }
|
|
|
+ .related-content-item {
|
|
|
+ width: 100%;
|
|
|
+ display: flex;
|
|
|
+ flex-direction: column;
|
|
|
+ }
|
|
|
+ .related-content-item .reading-content {
|
|
|
+ display: flex;
|
|
|
+ justify-content: space-between;
|
|
|
+ margin-top: 4.8vw;
|
|
|
+ }
|
|
|
+ .related-content-item .reading-content img {
|
|
|
+ width: 25.8vw;
|
|
|
+ height: 18.1vw;
|
|
|
+ box-sizing: border-box;
|
|
|
+ }
|
|
|
+ .related-content-item .reading-content img:hover {
|
|
|
+ border: 1px solid #FF5B00;
|
|
|
+ }
|
|
|
+ .related-content-item .reading-content .content-text {
|
|
|
+ height: 100%;
|
|
|
+ width: 61.9vw;
|
|
|
+ display: flex;
|
|
|
+ flex-direction: column;
|
|
|
+ justify-content: space-between;
|
|
|
+ }
|
|
|
+ .related-content-item .reading-content .content-text .content-title {
|
|
|
+ text-overflow:ellipsis;
|
|
|
+ display:-webkit-box;
|
|
|
+ -webkit-line-clamp: 2;
|
|
|
+ -webkit-box-orient:vertical;
|
|
|
+ font-size: 3.4vw;
|
|
|
+ color: #333333;
|
|
|
+ white-space: pre-wrap;
|
|
|
+ overflow: hidden;
|
|
|
+ height: 10.9vw;
|
|
|
+ }
|
|
|
+ .related-content-item .reading-content .content-text .content-title:hover {
|
|
|
+ color: #FF5B00;
|
|
|
+ }
|
|
|
+ .related-content-item .reading-content .content-text .content-icon {
|
|
|
+ display: flex;
|
|
|
+ align-items: center;
|
|
|
+ }
|
|
|
+ .related-content-item .reading-content .content-text .content-icon .icon-recommend {
|
|
|
+ width: 11.8vw;
|
|
|
+ height: 4.8vw;
|
|
|
+ background: #FFF4EE;
|
|
|
+ color: #FF5B00;
|
|
|
+ font-size: 2.4vw;
|
|
|
+ display: flex;
|
|
|
+ align-items: center;
|
|
|
+ justify-content: space-around;
|
|
|
+ margin-right: 4.8vw;
|
|
|
+ }
|
|
|
+ .related-content-item .reading-content .content-text .content-icon .icon-recommend div:nth-child(1) {
|
|
|
+ background: url(/img/article/PC-fire.png) no-repeat;
|
|
|
+ width: 2.4vw;
|
|
|
+ height: 2.4vw;
|
|
|
+ background-size: 100% 100%;
|
|
|
+ }
|
|
|
+ .related-content-item .reading-content .content-text .content-icon .icon-group {
|
|
|
+ display: flex;
|
|
|
+ align-items: center;
|
|
|
+ }
|
|
|
+ .related-content-item .reading-content .content-text .content-icon .icon-group .icon-text {
|
|
|
+ color: #B2B2B2;
|
|
|
+ font-size: 14px;
|
|
|
+ vertical-align: bottom;
|
|
|
+ }
|
|
|
+ .related-content-item .reading-content .content-text .content-icon .icon-pv {
|
|
|
+ width:24px;
|
|
|
+ height:24px;
|
|
|
+ vertical-align:top;
|
|
|
+ background: url(/img/base/icon.png) no-repeat -185px -329px;
|
|
|
+ }
|
|
|
+ @keyframes retractAnimation {
|
|
|
+ 0% {
|
|
|
+ bottom: -91vw;
|
|
|
+ }
|
|
|
+ 100% {
|
|
|
+ border: 0;
|
|
|
+ }
|
|
|
}
|
|
|
}
|