zxf/css/style.less

1178 lines
22 KiB
Plaintext
Raw Normal View History

2023-10-04 17:06:26 +08:00
// main max width
2023-10-11 21:42:06 +08:00
@mw: 13.66rem;
2023-10-04 17:06:26 +08:00
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-04 17:06:26 +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;
}
.clearfix {
zoom: 1;
}
.clearfix::after {
display: block;
content: '';
clear: both;
}
.full-wrap {
width: 100%;
}
.main-wrap {
width: @mw;
margin: 0 auto;
}
.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;
.menu {
.link {
color: #FFFFFF;
}
.link.active {
color: #FFFFFF;
font-weight: bold;
}
.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
.menu {
.link {
color: #666666;
}
.link.active {
color: #E72A3A;
font-weight: bold;
}
.link:hover {
color: #E72A3A;
}
}
}
2023-10-04 17:06:26 +08:00
.header {
z-index: 20;
position: fixed;
top: 0;
left: 0;
right: 0;
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 .35s;
box-sizing: border-box;
2023-10-04 17:06:26 +08:00
.main {
2023-10-11 21:42:06 +08:00
height: 0.9rem;
2023-10-04 17:06:26 +08:00
display: flex;
align-items: center;
justify-content: space-between;
}
.logo {
2023-10-11 20:08:44 +08:00
font-size: 0;
2023-10-04 17:06:26 +08:00
img {
2023-10-11 21:42:06 +08:00
max-height: 0.5rem;
2023-10-04 17:06:26 +08:00
}
}
.menu {
.menu-group {
display: flex;
2023-10-11 20:08:44 +08:00
font-size: 0;
2023-10-04 17:06:26 +08:00
}
2023-10-11 21:42:06 +08:00
.menu-btn,
.menu-mask {
display: none;
}
2023-10-04 17:06:26 +08:00
.item {
2023-10-11 21:42:06 +08:00
margin-left: 0.5rem;
2023-10-04 17:06:26 +08:00
}
.link {
2023-10-11 21:42:06 +08:00
font-size: 0.18rem;
2023-10-11 22:16:05 +08:00
transition: color .35s;
2023-10-04 17:06:26 +08:00
}
}
}
.footer {
width: 100%;
background-color: #343434;
.main {
2023-10-11 21:42:06 +08:00
padding: 0.3rem 0;
2023-10-04 17:06:26 +08:00
.row:first-child {
margin-top: 0;
}
.row {
2023-10-11 21:42:06 +08:00
font-size: 0.18rem;
2023-10-04 17:06:26 +08:00
color: #FFFFFF;
text-align: center;
2023-10-11 21:42:06 +08:00
line-height: 0.2rem;
margin-top: 0.2rem;
2023-10-04 17:06:26 +08:00
}
.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-10-04 17:06:26 +08:00
}
.icp {
color: #999999;
}
}
}
2023-09-26 17:55:52 +08:00
2023-09-28 17:06:54 +08:00
.banner-text {
color: #FFFFFF;
text-align: center;
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
}
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
}
.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-26 17:55:52 +08:00
}
2023-09-27 00:33:44 +08:00
.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;
2023-09-26 17:55:52 +08:00
display: flex;
2023-09-27 00:33:44 +08:00
align-items: center;
justify-content: center;
2023-09-26 17:55:52 +08:00
2023-09-27 00:33:44 +08:00
.rtext {
color: #E50020;
}
2023-09-26 17:55:52 +08:00
}
2023-09-27 00:33:44 +08:00
.title::before,
.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-26 17:55:52 +08:00
}
2023-09-27 00:33:44 +08:00
}
}
2023-09-26 17:55:52 +08:00
2023-09-28 17:06:54 +08:00
.section.main-banner {
2023-09-27 00:33:44 +08:00
width: 100%;
.swiper-slide {
display: flex;
}
.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-26 17:55:52 +08:00
2023-09-27 00:33:44 +08:00
.swiper-pagination-bullet-active {
background: #E50020;
}
2023-09-26 17:55:52 +08:00
2023-09-27 00:33:44 +08:00
.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
}
.item {
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
.banner-text {
2023-09-27 00:33:44 +08:00
p:nth-child(1),
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-26 17:55:52 +08:00
}
2023-09-27 00:33:44 +08:00
p:nth-child(1) {
2023-10-11 22:16:05 +08:00
transition: transform .8s ease .4s,
opacity .8s ease .4s;
2023-09-26 17:55:52 +08:00
}
2023-09-27 00:33:44 +08:00
p:nth-child(2) {
2023-10-11 22:16:05 +08:00
transition: transform .8s ease .6s,
opacity .8s ease .6s;
2023-09-26 17:55:52 +08:00
}
}
2023-09-28 17:06:54 +08:00
.swiper-slide-active .banner-text {
2023-09-27 00:33:44 +08:00
p:nth-child(1),
p:nth-child(2) {
opacity: 1;
transform: translate3d(0, 0, 0);
}
}
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
.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
}
.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;
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
.ic-container {
display: flex;
flex-wrap: wrap;
justify-content: space-between;
}
2023-10-08 21:48:47 +08:00
.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
}
.title {
display: flex;
align-items: center;
.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
}
.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 .35s;
2023-09-28 17:06:54 +08:00
}
}
.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-08 21:48:47 +08:00
2023-10-11 22:16:05 +08:00
.culture-item:hover {
2023-10-08 21:48:47 +08:00
.text {
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;
.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
.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
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;
}
}
.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-10-08 21:48:47 +08:00
2023-10-06 12:41:43 +08:00
img {
max-width: 100%;
}
2023-09-28 17:06:54 +08:00
}
2023-10-11 21:42:06 +08:00
.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
.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 .35s;
2023-10-11 21:42:06 +08:00
outline: none;
cursor: pointer;
}
.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
.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
}
.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;
.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
// float: left;
2023-10-11 21:42:06 +08:00
// margin-right: 0.2rem;
2023-09-28 17:06:54 +08:00
}
// .item:nth-child(3n) {
// margin-right: 0;
// }
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
.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
a {
display: block;
width: 100%;
}
2023-09-28 17:06:54 +08:00
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
.aacont {
2023-10-11 21:42:06 +08:00
margin-top: 0.7rem;
2023-09-28 17:06:54 +08:00
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
}
li:nth-child(1),
li:nth-child(2) {
margin-top: 0;
}
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;
}
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 .35s;
2023-10-08 21:48:47 +08:00
}
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
.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;
.logo {
2023-10-11 21:42:06 +08:00
width: 3.92rem;
height: 3.92rem;
2023-10-01 18:31:44 +08:00
}
.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;
}
}
.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
}
.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
}
span {
color: #E50020;
}
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
}
}
.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
}
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
}
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
.paragraph:first-child {
margin-top: 0;
}
.paragraph {
2023-10-11 21:42:06 +08:00
margin-top: 0.3rem;
2023-10-01 18:31:44 +08:00
.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;
2023-10-01 18:31:44 +08:00
}
2023-10-11 21:42:06 +08:00
.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
.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
}
.image-con {
position: relative;
width: 100%;
font-size: 0;
2023-10-05 19:25:30 +08:00
.swiper-slide {
2023-10-11 21:42:06 +08:00
border-radius: 0.2rem;
2023-10-05 19:25:30 +08:00
overflow: hidden;
2023-10-11 21:42:06 +08:00
width: 100%;
height: 4.96rem;
2023-10-05 19:25:30 +08:00
}
2023-10-01 18:31:44 +08:00
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
.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;
p {
2023-10-11 21:42:06 +08:00
height: 0.3rem;
line-height: 0.3rem;
2023-10-08 21:48:47 +08:00
// background-image: url('../images/transparent-bg.png');
2023-10-11 21:42:06 +08:00
font-size: 0.24rem;
2023-10-08 21:48:47 +08:00
font-weight: bold;
color: #FFFFFF;
box-sizing: border-box;
}
2023-10-01 18:31:44 +08:00
}
}
.story-item:first-child {
margin-top: 0;
}
.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
.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
}
.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;
2023-10-01 22:50:46 +08:00
2023-10-01 18:31:44 +08:00
img {
width: 100%;
height: 100%;
object-fit: cover;
}
}
.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
}
.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
}
}
.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
}
.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
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
}
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 .35s;
2023-10-01 22:50:46 +08:00
}
a:hover,
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
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;
}
}
.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
.mid-box {
2023-10-11 21:42:06 +08:00
margin-top: 0.4rem;
2023-10-04 18:54:45 +08:00
.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
.mid-box {
2023-10-11 21:42:06 +08:00
margin-top: 0.5rem;
2023-10-04 18:54:45 +08:00
li {
display: flex;
align-items: center;
float: left;
}
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;
}
li:nth-child(3n)::after {
display: none;
}
.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
}
.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
}
.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
}
li:nth-child(4n) {
margin-right: 0;
}
.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;
}
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 .35s;
2023-10-01 22:50:46 +08:00
}
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
}
.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 .35s;
2023-10-08 21:48:47 +08:00
}
.item:hover {
h4 {
color: #E72A3A;
}
.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
}
li:nth-child(2n) {
margin-right: 0;
}
.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;
}
.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
.icon {
width: 100%;
height: 100%;
object-fit: cover;
2023-10-11 22:16:05 +08:00
transition: transform .35s;
2023-10-01 22:50:46 +08:00
}
}
.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;
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 .35s;
2023-10-01 22:50:46 +08:00
}
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
.item:hover {
h4 {
color: #E72A3A;
}
.icon {
transform: scale(1.1);
}
}
2023-10-01 22:50:46 +08:00
}
2023-10-04 18:54:45 +08:00
.s-content.g4 {
2023-10-01 22:50:46 +08:00
2023-10-04 18:54:45 +08:00
.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
.btn {
display: flex;
justify-content: center;
align-items: center;
.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,
.s-content.g4 {
2023-10-01 22:50:46 +08:00
li {
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
}
li:nth-child(3n) {
margin-right: 0;
}
.item {
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;
}
.icon-cont {
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
.icon {
width: 100%;
height: 100%;
object-fit: cover;
2023-10-11 22:16:05 +08:00
transition: transform .35s;
2023-10-01 22:50:46 +08:00
}
}
.desc {
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;
.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 .35s;
2023-10-01 22:50:46 +08:00
}
.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
.item:hover {
.i-title {
color: #E72A3A;
}
.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
.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
img {
2023-10-11 21:42:06 +08:00
width: 0.65rem;
height: 0.65rem;
2023-10-02 22:13:27 +08:00
}
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
}
}
2023-09-27 00:33:44 +08:00
}