zxf/css/style.css

947 lines
19 KiB
CSS
Raw Normal View History

2023-10-08 21:48:47 +08:00
@keyframes headerFadeIn {
0% {
opacity: 0;
}
100% {
opacity: 1;
}
}
@keyframes headerFadeInDown {
0% {
opacity: 0;
transform: translateY(-100%);
}
100% {
opacity: 1;
transform: translateY(0);
}
}
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 {
2023-10-11 21:42:06 +08:00
width: 13.66rem;
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-10-09 17:23:49 +08:00
.header.style1 {
2023-10-11 21:42:06 +08:00
background-image: -webkit-linear-gradient(to bottom, rgba(0, 0, 0, 0.8), rgba(0, 0, 0, 0));
background-image: -moz-linear-gradient(to bottom, rgba(0, 0, 0, 0.8), rgba(0, 0, 0, 0));
background-image: -o-linear-gradient(to bottom, rgba(0, 0, 0, 0.8), rgba(0, 0, 0, 0));
background-image: linear-gradient(to bottom, rgba(0, 0, 0, 0.8), rgba(0, 0, 0, 0));
2023-10-09 17:23:49 +08:00
background-color: unset;
}
.header.style1 .menu .link {
color: #FFFFFF;
}
.header.style1 .menu .link.active {
color: #FFFFFF;
font-weight: bold;
}
.header.style1 .menu .link:hover {
color: #E72A3A;
}
.header.style2 {
background-color: #FFFFFF;
2023-10-11 21:42:06 +08:00
box-shadow: 0rem 0.02rem 0.05rem 0rem rgba(0, 0, 0, 0.1);
2023-10-09 17:23:49 +08:00
}
.header.style2 .menu .link {
color: #666666;
}
.header.style2 .menu .link.active {
color: #E72A3A;
font-weight: bold;
}
.header.style2 .menu .link:hover {
color: #E72A3A;
}
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-08 21:48:47 +08:00
animation-name: headerFadeInDown;
animation-duration: 0.8s;
2023-10-09 17:23:49 +08:00
transition: all 0.35s;
box-sizing: border-box;
2023-09-26 17:55:52 +08:00
}
.header .main {
2023-10-11 21:42:06 +08:00
height: 0.9rem;
2023-09-26 17:55:52 +08:00
display: flex;
align-items: center;
justify-content: space-between;
}
2023-10-11 20:08:44 +08:00
.header .logo {
font-size: 0;
}
2023-09-26 17:55:52 +08:00
.header .logo img {
2023-10-11 21:42:06 +08:00
max-height: 0.5rem;
2023-09-26 17:55:52 +08:00
}
2023-10-04 17:06:26 +08:00
.header .menu .menu-group {
2023-09-26 17:55:52 +08:00
display: flex;
2023-10-11 20:08:44 +08:00
font-size: 0;
2023-09-26 17:55:52 +08:00
}
2023-10-11 21:42:06 +08:00
.header .menu .menu-btn,
.header .menu .menu-mask {
display: none;
}
2023-09-26 17:55:52 +08:00
.header .menu .item {
2023-10-11 21:42:06 +08:00
margin-left: 0.5rem;
2023-09-26 17:55:52 +08:00
}
.header .menu .link {
2023-10-11 21:42:06 +08:00
font-size: 0.18rem;
2023-10-11 22:16:05 +08:00
transition: color 0.35s;
2023-09-26 17:55:52 +08:00
}
.footer {
2023-09-27 00:33:44 +08:00
width: 100%;
2023-09-26 17:55:52 +08:00
background-color: #343434;
}
.footer .main {
2023-10-11 21:42:06 +08:00
padding: 0.3rem 0;
2023-09-26 17:55:52 +08:00
}
.footer .main .row:first-child {
margin-top: 0;
}
.footer .main .row {
2023-10-11 21:42:06 +08:00
font-size: 0.18rem;
2023-09-26 17:55:52 +08:00
color: #FFFFFF;
text-align: center;
2023-10-11 21:42:06 +08:00
line-height: 0.2rem;
margin-top: 0.2rem;
2023-09-26 17:55:52 +08:00
}
.footer .main .tel {
display: inline-block;
2023-10-11 21:42:06 +08:00
width: 3.55rem;
border: 0.02rem solid #DDDDDD;
border-radius: 0.3rem;
padding: 0.2rem;
font-size: 0.24rem;
2023-09-26 17:55:52 +08:00
}
.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) {
2023-10-11 21:42:06 +08:00
font-size: 0.38rem;
margin-bottom: 0.25rem;
line-height: 0.38rem;
2023-09-28 17:06:54 +08:00
}
.banner-text p:nth-child(2) {
2023-10-11 21:42:06 +08:00
font-size: 0.3rem;
line-height: 0.3rem;
2023-09-28 17:06:54 +08:00
}
.banner-text .cname {
color: #E30020;
}
2023-09-27 00:33:44 +08:00
.section .section-title {
text-align: center;
2023-10-11 21:42:06 +08:00
font-size: 0;
2023-09-27 00:33:44 +08:00
}
.section .section-title.style-1 .title {
2023-10-11 21:42:06 +08:00
font-size: 0.36rem;
line-height: 0.36rem;
2023-09-27 00:33:44 +08:00
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;
2023-10-11 21:42:06 +08:00
width: 0.58rem;
height: 0.03rem;
2023-09-27 00:33:44 +08:00
background: #D4D4D4;
2023-10-11 21:42:06 +08:00
margin: 0 0.15rem;
2023-09-27 00:33:44 +08:00
}
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-10-11 21:42:06 +08:00
width: 0.4rem;
height: 0.02rem;
2023-09-27 00:33:44 +08:00
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-10-11 21:42:06 +08:00
bottom: 0.4rem;
2023-10-11 22:16:05 +08:00
font-size: 0;
2023-09-27 00:33:44 +08:00
}
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%;
2023-10-11 21:42:06 +08:00
height: 7.2rem;
2023-09-27 00:33:44 +08:00
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-10-11 21:42:06 +08:00
transform: translate3d(0, 0.2rem, 0);
2023-09-27 00:33:44 +08:00
opacity: 0;
}
2023-09-28 17:06:54 +08:00
.section.main-banner .banner-text p:nth-child(1) {
2023-10-11 22:16:05 +08:00
transition: transform 0.8s ease 0.4s, opacity 0.8s ease 0.4s;
2023-09-27 00:33:44 +08:00
}
2023-09-28 17:06:54 +08:00
.section.main-banner .banner-text p:nth-child(2) {
2023-10-11 22:16:05 +08:00
transition: transform 0.8s ease 0.6s, opacity 0.8s ease 0.6s;
2023-09-27 00:33:44 +08:00
}
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 {
2023-10-11 21:42:06 +08:00
margin-top: 0.6rem;
2023-09-28 17:06:54 +08:00
}
.section.idx-about .ia-container {
2023-10-11 21:42:06 +08:00
margin-top: 0.7rem;
font-size: 0.2rem;
2023-09-28 17:06:54 +08:00
color: #666666;
2023-10-11 21:42:06 +08:00
line-height: 0.36rem;
2023-09-28 17:06:54 +08:00
}
.section.idx-about .ia-image {
2023-10-06 12:18:52 +08:00
max-width: 100%;
2023-10-11 21:42:06 +08:00
margin-top: 0.8rem;
2023-09-28 17:06:54 +08:00
font-size: 0;
}
.section.idx-about .ia-image img {
width: 100%;
}
2023-10-08 21:48:47 +08:00
.section.idx-culture {
2023-10-11 21:42:06 +08:00
margin-top: 0.9rem;
margin-bottom: 0.6rem;
2023-09-28 17:06:54 +08:00
}
2023-10-08 21:48:47 +08:00
.section.idx-culture .ic-container {
2023-09-28 17:06:54 +08:00
display: flex;
flex-wrap: wrap;
justify-content: space-between;
}
2023-10-08 21:48:47 +08:00
.section.idx-culture .culture-item {
2023-09-28 17:06:54 +08:00
display: flex;
justify-content: space-between;
flex-direction: column;
2023-10-11 21:42:06 +08:00
width: 6.5rem;
height: 1.56rem;
2023-09-28 17:06:54 +08:00
background: rgba(248, 248, 248, 0);
2023-10-11 21:42:06 +08:00
border: 0.01rem solid #DDDDDD;
box-shadow: 0rem 0.02rem 0.05rem 0rem rgba(0, 0, 0, 0.1);
border-radius: 0.2rem;
2023-09-28 17:06:54 +08:00
box-sizing: border-box;
2023-10-11 21:42:06 +08:00
padding: 0.3rem;
margin-top: 0.48rem;
2023-09-28 17:06:54 +08:00
}
2023-10-08 21:48:47 +08:00
.section.idx-culture .title {
2023-09-28 17:06:54 +08:00
display: flex;
align-items: center;
}
2023-10-08 21:48:47 +08:00
.section.idx-culture .title .cover {
2023-10-11 21:42:06 +08:00
width: 0.3rem;
height: 0.3rem;
2023-09-28 17:06:54 +08:00
object-fit: scale-down;
2023-10-11 21:42:06 +08:00
margin-right: 0.15rem;
2023-09-28 17:06:54 +08:00
}
2023-10-08 21:48:47 +08:00
.section.idx-culture .title .text {
2023-10-11 21:42:06 +08:00
font-size: 0.3rem;
2023-09-28 17:06:54 +08:00
font-weight: bold;
color: #000001;
2023-10-11 22:16:05 +08:00
transition: color 0.35s;
2023-09-28 17:06:54 +08:00
}
2023-10-08 21:48:47 +08:00
.section.idx-culture .desc {
2023-10-11 21:42:06 +08:00
font-size: 0.24rem;
2023-09-28 17:06:54 +08:00
color: #666666;
}
2023-10-11 22:16:05 +08:00
.section.idx-culture .culture-item:hover .text {
2023-10-08 21:48:47 +08:00
color: #E72A3A;
}
2023-09-28 17:06:54 +08:00
.section.sec-banner {
width: 100%;
2023-10-11 21:42:06 +08:00
height: 4.5rem;
2023-09-28 17:06:54 +08:00
display: flex;
align-items: center;
justify-content: center;
background-position: center center;
background-repeat: no-repeat;
background-size: cover;
}
.section.sec-banner .banner-text {
2023-10-11 21:42:06 +08:00
padding-top: 0.6rem;
2023-09-28 17:06:54 +08:00
}
.section.article-detail {
2023-10-11 21:42:06 +08:00
margin-top: 0.5rem;
margin-bottom: 0.5rem;
2023-09-28 17:06:54 +08:00
}
.section.article-detail .title {
2023-10-11 21:42:06 +08:00
padding: 0.3rem 0;
2023-09-28 17:06:54 +08:00
text-align: center;
2023-10-11 21:42:06 +08:00
border-bottom: 0.04rem dashed #E5E5E5;
2023-09-28 17:06:54 +08:00
}
.section.article-detail .title h1 {
2023-10-11 21:42:06 +08:00
font-size: 0.28rem;
2023-09-28 17:06:54 +08:00
font-weight: normal;
color: #333333;
}
.section.article-detail .content {
2023-10-11 21:42:06 +08:00
padding: 0.3rem 0;
2023-10-11 22:38:49 +08:00
font-size: 0.2rem;
line-height: 0.36rem;
2023-09-28 17:06:54 +08:00
}
2023-10-06 12:41:43 +08:00
.section.article-detail .content img {
max-width: 100%;
}
2023-10-11 21:42:06 +08:00
.section.article-detail .close-page {
text-align: center;
margin-top: 1rem;
2023-10-11 22:42:31 +08:00
font-size: 0;
2023-10-11 21:42:06 +08:00
}
.section.article-detail .close-page .btn {
width: 1.6rem;
height: 0.35rem;
font-size: 0.15rem;
line-height: 0.35rem;
background-color: #E72A3A;
border: 0.01rem solid #E72A3A;
color: #FFFFFF;
2023-10-11 22:42:31 +08:00
transition: background-color 0.35s;
2023-10-11 21:42:06 +08:00
outline: none;
cursor: pointer;
}
.section.article-detail .close-page .btn:hover {
background-color: #b8232f;
}
2023-09-28 17:06:54 +08:00
.full-wrap.about {
background-color: #F7F7F7;
}
.section.about-textarea {
2023-10-11 21:42:06 +08:00
padding: 0.9rem 0 0.65rem 0;
2023-09-28 17:06:54 +08:00
}
.section.about-textarea .content {
2023-10-11 21:42:06 +08:00
font-size: 0.2rem;
2023-09-28 17:06:54 +08:00
color: #666666;
2023-10-11 21:42:06 +08:00
line-height: 0.36rem;
margin-top: 0.6rem;
2023-09-28 17:06:54 +08:00
}
.section.about-textarea .img-group {
2023-10-11 21:42:06 +08:00
margin-top: 0.5rem;
2023-09-28 17:06:54 +08:00
display: flex;
justify-content: space-between;
}
.section.about-textarea .img-group .item {
2023-10-11 21:42:06 +08:00
width: 4.42rem;
height: 3.12rem;
font-size: 0;
2023-09-28 17:06:54 +08:00
}
.section.about-textarea .img-group img {
width: 100%;
height: 100%;
object-fit: cover;
}
.section.mapcont {
2023-10-11 21:42:06 +08:00
margin-top: 0.7rem;
2023-09-28 17:06:54 +08:00
}
.section.mapcont .mcont {
2023-10-11 21:42:06 +08:00
margin-top: 0.7rem;
2023-09-28 17:06:54 +08:00
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 {
2023-10-11 21:42:06 +08:00
margin-top: 0.7rem;
margin-bottom: 0.9rem;
2023-09-28 17:06:54 +08:00
}
.section.addrcont .aacont {
2023-10-11 21:42:06 +08:00
margin-top: 0.7rem;
2023-09-28 17:06:54 +08:00
}
.section.addrcont .aacont li {
width: 50%;
float: left;
display: flex;
align-items: center;
2023-10-11 21:42:06 +08:00
margin-top: 0.35rem;
2023-09-28 17:06:54 +08:00
}
.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;
2023-10-11 21:42:06 +08:00
width: 0.27rem;
height: 0.27rem;
2023-09-28 17:06:54 +08:00
background-size: 100%;
flex-shrink: 0;
}
.section.addrcont .aacont a {
2023-10-11 21:42:06 +08:00
font-size: 0.2rem;
2023-09-28 17:06:54 +08:00
color: #040000;
2023-10-11 21:42:06 +08:00
margin-left: 0.1rem;
2023-10-11 22:16:05 +08:00
transition: color 0.35s;
2023-10-08 21:48:47 +08:00
}
.section.addrcont .aacont a:hover {
color: #E72A3A;
2023-09-28 17:06:54 +08:00
}
2023-10-01 18:31:44 +08:00
.section.contact-map {
position: relative;
2023-10-11 21:42:06 +08:00
margin-top: 1rem;
height: 6.9rem;
2023-10-01 18:31:44 +08:00
}
.section.contact-map .cm-desc {
z-index: 5;
position: relative;
2023-10-11 21:42:06 +08:00
width: 10.45rem;
2023-10-01 18:31:44 +08:00
display: flex;
2023-10-11 21:42:06 +08:00
border: 0.02rem solid #DDDDDD;
box-shadow: 0rem 0.02rem 0.05rem 0rem rgba(0, 0, 0, 0.1);
2023-10-01 18:31:44 +08:00
box-sizing: border-box;
margin: 0 auto;
}
.section.contact-map .cm-desc .logo {
2023-10-11 21:42:06 +08:00
width: 3.92rem;
height: 3.92rem;
2023-10-01 18:31:44 +08:00
}
.section.contact-map .cm-desc .desc {
2023-10-11 21:42:06 +08:00
width: 6.53rem;
padding: 0.35rem;
2023-10-01 18:31:44 +08:00
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;
2023-10-11 21:42:06 +08:00
top: 1.7rem;
height: 5.2rem;
2023-10-01 18:31:44 +08:00
background-repeat: no-repeat;
background-position: center;
2023-10-11 21:42:06 +08:00
background-size: 100%;
2023-10-01 18:31:44 +08:00
}
.section.contact-map .title h1 {
2023-10-11 21:42:06 +08:00
font-size: 0.36rem;
2023-10-01 18:31:44 +08:00
font-weight: bold;
color: #000000;
2023-10-11 21:42:06 +08:00
line-height: 0.36rem;
margin-bottom: 0.3rem;
letter-spacing: 0.03rem;
2023-10-01 18:31:44 +08:00
}
.section.contact-map .title span {
color: #E50020;
}
.section.contact-map .title p {
2023-10-11 21:42:06 +08:00
font-size: 0.24rem;
2023-10-01 18:31:44 +08:00
color: #333333;
2023-10-11 21:42:06 +08:00
line-height: 0.24rem;
2023-10-01 18:31:44 +08:00
}
.section.contact-map .items li {
display: flex;
align-items: center;
2023-10-11 21:42:06 +08:00
margin-top: 0.12rem;
2023-10-01 18:31:44 +08:00
}
.section.contact-map .items img {
2023-10-11 21:42:06 +08:00
width: 0.37rem;
height: 0.37rem;
margin-right: 0.15rem;
2023-10-01 18:31:44 +08:00
}
.section.contact-map .items p {
2023-10-11 21:42:06 +08:00
font-size: 0.18rem;
2023-10-01 18:31:44 +08:00
font-weight: bold;
color: #333333;
}
.section.paragraph-content {
2023-10-11 21:42:06 +08:00
margin-top: 1rem;
margin-bottom: 1rem;
2023-10-01 18:31:44 +08:00
}
.section.paragraph-content .paragraph:first-child {
margin-top: 0;
}
.section.paragraph-content .paragraph {
2023-10-11 21:42:06 +08:00
margin-top: 0.3rem;
2023-10-01 18:31:44 +08:00
}
.section.paragraph-content .paragraph .title {
2023-10-11 21:42:06 +08:00
font-size: 0.24rem;
2023-10-01 18:31:44 +08:00
font-weight: bold;
color: #E50020;
2023-10-11 21:42:06 +08:00
line-height: 0.24rem;
margin-bottom: 0.3rem;
}
.section.paragraph-content .paragraph .content {
font-size: 0.24rem;
2023-10-01 18:31:44 +08:00
}
.section.cooperate .content {
2023-10-11 21:42:06 +08:00
font-size: 0.24rem;
margin-top: 0.6rem;
margin-bottom: 0.6rem;
2023-10-01 18:31:44 +08:00
}
.section.story-cont.last {
2023-10-11 21:42:06 +08:00
margin-bottom: 1rem;
2023-10-01 18:31:44 +08:00
}
.section.story-cont {
2023-10-11 21:42:06 +08:00
margin-top: 0.4rem;
2023-10-01 18:31:44 +08:00
}
.section.story-cont .title {
2023-10-11 21:42:06 +08:00
font-size: 0.24rem;
2023-10-01 18:31:44 +08:00
font-weight: bold;
color: #E50020;
2023-10-11 21:42:06 +08:00
margin-bottom: 0.25rem;
line-height: 0.24rem;
2023-10-01 18:31:44 +08:00
}
.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-11 21:42:06 +08:00
border-radius: 0.2rem;
2023-10-01 18:31:44 +08:00
overflow: hidden;
2023-10-11 21:42:06 +08:00
width: 100%;
height: 4.96rem;
2023-10-01 18:31:44 +08:00
}
.section.story-cont .image-con img {
2023-10-11 21:42:06 +08:00
width: 100%;
height: 100%;
object-fit: cover;
2023-10-01 18:31:44 +08:00
}
2023-10-08 21:48:47 +08:00
.section.story-cont .image-con .text-con {
2023-10-01 18:31:44 +08:00
position: absolute;
left: 0;
right: 0;
bottom: 0;
width: 100%;
2023-10-11 21:42:06 +08:00
padding: 0.3rem 0.6rem;
2023-10-08 21:48:47 +08:00
box-sizing: border-box;
}
.section.story-cont .image-con .text-con p {
2023-10-11 21:42:06 +08:00
height: 0.3rem;
line-height: 0.3rem;
font-size: 0.24rem;
2023-10-01 18:31:44 +08:00
font-weight: bold;
color: #FFFFFF;
box-sizing: border-box;
}
.section.story-cont .story-item:first-child {
margin-top: 0;
}
.section.story-cont .story-item {
2023-10-11 21:42:06 +08:00
margin-top: 0.2rem;
font-size: 0;
2023-10-01 18:31:44 +08:00
}
.section.story-cont .story-item .desc {
2023-10-11 21:42:06 +08:00
width: 7rem;
height: 3.6rem;
2023-10-01 18:31:44 +08:00
background: #F5F5F5;
2023-10-11 21:42:06 +08:00
border-radius: 0.2rem 0 0 0.2rem;
2023-10-01 18:31:44 +08:00
overflow: hidden;
float: left;
2023-10-11 21:42:06 +08:00
margin-top: 0.4rem;
2023-10-01 18:31:44 +08:00
box-sizing: border-box;
2023-10-11 21:42:06 +08:00
padding: 0.28rem;
2023-10-01 18:31:44 +08:00
}
.section.story-cont .story-item .img {
2023-10-11 21:42:06 +08:00
width: 6.66rem;
height: 4.4rem;
2023-10-01 18:31:44 +08:00
background: #E5E5E5;
2023-10-11 21:42:06 +08:00
border-radius: 0.2rem;
2023-10-01 18:31:44 +08:00
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 {
2023-10-11 21:42:06 +08:00
font-size: 0.24rem;
2023-10-01 18:31:44 +08:00
font-weight: bold;
color: #000000;
2023-10-11 21:42:06 +08:00
line-height: 0.24rem;
margin-bottom: 0.3rem;
2023-10-01 18:31:44 +08:00
}
.section.story-cont .story-item .content {
2023-10-11 21:42:06 +08:00
font-size: 0.2rem;
2023-10-01 18:31:44 +08:00
color: #000000;
2023-10-11 21:42:06 +08:00
line-height: 0.3rem;
2023-10-01 18:31:44 +08:00
}
.section.story-cont .story-item:nth-child(2n) .desc {
float: right;
2023-10-11 21:42:06 +08:00
border-radius: 0 0.2rem 0.2rem 0;
2023-10-01 18:31:44 +08:00
}
.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;
2023-10-11 20:08:44 +08:00
font-size: 0;
2023-10-01 22:50:46 +08:00
}
.section.business-nav .nav li {
2023-10-02 22:13:27 +08:00
display: inline-block;
2023-10-11 21:42:06 +08:00
width: 3.4rem;
2023-10-02 22:13:27 +08:00
text-align: center;
2023-10-11 21:42:06 +08:00
padding: 0.4rem 0;
2023-10-01 22:50:46 +08:00
}
.section.business-nav .nav a {
2023-10-11 21:42:06 +08:00
font-size: 0.24rem;
2023-10-01 22:50:46 +08:00
font-weight: bold;
color: #999999;
2023-10-11 22:16:05 +08:00
transition: color 0.35s;
2023-10-01 22:50:46 +08:00
}
.section.business-nav .nav a:hover,
.section.business-nav .nav a.active {
color: #E50524;
}
.section.business-cont .title {
width: 100%;
text-align: center;
2023-10-11 20:08:44 +08:00
font-size: 0;
2023-10-01 22:50:46 +08:00
}
.section.business-cont .title h2 {
2023-10-11 21:42:06 +08:00
font-size: 0.3rem;
2023-10-01 22:50:46 +08:00
font-weight: bold;
color: #E72A3A;
}
.section.business-cont .title::after {
content: '';
display: inline-block;
2023-10-11 21:42:06 +08:00
width: 0.58rem;
height: 0.03rem;
2023-10-01 22:50:46 +08:00
background: #E72A3A;
2023-10-11 21:42:06 +08:00
margin-top: 0.18rem;
2023-10-01 22:50:46 +08:00
}
.s-section .s-title {
2023-10-11 21:42:06 +08:00
font-size: 0.24rem;
2023-10-01 22:50:46 +08:00
font-weight: bold;
color: #333333;
2023-10-11 21:42:06 +08:00
line-height: 0.24rem;
2023-10-01 22:50:46 +08:00
}
.s-section.s1-first {
2023-10-11 21:42:06 +08:00
margin-bottom: 0.8rem;
margin-top: 0.12rem;
2023-10-01 22:50:46 +08:00
}
.business-cont.s1 {
2023-10-11 21:42:06 +08:00
margin-top: 1rem;
2023-10-01 22:50:46 +08:00
}
2023-10-04 18:54:45 +08:00
.business-cont.s2 {
2023-10-11 21:42:06 +08:00
margin-top: 1rem;
2023-10-04 18:54:45 +08:00
}
.business-cont.s2 .mid-box {
2023-10-11 21:42:06 +08:00
margin-top: 0.4rem;
2023-10-04 18:54:45 +08:00
}
.business-cont.s2 .mid-box .ad-text {
2023-10-11 21:42:06 +08:00
font-size: 0.2rem;
2023-10-04 18:54:45 +08:00
font-weight: bold;
color: #666666;
2023-10-11 21:42:06 +08:00
line-height: 0.2rem;
2023-10-04 18:54:45 +08:00
}
.business-cont.s3 {
background-color: #F7F7F7;
2023-10-11 21:42:06 +08:00
margin-top: 0.7rem;
padding-top: 0.5rem;
padding-bottom: 0.8rem;
2023-10-04 18:54:45 +08:00
}
.business-cont.s3 .mid-box {
2023-10-11 21:42:06 +08:00
margin-top: 0.5rem;
2023-10-04 18:54:45 +08:00
}
.business-cont.s3 .mid-box li {
display: flex;
align-items: center;
float: left;
}
.business-cont.s3 .mid-box li::after {
content: '';
display: block;
2023-10-11 21:42:06 +08:00
width: 0.02rem;
height: 0.8rem;
2023-10-04 18:54:45 +08:00
background: #D7D7D7;
}
.business-cont.s3 .mid-box li:nth-child(3n)::after {
display: none;
}
.business-cont.s3 .mid-box .cont {
2023-10-11 21:42:06 +08:00
width: 4.52rem;
2023-10-04 18:54:45 +08:00
text-align: center;
2023-10-11 21:42:06 +08:00
font-size: 0;
2023-10-04 18:54:45 +08:00
}
.business-cont.s3 .mid-box .num {
2023-10-11 21:42:06 +08:00
font-size: 0.3rem;
2023-10-04 18:54:45 +08:00
font-weight: bold;
color: #666666;
2023-10-11 21:42:06 +08:00
line-height: 0.3rem;
2023-10-04 18:54:45 +08:00
}
.business-cont.s3 .mid-box .desc {
2023-10-11 21:42:06 +08:00
font-size: 0.24rem;
2023-10-04 18:54:45 +08:00
color: #000000;
2023-10-11 21:42:06 +08:00
line-height: 0.24rem;
margin-top: 0.35rem;
2023-10-04 18:54:45 +08:00
}
.business-cont.s4 {
2023-10-11 21:42:06 +08:00
padding: 0.75rem 0;
2023-10-04 18:54:45 +08:00
}
2023-10-01 22:50:46 +08:00
.s-content.g1 li {
float: left;
2023-10-11 21:42:06 +08:00
margin-right: 0.42rem;
margin-top: 0.25rem;
2023-10-01 22:50:46 +08:00
}
.s-content.g1 li:nth-child(4n) {
margin-right: 0;
}
.s-content.g1 .item {
2023-10-11 21:42:06 +08:00
width: 3.1rem;
height: 3.03rem;
2023-10-01 22:50:46 +08:00
background: rgba(229, 0, 32, 0);
2023-10-11 21:42:06 +08:00
border: 0.02rem solid #DDDDDD;
box-shadow: 0rem 0.02rem 0.05rem 0rem rgba(0, 0, 0, 0.1);
border-radius: 0.2rem;
2023-10-01 22:50:46 +08:00
display: flex;
flex-direction: column;
justify-content: center;
align-items: center;
box-sizing: border-box;
}
.s-content.g1 h4 {
2023-10-11 21:42:06 +08:00
height: 0.24rem;
margin: 0.3rem 0;
font-size: 0.24rem;
2023-10-01 22:50:46 +08:00
font-weight: bold;
color: #333333;
2023-10-11 21:42:06 +08:00
line-height: 0.24rem;
2023-10-11 22:16:05 +08:00
transition: color 0.35s;
2023-10-01 22:50:46 +08:00
}
.s-content.g1 p {
2023-10-11 21:42:06 +08:00
height: 0.2rem;
font-size: 0.2rem;
2023-10-01 22:50:46 +08:00
color: #666666;
2023-10-11 21:42:06 +08:00
line-height: 0.2rem;
2023-10-01 22:50:46 +08:00
}
.s-content.g1 .icon {
2023-10-11 21:42:06 +08:00
width: 1.15rem;
height: 0.8rem;
2023-10-01 22:50:46 +08:00
object-fit: cover;
2023-10-11 22:16:05 +08:00
transition: transform 0.35s;
2023-10-08 21:48:47 +08:00
}
.s-content.g1 .item:hover h4 {
color: #E72A3A;
}
.s-content.g1 .item:hover .icon {
transform: scale(1.1);
2023-10-01 22:50:46 +08:00
}
.s-content.g2 li {
float: left;
2023-10-11 21:42:06 +08:00
margin-right: 0.46rem;
margin-top: 0.3rem;
2023-10-01 22:50:46 +08:00
}
.s-content.g2 li:nth-child(2n) {
margin-right: 0;
}
.s-content.g2 .item {
display: block;
2023-10-11 21:42:06 +08:00
width: 6.6rem;
height: 3.49rem;
2023-10-01 22:50:46 +08:00
background: #FFFFFF;
2023-10-11 21:42:06 +08:00
border: 0.02rem solid #DDDDDD;
box-shadow: 0rem 0.02rem 0.05rem 0rem rgba(0, 0, 0, 0.1);
2023-10-01 22:50:46 +08:00
box-sizing: border-box;
}
.s-content.g2 .icon-cont {
width: 100%;
2023-10-11 21:42:06 +08:00
height: 2.25rem;
2023-10-08 21:48:47 +08:00
overflow: hidden;
2023-10-01 22:50:46 +08:00
}
.s-content.g2 .icon-cont .icon {
width: 100%;
height: 100%;
object-fit: cover;
2023-10-11 22:16:05 +08:00
transition: transform 0.35s;
2023-10-01 22:50:46 +08:00
}
.s-content.g2 .desc {
width: 100%;
2023-10-11 21:42:06 +08:00
height: 1.2rem;
2023-10-01 22:50:46 +08:00
display: flex;
flex-direction: column;
justify-content: center;
2023-10-11 21:42:06 +08:00
padding: 0 0.3rem;
2023-10-01 22:50:46 +08:00
box-sizing: border-box;
}
.s-content.g2 .desc h4 {
2023-10-11 21:42:06 +08:00
height: 0.2rem;
font-size: 0.2rem;
2023-10-01 22:50:46 +08:00
font-weight: bold;
color: #333333;
2023-10-11 21:42:06 +08:00
line-height: 0.2rem;
margin-bottom: 0.18rem;
2023-10-11 22:16:05 +08:00
transition: color 0.35s;
2023-10-01 22:50:46 +08:00
}
.s-content.g2 .desc p {
2023-10-11 22:21:13 +08:00
height: 0.2rem;
2023-10-11 21:42:06 +08:00
font-size: 0.16rem;
2023-10-01 22:50:46 +08:00
color: #333333;
2023-10-11 21:42:06 +08:00
line-height: 0.2rem;
2023-10-01 22:50:46 +08:00
}
2023-10-08 21:48:47 +08:00
.s-content.g2 .item:hover h4 {
color: #E72A3A;
}
.s-content.g2 .item:hover .icon {
transform: scale(1.1);
}
2023-10-04 18:54:45 +08:00
.s-content.g4 .btn {
width: 100%;
2023-10-11 21:42:06 +08:00
height: 1.24rem;
padding: 0 0.2rem;
2023-10-04 18:54:45 +08:00
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;
2023-10-11 21:42:06 +08:00
width: 1.81rem;
height: 0.4rem;
2023-10-04 18:54:45 +08:00
background: #E50020;
2023-10-11 21:42:06 +08:00
border-radius: 0.2rem;
2023-10-04 18:54:45 +08:00
text-align: center;
2023-10-11 21:42:06 +08:00
font-size: 0.16rem;
2023-10-04 18:54:45 +08:00
color: #FFFFFF;
2023-10-11 21:42:06 +08:00
line-height: 0.4rem;
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;
2023-10-11 21:42:06 +08:00
margin-right: 0.53rem;
margin-top: 0.5rem;
2023-10-01 22:50:46 +08:00
}
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;
2023-10-11 21:42:06 +08:00
width: 4.2rem;
2023-10-01 22:50:46 +08:00
background: #FFFFFF;
2023-10-11 21:42:06 +08:00
border: 0.02rem solid #DDDDDD;
box-shadow: 0rem 0.02rem 0.05rem 0rem rgba(0, 0, 0, 0.1);
2023-10-01 22:50:46 +08:00
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%;
2023-10-11 21:42:06 +08:00
height: 2.2rem;
2023-10-08 21:48:47 +08:00
overflow: hidden;
2023-10-01 22:50:46 +08:00
}
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-11 22:16:05 +08:00
transition: transform 0.35s;
2023-10-01 22:50:46 +08:00
}
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%;
2023-10-11 21:42:06 +08:00
height: 1.24rem;
padding: 0 0.2rem;
2023-10-01 22:50:46 +08:00
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-11 21:42:06 +08:00
font-size: 0.2rem;
2023-10-01 22:50:46 +08:00
font-weight: bold;
color: #333333;
2023-10-11 21:42:06 +08:00
line-height: 0.2rem;
margin-bottom: 0.18rem;
2023-10-11 22:16:05 +08:00
transition: color 0.35s;
2023-10-01 22:50:46 +08:00
}
2023-10-04 18:54:45 +08:00
.s-content.g3 .desc .i-desc,
.s-content.g4 .desc .i-desc {
2023-10-11 21:42:06 +08:00
font-size: 0.16rem;
2023-10-01 22:50:46 +08:00
color: #333333;
2023-10-11 21:42:06 +08:00
line-height: 0.24rem;
2023-10-01 22:50:46 +08:00
}
2023-10-08 21:48:47 +08:00
.s-content.g3 .item:hover .i-title,
.s-content.g4 .item:hover .i-title {
color: #E72A3A;
}
.s-content.g3 .item:hover .icon,
.s-content.g4 .item:hover .icon {
transform: scale(1.1);
}
2023-10-02 22:13:27 +08:00
.s-content.g5 {
display: flex;
align-items: flex-start;
justify-content: space-between;
text-align: center;
2023-10-11 21:42:06 +08:00
margin-top: 0.6rem;
2023-10-02 22:13:27 +08:00
}
.s-content.g5 .item {
2023-10-11 21:42:06 +08:00
width: 3.1rem;
2023-10-11 20:08:44 +08:00
font-size: 0;
2023-10-02 22:13:27 +08:00
}
.s-content.g5 .item img {
2023-10-11 21:42:06 +08:00
width: 0.65rem;
height: 0.65rem;
2023-10-02 22:13:27 +08:00
}
.s-content.g5 .item p {
2023-10-11 21:42:06 +08:00
font-size: 0.24rem;
2023-10-02 22:13:27 +08:00
color: #666666;
2023-10-11 21:42:06 +08:00
line-height: 0.36rem;
margin-top: 0.5rem;
2023-10-02 22:13:27 +08:00
}