/*  S - reset 重置CSS  */
/*20230526因太卡先注释掉*/
/*@font-face {*/
/*    font-family: "SourceHanSansBold";*/
/*    src: url("./fonts/SourceHanSans-Bold.otf");*/
/*    font-stretch: "normal";*/
/*}*/

/*@font-face {*/
/*    font-family: "SourceHanSans";*/
/*    src: url("./fonts/SourceHanSans-Regular.otf");*/
/*    font-stretch: "normal";*/
/*}*/


@font-face {
    font-family: "SourceHanSansK";
    src: url("./fonts/SourceHanSansTWHK-Normal.otf");
    font-stretch: "normal";
}

@font-face {
    font-family: "DINPro";
    src: url("./fonts/DINPro-Medium_0.otf");
    font-stretch: "normal";
}

@font-face {
    font-family: "DINProLight";
    src: url("./fonts/DINPro-Light_0.otf");
    font-stretch: "normal";
}

html {
    font-size: 14px;
    font-family: SourceHanSans, Microsoft YaHei, Arial, sans-serif;
    -webkit-text-size-adjust: none;
    background: #fff;
}

body,
div,
p,
ul,
li,
h3,
h4,
h5,
h6,
input,
button,
textarea,
dl,
dt,
dd {
    margin: 0;
    padding: 0;
    font-family: SourceHanSans, 'Microsoft YaHei', 'PingFang SC', 'Helvetica Neue', sans-serif, Arial;
}

table {
    border-collapse: collapse;
    border-spacing: 0;
}

img,
button {
    border: 0;
    border: none;
}

em,
strong,
i {
    font-style: normal;
}

a {
    color: #333;
    /*此处待添加默认链接颜色*/
    outline: none;
    text-decoration: none;
}

li {
    list-style: none;
}

h3,
h4,
h5,
h6 {
    font-size: 100%;
    font-weight: normal;
}

input,
button,
textarea,
select,
optgroup,
option {
    font-family: inherit;
    font-size: inherit;
    font-style: inherit;
    font-weight: inherit;
    outline: none;
}

input,
button,
textarea,
select {
    *font-size: 100%;
}

body {
    -webkit-text-size-adjust: none;
}

* {
    -webkit-appearance: none;
    -webkit-tap-highlight-color: rgba(0, 0, 0, 0);
}

*:focus {
    outline: none;
}

input[type="checkbox"],
input[type="radio"] {
    position: absolute;
    width: 0;
    height: 0;
    border: 0;
    border: none;
    opacity: 0;
    left: -9999rem;
}

select {
    appearance: none;
    -moz-appearance: none;
    -webkit-appearance: none;
}

select::-ms-expand {
    display: none;
}

/* E - reset 重置CSS */
/* S - 通用样式 */
.fn-hide {
    display: none;
}

.fn-show {
    display: block;
}

.fn-fl {
    float: left;
}

.fn-fr {
    float: right;
}

.tran-5 {
    transition: all 0.5s;
}

.upAni {
    animation: upAni 1s linear infinite;
    -moz-animation: upAni 1s linear infinite;
    -webkit-animation: upAni 1s linear infinite;
    -o-animation: upAni 1s linear infinite;
}

.bigAni {
    animation: bigAni 1s linear infinite;
    -moz-animation: bigAni 1s linear infinite;
    -webkit-animation: bigAni 1.5s linear infinite;
    -o-animation: bigAni 1s linear infinite;
}

@keyframes upAni {
    25% {
        transform: translateY(5px);
    }

    50% {
        transform: translateY(8px);
    }

    100% {
        transform: translateY(0);
    }
}

@-moz-keyframes upAni {
    25% {
        transform: translateY(5px);
    }

    50% {
        transform: translateY(8px);
    }

    100% {
        transform: translateY(0);
    }
}

@-webkit-keyframes upAni {
    25% {
        transform: translateY(5px);
    }

    50% {
        transform: translateY(8px);
    }

    100% {
        transform: translateY(0);
    }
}

@-o-keyframes upAni {
    25% {
        transform: translateY(5px);
    }

    50% {
        transform: translateY(8px);
    }

    100% {
        transform: translateY(0);
    }
}

@keyframes bigAni {
    25% {
        transform: scale(1.2);
    }

    50% {
        transform: scale(1.3);
    }

    100% {
        transform: scale(1);
    }
}

@-moz-keyframes bigAni {
    25% {
        transform: scale(1.2);
    }

    50% {
        transform: scale(1.3);
    }

    100% {
        transform: scale(1);
    }
}

@-webkit-keyframes bigAni {
    25% {
        transform: scale(1.2);
    }

    50% {
        transform: scale(1.3);
    }

    100% {
        transform: scale(1);
    }
}

@-o-keyframes bigAni {
    25% {
        transform: scale(1.2);
    }

    50% {
        transform: scale(1.3);
    }

    100% {
        transform: scale(1);
    }
}

.ui-button {
    display: flex;
    align-items: center;
    justify-content: space-between;
    position: relative;
    width: 170px;
    height: 70px;
    border-radius: 70px;
    color: #fff;
    padding-right: 10px;
    font-size: 16px;
    cursor: pointer;
    background: linear-gradient(90deg, rgb(249, 161, 63) 0%, rgba(249, 161, 63, 0.08) 100%);
    overflow: hidden;
}

.ui-button .icon {
    width: 50px;
    height: 50px;
    flex-shrink: 0;
    z-index: 2;
    display: flex;
    align-items: center;
    position: relative;
    justify-content: flex-end;

}

.ui-button:hover .icon::before {
    /* transform: scale(10); */
    /* transition: transform 0.2s linear 0.2s, width 0.2s linear 0s; */
    width: 325%;
    transform: scale(1.45);
}

.ui-button:hover span {
    color: #f9a13f;
}

.ui-button .icon::before {
    content: '';
    position: absolute;
    right: 0;
    top: 0;
    width: 100%;
    height: 100%;
    border-radius: 50px;
    z-index: -1;
    transition: all .4s linear;
    background-color: #fff;
}

.ui-button .icon::after {
    display: inline-block;
    content: '';
    width: 40px;
    height: 20px;
    background: url(../images/btn-icon.png) no-repeat;
}

.ui-button span {
    color: #fff;
    line-height: 1;
    position: relative;
    text-transform: capitalize;
    z-index: 3;
    transition: all .4s linear;
    width: calc(100% - 50px);
    text-align: center;
    padding-left: 10px;
}

.g-inner {
    width: 80%;
    margin: 0 auto;
}

.text-ell {
    text-overflow: ellipsis;
    white-space: nowrap;
    overflow: hidden;
}


/* S - 清理浮动 */
.clearfix:after {
    overflow: hidden;
    display: block;
    clear: both;
    height: 0px;
    content: "\200B"
}

.clearfix {
    *zoom: 1;
}

/* E - 清理浮动 */

/* E - 通用样式 */

/*S-头部尾部*/
.header-warp {
    height: 70px;
    position: absolute;
    width: 100%;
    z-index: 9;
    background: rgba(0, 0, 0, 0.4);
}

.header-logo {
    float: left;
    width: 130px;
    margin: 12px 3% 0;
}

.header-inner {
    font-size: 0;
    line-height: 69px;
}

.header-inner a {
    color: #fff;
    display: inline-block;
    position: relative;
    padding: 0 30px;
    font-size: 18px;
    transition: all .3s;
    border-bottom: 2px solid transparent;
}

.header-inner a:hover,
.header-inner a.active {
    color: #f9a23f;
}

.header-inner a.active {
    border-color: #f9a23f;
}

.header-inner a:hover .subMenu {
    height: 180px;
}

.header-inner .subMenu {
    position: absolute;
    top: 70px;
    left: 0;
    right: 0;
    height: 0;
    overflow: hidden;
    transition: all .5s;
    text-align: center;
    line-height: 40px;
    font-size: 16px;
    color: #fff;
}

.header-inner .subMenu li {
    background: rgba(0, 0, 0, 0.4);
}

.header-inner .subMenu li a {
    padding: 0;
}

.header-inner .subMenu li:last-child {
    border-radius: 0 0 10px 10px;
    padding-bottom: 10px;
}

.header-inner .subMenu li:first-child {
    padding-top: 10px;
}

.header-inner .subMenu li:hover {
    color: #f9a23f;
}

.header-search {
    float: right;
    width: 10%;
    font-size: 0;
    border-bottom: 1px solid #fff;
    padding: 20px 0 5px;
}

.header-search i {
    display: inline-block;
    width: 20px;
    height: 20px;
    margin-right: 3px;
    vertical-align: middle;
    background: url(../images/search.png) no-repeat;
}

.header-search input {
    border: 0;
    display: inline-block;
    background: transparent;
    line-height: 20px;
    font-size: 16px;
    vertical-align: middle;
    width: calc(100% - 23px);
    color: #fff;
}

.header-search input::placeholder {
    color: #fff;
    font-size: 16px;
}

.footer-warp {
    height: 500px;
    position: relative;
    background: #272624 url(../images/bottom-bg.png) no-repeat;
    background-position: 10% bottom;
    color: #fff;
    font-size: 14px;
}

.footerSection {
    background: #272624;
    background: #272624 url(../images/bottom-bg.png) no-repeat;
    background-position: 10% bottom;
    height: 500px !important;
}

.section.footerSection .fp-tableCell {
    display: block !important;
    height: 500px !important;
}

.footerSection .footer-warp {
    background: none;
}

.footer-warp .g-inner {
    padding-top: 10%;
    display: flex;
}

.footer-warp .copyright {
    position: absolute;
    bottom: 30px;
    left: 0;
    right: 0;
    text-align: center;
}

.apple .footer-warp .copyright,
.apple .footer-left p,
.apple .aboutUs-left .home-title h3 {
    font-family: 'PingFang SC', 'Helvetica Neue', sans-serif, Arial;
}

.apple .aboutUs-left .home-title h3 {
    font-weight: bold;
}

.footer-left {
    width: 40%;
    flex-shrink: 1;
}

.footer-left img {
    width: 130px;
    margin-bottom: 40px;
}

.footer-left p {
    line-height: 32px;
}

.footer-left p::before {
    display: inline-block;
    content: '';
    width: 35px;
    height: 21px;
    vertical-align: middle;
    background: url(../images/footer1.png) no-repeat;
    background-position: center;
}

.footer-left p:nth-child(2)::before {
    background-image: url(../images/footer2.png);
}

.footer-left p:nth-child(3)::before {
    background-image: url(../images/footer3.png);
}

.footer-con {
    display: flex;
    width: 60%;
    flex-shrink: 1;
    padding: 0 50px;
    justify-content: space-around;
}

.footer-con .item {
    text-align: left;
    line-height: 32px;
}

.footer-con .item span {
    opacity: 0.8;
    display: block;
}

.footer-con .item span:first-child {
    opacity: 1;
    font-size: 15px;
}

.footer-right {
    text-align: center;
    width: 150px;
}

.footer-right p {
    line-height: 20px;
    margin-top: 15px;
    font-size: 15px;
    font-family: 'SourceHanSansBold';
    padding-left: 10px;
    text-align: center;
    border-left: 2px solid #fff;
}

/*E-头部尾部*/
/* s-内页头部*/
.page-top {
    position: relative;
}

.page-top img {
    display: block;
    width: 100%;
}

.page-tit {
    position: absolute;
    left: 0;
    right: 0;
    top: 27%;
    text-align: center;
    color: #fff;
}

.page-tit h3 {
    font-size: 50px;
    line-height: 1;
    font-family: 'SourceHanSansK';
}

.page-tit p {
    font-size: 70px;
    line-height: 1;
    margin-top: 15px;
    font-family: 'DINProLight';
}

.page-more {
    position: absolute;
    bottom: 6%;
    width: 100%;
    text-align: center;
    color: #fff;
    padding-top: 20px;
    border-top: 1px solid rgba(255, 255, 255, 0.3);
}

.page-more h3 {
    font-size: 34px;
    line-height: 1;
    position: absolute;
    top: -50px;
    left: 0;
    right: 0;
}

.page-more img {
    width: auto;
    display: inline-block;

    animation: upAni 2s linear infinite;
    -moz-animation: upAni 2s linear infinite;
    -webkit-animation: upAni 2s linear infinite;
    -o-animation: upAni 2s linear infinite;
}

.page-nav {
    position: relative;
    background: #fff;
    padding: 0 10%;
    height: 100%;
    box-shadow: 0 0 40px rgba(0, 0, 0, 0.1);
    border-bottom: 1px solid rgba(0, 0, 0, 0.1)
}

.page-nav-list {
    display: flex;
    text-align: center;
    justify-content: space-around;
}

.page-nav-list li {
    width: 25%;
    font-size: 24px;
    line-height: 100px;
    cursor: pointer;
    transition: all .3s;
}

/* .page-nav-list li.active span {
    color: #f9a13f;
    line-height: 98px;
    display: inline-block;
    border-bottom: 3px solid #f9a13f;
} */

.page-nav-list li:hover {
    background: #f9a13f;
    color: #fff;
    opacity: 0.5;
}

.page-nav-list li.active {
    background: #f9a13f;
    color: #fff;
    font-family: 'SourceHanSansBold';
}

.page-nav-list li.active:hover {
    opacity: 1;
}

/* e-内页头部*/
/* 分页 */

/*S-首页*/
.section {
    height: 800px;
    position: relative;
}

.topBanner,
.solution {
    height: 100%;
}

.topBanner .swiper-slide,
.solution .swiper-slide {
    height: 100%;
    background-size: cover;
    background-position: center center;
}

.topBanner-pagination {
    position: absolute;
    bottom: 6%;
    left: 0;
    right: 0;
    border-top: 1px solid rgba(255, 255, 255, 0.3);
    z-index: 9;
}

.topBanner-pagination.swiper-pagination-clickable .swiper-pagination-bullet {
    width: 33%;
    opacity: 0;
    height: 20px;
    padding-top: 12px;
    position: relative;
    top: -13px;
    background: transparent;
    cursor: pointer;
    transition: all .3s;
}

.topBanner-pagination.swiper-pagination-clickable .swiper-pagination-bullet::before {
    content: '';
    height: 1px;
    width: 100%;
    display: block;
    background: #fff;
}

.topBanner-pagination.swiper-pagination-clickable .swiper-pagination-bullet:hover {
    opacity: 0.5;
}

.topBanner-pagination.swiper-pagination-clickable .swiper-pagination-bullet-active {
    opacity: 1;
}

.topBanner-pagination.swiper-pagination-clickable .swiper-pagination-bullet-active::before {
    height: 2px;
}

.topBanner-content,
.solution-content {
    position: absolute;
    top: 0;
    left: 10%;
    right: 10%;
    bottom: 0;
    z-index: 2;
}

.topBanner-page {
    position: absolute;
    bottom: 6%;
    right: 0;
    height: 32px;
    color: #fff;
    width: 100px;
}

.topBanner-page h3 {
    font-size: 112px;
    font-style: italic;
    font-weight: bold;
    line-height: 1;
    position: absolute;
    bottom: 44px;
    font-family: 'DINPro';
}

.topBanner-page p {
    font-size: 30px;
    opacity: 0.8;
    position: absolute;
    right: -15px;
    bottom: 4px;
    line-height: 1;
    font-family: 'DINProLight';
}

.topBanner-content h4 {
    font-size: 80px;
    line-height: 1;
    color: #fff;
    padding-top: 20%;
    font-family: 'SourceHanSansK';
}

.topBanner-content h5 {
    font-size: 50px;
    opacity: 0.5;
    line-height: 50px;
    color: #fff;
    margin-top: 20px;
    font-family: 'DINPro';
}

.topBanner-content .ui-button {
    position: absolute;
    bottom: 30%;
}

.topBanner-content img {
    position: absolute;
    bottom: 6%;
    left: 0;
    right: 0;
    margin: 0 auto;
    animation: upAni 2s linear infinite;
    -moz-animation: upAni 2s linear infinite;
    -webkit-animation: upAni 2s linear infinite;
    -o-animation: upAni 2s linear infinite;
}

.topBanner-prev,
.topBanner-next {
    position: absolute;
    width: 10%;
    left: -10%;
    opacity: 0.6;
    transition: all .3s;
}

.topBanner-next {
    right: -10%;
    left: auto;
}

.topBanner-prev:hover,
.topBanner-next:hover {
    opacity: 0.8;
}

.aboutUs {
    background: #f8f8f8;
    height: 920px;
}

.aboutUs-left {
    width: 50%;
    padding: 0 0 0 10%;
    box-sizing: border-box;
    float: left;
    height: calc(90% - 150px);
    display: flex;
    flex-direction: column;
    justify-content: center;
}

.aboutUs-right {
    position: relative;
    width: 50%;
    height: 100%;
    float: right;
}

.home-title h3 {
    font-size: 50px;
    color: #000;
    font-family: 'SourceHanSansBold';
    line-height: 1;
    font-weight: bold;
}

.home-title p {
    font-size: 22px;
    color: #10411c;
    font-family: 'DINPro';
    line-height: 1;
    margin-top: 15px;
    letter-spacing: 7px;
    opacity: 0.5;
}

.aboutUs-con {
    padding-top: 8%;
    padding-right: 8%;
}

.aboutUs-con h3 {
    font-size: 42px;
    line-height: 63px;
    color: #219d96;
}

.aboutUs-con p {
    font-size: 18px;
    line-height: 32px;
    margin-top: 15px;
    color: #000;
    opacity: 0.8;
}

.ui-button2 {
    position: relative;
    width: 200px;
    line-height: 44px;
    font-size: 15px;
    color: #fff;
    text-align: center;
    cursor: pointer;
    background: linear-gradient(90deg, #f9a13f, #fcc731);
    border-radius: 44px;
}

.ui-button2 i {
    position: absolute;
    right: 20px;
    width: 31px;
    top: 15px;
    height: 13px;
    background: url(../images/btn-icon2.png);
    transition: all .3s;
}

.ui-button2:hover i {
    animation: .5s btn2Hover linear alternate infinite;
}

@keyframes btn2Hover {
    100% {
        right: 10px;
    }
}

.aboutUs .ui-button2 {
    margin-top: 45px;
}

.video-wapper {
    position: fixed;
    display: none;
    align-items: center;
    left: 10%;
    right: 10%;
    top: 0;
    height: 100%;
    z-index: 1000;
    justify-content: center;
    flex-direction: column;
}

.video-wapper video {
    width: 100%;
    max-height: 100%;
}

.closeVideo {
    cursor: pointer;
    position: absolute;
    width: 50px;
    height: 50px;
    border-radius: 50px;
    top: 75px;
    right: -50px;
    background: #fff;
    z-index: 999;
    box-shadow: 0 0 10px rgba(0, 0, 0, 0.3);
}

.closeVideo::before,
.closeVideo::after {
    content: '';
    position: absolute;
    right: 10px;
    top: 25px;
    height: 2px;
    width: 30px;
    background: #333;
    transform: rotate(45deg);
    box-shadow: 0 0 10px rgba(0, 0, 0, 0.3);
}

.closeVideo::after {
    transform: rotate(-45deg);
}

.aboutUs-right video {
    width: 100%;
}



.aboutUs-right .palyVideo {
    position: absolute;
    top: 0;
    right: 0;
    bottom: 0;
    left: 0;
    cursor: pointer;
    z-index: 2;
    background: url(../images/banner3.jpg) no-repeat;
    background-size: cover;
}

.aboutUs-right .palyVideo::before {
    content: '';
    position: absolute;
    top: 0;
    right: 0;
    bottom: 0;
    left: 0;
    cursor: pointer;
    z-index: 2;
    background: url(../images/play.png) no-repeat;
    background-position: center;
    transition: all .3s;
}

.aboutUs-box {
    position: absolute;
    bottom: 10%;
    left: 10%;
    right: 10%;
    display: flex;
    z-index: 3;
    justify-content: space-between;
}

.aboutUs-box .item {
    position: relative;
    top: 0;
    padding: 2% 0 2% 2%;
    width: 20%;
    box-sizing: border-box;
    cursor: pointer;
    transition: all .3s;
    background: rgba(255, 255, 255, .9);
    border-radius: 10px;
    box-shadow: 0 0 49px rgba(0, 0, 0, 0.2);
}

.aboutUs-box .item h3 {
    color: rgba(249, 161, 63, 0.5);
    font-size: 54px;
    line-height: 1;
    font-family: 'SourceHanSansK';
}

.aboutUs-box .item p {
    color: rgba(0, 0, 0, 0.5);
    font-size: 18px;
    line-height: 1;
    margin-top: 15px;
    font-family: 'SourceHanSans';
}

.aboutUs-box .item::before {
    position: absolute;
    right: 20px;
    top: 20px;
    content: '';
    width: 40px;
    height: 40px;
    background: url(../images/aboutUs1.png) no-repeat;
}

.aboutUs-box .item:nth-child(2):before {
    background-image: url(../images/aboutUs2.png);
}

.aboutUs-box .item:nth-child(3):before {
    background-image: url(../images/aboutUs3.png);
}

.aboutUs-box .item:nth-child(4):before {
    background-image: url(../images/aboutUs4.png);
}

.aboutUs-box .item:hover {
    top: -15px;
}

.productCenter .home-title {
    text-align: center;
    position: absolute;
    top: 10%;
    width: 100%;
}

.productCenter-left {
    left: 4%;
    top: 25%;
    bottom: 4%;
    position: absolute;
    border-left: 1px dotted rgba(0, 0, 0, 0.3);
    display: flex;
    flex-direction: column;
    justify-content: space-between;
}

.productCenter-left .item {
    width: 40px;
    text-align: center;
    position: relative;
    left: -20px;
    text-align: center;
    background: #fff;
    padding: 5px 0;
}

.productCenter-right {
    width: 20%;
    position: absolute;
    display: flex;
    flex-direction: column;
    justify-content: center;
    transition: all .3s;
    top: 30%;
    right: 10%;
}

.productCenter-nav .item {
    height: 90px;
    position: relative;
    border-top: 1px solid rgba(0, 0, 0, 0.3);
}

.productCenter-nav .item>div {
    position: relative;
    top: -45px;
    background: #fff;
    line-height: 90px;
    right: 90px;
    padding-right: 40px;
    text-align: right;
    font-size: 18px;
    cursor: pointer;
    border-radius: 70px;
    transition: all .3s;
}

.productCenter-nav .item:hover,
.productCenter-nav .item.active {
    border-color: #f9a13f;
}

.productCenter-nav .item.active>.ui-button {
    right: 120px;
    animation: btnMove linear .3s forwards;
}

.productCenter-nav .item.active>.ui-button:hover .icon::before {
    transform: none;
    width: 100%;
}

@keyframes btnMove {
    to {
        right: 90px;
    }
}

.productCenter-nav .item.active>.ui-button:hover span {
    color: #fff;
}

.productCenter-nav .item.active>.ui-button {
    line-height: 70px;
    width: 270px;
    margin-top: 10px;
    font-size: 24px;
    transition: none;
    padding-right: 10px;
    background: linear-gradient(90deg, rgb(249, 161, 63) 0%, rgba(249, 161, 63, 0.08) 100%);
}

.productCenter-nav .item::before {
    content: '';
    position: absolute;
    width: 320px;
    height: 70px;
    background: #fff;
    top: -45px;
    right: 90px;
    transition: all .3s;
}

.productCenter-nav .item.active::before {
    right: 60px;
}

.productCenter-text {
    position: relative;
    height: 150px;
    font-size: 20px;
    margin-left: -45%;
    line-height: 30px;
}

.productCenter-text .item {
    opacity: 0;
    position: absolute;
    font-size: 18px;
}

.productCenter-text .item.active {
    opacity: 1;
}

.productCenter-con {
    margin: 0 30% 0 10%;
    width: 45%;
    height: 50%;
    top: 35%;
    border-radius: 50px;
    overflow: hidden;
    transition: all .3s;
    position: absolute;
}

.productCenter-con .item {
    opacity: 0;
    position: absolute;
    width: 100%;
    height: 100%;
    transition: all .3s;
}

.productCenter-con .item.active {
    opacity: 1;
}

.productCenter-con .item img {
    width: 100%;
    height: 100%;

}

.solution .home-title {
    padding: 0 10%;
    position: relative;
    top: 20%;
}

.solution .home-title h3 {
    color: #fff;
}

.solution .home-title p {
    color: rgba(255, 255, 255, .5);
}

.solution .home-title h6 {
    width: 50%;
    font-size: 16px;
    line-height: 30px;
    margin-top: 20px;
    color: #fff;
}

.solution-content .ui-button {
    position: absolute;
    top: calc(20% + 240px);
}

.solutionWapper .topBanner-pagination.swiper-pagination-clickable .swiper-pagination-bullet {
    width: 25%;
    opacity: 1;
}

.solutionWapper .topBanner-page {
    bottom: auto;
    top: 5%;
}

.solutionWapper .topBanner-page h3 {
    bottom: auto;
}

.solutionWapper .topBanner-page p {
    right: -85px;
    bottom: auto;
    top: 106px;
    font-size: 38px;
    opacity: 0.5;
}

.solutionWapper .topBanner-pagination {
    padding: 0 10%;
    transition: all .3s;
}

.solutionWapper .topBanner-pagination.swiper-pagination-clickable .swiper-pagination-bullet::before {
    background: #f9a13f;
    opacity: 0;
}

.solutionWapper .topBanner-pagination.swiper-pagination-clickable .swiper-pagination-bullet:hover::before {
    opacity: 0.6;
}

.solutionWapper .topBanner-pagination.swiper-pagination-clickable .swiper-pagination-bullet-active::before {
    opacity: 1;
}

.solutionWapper .topBanner-pagination.swiper-pagination-clickable .swiper-pagination-bullet::after {
    content: '';
    width: 130px;
    height: 120px;
    position: absolute;
    top: -130px;
    left: 0;
    right: 0;
    margin: 0 auto;
    background: url(../images/solution1.png) no-repeat;
    background-position: center;
}

.solutionWapper .topBanner-pagination.swiper-pagination-clickable .swiper-pagination-bullet-active::after {
    top: -140px;
    opacity: 1;
}

.solutionWapper .topBanner-pagination.swiper-pagination-clickable .swiper-pagination-bullet:nth-child(2):after {
    background-image: url(../images/solution2.png);
}

.solutionWapper .topBanner-pagination.swiper-pagination-clickable .swiper-pagination-bullet:nth-child(3):after {
    background-image: url(../images/solution3.png);
}

.solutionWapper .topBanner-pagination.swiper-pagination-clickable .swiper-pagination-bullet:nth-child(4):after {
    background-image: url(../images/solution4.png);
}

.solutionWapper .topBanner-pagination.swiper-pagination-clickable .swiper-pagination-bullet-active::after {
    background-image: url(../images/solution11.png);
}

.solutionWapper .topBanner-pagination.swiper-pagination-clickable .swiper-pagination-bullet-active:nth-child(2)::after {
    background-image: url(../images/solution21.png);
}

.solutionWapper .topBanner-pagination.swiper-pagination-clickable .swiper-pagination-bullet-active:nth-child(3)::after {
    background-image: url(../images/solution31.png);
}

.solutionWapper .topBanner-pagination.swiper-pagination-clickable .swiper-pagination-bullet-active:nth-child(4)::after {
    background-image: url(../images/solution41.png);
}

.news-con {
    padding: 5% 10%;
    box-sizing: border-box;
    height: 100%;
}

.news-prev.swiper-button-prev {
    left: 5%;
    opacity: 0.1;
    transition: all .3s;
}

.news-next.swiper-button-next {
    right: 5%;
    opacity: 0.1;
    transition: all .3s;
}

.news-prev.swiper-button-prev:hover,
.news-next.swiper-button-next:hover {
    opacity: 0.3;
}

.home-title a {
    float: right;
    position: relative;
    z-index: 1;
}

.newsBanner {
    height: 70%;
    margin-top: 5%;
}

.newsBanner .swiper-slide {
    display: flex;
    padding: 0 30px 0 5%;
    box-sizing: border-box;
}

.newsBanner .item {
    display: inline-block;
    position: relative;
    width: 28%;
    margin-left: 5%;
    cursor: pointer;
}

.newsBanner .new-con {
    height: calc(100% - 46px);
    overflow: hidden;
    position: relative;
    border-radius: 20px;
}

.newsBanner .item img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: all 2s;
}

.newsBanner .item:hover img {
    transform: scale(1.2);
}

.newsBanner .news-text {
    position: absolute;
    bottom: 0;
    left: 0;
    right: 0;
    height: 50%;
    display: flex;
    flex-direction: column;
    color: #fff;
    padding: 12px 20px;
    justify-content: flex-end;
    background: linear-gradient(180deg, transparent 50%, rgba(0, 0, 0, 1));
}

.newsBanner .news-text h3 {
    font-size: 30px;
    font-family: 'SourceHanSansBold';
    line-height: 1;
    text-overflow: ellipsis;
    white-space: nowrap;
    overflow: hidden;
}

.newsBanner .news-text p {
    font-size: 14px;
    line-height: 1;
    margin-top: 12px;
    text-overflow: ellipsis;
    white-space: nowrap;
    overflow: hidden;
}

.newsBanner .item .time {
    position: absolute;
    line-height: 46px;
    bottom: 0;
    font-family: 'SourceHanSansBold';
}

.newsSection .topBanner-pagination {
    padding: 0 10%;
    transition: all .3s;
    border-color: rgba(0, 0, 0, 0.4);
}

.newsSection .topBanner-pagination.swiper-pagination-clickable .swiper-pagination-bullet::before {
    background: #000;
}

.topBanner-pagination {}

.news-page {
    position: absolute;
    bottom: 6%;
    left: 10%;
    font-size: 26px;
    color: #000;
}

.news-page span:nth-child(1) {
    font-family: 'SourceHanSansBold';
}

::-webkit-scrollbar {
    width: 2px;
}

/* 滚动槽 */
::-webkit-scrollbar-track {
    -webkit-box-shadow: inset006pxrgba(0, 0, 0, 0.3);
    background: #333;
    border-radius: 10px;
}

/* 滚动条滑块 */
::-webkit-scrollbar-thumb {
    border-radius: 10px;
    background: #f9a13f;
    -webkit-box-shadow: inset006pxrgba(0, 0, 0, 0.5);
}

::-webkit-scrollbar-thumb:window-inactive {
    background: #f9a13f;
}

/*E-首页*/
.page-con {
    background: #f8f8f8;
    padding-bottom: 100px;
}

.page-con2 {
    padding-bottom: 0 !important;
}

.page-con-tit {
    font-size: 48px;
    line-height: 200px;
    text-align: center;
    color: #000;
}

.page-con-tit2 {
    font-size: 28px;
    text-align: center;
    color: #000;
    font-family: 'SourceHanSansBold';
}

.bottom-banner {
    position: relative;
    margin-top: 100px;
    font-size: 0;
}

.bottom-banner img {
    width: 100%;
}

.bottom-banner .ui-button {
    position: absolute;
    top: 60%;
    left: 0;
    right: 0;
    margin: 0 auto;
    width: 160px;
    height: 50px;
    line-height: 50px;
}

.bottom-banner .ui-button .icon {
    transform: scale(0.8);
    margin-top: -1px;
}

.ui-button.small {
    width: 160px;
    height: 50px;
    line-height: 50px;
}

.ui-button.small .icon {
    transform: scale(0.7);
    margin-top: 0
}

.guige-bg {
    border-radius: 15px;
    background: #00a197;
    padding-top: 5px;
    box-shadow: 0 0 40px rgba(0, 0, 0, 0.1);
}

.guige-warp {
    border-radius: 15px;
    background: #fff;

}

.guige-warp li {
    height: 110px;
    font-size: 20px;
    color: #000;
    display: flex;
    align-items: center;
    text-align: center;
    transition: all .3s;
    border-bottom: 1px solid rgba(0, 0, 0, 0.1);
}

.guige-warp .name {
    font-family: 'SourceHanSansBold';
    width: 50%;
    text-align: left;
    padding-left: 8%;
    box-sizing: border-box;
}

.guige-warp .time {
    width: 25%;
}

.guige-warp .download {
    width: 25%;
}

.guige-warp .name::before {
    content: '';
    display: inline-block;
    width: 8px;
    height: 8px;
    border-radius: 8px;
    background: #f9a13f;
    margin-right: 10px;
    vertical-align: middle;
}

.guige-warp .download a {
    display: inline-block;
    width: 130px;
    height: 45px;
    line-height: 45px;
    border-radius: 45px;
    transition: all .3s;
    border: 1px solid #000;
}

.guige-warp li:hover {
    background: #f8f8f8;
}

.guige-warp li:hover .download a {
    border-color: #f9a23f;
    background: #f9a13f;
    color: #fff;
}

.guige-warp .download a::before {
    content: '';
    display: inline-block;
    width: 20px;
    height: 20px;
    vertical-align: middle;
    margin-right: 5px;
    background: url(../images/download.png) no-repeat;
}

.guige-warp li:hover .download a::before {
    background-image: url(../images/download1.png);
}

.guige-page {
    padding: 40px 0;
    text-align: center;
    display: flex;
    justify-content: center;
    align-items: center;
}

.guige-page .btn {
    display: block;
    width: 68px;
    height: 14px;
    background: url(../images/guige-btn.png) no-repeat;
}

.guige-page .btn {
    margin: 0 70px;
    cursor: pointer;
}

.guige-page .prev {
    transform: rotate(180deg);
}

.guige-page .size {
    font-size: 44px;
    font-family: 'SourceHanSansBold';
    color: #f9a13f;
    font-style: italic;
    padding-bottom: 20px;
}

.guige-page .total {
    font-size: 20px;
    color: rgba(0, 0, 0, 0.5);
}

.ui-mark {
    position: fixed;
    top: 0;
    left: 0;
    bottom: 0;
    right: 0;
    display: none;
    background: rgba(0, 0, 0, 0.2);
}

.dialog-box {
    position: fixed;
    top: 0;
    right: 0;
    bottom: 0;
    left: 0;
    width: 500px;
    height: 350px;
    margin: auto;
    background-color: #fff;
    border-radius: 10px;
    font-size: 16px;
}

.dialog-title {
    height: 40px;
    line-height: 40px;
    color: #333;
    margin-bottom: 30px;
}

.dialog-title span {
    font-size: 20px;
    float: right;
    width: 50px;
    text-align: center;
    cursor: pointer;
}

.dialog-form-item {
    width: 80%;
    margin: 0 auto 20px;
}

.service-warp {
    padding: 100px 0 0;
}

.dialog-form-item label {
    float: left;
    width: 70px;
    line-height: 40px;
}

.dialog-form-item.required label::before {
    content: '*';
    color: red;
    margin-right: 5px;
}

.dialog-form-item input {
    line-height: 40px;
    width: calc(100% - 70px);
    box-sizing: border-box;
    padding-left: 10px;
    border: 1px solid rgba(0, 0, 0, 0.1)
}

.dialog-form-btn {
    text-align: center;
}

.dialog-form-btn button {
    width: 130px;
    height: 40px;
    border-radius: 40px;
    background-color: #f9a13f;
    color: #fff;
    border: 1px solid #f9a13f;
    cursor: pointer;
}

.dialog-form-btn button:hover {
    opacity: 0.8;
}

.dialog-form-btn button:last-child {
    margin-left: 20px;
    color: #333;
    background-color: #fff;
    border-color: #333;
}

.service-warp {
    padding: 100px 0 0;
}

.service-warp ul {
    background: #fff;
    padding: 20px;
    border-radius: 15px;
    overflow: hidden;
    box-shadow: 0 0 40px rgba(0, 0, 0, 0.1);
}

.service-warp li {
    display: flex;
    align-items: center;

}

.service-warp li img {
    width: 50%;
}

.service-warp li .text {
    width: 50%;
    padding: 0 6%;
}

.service-warp li .text h3 {
    font-size: 24px;
    font-family: 'SourceHanSansBold';
    line-height: 1;
}

.service-warp li .text p {
    font-size: 14px;
    line-height: 30px;
    margin-top: 30px;
}

.job-warp {
    background: #fff;
    border-radius: 15px;
    padding: 0 20px;
}

.job-warp li {
    position: relative;
}

.job-warp h3 {
    color: rgba(0, 0, 0, 0.5);
    font-size: 15px;
}

.job-warp p {
    font-size: 20px;
    margin-top: 20px;
    font-family: 'SourceHanSansBold';
}

.job-warp .content {
    position: relative;
    z-index: 2;
    padding: 20px 0;
    display: flex;
    cursor: pointer;
    border-bottom: 1px solid rgba(0, 0, 0, 0.2);
}

.job-warp li:last-child .content {
    border: none;
}

.job-warp .content .name {
    flex-grow: 1;
}

.job-warp .content .area {
    width: 13%;
}

.job-warp .content .num {
    width: 13%;
}

.job-warp .content .work {
    width: 13%;
}

.job-warp .content .time {
    width: 200px;
}

.img-fixed {
    display: none;
    position: fixed;
    left: 0;
    right: 0;
    top: 0;
    bottom: 0;
    background: rgba(0, 0, 0, 0.2);
    align-items: center;
    justify-content: center;
    flex-direction: column;
}

.img-fixed .close {
    margin-top: 30px;
    width: 40px;
    height: 40px;
    line-height: 30px;
    text-align: center;
    font-family: DINProLight;
    border: 2px solid #fff;
    color: #fff;
    font-size: 40px;
    border-radius: 100%;
    cursor: pointer;
}

.map-fixed {
    display: none;
    flex-direction: column;
    position: fixed;
    left: 0;
    right: 0;
    top: 0;
    bottom: 0;
    justify-content: center;
    padding: 0 40%;
    cursor: pointer;
    background: rgba(0, 0, 0, 0.2);
}

.map-fixed .item {
    height: 40px;
    line-height: 40px;
    background: #fff;
    border-bottom: 1px solid rgba(0, 0, 0, 0.1);
    text-align: center;
    font-size: 18px;
}

.detail-warp {
    display: none;
    padding: 20px;
}

.detail-warp.open {
    display: block;
}

.job-warp .detail {
    padding: 0 8% 30px;
    background: #f8f8f8;
}

.job-warp .detail h3 {
    font-size: 20px;
    font-family: 'SourceHanSansBold';
    color: #000;
    padding-top: 40px;
}

.job-warp .detail p {
    font-size: 18px;
    font-family: 'SourceHanSansBold';
    line-height: 40px;
    color: rgba(0, 0, 0, 0.5);
}

.job-warp .more {
    position: absolute;
    width: 30px;
    height: 30px;
    top: 60px;
    cursor: pointer;
    right: 20px;
}

.job-warp .more::before {
    content: '';
    position: absolute;
    width: 15px;
    height: 2px;
    left: 7px;
    top: 13px;
    background: #000;
}

.job-warp .more::after {
    content: '';
    position: absolute;
    width: 2px;
    height: 15px;
    left: 14px;
    top: 7px;
    background: #000;
    transition: all .3s;
}

.job-warp .more.open::after {
    opacity: 0;
}

.zhuanli {
    height: 450px;
}

.pt-100 {
    padding-top: 100px;
}

.zhuanli .swiper-slide {
    display: flex;
    justify-content: center;
    flex-direction: column;
    text-align: center;
    box-sizing: border-box;
    padding: 20px;
    transition: all .8s;
}

.zhuanli .swiper-slide img {
    box-shadow: 0 10px 20px rgba(0, 0, 0, 0.2);
    max-width: 100%;
    max-height: 100%;
    object-fit: contain;
    background: #fffaf6;
}

.zhuanli .swiper-slide p {
    font-size: 16px;
    font-family: 'SourceHanSansBold';
    margin-top: 20px;
}

.page-control {
    padding-top: 100px;
    display: flex;
    justify-content: center;
    align-items: center;
}

.page-control-prev,
.page-control-next {
    display: block;
    width: 68px;
    height: 14px;
    cursor: pointer;
    background: url(../images/guige-btn.png) no-repeat;
}

.page-control-prev {
    transform: rotate(180deg);
}

.page-control .swiper-pagination-fraction {
    color: rgba(0, 0, 0, 0.5);
    width: auto;
    padding: 0 50px;
}

.page-control .swiper-pagination-current {
    font-size: 44px;
    color: #f9a13f;
    font-family: 'SourceHanSansBold';
    display: inline-block;
    vertical-align: top;
    line-height: 55px;
}

.page-control .swiper-pagination-total {
    font-size: 20px;
    padding-bottom: 30px;
}

.page-control .swiper-button-disabled {
    opacity: 0.5;
    cursor: not-allowed;
}

.about-total-con {
    padding-top: 100px;
    display: flex;
    align-items: center;

}

.about-total-tit {
    padding-right: 10%;
    width: 60%;
    box-sizing: border-box;
}

.about-total-tit h3 {
    font-size: 28px;
    line-height: 76px;
    position: relative;
    color: #00a197;

}

.about-total-tit h3:before {
    content: '';
    position: absolute;
    width: 60px;
    bottom: 0;
    height: 3px;
    background: #00a197;
}

.about-total-tit p {
    margin-top: 50px;
    color: rgba(0, 0, 0, 0.5);
    font-size: 20px;
    line-height: 36px;
}

.about-total-img {
    width: 40%;
    position: relative;
}

.about-total-img img {
    width: 100%;
    position: relative;
    box-shadow: -10px 10px 30px rgba(0, 0, 0, 0.2);
}

.about-total-img .bg {
    position: absolute;
    width: 88%;
    height: 88%;
    top: -12px;
    right: -12px;
    background: #00a197;
}

.about-total-tip {
    display: flex;
    justify-content: space-around;
    padding-top: 50px;
}

.about-total {
    padding-bottom: 40px;
}

.about-total-tip .item {
    width: 165px;
    text-align: center;
    cursor: pointer;
}

.about-total-tip .item:hover img {
    transform: rotateY(360deg);
}

.about-total-tip .item:hover p {
    color: #f9a13f;
}

.about-total-tip img {
    border-radius: 100%;
    margin-bottom: 10px;
    transition: all .5s;
    box-shadow: -10px 10px 10px rgba(0, 0, 0, 0.2);
}

.about-total-tip p {
    font-size: 16px;
    line-height: 30px;
    transition: all .3s;
}

.about-history {
    background: url(../images/historyBg.png) no-repeat;
    background-position: center bottom;
    background-size: cover;
    padding-bottom: 100px;
}

.historyCon {
    height: 412px;
    background-image: url();
}

.historyCon .swiper-slide {
    display: flex;
    align-items: center;
    padding: 0 5px;
    box-sizing: border-box;
    justify-content: space-between;
}

.history-month ul {
    position: relative;
    max-height: 100%;
    box-sizing: border-box;
}

.history-month {
    height: 100%;
    overflow: auto;
    width: 50%;
    display: flex;
    align-items: center;
    justify-content: flex-end;
}

.history-month ul:after {
    content: '';
    position: absolute;
    top: 0;
    height: 100%;
    right: 2px;
    width: 1px;
    background: #333;
}

.history-month li {
    position: relative;
    line-height: 30px;
    font-size: 18px;
    padding-right: 10%;
    box-sizing: border-box;
}

.history-month li::after {
    content: '';
    position: absolute;
    top: 0;
    height: 0;
    right: 0;
    width: 5px;
    background: #f9a13f;
    border-radius: 5px;
    z-index: 3;
}

.history-month li:hover::after,
.history-month li.active::after {
    height: 100%;
    transition: all .5s;
}

.history-month .time {
    width: 100px;
    float: left;
}

.history-month .time::before {
    content: '';
    display: inline-block;
    width: 8px;
    height: 8px;
    border-radius: 8px;
    margin-right: 10px;
    background: #00a197;
    vertical-align: middle;
}

.history-month .text {
    margin-left: 100px;
}

.history-month li:hover .text,
.history-month li.active .text {
    color: #219d96;
    font-weight: bold;
}

.history-month li:hover .time,
.history-month li.active .time {
    color: #219d96;
    font-weight: bold;
}

.historyCon .img-list {
    width: 45%;
    height: 100%;
    display: flex;
    align-items: center;
}

.historyCon img {
    display: none;
    width: 100%;
    max-height: 100%;
    object-fit: cover;
    border-radius: 50px;
}

.historyCon img.active {
    display: block;
}

.historyYear-warp {
    position: relative;
    height: 100px;
}

.historyYear-warp:after {
    content: '';
    position: absolute;
    bottom: 8px;
    height: 3px;
    left: 0;
    right: 0;
    background: linear-gradient(90deg, transparent, #00a197, transparent);
}

.historyYear .swiper-slide {
    font-size: 30px;
    line-height: 100px;
    text-align: center;
    color: rgba(0, 0, 0, 0.5);
    cursor: pointer;
}

.historyYear .swiper-slide.swiper-slide-active {
    color: #00a197;
    font-size: 40px;
    position: relative;
}

.historyYear .swiper-slide.swiper-slide-active::before {
    content: "";
    position: absolute;
    bottom: 1px;
    left: 0;
    right: 0;
    margin: 0 auto;
    width: 10px;
    height: 10px;
    background: rgb(249, 161, 63);
    border: 3px solid rgb(0, 161, 151);
    border-radius: 10px;
}

.historyYear-prev,
.historyYear-next {
    position: absolute;
    width: 43px;
    height: 43px;
    cursor: pointer;
    top: 30px;
    right: 0;
    z-index: 2;
    background: url(../images/about-next.png) no-repeat;
}

.historyYear-prev {
    background-image: url(../images/about-prev.png);
    right: auto;
    left: 0;
}

.news-list {
    border-radius: 15px;
    box-shadow: 0 0 20px rgba(0, 0, 0, 0.1);
    background: #fff;
    padding: 20px;
}

.news-list li {
    float: left;
    width: 50%;
    height: 350px;
}

.news-list li a {
    display: block;
    position: relative;
    height: 100%;
    padding: 20px 0;
    padding-right: 20px;
    box-sizing: border-box;
    border-bottom: 1px solid rgba(0, 0, 0, 0.1);
}

.news-search-list li {
    float: none;
    width: 100%;
    height: 200px;
}

.noResult {
    text-align: center;
    padding: 20px;
    color: rgba(0, 0, 0, 0.3);
}

.about-news-history .news-list li a {
    border-bottom: none;
}

.newsSwiper {
    padding: 20px;
    background: #fff;
    border-radius: 15px;
    box-shadow: 0 0 20px rgba(0, 0, 0, 0.1);
}

.newsSwiper .news-list {
    padding: 0;
    box-shadow: none;
}

.news-list .img {
    width: 200px;
    height: 100%;
    float: left;
    overflow: hidden;
}

.news-search-list .img {
    width: 150px;
}

.news-list img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: all 2s;
}

.news-list li:hover img {
    transform: scale(1.2);
}

.news-list .text {
    margin-left: 220px;
}

.news-list h3 {
    font-size: 20px;
    line-height: 36px;
    border-bottom: 1px solid rgba(0, 0, 0, 0.1);
}

.news-search-list h3 {
    height: 75px;
}

.news-list h3 span {
    font-size: 14px;
    line-height: 20px;
    display: block;
}

.news-list p {
    padding-top: 15px;
    font-size: 14px;
    line-height: 26px;
    color: rgba(0, 0, 0, 0.5);
}

.news-list .ui-more {
    right: 30px;
    bottom: 20px;
}

.ui-more {
    position: absolute;
    right: 0;
    bottom: 0;
    color: rgba(0, 0, 0, 0.5);
}

.ui-more::after {
    content: '';
    width: 20px;
    height: 20px;
    display: inline-block;
    vertical-align: middle;
    margin-left: 10px;
    cursor: pointer;
    background: url(../images/detail.png) no-repeat;
}

.product .swiper-slide {
    float: left;
    width: 31%;
    margin-right: 2.3%;
    margin-bottom: 20px;
    background: #fff;
    padding: 0 20px 70px;
    box-sizing: border-box;
    transition: all .3s;
}

.product .swiper-slide:hover {
    background: #f9a13f14;
}

.product .swiper-slide a {
    display: block;
}

.product .swiper-slide .img {
    display: flex;
    width: 100%;
    padding-top: 20px;
    align-items: center;
    justify-content: center;
}

.product .swiper-slide img {
    max-width: calc(100% - 80px);
    max-height: calc(100% - 80px);
    object-fit: cover;
    transition: all 2s;
}

.product .swiper-slide:hover img {
    transform: scale(1.2);
}

.product h3 {
    font-size: 20px;
    font-family: 'SourceHanSansBold';
    line-height: 58px;
    border-bottom: 1px solid rgba(0, 0, 0, 0.1);
}

.product p {
    font-size: 16px;
    line-height: 28px;
    height: 170px;
    color: rgba(0, 0, 0, 0.7);
    margin-top: 10px;
}

.product .ui-more {
    bottom: 40px;
    right: 20px;
}

.news-search {
    text-align: center;
    padding: 50px 0;
}

.news-search input {
    line-height: 50px;
    border: none;
    border-bottom: 1px solid #000;
    width: 60%;
    background: transparent;
}

.search-btn {
    display: inline-block;
    vertical-align: middle;
    width: 50px;
    height: 50px;
    cursor: pointer;
    background: url(../images/searchblack.png) no-repeat;
    background-position: left center;
}


.product-description {
    padding: 70px 10%;
    font-size: 18px;
    line-height: 30px;
    text-align: left;
    color: rgba(0, 0, 0, 0.7);
}

.ui-crumb {
    text-align: right;
}

.ui-crumb span {
    display: inline-block;
    border-bottom: 1px solid #00a197;
    width: 25%;
    font-size: 14px;
    line-height: 50px;
    text-align: left;
}

.ui-crumb span::before {
    content: '';
    display: inline-block;
    width: 1;
    height: 1;
    border: 5px solid #00a197;
    vertical-align: middle;
    margin-right: 5px;
    border-color: transparent transparent transparent #00a197;
}

.article-warp {
    display: flex;
}

.article-header {
    position: relative;
    height: 100px;
}

.article-header h3 {
    font-size: 28px;
    line-height: 1;
}

.article-header p {
    font-size: 16px;
    line-height: 1;
    margin-top: 15px;
    color: rgba(0, 0, 0, 0.7);
}

.article-header .share {
    position: absolute;
    right: 0;
    bottom: 30px;
}

.article-header .share .item {
    float: right;
    width: 31px;
    height: 31px;
    border-radius: 31px;
    margin-left: 15px;
    cursor: pointer;
}

.article-left {
    margin-right: 30px;
    width: 75%;
}

.article-con {
    position: relative;
    padding: 0 50px 30px;
    border-radius: 15px;
    background: #fff;
    margin-top: 5px;
    box-shadow: 0 0 40px rgba(0, 0, 0, 0.1);

}

.article-con::before {
    position: absolute;
    content: '';
    background: #00a197;
    top: -5px;
    left: 0;
    right: 0;
    height: 100%;
    border-radius: 15px;
    z-index: -1;
}

/* .article-con p {
    font-size: 16px;
    line-height: 26px;
    padding-top: 20px;
}

.article-con img {
    max-width: 100%;
    margin-top: 20px;
} */

.article-footer {
    padding: 30px 0;
    margin-top: 30px;
    border-top: rgba(0, 0, 0, 0.2) 1px solid;
}

.article-footer>div {
    float: right;
    width: 45%;
}

.article-footer a {
    margin-left: 10px;
    display: block;
}

.article-footer>div::before {
    content: '';
    float: right;
    width: 68px;
    height: 14px;
    margin-top: 3px;
    vertical-align: middle;
    background: url(../images/guige-btn.png) no-repeat;
}

.article-footer>.article-prev::before {
    transform: rotate(180deg);
    float: left;
}

.article-footer>.article-prev {
    float: left;
}

.article-right {
    width: 25%;
    margin-top: 100px;
    padding: 10px;
    border-radius: 15px;
    background: #fff;
    box-shadow: 0 0 40px rgba(0, 0, 0, 0.1);
}

.about-news-tit {
    line-height: 30px;
    font-size: 18px;
}

.about-news li>a {
    display: flex;
    align-items: center;
    padding: 30px 0;
    border-bottom: rgba(0, 0, 0, 0.2) 1px solid;
}

.about-news img {
    height: 160px;
    object-fit: cover;
}

.article-right img {
    width: 40%;
}

.about-news .text {
    position: relative;
    margin-left: 20px;
    font-size: 16px;
    flex-grow: 1;
    padding-bottom: 20px;
}

.about-news h3 {
    line-height: 1;
    height: 30px;

}

.about-news p {
    line-height: 26px;
    height: 110px;
    overflow: hidden;
    text-overflow: ellipsis;
    -webkit-line-clamp: 4;
    display: -webkit-box;
    -webkit-box-orient: vertical;
}

.about-news .ui-more {
    left: 0;
}

.solutionSwiper .swiper-slide {
    height: 500px;
    padding: 50px 0;
    box-sizing: border-box;
    background: #f8f8f8;
    transition: all .5s;
}

.solutionSwiper .swiper-slide:hover {
    background: #eee;
}

.solutionSwiper .g-inner {
    display: flex;
    height: 100%;

}

.solutionSwiper .text {
    width: 30%;
    margin-right: 20px;
    line-height: 1;
}

.solutionSwiper h3 {
    font-size: 22px;
    height: 80px;
    border-bottom: 1px solid rgba(0, 0, 0, 0.1);
}

.solutionSwiper h3 span {
    font-size: 14px;
    margin-top: 10px;
    display: block;
}

.solutionSwiper h6 {
    font-size: 16px;
    margin-top: 30px;
    color: #000;
}

.solutionSwiper p {
    margin-top: 10px;
    font-size: 14px;
    line-height: 30px;
    height: 150px;
    color: rgba(0, 0, 0, 0.7);
}

.solutionSwiper .img {
    width: 70%;
    box-shadow: -10px 10px 15px rgb(0 0 0 / 15%);
    height: 100%;
    border-radius: 15px;
    overflow: hidden;
}

.solutionSwiper img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: all 2s;
}

.solutionSwiper .swiper-slide:hover img {
    transform: scale(1.2);
}

.connet-list {
    display: flex;
    flex-flow: wrap;
    padding-top: 100px;
    justify-content: space-between;
}

.connet-list li {
    border-radius: 15px;
    background: #fff;
    padding: 20px 6% 40px;
    box-sizing: border-box;
    width: 30%;
    margin-bottom: 6%;
    text-align: center;
    color: #000;
    transition: all .3s;
}

.connet-list li:hover {
    box-shadow: 0 0 20px rgba(0, 0, 0, 0.3);
}

.connet-list li:hover a {
    color: #f9a13f;
    text-transform: capitalize;
}

.connet-list h3 {
    font-size: 24px;
    line-height: 1;
}

.connet-list p {
    font-size: 16px;
    line-height: 24px;
    height: 60px;
    margin-top: 15px;
    opacity: 0.7;
}

.connet-list a {
    font-size: 16px;

}

.connet-list a::after {
    content: '';
    display: inline-block;
    vertical-align: middle;
    margin-left: 10px;
    width: 14px;
    height: 16px;
    background: url(../images/serviceicon7.png);
}

.connet-list li:hover a::after {
    animation: .5s aHover linear alternate infinite;
    background: url(../images/serviceicon71.png);
}

@keyframes aHover {
    100% {
        margin-left: 17px;
    }
}

.connet-form {
    border-radius: 15px;
    background: #fff;
    padding: 40px 8%;
    margin-top: 70px;
}

.form-item {
    float: left;
    width: 50%;
    padding: 0 10px;
    box-sizing: border-box;
    font-size: 16px;
}

.form-item.block {
    width: 100%;
}

.form-item input,
.form-item textarea {
    width: 100%;
    padding-left: 20px;
    line-height: 50px;
    box-sizing: border-box;
    border: 1px solid rgba(0, 0, 0, 0.1)
}

.form-item.required label::before {
    content: '*';
    color: red;
    margin-right: 5px;

}

.form-item label {
    display: block;
    line-height: 40px;
    margin-top: 30px;
}

.connet-form .ui-button {
    margin: 50px auto;
    box-sizing: border-box;
    border: 1px solid #fff;
}

.connet-form .ui-button:hover {
    border: 1px solid #f9a13f;
    transition: all 1s;
}

.ui-button.small:hover .icon::before {
    width: 350%;
}

.fix-mask {
    position: fixed;
    top: 0;
    left: 0;
    bottom: 0;
    right: 0;
    background: #1e1e1e;
    color: #ddd;
    font-size: 24px;
    text-align: center;
    line-height: 330px;
    z-index: 999;
}

.productDetail-tit {
    font-size: 36px;
    font-family: 'SourceHanSansBold';
    line-height: 80px;
    text-align: center;
    border-bottom: 1px solid rgba(0, 0, 0, 0.1);
}

.productDetail-warp {
    height: 600px;
    margin-top: 80px;
}

.productDetail-prev,
.productDetail-next {
    width: 78px;
    height: 78px;
    cursor: pointer;
    top: 30px;
    background: url(../images/productDetailBtn1.png) no-repeat;
}

.productDetail-prev {
    background-image: url(../images/productDetailBtn0.png);
}

.productDetail-con {
    position: relative;
}

.productDetail-warp .swiper-slide {
    text-align: center;
}

.productDetail-warp img {
    /* height: 300px; */
    max-width: 420px;
}

.productDetail-control {
    position: absolute;
    width: 550px;
    left: 0;
    right: 0;
    top: 260px;
    margin: 0 auto;
    display: flex;
    z-index: 2;
    justify-content: space-between;
}

.productDetail-tip {
    position: absolute;
    top: 0;
    right: 0;
    left: 0;
    display: flex;
    z-index: 1;
    overflow: hidden;
    justify-content: space-between;
}

.productDetail-tip2 {
    top: 330px;
}

.productDetail-tip .item {
    width: 345px;
    text-align: center;
}

.productDetail-tip h3 {
    font-family: SourceHanSansBold;
    margin-top: 25px;
    font-size: 22px;
    line-height: 1;
}

.productDetail-tip p {
    font-size: 18px;
    opacity: 0.8;
    margin-top: 15px;
    line-height: 24px;
}

.problem-list li {
    position: relative;
    margin-top: -1px;
    border: 1px solid rgba(0, 0, 0, 0.1);
    padding: 20px 30px;
}

.problem-list h3 {
    line-height: 40px;
    font-size: 20px;
    padding-right: 30px;
}

.problem-list .detail {
    padding: 0 8% 30px;
    display: none;
    background: #f8f8f8;
}

.problem-list .detail p {
    font-size: 18px;
    font-family: 'SourceHanSansBold';
    line-height: 40px;
    color: rgba(0, 0, 0, 0.5);
}

.problem-list .more {
    position: absolute;
    width: 30px;
    height: 30px;
    top: 25px;
    cursor: pointer;
    right: 30px;
}

.problem-list .more::before {
    content: '';
    position: absolute;
    width: 15px;
    height: 2px;
    left: 7px;
    top: 13px;
    background: #000;
}

.problem-list .more::after {
    content: '';
    position: absolute;
    width: 2px;
    height: 15px;
    left: 14px;
    top: 7px;
    background: #000;
    transition: all .3s;
}

.problem-list .more.open::after {
    opacity: 0;
}

@media (max-width: 1450px) {
    .home-title h3 {
        font-size: 36px;
    }

    .aboutUs-con h3 {
        font-size: 36px;
    }

    .aboutUs-con {
        padding-top: 10%;
    }

    .aboutUs-box .item h3 {
        font-size: 40px;
    }

    .page-con-tit {
        font-size: 40px;
        line-height: 160px;
    }

    .topBanner-content h4 {
        font-size: 70px;
        padding-top: 22%;
    }

    .topBanner-content h5 {
        font-size: 40px;
        ;
        margin-top: 10px;
    }
}

@media (max-width: 1200px) {

    .aboutUs,
    .section {
        height: auto;
    }

    .topBanner-content h4 {
        font-size: 30px;
        padding-top: 50%;
    }

    .map-fixed {
        padding: 0;
        justify-content: flex-end;
    }

    .productCenter .home-title {
        top: 5%;
    }

    .topBanner-content h5 {
        font-size: 20px;
        line-height: 26px;
    }

    .productDetail-tit {
        font-size: 20px;
        line-height: 56px;
    }

    .productDetail-warp {
        height: 300px;
        margin-top: 40px;
    }

    .productDetail-warp img {
        /* height: 300px; */
        max-width: 210px;
    }

    .productDetail-control {
        width: 100%;
        top: 120px;
    }

    .productDetail-tip {
        top: -50px;
    }

    .productDetail-tip2 {
        top: 166px;
    }

    .productDetail-tip .item {
        width: 85px;
    }

    .productDetail-tip .item img {
        transform: scale(0.4);
        transform-origin: center bottom;
    }

    .productDetail-tip h3 {

        margin-top: 5px;
        font-size: 14px;
    }

    .productDetail-tip p {
        font-size: 12px;
        margin-top: 8px;
        line-height: 16px;
    }

    /* .productDetail-tip {}

    .productDetail-tip .item:nth-child(1) img {
        transform-origin: 0 0;
    }

    .productDetail-tip .item:nth-child(2) img {
        transform-origin: right 0;
    }

    .productDetail-tip .item:nth-child(3) img {
        transform-origin: 0 center;
    }

    .productDetail-tip .item:nth-child(4) img {
        transform-origin: right center;
    } */
    .problem-list li {
        padding: 10px 20px;
    }

    .problem-list h3 {
        font-size: 15px;
    }

    .problem-list .more {
        top: 15px;
        right: 15px;
    }

    .solutionSwiper .g-inner {
        flex-direction: column;
    }

    .solutionSwiper .swiper-slide {
        padding: 20px 0;
    }

    .solutionSwiper h6 {
        margin-top: 10px;
    }

    .solutionSwiper p {
        font-size: 12px;
        line-height: 24px;
        min-height: 100px;
        height: auto;
    }

    .ui-button2 {
        width: 140px;
        line-height: 36px;
        font-size: 13px;
    }

    .solutionSwiper .ui-button2 {
        position: absolute;
        bottom: 20px;
    }

    .solutionSwiper .img {
        width: 100%;
        height: 160px;
    }

    .news-search {
        padding: 15px 0;
    }

    .news-list li {
        width: 100%;
        height: 350px;
    }

    .news-list .img {
        float: none;
        width: 100%;
        height: 130px;
    }

    .news-list .text {
        margin: 0;
    }

    .news-list h3 {
        font-size: 16px;
        line-height: 30px;
    }

    .news-list p {
        line-height: 24px;
        font-size: 13px;
    }

    .news-list .ui-more {
        right: 0;
    }

    .connet-list {
        padding-top: 20px;
    }

    .connet-list li {
        width: 47%;
        padding: 10px;
    }

    .connet-list h3 {
        font-size: 16px;
    }

    .connet-list p {
        font-size: 12px;
        line-height: 20px;
    }

    .connet-list a {
        font-size: 12px;
    }

    .connet-list img {
        width: 50px;
    }

    .page-con-tit2 {
        font-size: 16px;
    }

    .form-item {
        width: 100%;
    }

    .form-item label {
        line-height: 30px;
        margin-top: 10px;
        font-size: 14px;
    }

    .form-item input,
    .form-item textarea {
        padding-left: 15px;
        line-height: 40px;
        font-size: 14px;
    }

    .connet-form {
        padding: 20px 10px;
        margin-top: 20px;
    }

    .connet-form .ui-button {
        margin: 20px auto;
    }

    .job-warp .content {
        flex-direction: column;
    }

    .job-warp .content>div {
        display: flex;
        width: 100% !important;
        padding: 5px 0;
    }

    .job-warp h3 {
        width: 100px;
    }

    .job-warp p {
        margin-top: 0;
        font-size: 15px;
    }

    .detail-warp {
        padding: 10px 0;
    }

    .job-warp .detail h3 {
        padding-top: 20px;
        font-size: 16px;
    }

    .page-con {
        padding-bottom: 20px;
    }

    .job-warp .detail p {
        font-size: 14px;
        line-height: 30px;
    }

    .service-warp li {
        position: relative;
        flex-direction: column;
        margin-bottom: 20px;
        border-bottom: 1px solid rgba(0, 0, 0, 0.1);
    }

    .service-warp li img {
        width: 100%;
        position: absolute;
        height: 130px;
    }

    .service-warp li .text {
        width: 100%;
        margin-top: 150px;
    }

    .service-warp li .text h3 {
        font-size: 18px;
    }

    .service-warp li .text p {
        line-height: 26px;
        margin-top: 15px;
        padding-bottom: 10px;
    }

    .service-warp {
        padding-top: 20px;
    }

    .guige-warp li {
        flex-direction: column;
        align-items: flex-start;
        padding-top: 10px;
    }

    .guige-warp .name,
    .guige-warp .time {
        width: 100%;
        font-size: 14px;
        text-align: left;
        padding-left: 15px;
        line-height: 30px;
    }

    .guige-warp .time {
        padding-left: 34px;
    }

    .guige-warp .download {
        margin-left: 34px;
    }

    .guige-warp .download a {
        width: 90px;
        height: 30px;
        line-height: 30px;
        font-size: 14px;
    }

    .page-con-tit {
        font-size: 30px;
        line-height: 90px;
    }

    .guige-page {
        padding: 20px 0;
    }

    .ui-crumb span {
        width: 100%;
    }

    .article-warp {
        flex-direction: column;
    }

    .article-left {
        margin: 0;
        width: 100%;
    }

    .article-header h3 {
        font-size: 18px;
        padding-top: 20px;
    }

    .article-header p {
        font-size: 12px;
    }

    .article-header {
        height: 150px;
    }

    .article-header .share {
        bottom: 20px;
    }

    .article-con {
        padding: 0 20px 20px;
    }

    .article-footer>div::before {
        width: 40px;
        background-position: center right;
    }

    .article-right {
        width: 100%;
        margin: 20px 0;
        box-sizing: border-box;
        padding: 10px;
    }

    .about-news img {
        width: 40%;
    }

    .about-total-con {
        flex-direction: column;
        padding-top: 20px;
    }

    .about-total-tit {
        padding: 0;
        width: 100%;
    }

    .about-total-tit h3 {
        font-size: 22px;
        line-height: 60px;
    }

    .about-total-tit p {
        margin-top: 20px;
        font-size: 14px;
        line-height: 28px;
    }

    .about-total-img {
        width: 100%;
        margin-top: 25px;
    }

    .about-total-tip {
        flex-direction: column;
    }

    .about-total-tip img {
        width: 50px;
        float: left;
    }

    .about-total-tip p {
        margin-left: 60px;
        text-align: left;
        line-height: 26px;
    }

    .about-total-tip .item {
        width: 100%;
        margin-bottom: 10px;
    }

    .historyCon .swiper-slide {
        flex-direction: column-reverse;
    }

    .historyCon img {
        width: 100%;
        height: 290px;
        border-radius: 30px;
    }

    .history-month {
        width: 100%;
        padding: 10px 0;
        border-right: 0;
    }

    .historyYear .swiper-slide {
        font-size: 20px;
    }

    .historyYear .swiper-slide.swiper-slide-active {
        font-size: 30px;
    }

    .historyYear-prev {
        left: -30px;
    }

    .historyYear-next {

        right: -30px;
    }

    .ui-button2 i {
        right: 7px;
        width: 23px;
        top: 12px;
        background-position: center right;
    }

    .solutionSwiper .text {
        width: 100%;
    }

    .page-tit {
        top: 70px;
    }

    .page-tit h3 {
        font-size: 25px;
    }

    .page-tit p {
        font-size: 20px;
        margin-top: 10px;
    }

    .page-nav {
        height: 50px;
    }

    .page-nav-list li.active span {
        line-height: 48px;
    }

    .product-description {
        padding: 20px 10%;
        font-size: 12px;
        line-height: 24px;
        text-align: left;
    }

    .page-nav-list li {
        line-height: 50px;
        width: auto;
        flex-grow: 1;
        font-size: 15px;
    }

    .page-more h3 {
        font-size: 12px;
        top: -20px;
    }

    .page-more {
        padding-top: 5px;
    }

    .page-more img {
        width: 25%;
    }

    .page-control {
        padding-top: 20px;
    }

    .bottom-banner {
        margin-top: 20px;
    }

    .ui-button {
        font-size: 12px;
        width: 150px;
        height: 50px;
        line-height: 50px;
    }

    .ui-button .icon {
        transform: scale(0.8);
        margin-top: -1px;
    }

    .bottom-banner .ui-button {
        width: 150px;
        height: 20px;
        line-height: 20px;
        font-size: 12px;

    }

    .bottom-banner .ui-button .icon {
        transform: scale(0.3);
        margin-top: -1px;
    }

    .footer-right img {
        width: 80px;
        float: left;
    }

    .footer-right p {
        margin-left: 100px;
        margin-top: 30px;
    }

    .news-con .ui-button2 {
        width: 150px;
    }

    .newsBanner .swiper-slide {
        flex-direction: column;
        padding-left: 0;
    }

    .newsBanner .item {
        width: 100%;
        height: 270px;
        margin-left: 0;
    }

    .aboutUs-con h3 {
        font-size: 30px;
        line-height: 50px;
    }

    .aboutUs-box .item h3 {
        font-size: 32px;
    }

    .productCenter-text {
        font-size: 16px;
        margin: 0 10%;
        height: 220px;
        display: flex;
        align-items: center;
    }

    .solutionWapper .topBanner-page {
        right: 15%;
        top: 8%;
    }

    .solution-content .ui-button {
        top: calc(20% + 300px);
    }

    .solutionWapper .topBanner-page h3 {
        bottom: 0;
    }

    .topBanner-page h3 {
        font-size: 60px;
        left: 38px;
    }

    .solutionWapper .topBanner-page p {
        font-size: 26px;
        right: -44px;
        top: 20px;
    }

    .newsBanner .news-text h3 {
        font-size: 20px;
    }

    .solutionWapper .topBanner-pagination.swiper-pagination-clickable .swiper-pagination-bullet::after {
        transform: scale(0.5);
        transform-origin: bottom center;
        top: -120px;
        left: calc(50% - 65px);
    }

    .solutionWapper .topBanner-pagination.swiper-pagination-clickable .swiper-pagination-bullet-active::after {
        top: -120px;
    }

    .aboutUs-left {
        width: 100%;
        float: none;
        display: block;
        height: auto;
        padding-top: 10%;
    }

    .aboutUs-right {
        width: 100%;
        padding: 10%;
        height: auto;
        box-sizing: border-box;
        float: none;
    }

    .aboutUs-right .palyVideo {
        background: none;
    }

    .video-wapper {
        position: static;
        display: block;
        height: auto;
    }

    .closeVideo {
        display: none;
    }

    .aboutUs-box {
        position: static;
        padding: 0 10% 5%;
        flex-flow: wrap;
    }

    .aboutUs-box .item {
        width: 45%;
        margin-bottom: 10px;
    }

    .aboutUs-box .item::before {
        right: 0;
        top: 8px;
        transform: scale(0.8);
    }

    .productCenter-con {
        margin-right: 10%;
        margin-top: 0;
        height: 40%;
        width: 80%;
        top: 54%;
    }

    .solutionWapper,
    .productCenter {
        height: 800px;
    }

    .news-con {
        padding: 10%;
    }

    .header-content-btn {
        cursor: pointer;
        padding: 11px;
        position: absolute;
        right: 20px;
    }

    .header-content-btn span {
        display: block;
        height: 3px;
        width: 25px;
        margin-top: 5px;
        background: #fff;
    }

    .header-content {
        position: fixed;
        background: #333;
        box-sizing: border-box;
        transition: all .3s;
        width: 0;
        right: 0;
        height: 100%;
        overflow: hidden;
    }

    .header-content.open {
        width: 100%;
    }

    .header-search {
        float: none;
        width: 100%;
        padding: 20px 30px;
        box-sizing: border-box;
    }

    .header-inner a {
        display: block;
        white-space: nowrap;
        border-bottom: 1px solid rgba(255, 255, 255, .5) !important;
    }

    .header-inner a:hover .subMenu {
        height: 0;
    }

    .header-inner a:last-child {
        border-bottom: none;
    }

    .header-content-close {
        position: absolute;
        right: 0;
        top: 0;
        width: 70px;
        height: 70px;
        cursor: pointer;
    }

    .header-content-close span {
        position: absolute;
        right: 25px;
        top: 25px;
        height: 3px;
        width: 25px;
        background: #fff;
        transform: rotate(45deg);
    }

    .header-content-close span:last-child {
        transform: rotate(-45deg);
    }

    .footer-warp {
        position: relative;
        height: 400px;
    }

    .footerSection {
        height: 400px !important;
    }

    .productCenter-nav .item::before,
    .productCenter-nav .item.active::before {
        display: none;
    }

    .newsBanner .swiper-slide {
        padding: 0 5px;
    }

    .news-next.swiper-button-next {
        right: 10px;
    }

    .news-prev.swiper-button-prev {
        left: 10px;
    }

    .productCenter-nav .ui-button span {
        color: #f9a23f;
        width: 100%;
    }

    .productCenter-nav .ui-button {
        background: #fff;
    }

    .section.footerSection .fp-tableCell {
        height: 400px !important;
    }

    .footer-warp .g-inner {
        flex-flow: wrap;
    }

    .footer-left {
        width: 100%;
    }

    .footer-con {
        display: none;
    }

    .footer-warp {
        font-size: 12px;
    }

    .footer-warp .g-inner {
        width: 90%;
    }

    .header-warp {
        height: 54px;
    }

    .header-warp .header-logo {
        width: 100px;
        margin-top: 10px;
    }

    .footer-left {
        margin-bottom: 10px;
    }

    .productCenter-nav .item {
        border: none;
        height: 30px;
    }

    .footer-right {
        width: auto;
    }

    .productCenter-right {
        width: 100%;
        top: 16%;
        right: 0;
        left: 0;
    }

    .productCenter-nav .item.active>.ui-button span {
        padding-left: 0;
    }

    .productCenter-nav .item.active>.ui-button:hover span {
        color: #f9a13f;
        padding-left: 0;
    }

    .productCenter-nav {
        display: flex;
        padding: 15px 10%;
        justify-content: space-between;
    }

    .productCenter-text .item {
        font-size: 15px;
    }

    .productCenter-nav .item.active>.ui-button {
        width: auto;
        margin: 0;
        line-height: 30px;
        height: 30px;
        color: #f9a13f;
        background: none;
        border-bottom: 2px solid #f9a13f;
        border-radius: 0;
    }

    .productCenter-nav .item.active>.ui-button::before,
    .productCenter-nav .item.active>.ui-button .icon {
        display: none;
    }

    .newsBanner {
        height: 810px;
    }

    .newsSection {
        height: 1040px !important;
    }

    .newsSection .fp-tableCell {
        height: 1040px !important;
    }

    .productCenter-nav .item>div {
        padding: 0;
        position: static;
        line-height: 30px;
    }

    .product p {
        height: auto;
    }

    .about-news-history .news-list li a {
        width: 100%;
    }

    .about-news-history .news-list h3 {}

    .pt-100 {
        padding-top: 50px;
    }

    .history-month li {
        font-size: 14px;
    }

    .history-month .time {
        width: 60px;
    }

    .history-month .text {
        margin-left: 60px;
    }

    .history-month ul::after,
    .history-month li::after {
        display: none;
    }

    .product .swiper-slide {
        width: 100%;
        margin-right: 0;
    }

    .solution .home-title {
        top: 15%;
    }

    .solution .home-title h6 {
        width: 100%;
    }

    .historyCon .img-list {
        width: 100%;
    }

    .dialog-box {
        width: 90%;
    }

    .dialog-form-btn button {
        width: 80px;
        height: 30px;
        border-radius: 30px;
    }
}

@media (max-width: 1000px) and (min-height: 900px) {}