|
@@ -190,16 +190,61 @@ export default {
|
|
|
|
|
|
|
|
#swiper .banner-swiper {
|
|
#swiper .banner-swiper {
|
|
|
width: 100%;
|
|
width: 100%;
|
|
|
- height: auto;
|
|
|
|
|
|
|
+ height: 500px;
|
|
|
|
|
+}
|
|
|
|
|
+
|
|
|
|
|
+#swiper .banner-swiper .swiper-slide {
|
|
|
|
|
+ width: 100%;
|
|
|
|
|
+ height: 100%;
|
|
|
}
|
|
}
|
|
|
|
|
|
|
|
#swiper .banner-swiper .swiper-slide img {
|
|
#swiper .banner-swiper .swiper-slide img {
|
|
|
- max-width: 100%;
|
|
|
|
|
- background-size: cover;
|
|
|
|
|
|
|
+ width: 100%;
|
|
|
|
|
+ height: 100%;
|
|
|
|
|
+ object-fit: cover;
|
|
|
}
|
|
}
|
|
|
|
|
|
|
|
-#swiper .banner-swiper .swiper-slide {
|
|
|
|
|
- position: relative;
|
|
|
|
|
|
|
+/* Swiper 导航箭头 */
|
|
|
|
|
+#swiper .banner-swiper .swiper-button-prev,
|
|
|
|
|
+#swiper .banner-swiper .swiper-button-next {
|
|
|
|
|
+ color: #fff;
|
|
|
|
|
+ width: 50px;
|
|
|
|
|
+ height: 50px;
|
|
|
|
|
+ transition: all 0.3s ease;
|
|
|
|
|
+}
|
|
|
|
|
+
|
|
|
|
|
+#swiper .banner-swiper .swiper-button-prev:hover,
|
|
|
|
|
+#swiper .banner-swiper .swiper-button-next:hover {
|
|
|
|
|
+ color: #1e73be;
|
|
|
|
|
+ transform: scale(1.1);
|
|
|
|
|
+}
|
|
|
|
|
+
|
|
|
|
|
+/* 桌面端箭头边距 */
|
|
|
|
|
+@media (min-width: 1200px) {
|
|
|
|
|
+ #swiper .banner-swiper .swiper-button-prev {
|
|
|
|
|
+ left: 40px !important;
|
|
|
|
|
+ }
|
|
|
|
|
+ #swiper .banner-swiper .swiper-button-next {
|
|
|
|
|
+ right: 40px !important;
|
|
|
|
|
+ }
|
|
|
|
|
+}
|
|
|
|
|
+
|
|
|
|
|
+/* 平板端箭头边距 */
|
|
|
|
|
+@media (min-width: 768px) and (max-width: 1199px) {
|
|
|
|
|
+ #swiper .banner-swiper .swiper-button-prev {
|
|
|
|
|
+ left: 20px !important;
|
|
|
|
|
+ }
|
|
|
|
|
+ #swiper .banner-swiper .swiper-button-next {
|
|
|
|
|
+ right: 20px !important;
|
|
|
|
|
+ }
|
|
|
|
|
+}
|
|
|
|
|
+
|
|
|
|
|
+/* 移动端隐藏箭头 */
|
|
|
|
|
+@media (max-width: 767px) {
|
|
|
|
|
+ #swiper .banner-swiper .swiper-button-prev,
|
|
|
|
|
+ #swiper .banner-swiper .swiper-button-next {
|
|
|
|
|
+ display: none;
|
|
|
|
|
+ }
|
|
|
}
|
|
}
|
|
|
|
|
|
|
|
#swiper .banner-swiper .swiper-slide-title {
|
|
#swiper .banner-swiper .swiper-slide-title {
|