145 lines
2.4 KiB
CSS
145 lines
2.4 KiB
CSS
html{
|
|
min-width: 1190px;
|
|
}
|
|
li{
|
|
cursor: pointer;
|
|
}
|
|
img{
|
|
border: 0;
|
|
}
|
|
|
|
.clear{
|
|
clear: both;
|
|
}
|
|
.img{
|
|
height: 100%;
|
|
width: 100%;
|
|
}
|
|
.fl{
|
|
float: left;
|
|
}
|
|
.fr{
|
|
float: right;
|
|
}
|
|
|
|
.swiper-pagination-bullet-active{
|
|
background: #ffffff !important;
|
|
height: 10px;
|
|
width: 10px;
|
|
}
|
|
.row{
|
|
width: 100%;
|
|
}
|
|
.rowp{
|
|
padding: 80px 0;
|
|
}
|
|
.rowl{
|
|
padding: 80px 0 20px 0;
|
|
}
|
|
.title{
|
|
width: 100%;
|
|
text-align: center;
|
|
}
|
|
.title h4{
|
|
font-weight: 500;
|
|
font-size: 36px;
|
|
color: #333333;
|
|
}
|
|
.title p {
|
|
margin-top: 5px;
|
|
font-size: 16px;
|
|
color: #333333;
|
|
}
|
|
.title span{
|
|
margin-top: 25px;
|
|
display: block;
|
|
font-family: MicrosoftYaHei;
|
|
font-size: 16px;
|
|
font-weight: normal;
|
|
font-stretch: normal;
|
|
letter-spacing: 0px;
|
|
color: #999999;
|
|
}
|
|
/* 平铺水平对齐 */
|
|
.flex-con1 {
|
|
display: -webkit-flex;
|
|
display: flex;
|
|
-webkit-justify-content: space-between;
|
|
justify-content: space-between;
|
|
}
|
|
|
|
/* 垂直居中对齐 */
|
|
.flex-con2 {
|
|
display: -webkit-flex;
|
|
display: flex;
|
|
-webkit-align-items: center;
|
|
align-items: center;
|
|
}
|
|
|
|
/* 水平垂直居中 */
|
|
|
|
.flex-con3 {
|
|
display: -webkit-flex;
|
|
display: flex;
|
|
-webkit-align-items: center;
|
|
align-items: center;
|
|
-webkit-justify-content: center;
|
|
justify-content: center;
|
|
}
|
|
|
|
/* 垂直平铺 */
|
|
.flex-con4{
|
|
display: -webkit-flex;
|
|
display: flex;
|
|
-webkit-flex-direction: column;
|
|
flex-direction: column;
|
|
}
|
|
/* 溢出隐藏 */
|
|
.clamp1{
|
|
display: -webkit-box !important;
|
|
-webkit-box-orient: vertical;
|
|
-webkit-line-clamp: 1;
|
|
overflow: hidden;
|
|
}
|
|
|
|
/* 动画3s */
|
|
.nav-item{
|
|
-moz-transition: all .3s ease-out;
|
|
-o-transition: all .3s ease-out;
|
|
-webkit-transition: all .3s ease-out;
|
|
transition: all .3s ease-out;
|
|
}
|
|
|
|
|
|
/* 放大图片 */
|
|
.bigLi:hover img{
|
|
transform:scale(1.1);
|
|
}
|
|
|
|
.somImg {
|
|
width: 100%;
|
|
height: 100%;
|
|
-moz-transition: all .5s ease;
|
|
-webkit-transition: all .5s ease;
|
|
-ms-transition: all .5s ease;
|
|
-o-transition: all .5s ease;
|
|
transition: all .5s ease;
|
|
transition: all 0.5s;
|
|
}
|
|
|
|
/* 缩放页面图片处理 */
|
|
.comm-topact {
|
|
overflow: hidden;
|
|
position: relative;
|
|
background: center top no-repeat;
|
|
-webkit-transition: height .6s,background,.6s;
|
|
transition: height .6s,background,.6s;
|
|
}
|
|
.topact-big-img, .topact-small-img {
|
|
position: absolute;
|
|
left: 50%;
|
|
top: 0;
|
|
width: 1920px;
|
|
height: 100%;
|
|
margin-left: -960px;
|
|
} |