@charset "utf-8";

* {
    box-sizing: border-box;
}

html {
    -webkit-text-size-adjust: none;
    max-height: 100%;
    scroll-behavior: smooth;
}

html,
body {
    scroll-behavior: smooth;
}

body {
    color: #0c121c;
    overflow-x: hidden;
    font-size: 16px;
}

body,
button,
input,
select,
textarea {
    font-family: pingfang SC,
        helvetica neue,
        arial,
        hiragino sans gb,
        microsoft yahei ui,
        microsoft yahei,
        simsun,
        sans-serif !important;
}

body,
p,
h1,
ul,
li,
input,
img,
figure,
h3,
h1,
h2,
h4,
h5,
h6,
dl,
dd,
dt {
    margin: 0;
    padding: 0;
}

input[type='text'],
input[type='password'],
input[type='submit'],
input[type='reset'],
input[type='button'],
textarea {
    -webkit-appearance: none;
}

.h1,
.h2,
.h3,
.h4,
.h5,
.h6,
h1,
h2,
h3,
h4,
h5,
h6 {
    font-weight: 700;
}

address,
cite,
dfn,
em,
var,
i {
    font-style: normal;
}

code,
kbd,
pre,
samp {
    font-family: 'Poppins', Sans-serif;
}

small {
    font-size: 10px;
}

ul,
ol {
    list-style: none;
}

sub {
    bottom: 0;
}

a {
    text-decoration: none;
    color: #1a1a1a;
}

a:hover {
    text-decoration: none;
    color: #122a88;
}

sup {
    vertical-align: text-top;
}

sub {
    vertical-align: text-bottom;
}

abbr[title] {
    border-bottom: 1px dotted;
    cursor: footer-help;
}

fieldset,
img {
    border: 0;
    max-width: 100%;
}

a img {
    vertical-align: text-bottom;
}

a img {
    vertical-align: text-bottom;
}

:focus {
    outline: 0;
}

textarea {
    overflow: auto;
    vertical-align: top;
    resize: vertical;
}

button,
input,
select,
textarea {
    font-size: 100%;
}

button,
input,
select {
    vertical-align: middle;
}

/* 更改输入框的 placeholder 文本颜色 */
input::placeholder,
textarea::placeholder {
    color: #bababa;
    /* 或者你想要的任何颜色值 */
}

button {
    cursor: pointer;
}

table {
    border-collapse: collapse;
    border-spacing: 0;
}

caption,
th {
    text-align: left;
}

.clear {
    clear: both;
    display: block;
    overflow: hidden;
    visibility: hidden;
    width: 0;
    height: 0;
}

.text-blue {
    color: #122a88;
}

.text-grey666 {
    color: #666;
}

.text-grey999 {
    color: #999;
}

.bg-blue {
    background: #122a88;
}

.bg-eee {
    background: #eee;
}

.bg-f5f5f5 {
    background: #f5f5f5;
}

.text-capital {
    text-transform: uppercase;
}

.lh220 {
    line-height: 220%;
}

.lh200 {
    line-height: 200%;
}

.lh180 {
    line-height: 180%;
}

.pt-8 {
    padding-top: 80px;
}

.pb-8 {
    padding-bottom: 80px;
}

/**************滚动条样式**********/

::-webkit-scrollbar {
    -webkit-appearance: none;
    width: 8px;
    height: 8px;
}

::-webkit-scrollbar-thumb {
    border-radius: 4px;
    background-color: #dddddd;
    box-shadow: 0 0 1px rgba(255, 255, 255, 0.5);
}

/**************框架公用样式**********/
.container-fluid {
    padding-left: 120px;
    padding-right: 120px;
    max-width: 1920px;
}

.photo em {
    display: block;
    overflow: hidden;
}

.photo img {
    -webkit-transition: 0.5s;
    transition: 0.5s;
}

.photo:hover img {
    -webkit-transform: scale(1.1);
    -moz-transform: scale(1.1);
    -ms-transform: scale(1.1);
    transform: scale(1.1);
    -webkit-transition: 0.5s;
    transition: 0.5s;
}

.iconfont {
    font-size: inherit;
}

/**************头部**********/
header {
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    width: 100%;
    z-index: 9;
    padding: 10px 0;
}


header .logo {
    width: 120px;
    height: 45px;
}

nav li a {
    display: block;
    padding: 0 20px;
    color: #fff;
}

nav li a:hover,
nav a.current {
    color: #122a88;
}

.sp_nav,
.sjj_nav {
    display: none;
}

.sp_nav {
    width: 28px;
    position: absolute;
    top: 18px;
    right: 15px;
    cursor: pointer;
    color: #fff;
    z-index: 999;
}

.sp_nav span {
    display: block;
    background: #122a88;
    width: 28px;
    height: 2px;
    position: absolute;
    transition: all ease 0.35s;
}

.sp_nav_se span {
    background: #fff;
    width: 28px;
}

.sp_nav span:nth-of-type(1) {
    top: 0px;
}

.sp_nav span:nth-of-type(2) {
    top: 8px;
}

.sp_nav span:nth-of-type(3) {
    top: 16px;
}

.sp_nav_se span:nth-of-type(1) {
    top: 20px;
    transform: rotate(45deg);
}

.sp_nav_se span:nth-of-type(2) {
    width: 0;
}

.sp_nav_se span:nth-of-type(3) {
    top: 20px;
    transform: rotate(-45deg);
}

.sjj_nav {
    position: fixed;
    z-index: 9;
    background: #eee;
    width: 100%;
    height: calc(100% - 104px);
    height: 100vh;
    line-height: 40px;
    top: -100vh;
    left: 0;
    right: 0;
    overflow: auto;
    overflow-x: hidden;
    transition: top ease 0.35s;
    margin: 0 auto;
}

.nav_show {
    top: 0;
    padding: 60px 30px;
    background: #333;
}

.sjj_nav>ul>li:first-child {
    overflow: hidden;
    border-top: 0;
}

.sjj_nav>ul>li:first-child>a {
    float: left;
    width: calc(100% - 70px);
}

.sjj_nav ul li .sjj_nav_i_se {
    transform: rotate(0deg);
}

.sjj_nav ul li {
    position: relative;
    line-height: 45px;
    border-bottom: 1px solid rgba(255, 255, 255, 0.2);
}


.sjj_nav ul li a {
    color: #ccc;
    display: block;
}




/**************banner**********/
.page-section {
    height: 100vh;
}

.banner section {
    z-index: 5;
}

.banner section h5 {
    margin-top: 30px;
    margin-bottom: 20px;
}

.banner .banner-video {
    height: 100%;
    object-fit: cover;
    top: 0;
    display: block;
}

.click-more1,
.click-more3 i,
.click-more::after,
.click-more4,
.click-more5 {
    transition: .5s;
}

.click-more {
    border: 1px solid #122a88;
    display: block;
    color: #122a88;
    position: relative;
    padding: 5px 20px;
}

.click-more::after {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    background: #122a88;
    display: block;
    width: 0;
    height: 100%;
    z-index: -1;
}

.click-more:hover {
    color: #fff;
}

.click-more:hover::after {
    width: 100%;
}

.click-more1 {
    background: #122a88;
    border: 1px solid #122a88;
    display: inline-block;
    color: #fff;
    position: relative;
    padding: 5px 25px;
    border-radius: 20px;
}

.click-more1:hover {
    background: none;
    border: 1px solid #fff;
    color: #fff;
}

.click-more2 {
    width: 170px;
    height: 72px;
    line-height: 72px;
    background: url(../images/more_bg.png) center no-repeat;
    position: relative;
}

.click-more2 i {
    transition: .5s;
    position: absolute;
    left: 75%;
}

.click-more2:hover i {
    position: absolute;
    left: 80%;
}

.click-more3 {
    font-size: 20px;
}

.click-more3:hover i {
    margin-left: 20px !important;
    display: inline-block;
}

.click-more4,
.click-more5 {
    background: #122a88;
    border: 1px solid #122a88;
    display: inline-block;
    color: #fff;
    position: relative;
    padding: 8px 35px;
}

.click-more4:hover {
    background: none;
    border: 1px solid #fff;
    color: #fff;
}

.click-more5:hover {
    background: none;
    color: #122a88
}

.swiper-button-prev,
.swiper-button-next {
    background: none;
    width: auto;
    height: auto;
    margin-top: inherit;
    transform: translateY(-50%);
}

.swiper-button-prev {
    left: 0;
}

.swiper-button-next {
    right: 0;
}

.products-list .tabs {
    font-size: 20px;
    position: absolute;
    top: 35px;
    left: 0;
    right: 0;
    border-bottom: 1px solid rgba(255, 255, 255, .5);
    width: 100%;
    z-index: 9;
    width: calc(100% - 240px);
    margin: 0 auto;
}

.products-list .tabs li {
    color: rgba(255, 255, 255, 0.5);
    padding: 15px 0;
    position: relative;
    display: block;
    cursor: pointer;
}

.products-list .tabs li.current,
.products-list .tabs li:hover {
    color: #fff;
}

.products-list .tabs li::after {
    content: '';
    height: 2px;
    width: 0;
    display: inline-block;
    position: absolute;
    background: #fff;
    bottom: -1px;
    left: 0;
    transition: .5s;
}

.products-list .tabs li:hover::after,
.products-list .tabs li.current::after {
    width: 100%;
}

.products-list .tabcon>div {
    padding-top: 180px;
    padding-bottom: 80px;
}

.products-list .tabcon h1 {
    font-size: 65px;
    -webkit-animation: fadeInLeft 0.5s ease 0.1s 1 both;
}

.products-list .tabcon .click-more2 {
    -webkit-animation: fadeInRight 0.5s ease 0.1s 1 both;
}

.products-list .tabcon .click-more3 {
    -webkit-animation: fadeInUp 0.5s ease 0.1s 1 both;
}

.about-page .swiper-slide {
    height: 0 !important;
}

.about-page .swiper-wrapper,
.about-page .swiper-slide-active {
    height: 100% !important;
}


.h-video {
    height: 650px;
    padding-top: 130px;
}

.h-video video {
    height: 100%;
    object-fit: cover;
    top: 0;
    display: block;
}

.h-video>section {
    position: relative;
    z-index: 5;
}

.h-video::after {
    content: '';
    width: 40%;
    height: 100%;
    position: absolute;
    left: 0;
    top: 0;
    background-image: linear-gradient(to right, rgba(0, 0, 0, .8), rgba(0, 0, 0, 0));
    z-index: 1;
}

.service-list .swiper-button-prev,
.service-list .swiper-button-next,
.fangche-list .swiper-button-prev,
.fangche-list .swiper-button-next {
    font-size: 30px;
    color: #fff;
}

.service-list .swiper-slide figure {
    display: none !important;
}

.service-list .swiper-slide-active figure {
    display: flex !important;
}

.service-list .swiper-slide-active figure section {
    width: calc(100% - 220px);
}

.fangche-list .swiper-button-prev,
.fangche-list .swiper-button-next,
.service-list .swiper-button-next,
.service-list .swiper-button-prev {
    margin-top: -22px;
}

.service-list .swiper-button-next,
.fangche-list .swiper-button-next {
    right: 22%;
}

.service-list .swiper-button-prev,
.fangche-list .swiper-button-prev {
    left: 22%;
}

.service-list .swiper-pagination {
    bottom: 100px;
}

.service-list .swiper-pagination-bullet,
.fangche-list .swiper-pagination-bullet {
    background: #fff;
    opacity: .4;
}

.service-list .swiper-pagination-bullet-active,
.fangche-list .swiper-pagination-bullet-active {
    opacity: 1;
}

.jianyan-list .swiper-button-prev,
.jianyan-list .swiper-button-next {
    font-size: 14px;
    width: 30px;
    height: 30px;
    line-height: 30px;
    text-align: center;
    background: #122a88;
    color: #fff;
    border-radius: 50%;
}

.jianyan-list .swiper-button-prev {
    left: 120px;
}

.jianyan-list .swiper-button-next {
    right: 120px;
}

.news-list .swiper-container {
    padding-bottom: 50px;
}

.news-list .swiper-pagination {
    bottom: 0;
}

.news-list .swiper-pagination-bullet-active {
    background: #122a88;
}

.news-list p b {
    width: calc(100% - 100px);
}

.footer-ewm {
    background: url(../images/footer_bg.jpg) center no-repeat;
    background-size: cover;
}

.footer-ewm ul {
    gap: 2%;
}

.footer-ewm li {
    width: 12.57%;
}

.footer-ewm li span {
    font-size: 18px;
}

footer,
.footer-bottom {
    background: #151515;
    padding-top: 15px;
    padding-bottom: 15px;
}

footer {
    border-bottom: 1px solid rgba(255, 255, 255, 0.1);
}

footer img {
    width: 120px;
    height: 45px;
}

footer section a,
.footer-bottom a {
    color: #fff;
}

footer section a+a,
.footer-bottom section a+a {
    margin-left: 15px;
}

.footer-bottom a:hover {
    color: #122a88;
}

.footer-bottom section a {
    font-size: 32px;
}

.min-banner {
    height: 600px;
}

.min-banner p {
    font-size: 18px;
}

.about-page .tabs {
    border-bottom: 1px solid #ccc;
    font-size: 18px;
}

.about-page .tabs a {
    margin-right: 30px;
    padding-bottom: 20px;
    position: relative;
}

.about-page .tabs a.active {
    color: #122a88;
    font-weight: bolder;
}

.about-page .tabs a.active::after {
    content: '';
    height: 2px;
    left: 0;
    background: #122a88;
    position: absolute;
    width: 100%;
    bottom: 0;
}

.about-page figure {
    width: 36%;
}

.about-page figure section {
    font-size: 18px;
}

.about-page em {
    width: 60%;
}

.fangche-list .swiper-container,
.honor-list .swiper-container {
    padding-bottom: 50px;
}

.fangche-list .swiper-pagination {
    bottom: 0;
}

.fangche-list .swiper-pagination-bullet {
    background: #999;
    opacity: .8;
}

.fangche-list .swiper-pagination-bullet-active,
.honor-list .swiper-pagination-bullet-active {
    background: #122a88;
    opacity: 1;
}


.community-carousel .swiper-slide {
    width: 20%;
    text-align: center;
}

.community-carousel .swiper-slide figure {
    font-size: 22px;
    border-bottom: 1px solid #ddd;
    padding-bottom: 20px;
}

.community-carousel .swiper-slide figure span {
    font-size: 18px;
    display: block;
}

.community-carousel .swiper-slide section {
    width: 100%;
    text-align: center;
    margin: 0 auto;
    transform: scale(0.7);
    padding: 20px;
    border-radius: 10px;
    display: block;
    border: 1px solid #ddd;
    position: relative;
}

.community-carousel .swiper-slide section h6 {
    font-size: 20px;
    margin-bottom: 10px;
    overflow: hidden;
    display: -webkit-box;
    -webkit-box-orient: vertical;
    -webkit-line-clamp: 2;
}

.community-carousel .swiper-slide section p {
    font-size: 14px;
    text-align: left;
    display: none;
}

.community-carousel .swiper-slide em {
    width: 1px;
    height: 40px;
    display: block;
    background: #ddd;
    margin: 0 auto;
}

.community-carousel .swiper-slide section::after {
    content: "";
    position: absolute;
    left: calc(50% - 20px);
    top: -38px;
    width: 0px;
    height: 0px;
    border: 20px solid transparent;
    border-bottom: 18px solid #ddd;
}

.community-carousel .swiper-slide section::before {
    content: "";
    position: absolute;
    top: -36px;
    left: calc(50% - 20px);
    z-index: 1;
    width: 0px;
    height: 0px;
    border: 20px solid transparent;
    border-bottom: 18px solid #fff;
}

.community-carousel .swiper-slide-active section {
    -webkit-transform: scale(1);
    -ms-transform: scale(1);
    transform: scale(1);
    opacity: 1 !important;
    display: block;
    margin-top: 12px;
}

.community-carousel .swiper-slide-active section h6 {
    font-size: 18px;
}

.community-carousel .swiper-slide section img {
    display: none;
}

.community-carousel .swiper-slide-active section p,
.community-carousel .swiper-slide-active section img {
    display: block;
}

.community-carousel .swiper-button-prev,
.community-carousel .swiper-button-next {
    background: none;
    width: auto;
    height: auto;
    font-size: 22px;
    margin-top: -15px;
}

.community-carousel .swiper-button-prev {
    left: 0;
}

.community-carousel .swiper-button-next {
    right: 0;
}

.honor-list .swiper-slide em {
    border: 1px solid #ddd;
}

.contact-page {
    height: 430px;
}

.news-content-list li {
    display: flex;
    justify-content: space-between;
    align-items: center;
    flex-wrap: wrap;
    padding: 20px 0;
}

.news-content-list li em {
    width: 45%;
}

.news-content-list li section {
    width: 53%;
}

.news-content-list li section p {
    font-size: 18px;
    overflow: hidden;
    display: -webkit-box;
    -webkit-box-orient: vertical;
    -webkit-line-clamp: 3;
}

.news-content-list li section b {
    width: 55px;
    height: 55px;
    display: block;
    background: #3498db;
    clip-path: polygon(25% 0%, 75% 0%, 100% 50%,
            75% 100%, 25% 100%, 0% 50%);
}

.pro-menu {
    font-size: 20px;
    border-bottom: 1px solid #ddd;
}

.pro-menu a {
    color: #888;
    padding-bottom: 20px;
    position: relative;
}

.pro-menu a+a {
    margin-left: 30px;
}

.pro-menu a:hover,
.pro-menu a.current {
    color: #122a88;
    font-weight: bolder;
}

.pro-menu a::after {
    content: '';
    height: 2px;
    display: block;
    position: absolute;
    bottom: 0;
    width: 0;
    background: #122a88;
    transition: .5s;
}

.pro-menu a:hover::after,
.pro-menu a.current::after {
    width: 100%;
}


.products-content-list section,
.products-content-pictures section {
    width: 320px;
}

.products-content-list em,
.products-content-pictures figure {
    width: calc(100% - 380px);
}

.products-content-pictures figure {
    gap: 2%;
}

.products-content-pictures figure em {
    width: 23.5%;
}

.service-content-list li {
    display: flex;
    flex-wrap: wrap;
    align-items: center;
}

.service-content-list li:nth-child(2n) {
    flex-direction: row-reverse;
}

.service-content-list li figure,
.service-content-list li em {
    width: 50%;
}

.service-content-list li figure {
    padding: 30px 120px;
}

.service-content-list li figure section {
    font-size: 18px;
}

.servicesq-list li {
    width: 23.5%;
    background: #fff;
    padding: 40px 30px;
    border-radius: 20px;
    box-shadow: 0 0 5px rgba(0, 0, 0, 0.1);
}

.servicesq-list li span {
    height: 3px;
    width: 40px;
    background: #122a88;
    display: block;
    margin: 15px 0;
}

.service-contact li {
    display: flex;
    justify-content: space-between;
    flex-wrap: wrap;
    align-items: center;
}

.service-contact li figure {
    width: 30%;
    padding: 0 120px;
}

.service-contact li figure section {
    font-size: 18px;
}

.service-contact li em {
    width: 70%;
    position: relative;
}

.service-contact li em::before {
    content: '';
    width: 150px;
    height: 105%;
    background: #fff;
    position: absolute;
    clip-path: polygon(0 0, 100% 0, 100% 0, 0 100%, 0 100%);
    margin-left: -1px;
    margin-top: -3px;
}

.service-content-list1 li {
    width: 50%;
    position: relative
}

.service-content-list1 li:after {
    content: '';
    bottom: 0;
    position: absolute;
    width: 100%;
    height: 60%;
    background-image: linear-gradient(to top, rgba(0, 0, 0, .8), rgba(0, 0, 0, 0));
    z-index: 1;
}

.service-content-list1 li section {
    padding: 30px 40px;
    bottom: 0;
    left: 0;
    z-index: 5;
}


.pro-page {
    padding: 120px 0;
}

.pro-page p,
.pro-page1 p {
    font-size: 18px;
}

.pro-page1 {
    height: 75vh;
}

.pro-page1 section {
    width: 490px;
}

.pro-page2 img {
    width: 100%;
}

.pro-page2 .swiper-button-prev,
.pro-page2 .swiper-button-next {
    color: #fff;
    font-size: 30px;
}

.pro-page2 .swiper-button-next,
.pro-page3 .swiper-button-next {
    right: 120px;
}

.pro-page2 .swiper-button-prev,
.pro-page3 .swiper-button-prev {
    transform: translateY(-50%) rotate(-180deg);
    left: 120px;
}

.pro-page3 .swiper-container {
    padding-bottom: 50px;
}

.pro-page3 .swiper-button-prev,
.pro-page3 .swiper-button-next {
    top: inherit;
    bottom: -25px;
    font-size: 30px;
}

.pro-page3 .swiper-pagination-bullet {
    height: 2px;
    width: 10px;
    background: #999;
    border-radius: 0;
    opacity: 1;
}

.pro-page3 .swiper-pagination-bullet-active {
    background: #333;
}

.pro-content {
    background: #171d2d;
}

.modal-open {
    overflow: inherit;
    padding: 0 !important
}

.modal-body {
    max-height: calc(100vh - 300px);
    overflow-y: auto;
    padding: 30px;
}

.modal-body form input {
    height: 50px;
}

.modal-body form textarea {
    height: 100px;
}

.modal-body form input,
.modal-body form textarea {
    margin-bottom: 15px;
}

.modal-dialog {
    max-width: 600px;
    width: 100%;
    top: 50%;
    left: 50%;
    margin: inherit;
    position: absolute;
    transform: translate(-50%, -50%) !important;
}

.btn-primary {
    background: #122a88;
    border: #122a88;
}


.slider-table {
    width: 100%;
    overflow-x: auto;
}

@media screen and (max-width: 1680px) {
    .container-fluid {
        padding-left: 100px;
        padding-right: 100px;
    }

    .service-contact li figure {
        padding-left: 100px;
        padding-right: 20px;
    }

    .service-content-list li figure {
        padding-right: 100px;
        padding-left: 50px;
    }

    .products-list .tabs {
        width: calc(100% - 200px);
        margin: 0 auto;
    }
}

@media screen and (max-width: 1440px) {

    .pro-page3 .swiper-button-prev,
    .pro-page3 .swiper-button-next {
        bottom: -25px;
    }
}


@media screen and (max-width: 1280px) {
    .container-fluid {
        padding-left: 15px;
        padding-right: 15px;
    }

    .products-list .tabs {
        width: calc(100% - 30px);
        margin: 0 auto;
    }
}

@media (any-hover: hover) {
    a:hover {
        background: inherit;
    }
}

@media screen and (max-width:767px) {

    ::-webkit-scrollbar {
        height: 0;
    }

    .pt-8 {
        padding-top: 40px;
    }

    .pb-8 {
        padding-bottom: 40px;
    }

    h1 {
        font-size: 26px;
    }

    h2 {
        font-size: 22px;
    }

    h3 {
        font-size: 18px;
    }

    h4,
    .min-banner p {
        font-size: 16px;
    }

    h5,
    .footer-ewm li span,
    .news-content-list li section p {
        font-size: 14px;
    }

    .sp_nav,
    .sjj_nav {
        display: block;
    }

    nav ul.d-flex {
        display: none !important;
    }

    nav span {
        margin-left: inherit;
        margin-right: 45px;
    }

    header .logo {
        width: 93px;
        height: 35px;
    }

    .products-list .tabcon h1,
    .about-page figure,
    .about-page em,
    .community-carousel .swiper-slide,
    .service-contact li figure,
    .service-contact li em,
    .service-content-list li figure,
    .service-content-list li em,
    .news-content-list li em,
    .news-content-list li section,
    .products-content-list section,
    .products-content-pictures section,
    .products-content-list em,
    .products-content-pictures figure,
    .servicesq-list li,
    .service-list .swiper-slide-active figure section,
    .service-content-list1 li {
        width: 100%;
    }

    .click-more2 {
        width: 100px;
        height: 35px;
        line-height: 35px;
        background-size: 100%;
        margin-top: 20px;
    }

    .click-more2 i {
        left: 100%;
    }

    .products-list .tabs,
    .about-page .tabs,
    .pro-menu {
        white-space: nowrap;
        overflow-x: auto;
        overflow-y: hidden;
        font-size: 16px;
    }

    .pro-menu {
        flex-wrap: nowrap !important;
    }

    .products-list .tabs li,
    .pro-menu a {
        margin-right: 10px;
        font-size: 14px;
    }

    .pro-menu a {
        padding-bottom: 15px;
    }

    .service-list .swiper-button-prev,
    .service-list .swiper-button-next {
        margin-top: -60px;
    }

    .service-list .swiper-button-prev,
    .service-list .swiper-button-next,
    .fangche-list .swiper-button-prev,
    .fangche-list .swiper-button-next {
        font-size: 20px;
    }

    .jianyan-list .swiper-button-prev,
    .service-list .swiper-button-prev,
    .fangche-list .swiper-button-prev,
    .pro-page2 .swiper-button-prev,
    .pro-page3 .swiper-button-prev {
        left: 15px;
    }

    .jianyan-list .swiper-button-next,
    .service-list .swiper-button-next,
    .fangche-list .swiper-button-next,
    .pro-page2 .swiper-button-next,
    .pro-page3 .swiper-button-next {
        right: 15px;
    }

    .click-more4,
    .click-more5 {
        padding: 5px 15px;
    }

    .service-list .swiper-pagination {
        bottom: 48%;
    }

    .service-list .swiper-slide-active figure,
    .news-list .swiper-slide section,
    .service-contact li figure,
    .service-content-list li figure {
        padding-left: 15px;
        padding-right: 15px;
    }

    .service-list .swiper-slide-active figure p {
        margin-bottom: 15px;
    }

    .news-list .swiper-container {
        padding-bottom: 30px;
    }

    .footer-ewm li {
        width: 32%;
        margin-bottom: 15px;
    }

    footer img {
        margin-bottom: 15px;
    }

    .min-banner {
        height: 35vh;
        position: relative;
    }

    .about-page em,
    .service-content-list li figure,
    .news-content-list li section,
    .products-content-list em,
    .products-content-pictures figure,
    .service-content-list li em,
    .servicesq-list li+li {
        margin-top: 15px;
    }

    .contact-page {
        height: 300px;
    }

    .community-carousel .swiper-button-prev,
    .community-carousel .swiper-button-next {
        margin-top: -45px;
    }

    .pro-page {
        padding: 40px 0;
    }

    .pro-page1 {
        height: auto;
        padding-top: 50px;
        padding-bottom: 50px;
        position: relative;
    }

    .pro-page3 .swiper-pagination-bullet {
        width: 4px;
        height: 4px;
        border-radius: 50%;
        margin: 0 2px !important;
    }

    .pro-page3 .swiper-button-prev,
    .pro-page3 .swiper-button-next {
        bottom: -28px;
    }

    .service-contact li em::before {
        clip-path: polygon(0 0, 100% 0, 100% -50%, 0 100%, 0 100%);
    }

    .service-content-list1 li section {
        padding: 20px;
    }

    .h-video {
        height: 500px;
    }

    .products-list .page-section {
        height: 35vh;
        position: relative;
    }

    .products-list .tabcon {
        background-position: right !important;
    }

    .products-list .tabs {
        top: 15px;
    }

    .products-list .tabcon>div {
        padding-top: 80px;
    }

    .products-list .tabcon h1 {
        font-size: 20px;
    }


    .click-more3 {
        font-size: 16px;
        margin-top: 20px;
    }

    .products-list .tabs li {
        padding: 0 0 15px;
    }

    .products-content-pictures figure {
        justify-content: space-between;
    }

    .products-content-pictures figure em {
        width: 48%;
        margin-bottom: 15px;
    }

    header .click-more {
        padding: 3px 10px;
    }

    .products-list::after,
    .min-banner::after,
    .pro-page1::after {
        content: '';
        position: absolute;
        background: rgba(0, 0, 0, .3);
        top: 0;
        left: 0;
        width: 100%;
        height: 100%;
        z-index: 1;
    }

    .products-list .tabcon section,
    .products-list .tabcon .click-more3,
    .min-banner>div,
    .pro-page1 section {
        position: relative;
        z-index: 5;
    }
}