|
@@ -120,6 +120,8 @@
|
|
|
padding: 20px 0;
|
|
|
text-align: center;
|
|
|
display: none;
|
|
|
+ /* 仅能用于定位的元素 */
|
|
|
+ z-index: 1;
|
|
|
}
|
|
|
|
|
|
.header-nav .car:hover {
|
|
@@ -248,7 +250,7 @@
|
|
|
width: 234px;
|
|
|
height: 460px;
|
|
|
background-color: rgba(105, 101, 101, .6);
|
|
|
- padding: 30px 20px;
|
|
|
+ padding: 30px 0;
|
|
|
/* 改为怪异盒模型 */
|
|
|
box-sizing: border-box;
|
|
|
}
|
|
@@ -262,6 +264,13 @@
|
|
|
height: 42px;
|
|
|
color: #fff;
|
|
|
font-size: 14px;
|
|
|
+ line-height: 42px;
|
|
|
+ padding: 0 20px;
|
|
|
+ }
|
|
|
+
|
|
|
+ .swiper-content .swiper-nav li:hover{
|
|
|
+ cursor: pointer;
|
|
|
+ background-color: #ff6700;
|
|
|
}
|
|
|
|
|
|
.swiper-content .swiper-nav i {
|
|
@@ -303,7 +312,25 @@
|
|
|
.swiper-content .arr-btn .right-arr:hover{
|
|
|
background-position: -41px 0;
|
|
|
}
|
|
|
-
|
|
|
+ .dot-btn{
|
|
|
+ position: absolute;
|
|
|
+ right: 20px;
|
|
|
+ bottom: 40px;
|
|
|
+ }
|
|
|
+ .dot-btn li{
|
|
|
+ width: 6px;
|
|
|
+ height: 6px;
|
|
|
+ background-color: rgba(0,0,0,0.3);
|
|
|
+ border-radius: 50%;
|
|
|
+ border:2px solid rgba(0,0,0,0.4);
|
|
|
+ float: left;
|
|
|
+ margin-right: 10px;
|
|
|
+ }
|
|
|
+ .dot-btn li:hover{
|
|
|
+ cursor: pointer;
|
|
|
+ background-color: #fff;
|
|
|
+ border:2px solid rgba(0,0,0,0.6);
|
|
|
+ }
|
|
|
/* 轮播图区域 结束 */
|
|
|
</style>
|
|
|
</head>
|
|
@@ -414,7 +441,16 @@
|
|
|
<div class="left-arr"></div>
|
|
|
<div class="right-arr"></div>
|
|
|
</div>
|
|
|
- <div class="dot-btn"></div>
|
|
|
+ <div class="dot-btn">
|
|
|
+ <ul>
|
|
|
+ <li></li>
|
|
|
+ <li></li>
|
|
|
+ <li></li>
|
|
|
+ <li></li>
|
|
|
+ <li></li>
|
|
|
+ <li></li>
|
|
|
+ </ul>
|
|
|
+ </div>
|
|
|
</div>
|
|
|
</div>
|
|
|
<!-- 轮播图区域 结束 -->
|