From b32daeab6996e0c7ce0506f40531f2149ba9e642 Mon Sep 17 00:00:00 2001
From: xuhuajiao <13476289682@163.com>
Date: Thu, 18 Jul 2024 14:25:43 +0800
Subject: [PATCH] =?UTF-8?q?=E9=80=82=E9=85=8D1440/=E9=A1=B5=E9=9D=A2?=
=?UTF-8?q?=E4=BC=98=E5=8C=96?=
MIME-Version: 1.0
Content-Type: text/plain; charset=UTF-8
Content-Transfer-Encoding: 8bit
---
src/assets/styles/index.scss | 131 ++++++++++++++++++++---
src/components/echart/barEcharts.vue | 7 +-
src/components/echart/lineChart.vue | 19 ++--
src/components/echart/yearCircle.vue | 8 +-
src/utils/resizeMixins.js | 55 +++++++---
src/views/map/index.vue | 53 ++++++----
src/views/pageThree/index.vue | 151 +++++++++++++--------------
7 files changed, 281 insertions(+), 143 deletions(-)
diff --git a/src/assets/styles/index.scss b/src/assets/styles/index.scss
index 8751d20..5736692 100644
--- a/src/assets/styles/index.scss
+++ b/src/assets/styles/index.scss
@@ -1102,8 +1102,7 @@
overflow: hidden;
}
.lib-text{
- position: absolute;
- // transition: top 1s linear;
+ position: relative;
margin-right: .175rem;
font-size: .225rem;
line-height: .35rem;
@@ -1111,6 +1110,22 @@
overflow: hidden;
}
}
+
+
+.lib-animation {
+ animation: myLib 26s linear infinite;
+ animation-fill-mode: forwards;
+}
+
+@keyframes myLib {
+ 0% {
+ transform: translateY(1rem);
+ }
+ 100% {
+ transform: translateY(calc(-1 * var(--container-height)));
+ }
+}
+
.map-hx-bg{
width: 16.325rem;
height: 11.3125rem;
@@ -1500,21 +1515,23 @@
text-indent: 2em;
}
}
- .scroll-animation {
- animation: myMove 16s linear infinite;
- animation-fill-mode: forwards;
- }
+ }
+}
- @keyframes myMove {
- 0% {
- transform: translateY(1rem);
- }
- 100% {
- transform: translateY(calc(-1 * var(--container-height)));
- }
- }
+.scroll-animation {
+ animation: myMove 16s linear infinite;
+ animation-fill-mode: forwards;
+}
+
+@keyframes myMove {
+ 0% {
+ transform: translateY(1rem);
+ }
+ 100% {
+ transform: translateY(calc(-1 * var(--container-height)));
}
}
+
.four-ranking{
height: 4.85rem;
&.lending-ranking{
@@ -1571,4 +1588,90 @@
color: #4DDBFF;
text-align: center;
}
+}
+
+
+
+
+
+@media (max-width: 1440px) {
+ .pageOne-database{
+ margin-top: .375rem;
+ height: 6.5rem;
+ }
+ .pageOne-book {
+ .pageOne-book-content {
+ padding: .375rem 0;
+ .wechat-code{
+ width: 4.25rem;
+ height: 5.5rem;
+ .wechat-img{
+ width: 2.25rem;
+ height: 2.25rem;
+ line-height: 2.5rem;
+ }
+ span{
+ font-size: .275rem;
+ }
+ }
+ }
+ }
+ .scrollBox{
+ .seamless01{
+ margin-bottom: .5rem;
+ }
+ ul{
+ height: 2.3rem;
+ li{
+ width: 1.625rem;
+ height: 2.3rem;
+ margin-right: .7375rem;
+ .bord{
+ .book-img{
+ width: 1.625rem;
+ height: 2.3rem;
+ }
+ }
+ }
+ }
+ }
+
+ .page-three {
+ .three03,
+ .three04{
+ height: calc(100vh/2 - 1.375rem);
+ }
+ }
+
+ .four-video{
+ width: 16.625rem;
+ height: calc(100vh - 2.5rem);
+ background-size: 100% 100%;
+ }
+
+ .el-carousel__container{
+ height: calc(100vh - 4.5rem);
+ overflow: hidden;
+ }
+
+ .four-notice{
+ height: 4rem;
+ .seamless-warp{
+ height: 3.25rem;
+ }
+ }
+
+ .four-contact{
+ width: 5.9375rem;
+ height: 2.5rem;
+ background-size: 100% 100%;
+ .wechat-img{
+ width: 1.5rem;
+ height: 1.5rem;
+ }
+ span{
+ font-size: .275rem;
+ }
+ }
+
}
\ No newline at end of file
diff --git a/src/components/echart/barEcharts.vue b/src/components/echart/barEcharts.vue
index 1133f6c..b25ec0b 100644
--- a/src/components/echart/barEcharts.vue
+++ b/src/components/echart/barEcharts.vue
@@ -1,6 +1,6 @@
-
+