|
@@ -92,8 +92,8 @@
|
|
|
</div>
|
|
|
<minMoreLogin />
|
|
|
<div class="moreInfo">
|
|
|
- <h2>了解更多</h2>
|
|
|
- <minForm />
|
|
|
+ <h2>了解<span>更多</span></h2>
|
|
|
+ <minForm />
|
|
|
</div>
|
|
|
</div>
|
|
|
</template>
|
|
@@ -103,13 +103,13 @@ import Swiper2, { Navigation, Pagination } from "swiper";
|
|
|
Swiper2.use([Navigation, Pagination]);
|
|
|
import "swiper/swiper-bundle.css";
|
|
|
import minMoreLogin from "./blocks/minMoreLogin";
|
|
|
-import minForm from "@/components/minForm"
|
|
|
+import minForm from "@/components/minForm";
|
|
|
export default {
|
|
|
components: {
|
|
|
Swiper,
|
|
|
SwiperSlide,
|
|
|
minMoreLogin,
|
|
|
- minForm
|
|
|
+ minForm,
|
|
|
},
|
|
|
directives: {
|
|
|
swiper: directive,
|
|
@@ -137,8 +137,12 @@ export default {
|
|
|
};
|
|
|
</script>
|
|
|
<style lang="less" scoped>
|
|
|
-/deep/.swiper-pagination-bullet-active {
|
|
|
- background-color: #2dc7aa;
|
|
|
+/deep/.swiper-pagination-bullet-active.swiper-pagination-bullet {
|
|
|
+ background-color: #2dc7aa !important;
|
|
|
+}
|
|
|
+/deep/.swiper-pagination-bullet {
|
|
|
+ background-color: #c8c8c8 !important;
|
|
|
+ opacity: 1;
|
|
|
}
|
|
|
img {
|
|
|
display: block;
|
|
@@ -177,7 +181,7 @@ img {
|
|
|
height: 3.28rem;
|
|
|
background: #ffffff;
|
|
|
border-radius: 0.04rem;
|
|
|
- border: 1px solid #dfdfdf;
|
|
|
+ border: 1px solid #e9e9e9;
|
|
|
filter: blur(0px);
|
|
|
margin-bottom: 0.25rem;
|
|
|
img {
|
|
@@ -203,7 +207,7 @@ img {
|
|
|
.cloundList {
|
|
|
background-color: #f4f5f7;
|
|
|
.cloundItem {
|
|
|
- padding: 0.5rem;
|
|
|
+ padding: 0.5rem .5rem .8rem;
|
|
|
h4 {
|
|
|
width: 100%;
|
|
|
font-size: 0.38rem;
|
|
@@ -229,7 +233,7 @@ img {
|
|
|
width: 100%;
|
|
|
// height: 6.29rem;
|
|
|
background: linear-gradient(135deg, #f0eef3 0%, #d8eff3 100%);
|
|
|
- padding: .5rem .4rem .63rem;
|
|
|
+ padding: 0.5rem 0.4rem 0.63rem;
|
|
|
display: flex;
|
|
|
flex-direction: column;
|
|
|
align-items: center;
|
|
@@ -240,7 +244,9 @@ img {
|
|
|
line-height: 0.64rem;
|
|
|
font-weight: 400;
|
|
|
text-align: center;
|
|
|
+ span {
|
|
|
+ font-weight: 600;
|
|
|
+ }
|
|
|
}
|
|
|
-
|
|
|
}
|
|
|
</style>
|