2023-10-04 17:06:26 +08:00
|
|
|
.mobile {
|
|
|
|
display: none;
|
|
|
|
}
|
|
|
|
.pc {
|
|
|
|
display: initial;
|
|
|
|
}
|
2023-10-01 22:50:46 +08:00
|
|
|
.limit-line {
|
|
|
|
display: -webkit-box;
|
|
|
|
-webkit-box-orient: vertical;
|
|
|
|
overflow: hidden;
|
|
|
|
}
|
|
|
|
.clamp-1 {
|
|
|
|
-webkit-line-clamp: 1;
|
|
|
|
}
|
|
|
|
.clamp-2 {
|
|
|
|
-webkit-line-clamp: 2;
|
|
|
|
}
|
|
|
|
.clamp-3 {
|
|
|
|
-webkit-line-clamp: 3;
|
|
|
|
}
|
2023-09-28 17:06:54 +08:00
|
|
|
.clearfix {
|
|
|
|
zoom: 1;
|
|
|
|
}
|
|
|
|
.clearfix::after {
|
|
|
|
display: block;
|
|
|
|
content: '';
|
|
|
|
clear: both;
|
|
|
|
}
|
|
|
|
.full-wrap {
|
|
|
|
width: 100%;
|
|
|
|
}
|
2023-09-27 00:33:44 +08:00
|
|
|
.main-wrap {
|
|
|
|
width: 1366px;
|
2023-09-28 17:06:54 +08:00
|
|
|
margin: 0 auto;
|
2023-09-27 00:33:44 +08:00
|
|
|
}
|
|
|
|
.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-28 17:06:54 +08:00
|
|
|
z-index: 20;
|
|
|
|
position: fixed;
|
|
|
|
top: 0;
|
|
|
|
left: 0;
|
|
|
|
right: 0;
|
2023-09-27 00:33:44 +08:00
|
|
|
width: 100%;
|
2023-10-06 12:18:52 +08:00
|
|
|
background-image: url('../images/transparent-bg.png');
|
2023-09-26 17:55:52 +08:00
|
|
|
}
|
|
|
|
.header .main {
|
|
|
|
height: 90px;
|
|
|
|
display: flex;
|
|
|
|
align-items: center;
|
|
|
|
justify-content: space-between;
|
|
|
|
}
|
|
|
|
.header .logo img {
|
|
|
|
max-height: 50px;
|
|
|
|
}
|
2023-10-04 17:06:26 +08:00
|
|
|
.header .menu .menu-group {
|
2023-09-26 17:55:52 +08:00
|
|
|
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-28 17:06:54 +08:00
|
|
|
.banner-text {
|
|
|
|
color: #FFFFFF;
|
|
|
|
text-align: center;
|
|
|
|
}
|
|
|
|
.banner-text p:nth-child(1) {
|
|
|
|
font-size: 38px;
|
|
|
|
margin-bottom: 25px;
|
|
|
|
line-height: 38px;
|
|
|
|
}
|
|
|
|
.banner-text p:nth-child(2) {
|
|
|
|
font-size: 30px;
|
|
|
|
line-height: 30px;
|
|
|
|
}
|
|
|
|
.banner-text .cname {
|
|
|
|
color: #E30020;
|
|
|
|
}
|
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;
|
|
|
|
}
|
2023-09-28 17:06:54 +08:00
|
|
|
.section.main-banner {
|
2023-09-27 00:33:44 +08:00
|
|
|
width: 100%;
|
|
|
|
}
|
2023-09-28 17:06:54 +08:00
|
|
|
.section.main-banner .swiper-slide {
|
2023-09-27 00:33:44 +08:00
|
|
|
display: flex;
|
|
|
|
}
|
2023-09-28 17:06:54 +08:00
|
|
|
.section.main-banner .swiper-pagination-bullet {
|
2023-09-27 00:33:44 +08:00
|
|
|
width: 40px;
|
|
|
|
height: 2px;
|
|
|
|
background: #F8F8F8;
|
|
|
|
border-radius: 0;
|
|
|
|
opacity: 1;
|
|
|
|
}
|
2023-09-28 17:06:54 +08:00
|
|
|
.section.main-banner .swiper-pagination-bullet-active {
|
2023-09-27 00:33:44 +08:00
|
|
|
background: #E50020;
|
|
|
|
}
|
2023-09-28 17:06:54 +08:00
|
|
|
.section.main-banner .swiper-pagination {
|
2023-09-27 00:33:44 +08:00
|
|
|
bottom: 40px;
|
|
|
|
}
|
2023-09-28 17:06:54 +08:00
|
|
|
.section.main-banner .item {
|
2023-09-27 00:33:44 +08:00
|
|
|
display: flex;
|
|
|
|
justify-content: center;
|
|
|
|
align-items: center;
|
|
|
|
width: 100%;
|
|
|
|
height: 720px;
|
|
|
|
background-repeat: no-repeat;
|
|
|
|
background-position: center center;
|
2023-09-28 17:06:54 +08:00
|
|
|
background-size: cover;
|
2023-09-27 00:33:44 +08:00
|
|
|
}
|
2023-09-28 17:06:54 +08:00
|
|
|
.section.main-banner .banner-text p:nth-child(1),
|
|
|
|
.section.main-banner .banner-text p:nth-child(2) {
|
2023-09-27 00:33:44 +08:00
|
|
|
transform: translate3d(0, 20px, 0);
|
|
|
|
opacity: 0;
|
|
|
|
}
|
2023-09-28 17:06:54 +08:00
|
|
|
.section.main-banner .banner-text p:nth-child(1) {
|
2023-09-27 00:33:44 +08:00
|
|
|
transition: 0.8s ease 0.4s;
|
|
|
|
}
|
2023-09-28 17:06:54 +08:00
|
|
|
.section.main-banner .banner-text p:nth-child(2) {
|
2023-09-27 00:33:44 +08:00
|
|
|
transition: 0.8s ease 0.6s;
|
|
|
|
}
|
2023-09-28 17:06:54 +08:00
|
|
|
.section.main-banner .swiper-slide-active .banner-text p:nth-child(1),
|
|
|
|
.section.main-banner .swiper-slide-active .banner-text p:nth-child(2) {
|
2023-09-27 00:33:44 +08:00
|
|
|
opacity: 1;
|
|
|
|
transform: translate3d(0, 0, 0);
|
2023-09-26 17:55:52 +08:00
|
|
|
}
|
2023-09-28 17:06:54 +08:00
|
|
|
.section.idx-about {
|
|
|
|
margin-top: 60px;
|
|
|
|
}
|
|
|
|
.section.idx-about .ia-container {
|
|
|
|
margin-top: 70px;
|
|
|
|
font-size: 20px;
|
|
|
|
color: #666666;
|
|
|
|
line-height: 36px;
|
|
|
|
}
|
|
|
|
.section.idx-about .ia-image {
|
2023-10-06 12:18:52 +08:00
|
|
|
max-width: 100%;
|
2023-09-28 17:06:54 +08:00
|
|
|
margin-top: 80px;
|
|
|
|
font-size: 0;
|
|
|
|
}
|
|
|
|
.section.idx-about .ia-image img {
|
|
|
|
width: 100%;
|
|
|
|
}
|
|
|
|
.section.idx-calture {
|
|
|
|
margin-top: 90px;
|
|
|
|
margin-bottom: 60px;
|
|
|
|
}
|
|
|
|
.section.idx-calture .ic-container {
|
|
|
|
display: flex;
|
|
|
|
flex-wrap: wrap;
|
|
|
|
justify-content: space-between;
|
|
|
|
}
|
|
|
|
.section.idx-calture .caltrue-item {
|
|
|
|
display: flex;
|
|
|
|
justify-content: space-between;
|
|
|
|
flex-direction: column;
|
|
|
|
width: 650px;
|
|
|
|
height: 156px;
|
|
|
|
background: rgba(248, 248, 248, 0);
|
|
|
|
border: 1px solid #DDDDDD;
|
|
|
|
box-shadow: 0px 3px 7px 0px rgba(0, 0, 0, 0.35);
|
|
|
|
border-radius: 20px;
|
|
|
|
box-sizing: border-box;
|
|
|
|
padding: 30px;
|
|
|
|
margin-top: 48px;
|
|
|
|
}
|
|
|
|
.section.idx-calture .title {
|
|
|
|
display: flex;
|
|
|
|
align-items: center;
|
|
|
|
}
|
|
|
|
.section.idx-calture .title .cover {
|
|
|
|
width: 30px;
|
|
|
|
height: 30px;
|
|
|
|
object-fit: scale-down;
|
|
|
|
margin-right: 15px;
|
|
|
|
}
|
|
|
|
.section.idx-calture .title .text {
|
|
|
|
font-size: 30px;
|
|
|
|
font-weight: bold;
|
|
|
|
color: #000001;
|
|
|
|
}
|
|
|
|
.section.idx-calture .desc {
|
|
|
|
font-size: 24px;
|
|
|
|
color: #666666;
|
|
|
|
}
|
|
|
|
.section.sec-banner {
|
|
|
|
width: 100%;
|
|
|
|
height: 450px;
|
|
|
|
display: flex;
|
|
|
|
align-items: center;
|
|
|
|
justify-content: center;
|
|
|
|
background-position: center center;
|
|
|
|
background-repeat: no-repeat;
|
|
|
|
background-size: cover;
|
|
|
|
}
|
|
|
|
.section.sec-banner .banner-text {
|
|
|
|
padding-top: 60px;
|
|
|
|
}
|
|
|
|
.section.article-detail {
|
|
|
|
margin-top: 50px;
|
|
|
|
margin-bottom: 50px;
|
|
|
|
}
|
|
|
|
.section.article-detail .title {
|
|
|
|
padding: 30px 0;
|
|
|
|
text-align: center;
|
|
|
|
border-bottom: 4px dashed #E5E5E5;
|
|
|
|
}
|
|
|
|
.section.article-detail .title h1 {
|
|
|
|
font-size: 28px;
|
|
|
|
font-weight: normal;
|
|
|
|
color: #333333;
|
|
|
|
}
|
|
|
|
.section.article-detail .content {
|
|
|
|
padding: 30px 0;
|
|
|
|
}
|
2023-10-06 12:41:43 +08:00
|
|
|
.section.article-detail .content img {
|
|
|
|
max-width: 100%;
|
|
|
|
}
|
2023-09-28 17:06:54 +08:00
|
|
|
.full-wrap.about {
|
|
|
|
background-color: #F7F7F7;
|
|
|
|
}
|
|
|
|
.section.about-textarea {
|
|
|
|
padding: 90px 0 65px 0;
|
|
|
|
}
|
|
|
|
.section.about-textarea .content {
|
|
|
|
font-size: 20px;
|
|
|
|
color: #666666;
|
|
|
|
line-height: 36px;
|
|
|
|
margin-top: 60px;
|
|
|
|
}
|
|
|
|
.section.about-textarea .img-group {
|
|
|
|
margin-top: 50px;
|
|
|
|
display: flex;
|
|
|
|
justify-content: space-between;
|
|
|
|
}
|
|
|
|
.section.about-textarea .img-group .item {
|
|
|
|
width: 442px;
|
|
|
|
height: 312px;
|
|
|
|
}
|
|
|
|
.section.about-textarea .img-group img {
|
|
|
|
width: 100%;
|
|
|
|
height: 100%;
|
|
|
|
object-fit: cover;
|
|
|
|
}
|
|
|
|
.section.mapcont {
|
|
|
|
margin-top: 70px;
|
|
|
|
}
|
|
|
|
.section.mapcont .mcont {
|
|
|
|
margin-top: 70px;
|
|
|
|
text-align: center;
|
2023-10-06 12:18:52 +08:00
|
|
|
font-size: 0;
|
2023-09-28 17:06:54 +08:00
|
|
|
}
|
2023-10-06 12:41:43 +08:00
|
|
|
.section.mapcont .mcont a {
|
|
|
|
display: block;
|
|
|
|
width: 100%;
|
|
|
|
}
|
2023-09-28 17:06:54 +08:00
|
|
|
.section.mapcont .mcont img {
|
|
|
|
max-width: 100%;
|
|
|
|
}
|
|
|
|
.section.addrcont {
|
|
|
|
margin-top: 70px;
|
|
|
|
margin-bottom: 90px;
|
|
|
|
}
|
|
|
|
.section.addrcont .aacont {
|
|
|
|
margin-top: 70px;
|
|
|
|
}
|
|
|
|
.section.addrcont .aacont li {
|
|
|
|
width: 50%;
|
|
|
|
float: left;
|
|
|
|
display: flex;
|
|
|
|
align-items: center;
|
|
|
|
margin-top: 35px;
|
|
|
|
}
|
|
|
|
.section.addrcont .aacont li:nth-child(1),
|
|
|
|
.section.addrcont .aacont li:nth-child(2) {
|
|
|
|
margin-top: 0;
|
|
|
|
}
|
|
|
|
.section.addrcont .aacont li::before {
|
|
|
|
content: '';
|
|
|
|
display: inline-block;
|
|
|
|
width: 27px;
|
|
|
|
height: 27px;
|
2023-10-06 12:18:52 +08:00
|
|
|
background-image: url('../images/daohang.png');
|
2023-09-28 17:06:54 +08:00
|
|
|
background-size: 100%;
|
|
|
|
flex-shrink: 0;
|
|
|
|
}
|
|
|
|
.section.addrcont .aacont a {
|
|
|
|
font-size: 20px;
|
|
|
|
color: #040000;
|
|
|
|
margin-left: 10px;
|
|
|
|
}
|
2023-10-01 18:31:44 +08:00
|
|
|
.section.contact-map {
|
|
|
|
position: relative;
|
|
|
|
margin-top: 100px;
|
|
|
|
height: 690px;
|
|
|
|
}
|
|
|
|
.section.contact-map .cm-desc {
|
|
|
|
z-index: 5;
|
|
|
|
position: relative;
|
|
|
|
width: 1045px;
|
|
|
|
display: flex;
|
|
|
|
border: 2px solid #DDDDDD;
|
|
|
|
box-shadow: 0px 3px 7px 0px rgba(0, 0, 0, 0.35);
|
|
|
|
box-sizing: border-box;
|
|
|
|
margin: 0 auto;
|
|
|
|
}
|
|
|
|
.section.contact-map .cm-desc .logo {
|
|
|
|
width: 392px;
|
|
|
|
height: 392px;
|
|
|
|
}
|
|
|
|
.section.contact-map .cm-desc .desc {
|
|
|
|
width: 653px;
|
|
|
|
padding: 35px;
|
|
|
|
box-sizing: border-box;
|
|
|
|
display: flex;
|
|
|
|
justify-content: space-between;
|
|
|
|
flex-direction: column;
|
|
|
|
background-color: #ffffff;
|
|
|
|
}
|
|
|
|
.section.contact-map .cm-map {
|
2023-10-06 12:41:43 +08:00
|
|
|
display: block;
|
2023-10-01 18:31:44 +08:00
|
|
|
position: absolute;
|
|
|
|
top: 170px;
|
|
|
|
height: 520px;
|
|
|
|
background-repeat: no-repeat;
|
|
|
|
background-position: center;
|
|
|
|
}
|
|
|
|
.section.contact-map .title h1 {
|
|
|
|
font-size: 36px;
|
|
|
|
font-weight: bold;
|
|
|
|
color: #000000;
|
|
|
|
line-height: 36px;
|
|
|
|
margin-bottom: 30px;
|
|
|
|
letter-spacing: 3px;
|
|
|
|
}
|
|
|
|
.section.contact-map .title span {
|
|
|
|
color: #E50020;
|
|
|
|
}
|
|
|
|
.section.contact-map .title p {
|
|
|
|
font-size: 24px;
|
|
|
|
color: #333333;
|
|
|
|
line-height: 24px;
|
|
|
|
}
|
|
|
|
.section.contact-map .items li {
|
|
|
|
display: flex;
|
|
|
|
align-items: center;
|
|
|
|
margin-top: 12px;
|
|
|
|
}
|
|
|
|
.section.contact-map .items img {
|
|
|
|
width: 37px;
|
|
|
|
height: 37px;
|
|
|
|
margin-right: 15px;
|
|
|
|
}
|
|
|
|
.section.contact-map .items p {
|
|
|
|
font-size: 18px;
|
|
|
|
font-weight: bold;
|
|
|
|
color: #333333;
|
|
|
|
}
|
|
|
|
.section.paragraph-content {
|
|
|
|
margin-top: 100px;
|
|
|
|
margin-bottom: 100px;
|
|
|
|
}
|
|
|
|
.section.paragraph-content .paragraph:first-child {
|
|
|
|
margin-top: 0;
|
|
|
|
}
|
|
|
|
.section.paragraph-content .paragraph {
|
|
|
|
margin-top: 30px;
|
|
|
|
}
|
|
|
|
.section.paragraph-content .paragraph .title {
|
|
|
|
font-size: 24px;
|
|
|
|
font-weight: bold;
|
|
|
|
color: #E50020;
|
|
|
|
line-height: 24px;
|
|
|
|
margin-bottom: 30px;
|
|
|
|
}
|
|
|
|
.section.cooperate .content {
|
|
|
|
margin-top: 60px;
|
|
|
|
margin-bottom: 60px;
|
|
|
|
}
|
|
|
|
.section.story-cont.last {
|
|
|
|
margin-bottom: 100px;
|
|
|
|
}
|
|
|
|
.section.story-cont {
|
|
|
|
margin-top: 40px;
|
|
|
|
}
|
|
|
|
.section.story-cont .title {
|
|
|
|
font-size: 24px;
|
|
|
|
font-weight: bold;
|
|
|
|
color: #E50020;
|
|
|
|
margin-bottom: 25px;
|
|
|
|
line-height: 24px;
|
|
|
|
}
|
|
|
|
.section.story-cont .image-con {
|
|
|
|
position: relative;
|
|
|
|
width: 100%;
|
2023-10-05 19:25:30 +08:00
|
|
|
font-size: 0;
|
|
|
|
}
|
|
|
|
.section.story-cont .image-con .swiper-slide {
|
2023-10-01 18:31:44 +08:00
|
|
|
border-radius: 20px;
|
|
|
|
overflow: hidden;
|
|
|
|
}
|
|
|
|
.section.story-cont .image-con img {
|
|
|
|
max-width: 100%;
|
|
|
|
}
|
|
|
|
.section.story-cont .image-con p {
|
|
|
|
position: absolute;
|
|
|
|
left: 0;
|
|
|
|
right: 0;
|
|
|
|
bottom: 0;
|
|
|
|
width: 100%;
|
2023-10-06 12:18:52 +08:00
|
|
|
background-image: url('../images/transparent-bg.png');
|
2023-10-01 18:31:44 +08:00
|
|
|
font-size: 24px;
|
|
|
|
font-weight: bold;
|
|
|
|
color: #FFFFFF;
|
|
|
|
box-sizing: border-box;
|
|
|
|
padding: 30px 60px;
|
|
|
|
}
|
|
|
|
.section.story-cont .story-item:first-child {
|
|
|
|
margin-top: 0;
|
|
|
|
}
|
|
|
|
.section.story-cont .story-item {
|
|
|
|
margin-top: 20px;
|
|
|
|
}
|
|
|
|
.section.story-cont .story-item .desc {
|
|
|
|
width: 700px;
|
|
|
|
height: 360px;
|
|
|
|
background: #F5F5F5;
|
|
|
|
border-radius: 20px 0 0 20px;
|
|
|
|
overflow: hidden;
|
|
|
|
float: left;
|
|
|
|
margin-top: 40px;
|
|
|
|
box-sizing: border-box;
|
|
|
|
padding: 28px;
|
|
|
|
}
|
|
|
|
.section.story-cont .story-item .img {
|
|
|
|
width: 666px;
|
|
|
|
height: 440px;
|
|
|
|
background: #E5E5E5;
|
|
|
|
border-radius: 20px;
|
|
|
|
overflow: hidden;
|
|
|
|
flex-shrink: 0;
|
|
|
|
float: right;
|
|
|
|
}
|
|
|
|
.section.story-cont .story-item .img img {
|
|
|
|
width: 100%;
|
|
|
|
height: 100%;
|
|
|
|
object-fit: cover;
|
|
|
|
}
|
|
|
|
.section.story-cont .story-item .text {
|
|
|
|
font-size: 24px;
|
|
|
|
font-weight: bold;
|
|
|
|
color: #000000;
|
|
|
|
line-height: 24px;
|
|
|
|
margin-bottom: 30px;
|
|
|
|
}
|
|
|
|
.section.story-cont .story-item .content {
|
|
|
|
font-size: 20px;
|
|
|
|
color: #000000;
|
|
|
|
line-height: 30px;
|
|
|
|
text-indent: 2em;
|
|
|
|
}
|
|
|
|
.section.story-cont .story-item:nth-child(2n) .desc {
|
|
|
|
float: right;
|
|
|
|
border-radius: 0 20px 20px 0;
|
|
|
|
}
|
|
|
|
.section.story-cont .story-item:nth-child(2n) .img {
|
|
|
|
float: left;
|
|
|
|
}
|
2023-10-01 22:50:46 +08:00
|
|
|
.section.business-nav .nav {
|
|
|
|
display: flex;
|
|
|
|
justify-content: space-around;
|
|
|
|
align-items: center;
|
|
|
|
}
|
|
|
|
.section.business-nav .nav li {
|
2023-10-02 22:13:27 +08:00
|
|
|
display: inline-block;
|
|
|
|
width: 340px;
|
|
|
|
text-align: center;
|
2023-10-01 22:50:46 +08:00
|
|
|
padding: 40px 0;
|
|
|
|
}
|
|
|
|
.section.business-nav .nav a {
|
|
|
|
font-size: 24px;
|
|
|
|
font-weight: bold;
|
|
|
|
color: #999999;
|
|
|
|
}
|
|
|
|
.section.business-nav .nav a:hover,
|
|
|
|
.section.business-nav .nav a.active {
|
|
|
|
color: #E50524;
|
|
|
|
}
|
|
|
|
.section.business-cont .title {
|
|
|
|
width: 100%;
|
|
|
|
text-align: center;
|
|
|
|
}
|
|
|
|
.section.business-cont .title h2 {
|
|
|
|
font-size: 30px;
|
|
|
|
font-weight: bold;
|
|
|
|
color: #E72A3A;
|
|
|
|
}
|
|
|
|
.section.business-cont .title::after {
|
|
|
|
content: '';
|
|
|
|
display: inline-block;
|
|
|
|
width: 58px;
|
|
|
|
height: 3px;
|
|
|
|
background: #E72A3A;
|
|
|
|
}
|
|
|
|
.s-section .s-title {
|
|
|
|
font-size: 24px;
|
|
|
|
font-weight: bold;
|
|
|
|
color: #333333;
|
|
|
|
line-height: 24px;
|
|
|
|
}
|
|
|
|
.s-section.s1-first {
|
|
|
|
margin-bottom: 80px;
|
2023-10-05 23:33:35 +08:00
|
|
|
margin-top: 12px;
|
2023-10-01 22:50:46 +08:00
|
|
|
}
|
|
|
|
.business-cont.s1 {
|
|
|
|
margin-top: 100px;
|
|
|
|
}
|
2023-10-04 18:54:45 +08:00
|
|
|
.business-cont.s2 {
|
|
|
|
margin-top: 100px;
|
|
|
|
}
|
|
|
|
.business-cont.s2 .mid-box {
|
|
|
|
margin-top: 40px;
|
|
|
|
}
|
|
|
|
.business-cont.s2 .mid-box .ad-text {
|
|
|
|
font-size: 20px;
|
|
|
|
font-weight: bold;
|
|
|
|
color: #666666;
|
|
|
|
line-height: 20px;
|
|
|
|
}
|
|
|
|
.business-cont.s3 {
|
|
|
|
background-color: #F7F7F7;
|
|
|
|
margin-top: 70px;
|
|
|
|
padding-top: 50px;
|
|
|
|
padding-bottom: 80px;
|
|
|
|
}
|
|
|
|
.business-cont.s3 .mid-box {
|
|
|
|
margin-top: 50px;
|
|
|
|
}
|
|
|
|
.business-cont.s3 .mid-box li {
|
|
|
|
display: flex;
|
|
|
|
align-items: center;
|
|
|
|
float: left;
|
|
|
|
}
|
|
|
|
.business-cont.s3 .mid-box li::after {
|
|
|
|
content: '';
|
|
|
|
display: block;
|
|
|
|
width: 2px;
|
|
|
|
height: 80px;
|
|
|
|
background: #D7D7D7;
|
|
|
|
}
|
|
|
|
.business-cont.s3 .mid-box li:nth-child(3n)::after {
|
|
|
|
display: none;
|
|
|
|
}
|
|
|
|
.business-cont.s3 .mid-box .cont {
|
|
|
|
width: 452px;
|
|
|
|
text-align: center;
|
|
|
|
}
|
|
|
|
.business-cont.s3 .mid-box .num {
|
|
|
|
font-size: 30px;
|
|
|
|
font-weight: bold;
|
|
|
|
color: #666666;
|
|
|
|
line-height: 30px;
|
|
|
|
}
|
|
|
|
.business-cont.s3 .mid-box .desc {
|
|
|
|
font-size: 24px;
|
|
|
|
color: #000000;
|
|
|
|
line-height: 24px;
|
|
|
|
margin-top: 35px;
|
|
|
|
}
|
|
|
|
.business-cont.s4 {
|
|
|
|
padding: 75px 0;
|
|
|
|
}
|
2023-10-01 22:50:46 +08:00
|
|
|
.s-content.g1 li {
|
|
|
|
float: left;
|
|
|
|
margin-right: 42px;
|
|
|
|
margin-top: 25px;
|
|
|
|
}
|
|
|
|
.s-content.g1 li:nth-child(4n) {
|
|
|
|
margin-right: 0;
|
|
|
|
}
|
|
|
|
.s-content.g1 .item {
|
|
|
|
width: 310px;
|
|
|
|
height: 303px;
|
|
|
|
background: rgba(229, 0, 32, 0);
|
|
|
|
border: 2px solid #DDDDDD;
|
|
|
|
box-shadow: 0px 3px 7px 0px rgba(0, 0, 0, 0.35);
|
|
|
|
border-radius: 20px;
|
|
|
|
display: flex;
|
|
|
|
flex-direction: column;
|
|
|
|
justify-content: center;
|
|
|
|
align-items: center;
|
|
|
|
box-sizing: border-box;
|
|
|
|
}
|
|
|
|
.s-content.g1 h4 {
|
|
|
|
margin: 30px 0;
|
|
|
|
font-size: 24px;
|
|
|
|
font-weight: bold;
|
|
|
|
color: #333333;
|
|
|
|
line-height: 24px;
|
|
|
|
}
|
|
|
|
.s-content.g1 p {
|
|
|
|
font-size: 20px;
|
|
|
|
color: #666666;
|
|
|
|
line-height: 20px;
|
|
|
|
}
|
|
|
|
.s-content.g1 .icon {
|
|
|
|
width: 115px;
|
|
|
|
height: 80px;
|
|
|
|
object-fit: cover;
|
|
|
|
}
|
|
|
|
.s-content.g2 li {
|
|
|
|
float: left;
|
|
|
|
margin-right: 46px;
|
|
|
|
margin-top: 30px;
|
|
|
|
}
|
|
|
|
.s-content.g2 li:nth-child(2n) {
|
|
|
|
margin-right: 0;
|
|
|
|
}
|
|
|
|
.s-content.g2 .item {
|
|
|
|
display: block;
|
|
|
|
width: 660px;
|
|
|
|
height: 349px;
|
|
|
|
background: #FFFFFF;
|
|
|
|
border: 2px solid #DDDDDD;
|
|
|
|
box-shadow: 0px 3px 7px 0px rgba(0, 0, 0, 0.35);
|
|
|
|
box-sizing: border-box;
|
|
|
|
}
|
|
|
|
.s-content.g2 .icon-cont {
|
|
|
|
width: 100%;
|
|
|
|
height: 225px;
|
|
|
|
}
|
|
|
|
.s-content.g2 .icon-cont .icon {
|
|
|
|
width: 100%;
|
|
|
|
height: 100%;
|
|
|
|
object-fit: cover;
|
|
|
|
}
|
|
|
|
.s-content.g2 .desc {
|
|
|
|
width: 100%;
|
|
|
|
height: 120px;
|
|
|
|
display: flex;
|
|
|
|
flex-direction: column;
|
|
|
|
justify-content: center;
|
|
|
|
padding: 0 30px;
|
|
|
|
box-sizing: border-box;
|
|
|
|
}
|
|
|
|
.s-content.g2 .desc h4 {
|
|
|
|
font-size: 20px;
|
|
|
|
font-weight: bold;
|
|
|
|
color: #333333;
|
|
|
|
line-height: 20px;
|
|
|
|
margin-bottom: 18px;
|
|
|
|
}
|
|
|
|
.s-content.g2 .desc p {
|
|
|
|
font-size: 16px;
|
|
|
|
color: #333333;
|
|
|
|
line-height: 20px;
|
|
|
|
}
|
2023-10-04 18:54:45 +08:00
|
|
|
.s-content.g4 .btn {
|
|
|
|
width: 100%;
|
|
|
|
height: 124px;
|
|
|
|
padding: 0 20px;
|
|
|
|
box-sizing: border-box;
|
2023-10-01 22:50:46 +08:00
|
|
|
}
|
2023-10-04 18:54:45 +08:00
|
|
|
.s-content.g4 .btn {
|
|
|
|
display: flex;
|
|
|
|
justify-content: center;
|
|
|
|
align-items: center;
|
2023-10-01 22:50:46 +08:00
|
|
|
}
|
2023-10-04 18:54:45 +08:00
|
|
|
.s-content.g4 .btn .b-text {
|
|
|
|
display: block;
|
|
|
|
width: 181px;
|
|
|
|
height: 40px;
|
|
|
|
background: #E50020;
|
|
|
|
border-radius: 20px;
|
|
|
|
text-align: center;
|
|
|
|
font-size: 16px;
|
|
|
|
color: #FFFFFF;
|
|
|
|
line-height: 40px;
|
2023-10-01 22:50:46 +08:00
|
|
|
}
|
2023-10-04 18:54:45 +08:00
|
|
|
.s-content.g3 li,
|
|
|
|
.s-content.g4 li {
|
2023-10-01 22:50:46 +08:00
|
|
|
float: left;
|
|
|
|
margin-right: 53px;
|
|
|
|
margin-top: 50px;
|
|
|
|
}
|
2023-10-04 18:54:45 +08:00
|
|
|
.s-content.g3 li:nth-child(3n),
|
|
|
|
.s-content.g4 li:nth-child(3n) {
|
2023-10-01 22:50:46 +08:00
|
|
|
margin-right: 0;
|
|
|
|
}
|
2023-10-04 18:54:45 +08:00
|
|
|
.s-content.g3 .item,
|
|
|
|
.s-content.g4 .item {
|
2023-10-01 22:50:46 +08:00
|
|
|
display: block;
|
|
|
|
width: 420px;
|
|
|
|
background: #FFFFFF;
|
|
|
|
border: 2px solid #DDDDDD;
|
|
|
|
box-shadow: 0px 3px 7px 0px rgba(0, 0, 0, 0.35);
|
|
|
|
box-sizing: border-box;
|
|
|
|
}
|
2023-10-04 18:54:45 +08:00
|
|
|
.s-content.g3 .icon-cont,
|
|
|
|
.s-content.g4 .icon-cont {
|
2023-10-01 22:50:46 +08:00
|
|
|
width: 100%;
|
|
|
|
height: 220px;
|
|
|
|
}
|
2023-10-04 18:54:45 +08:00
|
|
|
.s-content.g3 .icon-cont .icon,
|
|
|
|
.s-content.g4 .icon-cont .icon {
|
2023-10-01 22:50:46 +08:00
|
|
|
width: 100%;
|
|
|
|
height: 100%;
|
|
|
|
object-fit: cover;
|
|
|
|
}
|
2023-10-04 18:54:45 +08:00
|
|
|
.s-content.g3 .desc,
|
|
|
|
.s-content.g4 .desc {
|
2023-10-01 22:50:46 +08:00
|
|
|
width: 100%;
|
|
|
|
height: 124px;
|
|
|
|
padding: 0 20px;
|
|
|
|
box-sizing: border-box;
|
|
|
|
display: flex;
|
|
|
|
flex-direction: column;
|
|
|
|
justify-content: center;
|
|
|
|
}
|
2023-10-04 18:54:45 +08:00
|
|
|
.s-content.g3 .desc .i-title,
|
|
|
|
.s-content.g4 .desc .i-title {
|
2023-10-01 22:50:46 +08:00
|
|
|
font-size: 20px;
|
|
|
|
font-weight: bold;
|
|
|
|
color: #333333;
|
|
|
|
line-height: 20px;
|
|
|
|
margin-bottom: 18px;
|
|
|
|
}
|
2023-10-04 18:54:45 +08:00
|
|
|
.s-content.g3 .desc .i-desc,
|
|
|
|
.s-content.g4 .desc .i-desc {
|
2023-10-01 22:50:46 +08:00
|
|
|
font-size: 16px;
|
|
|
|
color: #333333;
|
|
|
|
line-height: 24px;
|
|
|
|
}
|
2023-10-02 22:13:27 +08:00
|
|
|
.s-content.g5 {
|
|
|
|
display: flex;
|
|
|
|
align-items: flex-start;
|
|
|
|
justify-content: space-between;
|
|
|
|
text-align: center;
|
|
|
|
margin-top: 60px;
|
|
|
|
}
|
|
|
|
.s-content.g5 .item {
|
|
|
|
width: 310px;
|
|
|
|
}
|
|
|
|
.s-content.g5 .item img {
|
|
|
|
width: 65px;
|
|
|
|
height: 65px;
|
|
|
|
}
|
|
|
|
.s-content.g5 .item p {
|
|
|
|
font-size: 24px;
|
|
|
|
color: #666666;
|
|
|
|
line-height: 36px;
|
|
|
|
margin-top: 50px;
|
|
|
|
}
|