zxf/css/style.css

154 lines
2.8 KiB
CSS
Raw Normal View History

2023-09-27 00:33:44 +08:00
.main-wrap {
width: 1366px;
}
.mg-center {
margin-top: 0;
margin-bottom: 0;
margin-left: auto;
margin-right: auto;
}
2023-09-26 17:55:52 +08:00
.header {
2023-09-27 00:33:44 +08:00
width: 100%;
2023-09-26 17:55:52 +08:00
background-color: #010101;
}
.header .main {
height: 90px;
display: flex;
align-items: center;
justify-content: space-between;
}
.header .logo img {
max-height: 50px;
}
.header .menu .group {
display: flex;
}
.header .menu .item {
margin-left: 50px;
}
.header .menu .link {
font-size: 18px;
color: #FFFFFF;
}
.header .menu .link.active,
.header .menu .link:hover {
font-weight: bold;
}
.footer {
2023-09-27 00:33:44 +08:00
width: 100%;
2023-09-26 17:55:52 +08:00
background-color: #343434;
}
.footer .main {
padding: 30px 0;
}
.footer .main .row:first-child {
margin-top: 0;
}
.footer .main .row {
font-size: 18px;
color: #FFFFFF;
text-align: center;
line-height: 20px;
margin-top: 20px;
}
.footer .main .tel {
display: inline-block;
width: 355px;
border: 2px solid #DDDDDD;
border-radius: 30px;
padding: 20px;
font-size: 24px;
}
.footer .main .icp {
color: #999999;
}
2023-09-27 00:33:44 +08:00
.section .section-title {
text-align: center;
}
.section .section-title.style-1 .title {
font-size: 36px;
line-height: 36px;
font-weight: bold;
color: #141414;
display: flex;
align-items: center;
justify-content: center;
}
.section .section-title.style-1 .title .rtext {
color: #E50020;
}
.section .section-title.style-1 .title::before,
.section .section-title.style-1 .title::after {
content: '';
display: inline-block;
width: 58px;
height: 3px;
background: #D4D4D4;
margin: 0 15px;
}
.section.idx-about {
margin-top: 60px;
}
.section.idx-about .idx-about-container {
margin-top: 70px;
font-size: 20px;
color: #666666;
line-height: 36px;
}
.main-banner {
width: 100%;
}
.main-banner .swiper-slide {
display: flex;
}
.main-banner .swiper-pagination-bullet {
width: 40px;
height: 2px;
background: #F8F8F8;
border-radius: 0;
opacity: 1;
}
.main-banner .swiper-pagination-bullet-active {
background: #E50020;
}
.main-banner .swiper-pagination {
bottom: 40px;
}
.main-banner .item {
display: flex;
justify-content: center;
align-items: center;
width: 100%;
height: 720px;
background-repeat: no-repeat;
background-position: center center;
}
.main-banner .text-box {
color: #FFFFFF;
text-align: center;
}
.main-banner .text-box p:nth-child(1),
.main-banner .text-box p:nth-child(2) {
transform: translate3d(0, 20px, 0);
opacity: 0;
}
.main-banner .text-box p:nth-child(1) {
font-size: 38px;
margin-bottom: 25px;
line-height: 38px;
transition: 0.8s ease 0.4s;
}
.main-banner .text-box p:nth-child(2) {
font-size: 30px;
line-height: 30px;
transition: 0.8s ease 0.6s;
}
.main-banner .text-box .cname {
color: #E30020;
}
.main-banner .swiper-slide-active .text-box p:nth-child(1),
.main-banner .swiper-slide-active .text-box p:nth-child(2) {
opacity: 1;
transform: translate3d(0, 0, 0);
2023-09-26 17:55:52 +08:00
}