12.28
parent
468f190744
commit
d26c4102c1
201
css/style.css
201
css/style.css
|
@ -255,6 +255,11 @@
|
|||
.case-list-all>div{
|
||||
display: none;
|
||||
}
|
||||
|
||||
.case-list-all>div .case-list{
|
||||
display: none;
|
||||
}
|
||||
|
||||
.case-list{
|
||||
overflow: hidden;
|
||||
}
|
||||
|
@ -297,6 +302,119 @@
|
|||
transition: all .8s;
|
||||
}
|
||||
|
||||
|
||||
/* 案例列表页新增 */
|
||||
/* 案例类别 */
|
||||
.case-item-bs{
|
||||
display: flex;
|
||||
justify-content: center;
|
||||
padding: 38px 0;
|
||||
border-top: 1px solid #ededed;
|
||||
}
|
||||
.case-item-bs li{
|
||||
font-size: 16px;
|
||||
line-height: 2.5;
|
||||
padding: 0 45px;
|
||||
cursor: pointer;
|
||||
|
||||
}
|
||||
.case-item-bs li em{
|
||||
display: block;
|
||||
width: 0;
|
||||
height: 0;
|
||||
border-left: 7px solid transparent;
|
||||
border-right: 7px solid transparent;
|
||||
border-bottom: 7px solid transparent;
|
||||
border-top: 7px solid #72C152;
|
||||
margin: 0 auto;
|
||||
opacity: 0;
|
||||
}
|
||||
.case-item-bs li.active{
|
||||
color: #72C152;
|
||||
font-weight: bold;
|
||||
}
|
||||
.case-item-bs li.active em{
|
||||
opacity: 1;
|
||||
transition: all .8s;
|
||||
}
|
||||
|
||||
/* 案例分类 */
|
||||
.case-serve-all-bs .case-serve-bs{
|
||||
display: none;
|
||||
}
|
||||
|
||||
.case-serve-all-bs .case-serve-bs.active{
|
||||
display: flex;
|
||||
justify-content: center;
|
||||
margin-bottom: 5px;
|
||||
}
|
||||
|
||||
.case-serve-bs li{
|
||||
height: 36px;
|
||||
font-size: 14px;
|
||||
line-height: 34px;
|
||||
padding: 0 20px;
|
||||
margin: 0 3.5px;
|
||||
background-color: #FFFFFF;
|
||||
border: 1px solid #EDEDED;
|
||||
}
|
||||
|
||||
.case-serve-bs li.active{
|
||||
background-color: #72C152;
|
||||
border: 1px solid #72C152;
|
||||
color: #FFFFFF;
|
||||
}
|
||||
/* 案例列表 */
|
||||
.case-list-bs{
|
||||
overflow: hidden;
|
||||
}
|
||||
.case-list-bs li{
|
||||
width: 31%;
|
||||
margin: 35px 3.5% 0 0;
|
||||
float: left;
|
||||
}
|
||||
.case-list-bs li:nth-of-type(3n){
|
||||
margin-right: 0;
|
||||
}
|
||||
.case-list-bs li>.case-img{
|
||||
display: block;
|
||||
height: 270px;
|
||||
margin-bottom: 8px;
|
||||
overflow: hidden;
|
||||
}
|
||||
.case-listv li>.case-img img{
|
||||
width: 100%;
|
||||
min-height: 100%;
|
||||
}
|
||||
.case-list-bs li p{
|
||||
font-size: 16px;
|
||||
line-height: 2;
|
||||
font-weight: bold;
|
||||
color: #72C152;
|
||||
transition: all .8s;
|
||||
}
|
||||
.case-list-bs li span{
|
||||
display: block;
|
||||
font-size: 14px;
|
||||
line-height: 2;
|
||||
color: #585858;
|
||||
transition: all .8s;
|
||||
}
|
||||
.case-list-bs li:hover p,
|
||||
.case-list-bs li:hover span{
|
||||
color: #72C152;
|
||||
text-decoration: underline;
|
||||
transition: all .8s;
|
||||
}
|
||||
|
||||
/* 新增介绍 */
|
||||
|
||||
|
||||
|
||||
|
||||
|
||||
|
||||
|
||||
.pull-more{
|
||||
display: flex;
|
||||
width: 66px;
|
||||
|
@ -1514,6 +1632,9 @@
|
|||
.case-list li>.case-img{
|
||||
height: 255px;
|
||||
}
|
||||
.case-list-bs li>.case-img{
|
||||
height: 255px;
|
||||
}
|
||||
.about-contact{
|
||||
left: 3%;
|
||||
margin-left: 0;
|
||||
|
@ -1544,6 +1665,9 @@
|
|||
.case-list li>.case-img{
|
||||
height: 240px;
|
||||
}
|
||||
.case-list-bs li>.case-img{
|
||||
height: 240px;
|
||||
}
|
||||
.publicity{
|
||||
padding: 40px 0;
|
||||
}
|
||||
|
@ -1654,6 +1778,9 @@
|
|||
.case-list li>.case-img{
|
||||
height: 225px;
|
||||
}
|
||||
.case-list-bs li>.case-img{
|
||||
height: 225px;
|
||||
}
|
||||
.seek .left p{
|
||||
font-size: 22px;
|
||||
}
|
||||
|
@ -1697,6 +1824,24 @@
|
|||
.case-list li span{
|
||||
font-size: 13px;
|
||||
}
|
||||
|
||||
.case-item-bs li{
|
||||
font-size: 15px;
|
||||
}
|
||||
.case-serve-bs li{
|
||||
font-size: 13px;
|
||||
padding: 0 15px;
|
||||
}
|
||||
.case-list-bs li>.case-img{
|
||||
height: 210px;
|
||||
}
|
||||
.case-list-bs li p{
|
||||
font-size: 15px;
|
||||
}
|
||||
.case-list-bs li span{
|
||||
font-size: 13px;
|
||||
}
|
||||
|
||||
.publicity li>span{
|
||||
font-size: 15px;
|
||||
}
|
||||
|
@ -1828,6 +1973,9 @@
|
|||
.case-list li>.case-img{
|
||||
height: 170px;
|
||||
}
|
||||
.case-list-bs li>.case-img{
|
||||
height: 170px;
|
||||
}
|
||||
.contact .middle{
|
||||
width: 46%;
|
||||
}
|
||||
|
@ -1855,6 +2003,9 @@
|
|||
.case-list li p{
|
||||
font-size: 14px;
|
||||
}
|
||||
.case-list-bs li p{
|
||||
font-size: 14px;
|
||||
}
|
||||
.news-left .guess p a, .news-right .section:first-child p a{
|
||||
font-size: 13px;
|
||||
}
|
||||
|
@ -1967,6 +2118,9 @@
|
|||
.case-serve li{
|
||||
padding: 0 10px;
|
||||
}
|
||||
.case-serve-bs li{
|
||||
padding: 0 10px;
|
||||
}
|
||||
.news-list li{
|
||||
width: 50%;
|
||||
}
|
||||
|
@ -2128,6 +2282,53 @@
|
|||
.case-list li span{
|
||||
font-size: 13px;
|
||||
}
|
||||
|
||||
/* 新增 */
|
||||
.case-item-bs{
|
||||
padding: 15px 0;
|
||||
}
|
||||
.case-item-bs li{
|
||||
font-size: 14px;
|
||||
padding: 0 8px;
|
||||
}
|
||||
.case-serve-all-bs{
|
||||
height: 36px;
|
||||
overflow-x: auto;
|
||||
overflow-y: hidden;
|
||||
margin: 0 auto;
|
||||
}
|
||||
.case-serve-all-bs .case-serve-bs{
|
||||
width: auto;
|
||||
height: 50px;
|
||||
overflow: inherit;
|
||||
}
|
||||
.case-serve-all-bs .case-serve-bs li{
|
||||
padding: 0 10px;
|
||||
flex-shrink:0;
|
||||
}
|
||||
.case-serve-all-bs .case-serve-bs.active{
|
||||
justify-content: flex-start;
|
||||
flex-wrap: nowrap;
|
||||
}
|
||||
.case-list-bs li{
|
||||
width: 100%;
|
||||
margin: 20px 0 0;
|
||||
}
|
||||
.case-list-bs li>.case-img{
|
||||
height: 220px;
|
||||
overflow: hidden;
|
||||
}
|
||||
.case-list-bs li p{
|
||||
font-size: 15px;
|
||||
}
|
||||
.case-list-bs li span{
|
||||
font-size: 13px;
|
||||
}
|
||||
/* 新增 */
|
||||
|
||||
|
||||
|
||||
|
||||
.pull-more{
|
||||
width: 48px;
|
||||
height: 8px;
|
||||
|
|
Loading…
Reference in New Issue