@import "animate.min.css";
@import "bootstrap.min.css";
@import "public.youacacia.min.css";

/*redefine global*/

/*更改浏览器滚动条颜色兼容*/
html,
body {
    /*更改ie内核滚动条颜色*/
    scrollbar-face-color: #1da4e4;
    scrollbar-highlight-color: #1da4e4;
    scrollbar-shadow-color: #1da4e4;
    scrollbar-3dlight-color: #1da4e4;
    scrollbar-arrow-color: #222;
    scrollbar-track-color: #222;
    scrollbar-darkshadow-color: #B3351da4e432;
}

/*更改-webkit-内核滚动条样式*/
::-webkit-scrollbar {
    width: 4px;
    height: 4px;
    background-color: #fcfcfc;
}

::-webkit-scrollbar-track {
    border-radius: 0;
    background-color: #fcfcfc;
}

::-webkit-scrollbar-thumb {
    border-radius: 0;
    background-color: #1da4e4;
    -webkit-box-shadow: inset 0 0 6px rgba(0, 0, 0, 0.3);
}

@font-face {
    font-family: Barlow;
    src: url(../fonts/Barlow-Regular.ttf)
}

@font-face {
    font-family: Merriweather;
    src: url(../fonts/Merriweather-Regular-9.ttf)
}

@font-face {
    font-family: BarlowLight;
    src: url(../fonts/BarlowLight.ttf)
}

.img-box {
    position: relative;
    width: 100%;
    overflow: hidden;
}

.img-box img {
    display: block;
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: 0.5s all ease-in-out;
    -webkit-transition: 0.5s all ease-in-out;
    -moz-transition: 0.5s all ease-in-out;
    -o-transition: 0.5s all ease-in-out;
}

.img-box:hover img {
    transform: scale(1.05);
    -webkit-transform: scale(1.05);
    -moz-transform: scale(1.05);
    -o-transform: scale(1.05);
}

body {
    font-family: 'Noto', 'Noto Sans CJK SC', 'Noto Sans CJK', 'Source Han Sans', source-han-sans-simplified-c, sans-serif;
}

@media(max-width: 760px) {
    .container {
        width: 100%;
        padding: 0 15px;
    }
}

/*header*/
#header {
    background-color: #fff;
}

#header .container {
    padding: 30px 0;
    flex-direction: row;
    justify-content: space-between;
}

.container.text-box::before,
.container.text-box::after {
    display: none;
}

.header-tel {
    margin: 0;
    flex-direction: row;
    color: #1c2222;
}

.header-tel i {
    margin-right: 15px;
    width: 68px;
}

.header-tel i img {
    width: 100%;
}

.header-tel .tel-r span {
    font-weight: 800;
    font-size: 22px;
    line-height: 1.6;
}

.header-tel .tel-r a {
	display: block;
	color: #1da5e3;
    font-size: 18px;
    font-weight: 600;
}

.header-logo {
    margin: 0;
}

.header-logo p {
    font-size: 18px;
    line-height: 1.8;
    color: #14436d;
    letter-spacing: 5px;
    flex-direction: row;
    align-items: flex-end;
    justify-content: space-between;
}

.header-logo p img {
    width: 20%;
}

.header-logo h1 {
    color: #000;
    font-size: 28px;
    font-weight: 800;
    letter-spacing: 13px;
}

.nav-wrapper {
    width: 100%;
    background-color: #1da4e4;
    position: relative
}

#header .nav-wrapper .container {
    padding: 0;
}

.nav-wrapper .nav-item {
    width: calc(100%/7);
    -ms-flex-negative: 0;
    flex-shrink: 0;
    position: relative;
    z-index: 10
}

.nav-wrapper .nav-item h2.nav-item-link {
    font-weight: 400;
    font-size: 16px;
    line-height: 60px;
    cursor: pointer;
}

.nav-wrapper .nav-item h2.nav-item-link a {
    width: 100%;
    padding: 0;
    color: #fff;
    font-weight: 400;
    height: 60px;
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    position: relative;
    z-index: 4;
}

.nav-wrapper .nav-item h2.nav-item-link a span {
    font-size: 12px;
    display: block;
    text-transform: uppercase;
    line-height: 1;
}

.header-transparent .nav-wrapper .nav-item h2.nav-item-link a {
    color: #fff;
}

.nav-wrapper .nav-item h2.nav-item-link:before {
    content: '';
    position: absolute;
    bottom: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background-color: #14436d;
    z-index: 2;
    opacity: 0;
    transition: all .3s;
}

.nav-wrapper .nav-item h2.nav-item-link::after {}

.nav-item .submenu {
    position: absolute;
    top: 60px;
    left: 50%;
    display: none;
    width: 100%;
    margin-left: -50%;
    -moz-transition: all ease 0.3s;
    -o-transition: all ease 0.3s;
    -webkit-transition: all ease .3s;
    transition: all ease .3s;
    -webkit-transform: translateY(0);
    transform: translateY(0);
    opacity: 1;
    background: rgba(255, 255, 255, .9);
    box-shadow: 0 3px 16px rgba(0, 0, 0, .1)
}

.nav-item .submenu a {
    font-size: 14px;
    line-height: 40px;
    text-align: center;
    position: relative;
    display: block;
    overflow: hidden;
    height: 40px;
    padding: 0 10px;
    -webkit-transition: all ease .3s;
    transition: all ease .3s;
    white-space: nowrap;
    text-overflow: ellipsis;
    color: #666;
}

.nav-item .submenu a:last-child {
    border-bottom: 0
}

.nav-item .submenu a:hover {
    background-color: #14436d;
    color: #fff;
}

.nav-item .submenu a:hover:after {
    right: 15px;
    visibility: visible
}

.nav-wrapper .nav-item h2.nav-item-link a.active {}

.nav-wrapper .nav-item .nav-item-link:hover:before,
.nav-wrapper .nav-item .nav-item-link:hover:after,
.nav-wrapper .nav-item .nav-item-link.active:before,
.nav-wrapper .nav-item .nav-item-link.active:after {
    opacity: 1;
}

.nav-wrapper .nav-item .nav-item-link:hover a,
.nav-wrapper .nav-item .nav-item-link.active a {
    color: #fff;
}

.nav-wrapper .nav-item:hover .submenu {
    display: block;
    opacity: 1;
    -webkit-transform: translateY(0);
    transform: translateY(0)
}

/* mobile nav */
/*nav*/
#nav {
    position: fixed;
    right: 0;
    top: -100%;
    height: 100%;
    z-index: 1099;
    overflow: hidden
}

#nav:before,
#nav:after {
    position: absolute;
    content: '';
    border-radius: 50%;
    opacity: .7;
    width: 50%;
    transition: all 2s;
    height: 0;
    transition-delay: .6s
}

#nav:before {
    left: -10%;
    top: -20%;
    background: -webkit-gradient(linear, 0% 0%, 100% 100%, from(#14436d), to(#D43030));
    z-index: 2
}

#nav:after {
    right: -10%;
    bottom: -20%;
    background: -webkit-gradient(linear, 0% 0%, 100% 100%, from(#0c8bc0), to(v#0064D6));
}

#nav .header-button {
    position: absolute;
    top: 30px;
    right: 30px;
    z-index: 3
}

.nav-search {
    position: relative;
    width: 90%;
    margin-bottom: 30px;
    z-index: 3
}

.nav-search .header-search-block {
    position: initial;
    width: 100%;
    background: rgba(255, 255, 255, .4);
    height: 36px;
    border-radius: 8px;
    display: flex;
    overflow: hidden;
    transition: all .4s;
    box-shadow: 0 0 5px rgb(0 0 0 / 10%);
}

.nav-search .header-search-block i {
    color: #fff
}

.nav-search .header-search-block input {
    background: transparent;
    color: #fff;
    font-size: 16px;
    margin-left: 38px;
    border: none;
    width: 140px;
    margin-right: 27px;
    outline: none;
}

.nav-search .header-search-block input::placeholder {
    color: #fff;
    opacity: .6
}

.nav-container {
    width: 90%;
    position: relative;
    z-index: 3
}

.nav-title {
    font-size: 40px;
    font-family: Merriweather;
    opacity: .3;
    margin-bottom: 10px;
    text-align: center;
    color: #fff
}

#nav .nav-item {
    padding: 5px 0 !important;
    text-align: center;
    border: none !important;
    line-height: 2
}

#nav .nav-item a {
    font-size: 16px !important;
    color: #fff;
    padding: 0 !important
}

#nav .nav-item:hover a,
#nav .nav-item.active a {
    color: #1da4e4;
    font-weight: bold
}

.nav-contact {
    margin-top: 6vh;
    border-top: solid 1px rgba(255, 255, 255, .2);
    width: 100%;
    position: relative;
    z-index: 3;
    padding-top: 5vh;
    color: #fff
}

.nav-contact p {
    display: inline-block;
    overflow: hidden;
    line-height: 30px;
    font-size: 18px;
    font-weight: lighter
}

.nav-contact p b {
    font-weight: lighter
}

.nav-contact p:last-child {
    display: block;
    margin-top: 10px;
}

.nav-contact i {
    float: left;
    font-size: 24px;
    margin-right: 0px;
}

.nav-contact p a {
    font-size: var(--FEY-font-size-30);
    font-weight: bold;
    color: var(--FEY-text-color-white)
}

#nav.active {
    top: 0;
}

#nav.active:before,
#nav.active:after {
    height: 200%;
    width: 200%;
    border-radius: 0
}

#nav.active:before {
    left: 0;
    top: 0
}

#nav.active:after {
    right: 0;
    bottom: 0
}

@keyframes full {
    0% {
        height: 0
    }

    100% {
        width: 100%;
        height: 100%;
        border-radius: 0
    }
}

@media(max-width: 992px) {}

@media(max-width: 760px) {}

/*main*/
/**home banner**/
.banner {
    position: relative;
    width: 100%;
    height: 62vh;
    margin: 0 auto;
    overflow: hidden;
}

.banner .swiper-slide {
    overflow: hidden;
}

.slide-inner {
    position: absolute;
    width: 100%;
    height: 100%;
    left: 0;
    top: 0;
    background-size: cover;
    background-position: center;
    display: -webkit-box;
    display: -ms-flexbox;
    display: -webkit-flex;
    display: flex;
    -webkit-box-pack: center;
    -ms-flex-pack: center;
    -webkit-justify-content: center;
    justify-content: center;
    -webkit-box-align: center;
    -ms-flex-align: center;
    -webkit-align-items: center;
    align-items: center;
}

.swiper-banner-next,
.swiper-banner-prev {
    top: calc(50% + 40px);
    /*background-color: rgba(210,210,210,.6);*/
    /*background-size: 15px 15px;*/
    border-radius: 50%;
    width: 52px;
    height: 52px;
    transition: all .5s;
    color: rgba(255, 255, 255, .4);
    outline: none;
    opacity: 0;
}

.banner:hover .swiper-banner-next,
.banner:hover .swiper-banner-prev {
    opacity: 1;
}

.banner .swiper-banner-pagination {
    bottom: 30px
}

.swiper-pagination-bullet {
    background: none;
    opacity: 1;
    margin: 0 5px !important;
    width: 44px;
    height: 4px;
    position: relative;
    outline: none;
    vertical-align: middle;
}

.swiper-pagination-bullet span {
    width: 44px;
    height: 4px;
    border-radius: 2px;
    background: #fff;
    display: block;
    margin-top: 0px;
    margin-left: 0px;
}

.swiper-pagination-bullet i {
    border-radius: 2px;
    background: #14436d;
    height: 4px;
    width: 44px;
    position: absolute;
    top: 0px;
    transform: scaleX(0);
    transform-origin: left;
    z-index: 3;
    transition-timing-function: linear;
}

.swiper-pagination-bullet-active span,
.swiper-pagination-bullet:hover span {
    width: 44px;
    height: 4px;
    margin-top: 0;
    margin-left: 0;
    background: #fff;
    position: relative;
    z-index: 1;
}

.swiper-pagination-bullet-active i {
    animation: middle 6s;
}

.swiper-pagination-bullet:first-child.swiper-pagination-bullet-active i {
    animation: first 6s;
}

.swiper-pagination-bullet:last-child.swiper-pagination-bullet-active i {
    animation: last 6s;
}

@keyframes first {
    0% {
        transform: scaleX(0);
        left: 0px;
    }

    /*091*/
    100% {
        transform: scaleX(1);
        left: 0px;
    }

    /*0915*/
}

@keyframes last {
    0% {
        transform: scaleX(0);
        left: 0px;
    }

    /*1090*/
    20% {
        transform: scaleX(0.5);
        left: 0px;
    }

    /*090*/
    100% {
        transform: scaleX(1);
        left: 0px;
    }

    /*090*/
}

@keyframes middle {
    0% {
        transform: scaleX(0);
        left: 0px;
    }

    /*1091*/
    20% {
        transform: scaleX(0.5);
        left: 0px;
    }

    /*092*/
    100% {
        transform: scaleX(1);
        left: 0px;
    }

    /*0913*/
}

.search-box {
    margin: 30px auto;
    padding: 8px;
    flex-direction: row;
    background-color: #1da4e4;
    border-radius: 8px;
    justify-content: space-between;
}

.search-box.container::before,
.search-box.container::after {
    display: none;
}

.search-form {
    margin: 0;
    width: 85%;
    flex-direction: row;
    justify-content: space-between;
}

.search-form .input-key {
    padding: 0 20px;
    border-radius: 8px;
    width: 86%;
    height: 60px;
    box-sizing: border-box;
    font-size: 18px;
    border: none;
    outline: none;
}

.search-form .search-btn {
    width: 12%;
    background: none;
    border: none;
    padding: 0;
    font-size: 20px;
    color: #fff;
    font-weight: 800;
}

.search-form .search-btn img {
    width: 20%;
    margin-right: 15px;
}

.search-box a {
    padding: 0 36px;
    font-size: 20px;
    color: #fff;
    font-weight: 800;
}

.box .title {
    background-color: #1da4e4;
}

.box .title .container {
    padding: 10px 0;
    flex-direction: row;
    justify-content: space-between;
}

.box .title .container div {
    margin: 0;
	justify-content: flex-start;
}

.title .hd-logo {
    flex-direction: row;
}

.title .hd-logo img {
    margin-right: 15px;
    width: 28%;
}
.title .hd-logo .logo-info{
	padding-left: 15px;
	position: relative
}
.title .hd-logo .logo-info:before{
	content: "";
	width: 1px;
	height: 80%;
	background-color: #fff;
	position: absolute;
	left: 0;
	top: 50%;
	transform: translateY(-50%);
}
.title .logo-info h2 {
    font-size: 24px;
    color: #fff;
    font-weight: 800;
    letter-spacing: 1px;
    line-height: 1.6;
}

.title .logo-info p {
    color: #fff;
    font-weight: 100;
    font-size: 14px;
    letter-spacing: 1.3px;
	text-transform: uppercase;
}

.title .hd-name {
    padding: 5px 30px;
    background-color: #14436d;
    color: #fff;
    text-align: center;
}

.title .hd-name span {
    font-size: 28px;
    font-weight: 600;
    letter-spacing: 2px;
}

.title .hd-name p {
	font-size: 13px;
    text-transform: uppercase;
}

.sub-title {
    margin-top: 60px;
    margin-bottom: 60px;
}

.sub-title h4 {
    font-size: 36px;
    font-weight: 800;
    color: #1da4e4;
    line-height: 2;
}

.sub-title p {
    font-size: 16px;
    color: #1da4e4;
}
.pro-goods-box{
	margin-bottom: 60px;
}
.product-good .container {
    position: relative;
}

.pro-goods-box .swiper-slide {
    background-color: #1da4e4;
    padding: 3px;
}

.pro-goods-box .swiper-slide .img-box {
    background-color: #fff;
}

.pro-goods-box .swiper-slide span {
    display: block;
    padding: 5px 10px;
    color: #fff;
    font-size: 18px;
    line-height: 2;
}

.product-good .more {
    margin: 30px 0;
    display: inline-block;
    background-color: #1da4e4;
    padding: 10px 20px;
    font-size: 16px;
    color: #fff;
}

.product-good .swiper-button-next,
.product-good .swiper-button-prev {
    color: #fff;
    background-color: #1da4e4;
    width: 50px;
    height: 50px;
    border-radius: 50%;
    top: 60%;
    margin-top: -25px;
}

.product-good .swiper-button-next:after,
.product-good .swiper-button-prev:after {
    font-size: 24px;
}

.product-good .swiper-button-next,
.product-good .swiper-rtl .swiper-button-prev {
    right: -80px;
}

.product-good .swiper-button-prev,
.product-good .swiper-rtl .swiper-button-next {
    left: -80px;
}

.product-content {
    margin: 60px auto;
}

/* product classify */
.pro-classify {
    width: 20%;
    margin: 0;
    padding: 0 10px 10px;
    float: left;
    background-color: #1da4e4;
}

.pro-classify h2 {
    background-color: #1da4e4;
    height: 90px;
}

.pro-classify h2 a {
    font-size: 30px;
    letter-spacing: 1px;
    color: #fff;
    display: flex;
    flex-direction: column;
    height: 100%;
    align-items: center;
    justify-content: center;
}

.pro-classify h2 span {
    line-height: 2;
    font-size: 12px;
    color: rgba(255, 255, 255, .4);
}

.pro-classify ul {
    background-color: #fff;
    padding-top: 15px;
    padding-bottom: 15px;
}

.pro-classify ul li.pro-ctgy {
    margin: 0 15px 15px;
    position: relative;
    cursor: pointer;
}

.pro-classify ul li.pro-ctgy:after {
    position: absolute;
    content: "";
    height: 1px;
    font-size: 0;
    left: 0;
    bottom: -2px;
    width: 100%;
}

.pro-classify ul li.pro-ctgy:last-child,
.pro-classify ul li.pro-ctgy:last-child:after {
    border-bottom: none;
}

.pro-classify ul li.pro-ctgy .link {
    background-color: #14436d;
    background-image: url(../images/ico-arrow.png);
    background-repeat: no-repeat;
    background-size: 15%;
    background-position: 10px center;
    color: #fff;
    font-size: 16px;
    padding: 8px 15px 8px 42px;
    -webkit-transition: all .4s ease;
    -o-transition: all .4s ease;
    transition: all .4s ease
}

.pro-classify ul li.pro-ctgy.show .link {
    background-color: #14436d;
    border-radius: 19px;
}

.pro-classify ul .link i {
    font-size: 14px;
    position: absolute;
    top: 11px;
    left: 12px;
    -webkit-transition: all .4s ease;
    -o-transition: all .4s ease;
    transition: all .4s ease
}

.pro-classify ul .link i.i-fold {
    margin: 0 6px;
    font-size: 12px;
}

.pro-classify ul .link i.i-chevron-down {
    font-size: 12px;
    right: 12px;
    left: auto;
}

.pro-classify ul li.pro-ctgy.show i.i-chevron-down {
    -webkit-transform: rotate(180deg);
    -ms-transform: rotate(180deg);
    -o-transform: rotate(180deg);
    transform: rotate(180deg)
}

.pro-classify ul li.pro-ctgy .submenu {
    display: none;
}

.pro-classify ul li.pro-ctgy.cur .submenu {
    display: block;
}

.pro-classify ul li.pro-ctgy .submenu dd {
    margin-top: 10px;
    position: relative;
    background-color: #828a97;
    background-image: url(../images/ico-arrow.png);
    background-repeat: no-repeat;
    background-size: 15%;
    background-position: 10px center;
}

.pro-classify ul li.pro-ctgy .submenu dd:after {
    position: absolute;
    content: "";
    height: 1px;
    font-size: 0;
    left: 0;
    bottom: -2px;
    width: 100%;
}

.pro-classify ul li.pro-ctgy .submenu dd:last-child,
.pro-classify ul li.pro-ctgy .submenu dd:last-child:after {
    border-bottom: none;
}

.pro-classify ul li.pro-ctgy .submenu dd a {
    display: block;
    text-decoration: none;
	font-size: 14px;
    color: #fff;
    padding: 12px;
    padding-left: 60px;
    overflow: hidden;
    white-space: nowrap;
    text-overflow: ellipsis;
    -webkit-transition: all .25s ease;
    -o-transition: all .25s ease;
    transition: all .25s ease
}

.pro-classify ul li.pro-ctgy .submenu dd a:hover,.pro-classify ul li.pro-ctgy .submenu dd.active a {
    color: #14436d;
}

.pro-right {
    float: right;
    width: 78%;
}

.pro-fname {
    margin: 0 0 20px;
    padding: 15px 30px;
    display: inline-block;
    background-color: #818a96;
    color: #fff;
    font-size: 22px;
    letter-spacing: 2px;
}
.page-pro-classify{
	position: fixed;
    top: 0;
    right: 0;
    bottom: 0;
    left: 0;
    -webkit-transform: translateX(-100%);
    transform: translateX(-100%);
    visibility: hidden;
    opacity: 0;
    -webkit-transition: all 0.4s cubic-bezier(0.4, 0.01, 0.165, 0.99);
    transition: all 0.4s cubic-bezier(0.4, 0.01, 0.165, 0.99);
    z-index: 9999;
}
.page-pro-classify .inner-bg{
	position: absolute;
    top: 0;
    right: 0;
    bottom: 0;
    left: 0;
    z-index: 1;
}
.page-pro-classify .inner{
	margin: 0;
	width: 66.66%;
    height: 100%;
    background: #fff;
    overflow-x: hidden;
    overflow-y: auto;
    box-shadow: 3px 0 12px rgb(0 0 0 / 10%);
    position: relative;
    z-index: 2;
}
.page-pro-classify .inner .sub-hd{
	font-size: 18px;
	color: #14436d;
	font-weight: 700;
    line-height: 2;
    padding: 0 25px;
    border-bottom: 1px solid #f5f5f5;
}

.page-pro-classify.active{
	-webkit-transform: translateX(0);
    transform: translateX(0);
    visibility: visible;
    opacity: 1;
}
.product-list ul,.page-pro-list{
    width: 100%;
    flex-wrap: wrap;
    flex-direction: row;
    justify-content: flex-start;
}

.product-list li {
    width: 24%;
    margin-right: 1%;
	margin-bottom: 1%;
}

.product-list li:nth-child(4n) {
    margin-right: 0;
}

.product-list li a div {
    padding: 20px;
    height: 200px;
    box-shadow: 0 3px 10px rgb(0 0 0 / 20%);
}

.product-list li .img-box img {
    object-fit: contain;
}

.product-list li em {
    padding: 15px 0 0;
    display: block;
    text-align: center;
    font-style: normal;
    line-height: 2;
    font-size: 14px;
    color: #666;
	display: -webkit-box;
    -webkit-box-orient: vertical;
    -webkit-line-clamp: 2;
    overflow: hidden;
}

.product-list li a:hover em {
    color: #14436d;
}

.advantage-bd {
    margin: 60px auto;
    position: relative;
}

.adv-cont {}

.adv-bd-box .adv-pic-text {
    align-items: flex-start;
    flex-direction: row;
    justify-content: space-between;
}

.adv-bd-box .adv-pic {
    width: 50%;
    height: 420px;
    overflow: hidden;
}

.adv-bd-box .adv-pic img {
    width: 100%;
    height: 100%;
    object-fit: cover;
}

.adv-bd-box .adv-text {
    width: 50%;
    padding: 35px;
}

.adv-thd {
    margin-bottom: 20px;
    width: 100%;
    flex-direction: row;
    justify-content: flex-start;
}

.adv-thd i {
    margin-right: 20px;
    background-color: #14436d;
    border-radius: 50%;
    color: #fff;
    font-style: normal;
    font-size: 24px;
    font-weight: 600;
    text-align: center;
    width: 60px;
    height: 60px;
    line-height: 60px;
}

.adv-hd-r {
    margin: 0;
    color: #14436d;
}

.adv-hd-r strong {
    font-size: 24px;
}

.adv-hd-r p {
    font-size: 14px;
}

.adv-tbd {
    padding-left: 80px;
}

.adv-tbd p {
    margin-bottom: 10px;
    padding-left: 24px;
    font-size: 14px;
    line-height: 1.6;
    color: #14436d;
    position: relative;
}

.adv-tbd p::before {
    content: "";
    display: block;
    width: 8px;
    height: 8px;
    background-color: #14436d;
    position: absolute;
    left: 0;
    top: 8px;
}

.adv-tab {
    padding: 15px 15px 5px;
    border-radius: 3px 0 0 0;
    width: 68%;
    text-align: center;
    position: absolute;
    bottom: 0;
    right: 0;
    background-color: #14436d;
    border-width: 5px 0 0 3px;
    border-color: #fff;
    border-style: solid;
    flex-direction: row;
    justify-content: space-between;
}

.adv-tab div {
    margin: 0;
    cursor: pointer;
}

.adv-tab div span {
    display: block;
    width: 147px;
    height: 108px;
    overflow: hidden;
}

.adv-tab div img {
    width: 100%;
    height: 100%;
    object-fit: cover;
}

.adv-tab div span img {
    border: 2px solid #fff;
}

.adv-tab div p {
    font-size: 16px;
    line-height: 2;
    color: #fff;
}

/* about */
.about-cont {
    margin-top: 60px;
    margin-bottom: 60px;
    flex-direction: row;
    align-items: flex-start;
}

.about-info {
    margin: 0;
    padding-right: 50px;
    width: 60%;
}

.about-info h4 {
    margin-top: 10px;
    margin-bottom: 30px;
    color: #17426c;
    font-weight: 800;
    font-size: 38px;
    letter-spacing: 2px;
}

.about-info p {
    margin-bottom: 18px;
    color: #14436d;
    font-size: 16px;
    line-height: 2;
    text-indent: 2em;
    text-align: justify;
}

.about-pic {
    margin: 0;
    width: 38%;
}
.about-adv {
    margin-bottom: 60px;
    flex-direction: row;
    justify-content: space-between;
}
.about-adv div{
	margin: 0;
	color: #14436d;
}
.about-adv .adv-item{
	position: relative;
	padding: 0 10%;
}
.about-adv .adv-item:first-child{
}
.about-adv > div.adv-item+div.adv-item{
	
}
.about-adv > div.adv-item+div.adv-item:before{
	content: "";
	width: 3px;
	height: 90%;
	background-color: #14436d;
	position: absolute;
	left: 0;
	top: 50%;
	transform: translateY(-50%);
}
.about-adv .adv-item .subtitle{
	font-size: 18px;
}
.about-adv .adv-item i{
	font-weight: 800;
	font-size: 46px;
	font-style: normal
}
.about-adv .adv-item p{
	font-size: 24px;
	font-weight: 800;
	text-align: center
}
.about-subtitle {
    margin-bottom: 60px;
    background-color: #14436d;
    flex-direction: row;
}

.about-subtitle span {
    padding: 15px 0;
    width: 50%;
    font-size: 18px;
    color: #fff;
    line-height: 1;
    letter-spacing: 2px;
    text-align: center;
}

.about-subtitle span:first-child {
    background-color: #1da4e4;
}

.about-environment {
    margin-bottom: 60px;
    flex-direction: row;
    justify-content: space-between;
    align-items: flex-start;
}

.about-env-left {
    margin: 0;
    width: 49%;
}

.about-env-left .img-box {
    position: relative;
    height: 362px;
}

.about-env-left .img-box span {
    position: absolute;
    left: 0;
    bottom: 0;
    display: block;
    width: 100%;
    padding: 8px 15px;
    overflow: hidden;
    white-space: nowrap;
    text-overflow: ellipsis;
    color: #fff;
    background-color: #1da4e4;
    font-size: 13px;
    line-height: 2;
    text-align: center;
}

.about-env-left h4 {
    margin: 12px 0 0;
    line-height: 2;
    font-size: 20px;
    color: #14436d;
    font-weight: 800;
}

.about-env-left p {
    font-size: 14px;
    line-height: 2;
}

.about-equipment-list {
    margin: 0;
    width: 49%;
    justify-content: space-between;
    flex-wrap: wrap;
    flex-direction: row;
}

.about-equipment-list .equip-item {
    margin: 0 0 2%;
    width: 48%;
}

.about-equipment-list .equip-item p {
    padding: 10px 0 0;
    font-size: 16px;
    color: #14436d;
    line-height: 2;
}

/* news */
.news-hd {
    margin-top: 60px;
    margin-bottom: 10px;
    display: flex;
    align-items: center;
    justify-content: center;
}

.news-hd span {
    position: relative;
    color: #333;
    letter-spacing: 2px;
    font-size: 32px;
    font-weight: 800;
}

.news-hd span::before {
    content: "";
    background-image: url(../images/t1.png);
    background-repeat: no-repeat;
    position: absolute;
    right: 160px;
    top: 50%;
    transform: translateY(-50%);
    width: 140px;
    height: 12px;
}

.news-hd span::after {
    content: "";
    background-image: url(../images/t2.png);
    background-repeat: no-repeat;
    position: absolute;
    left: 160px;
    top: 50%;
    transform: translateY(-50%);
    width: 140px;
    height: 12px;
}

.news-bd {
    padding: 20px 0 60px;
    position: relative;
}

.news-bd::before {
    content: "";
    background-color: #e5e5e5;
    width: 100%;
    height: 75%;
    position: absolute;
    left: 0;
    top: 0;
    z-index: -1;
}

.news-bd .container {
    align-items: stretch;
    flex-direction: row;
    justify-content: space-between;
}

.news-bd-item {
    margin: 0;
    padding: 15px;
    width: 32%;
    border-radius: 3px;
    background-color: #fff;
    box-shadow: 0 3px 10px rgb(0 0 0 / 20%);
}

.news-stit {
    margin-bottom: 20px;
    padding-bottom: 8px;
    align-items: flex-end;
    flex-direction: row;
    justify-content: space-between;
    border-bottom: 2px solid #14436d;
}

.news-stit span {
    font-size: 24px;
    font-weight: 800;
    color: #333
}

.news-stit a {
    font-size: 12px;
    color: #14436d;
}

.case-slide .swiper-slide {
    width: 265px;
    /*height: 145px;*/
    /*transition: 300ms;*/
    transform: scale(0.83);
    z-index: 1;
}

.case-slide .swiper-slide .img-box {
    height: 172px
}

.case-slide .swiper-slide img {
    width: 100%;
    height: 100%;
    object-fit: cover;
}

.case-slide .swiper-slide.swiper-slide-prev {
    transform: translateX(119.2px) scale(0.833333);
}

.case-slide .swiper-slide.swiper-slide-next {
    transform: translateX(-119.2px) scale(0.83)
}

.case-slide .swiper-slide.swiper-slide-prev div,
.case-slide .swiper-slide.swiper-slide-next div {
    background-color: #000;
}

.case-slide .swiper-slide.swiper-slide-prev img,
.case-slide .swiper-slide.swiper-slide-next img {
    opacity: 0.7;
}

.case-slide .swiper-slide.swiper-slide-active,
.case-slide .swiper-slide.swiper-slide-duplicate-active {
    transform: scale(1);
    z-index: 2;
}

.case-slide .swiper-slide.swiper-slide-active img,
.case-slide .swiper-slide.swiper-slide-duplicate-active img {
    opacity: 1;
}

.case-slide .swiper-button-next,
.case-slide .swiper-button-prev {
    width: 20px;
    height: 40px;
    background-color: rgb(220 220 220 / 50%);
}

.case-slide .swiper-button-next:after,
.case-slide .swiper-button-prev:after {
    font-size: 14px;
    color: #fff;
}

.case-slide .swiper-button-prev,
.case-slide .swiper-rtl .swiper-button-next {
    left: 0;
}

.case-slide .swiper-button-next,
.case-slide .swiper-rtl .swiper-button-prev {
    right: 0;
}

.case-text {
    text-align: center;
}

.case-text h4 {
    padding: 10px 0;
    color: #333;
    font-weight: 600;
    font-size: 16px;
}

.case-text p {
    padding: 0 20px;
    color: #666;
    font-size: 12px;
    line-height: 2;
}

.case-text p span {
    color: #14436d;
}

.case-slide .swiper-slide .case-text {
    transition: 300ms;
    opacity: 0;
}

.case-slide .swiper-slide.swiper-slide-active .case-text,
.case-slide .swiper-slide.swiper-slide-duplicate-active .case-text {
    opacity: 1;
}

.news-pic-list .news-li {
    flex-direction: row;
    align-items: flex-start;
}

.news-pic-list a+a {
    margin-top: 20px;
}

.news-pic-list .news-li .img-box {
    width: 40%;
    height: 102px;
    margin-right: 2.4%;
}

.news-pic-list .news-li .news-text {
    width: 56%;
}

.news-bd-item .news-title {
    margin-bottom: 6px;
    font-size: 15px;
    color: #14436d;
	overflow: hidden;
	white-space: nowrap;
	text-overflow: ellipsis
}

.news-pic-list .news-li .news-text p,
.news-list .news-li2 p {
    font-size: 12px;
    line-height: 1.8;
    color: #555;
}

.news-pic-list .news-li .news-text p span,
.news-list .news-li2 p span {
    color: #14436d;
}

.news-list a {
    display: block;
    width: 100%;
}

.news-list a+a {
    margin-top: 20px;
}

.links {
    padding: 20px 0;
    border-top: 1px solid #f1f1f1;
}

.links .container.text-box {
    flex-direction: row;
}

.link-bt {
    width: 150px;
    font-size: 18px;
    font-weight: 400;
}

.link-bt span {
    padding-left: 5px;
    font-size: 18px;
    color: rgba(51, 51, 51, 0.6);
    font-family: Arial, Helvetica, sans-serif;
    text-transform: uppercase;
    font-weight: 200;
}

.link-bd {
    width: calc(100% - 150px);
    font-size: 15px;
    line-height: 1.8;
    font-weight: 100;
}

.link-bd a {
    padding-right: 10px;
    display: inline-block;
    color: #333;
    word-break: break-all;
}

#footer {
    background-color: #14436d;
    color: #fff;
}

.bottom {
    padding: 30px 0;
}
.f-top{
	flex-direction: row;
	justify-content: space-between;
}
.f-nav{
	margin: 0;
	flex-direction: row;
	justify-content: flex-start;
}
.f-search{
	margin: 0;
	padding-right: 20px;
	position: relative;
	background-color: #42698a;
}
.f-search:after{
	content: "";
	width: 0;
	height: 0;
	border-top: 6px solid #a1b4c5;
	border-left: 6px solid transparent;
	border-right: 6px solid transparent;
	border-bottom: 6px solid transparent;
	position: absolute;
	right: 6px;
	top: 60%;
	transform: translateY(-50%);
}
.f-search .f-input{
	outline: none;
	border: none;
	background: transparent;
	padding: 2px 10px;
	line-height: 30px;
}
.f-nav a {
	padding-right: 20px;
    display: inline-block;
    position: relative;
    font-size: 16px;
    line-height: 1.6;
    color: #fff;
}
.f-nav a+a{
	padding-left:20px;
}
.f-nav a:last-child{
	padding-right: 0
}
.f-nav a+a:before {
    content: "";
    width: 1px;
    height: 80%;
    background-color: #fff;
    position: absolute;
    left: 0;
    top: 50%;
    transform: translateY(-50%);
}

.ft-box {
    margin-top: 30px;
    flex-direction: row;
    justify-content: space-between;
	align-items: flex-start
}
.ft-box div{
	margin: 0;
}
.ft-left{
	width: 50%;
	flex-direction: row;
	justify-content: flex-start;
	align-items: flex-start;
}
.bottom-contact {
    
}

.bottom-contact h4 {
    margin-bottom: 20px;
    font-size: 28px;
    font-weight: 800;
}

.bottom-contact p {
    color: rgba(255, 255, 255, .8);
    font-size: 18px;
    line-height: 2;
}

.bottom-code {
   margin-right: 15px!important;
    width: 120px;
    font-size: 15px;
    line-height: 2;
    text-align: center;
}

.bottom-code img {
    margin-bottom: 5px;
    width: 100%;
}
.f-logo{
	margin-top: 20px!important;
	width: 50%;
	flex-direction: row;
}
.f-logo img{
	margin-right: 15px;
    width: 32%;
}
.f-logo .logo-info{
	margin: 0;
	padding-left: 15px;
	position: relative;
	color: #fff;
}
.f-logo .logo-info:before{
	content: "";
    width: 1px;
    height: 80%;
    background-color: #fff;
    position: absolute;
    left: 0;
    top: 50%;
    transform: translateY(-50%);
}
.f-logo .logo-info h2{
	font-size: 24px;
    font-weight: 800;
    letter-spacing: 1px;
    line-height: 1.6;
}
.f-logo .logo-info p{
    font-weight: 100;
    font-size: 14px;
    letter-spacing: 1.3px;
    text-transform: uppercase;
}

.copyright {
    padding: 12px 0;
    background-color: #0b2a46;
    font-size: 14px;
    color: #fff;
}

.copyright a {
    color: #fff;
}

.copyright .container {
    flex-direction: row;
    justify-content: space-between;
}

/*right sidebar*/
.right-fixbar {
    box-shadow: 0 1px 3px 0 rgb(186 186 186 / 50%), 0 2px 4px 0 rgb(207 207 207 / 50%);
    background-color: #114054;
    padding: 8px;
    width: 80px;
    margin-left: 610px;
    position: fixed;
    left: 50%;
    top: 50%;
    transform: translateY(-50%);
    -webkit-transform: translateY(-50%);
    -moz-transform: translateY(-50%);
    -ms-transform: translateY(-50%);
    z-index: 100;
}

.right-fixbar .r-item {
    position: relative;
}

.r-item .absolute {
    position: absolute;
    top: 50%;
    right: 85px;
    transform: translateY(-50%);
    background-color: rgba(29, 164, 228, 0.8);
    /* border: solid 1px #efefef; */
    border-radius: 2px;
    display: none;
}

.r-item .absolute::after {
    content: "";
    width: 0px;
    height: 0px;
    position: absolute;
    top: 50%;
    right: -12px;
    transform: translateY(-50%);
    border-top: 6px solid transparent;
    border-right: 6px solid transparent;
    border-bottom: 6px solid transparent;
    border-left: 6px solid rgba(29, 164, 228, 0.8);
}

.right-fixbar div.r-item+div.r-item {
    margin-top: 8px;
}

.r-item .r-block {
    padding: 8px 0;
    width: 100%;
    height: 64px;
    background-color: #fff;
    justify-content: center;
    cursor: pointer;
}

.r-item .r-block .icon {
    margin-bottom: 5px;
    display: block;
    width: 50px;
    height: 50px;
    position: relative;
}

.r-item .r-block .icon img {
    display: block;
    width: 60%;
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    opacity: 0;
    transition: ease .5s;
}

.r-item .r-block .icon img:nth-child(1) {
    opacity: 1;
}

.r-item .r-block span {
    font-size: 13px;
    line-height: 1;
    color: #1da4e4;
    transition: ease .5s;
}

.r-item .r-block:hover {
    background-color: #1da4e4;
}

.r-item .r-block:hover .icon img:nth-child(1) {
    opacity: 0;
}

.r-item .r-block:hover .icon img:nth-child(2) {
    opacity: 1;
}

.r-item .r-block:hover span {
    color: #fff;
}

.r-contact {
    padding: 15px 20px;
    width: 210px;
    color: #fff;
}

.r-contact .r-ico {
    margin-right: 10px;
    vertical-align: 2px;
    display: inline-block;
    width: 22px;
}

.r-contact .r-ico img {
    width: 100%;
}

.r-contact span {
    display: inline-block;
    font-size: 18px;
    line-height: 1;
}

.r-contact p {
    margin-top: 8px;
    font-size: 20px;
    line-height: 1;
}

.r-code {
    padding-bottom: 10px;
}

.r-code .code-box {
    margin: 10px 10px 0;
    width: 122px;
}

.r-code .code-box img {
    width: 100%;
}

.r-code p {
    margin-top: 5px;
    text-align: center;
    font-size: 14px;
    color: #fff;
    line-height: 2;
}

/* page */
.bg-f2f2f2 {
    background-color: #f2f2f2;
}

.page-banner {
    position: relative;
    z-index: 6;
}

.page-banner img {
    display: block;
    max-width: 100%;
    margin: auto;
}

.page-banner .t {
    position: absolute;
    left: auto;
    height: auto;
    top: 50%;
    -webkit-transform: translateY(-50%);
    -ms-transform: translateY(-50%);
    transform: translateY(-50%);
}

.page-banner .t div {
    margin: 0;
    padding: 40px 50px;
    display: inline-block;
    background-color: rgba(29,164,228, .5);
    color: #fff;
}

.page-banner .t h3 {
    text-transform: uppercase;
}

.page-banner .t h2 {
    font-weight: 800;
    font-size: 36px;
    line-height: 1.8;
    letter-spacing: 2px;
}
.page-banner .t p{
	font-size: 14px
}
.page-right {
    margin-left: 2%;
    width: calc(100% - 22%);
}
.page-r-top{
	flex-direction: row;
	justify-content: space-between
}
.enquiry-form-box {
    padding: 30px;
    border-radius: 8px;
    border: 8px solid #dbdbdb;
}

.form-hd {
    margin-bottom: 10px;
    padding-left: 15px;
    position: relative;
    font-size: 24px;
    font-weight: 600;
    letter-spacing: 1px;
    color: #333;
    line-height: 2;
}

.form-hd::before {
    content: "";
    width: 5px;
    height: 60%;
    background-color: #14436d;
    position: absolute;
    left: 0;
    top: 50%;
    transform: translateY(-50%);
}

.form-item.text-box {
    flex-direction: row;
    justify-content: space-between;
}

.form-item {
    margin-bottom: 15px;
}

.form-item div {
    margin: 0;
}

.form-item .form-div {
    width: 49%;
}

.form-item label {
    margin-bottom: 0;
    font-weight: 600;
    font-size: 18px;
    color: #333;
    line-height: 2;
}

.form-item label span {
    padding-left: 5px;
    color: #f00;
}

.brd-box {
    padding: 6px 10px;
    border: 1px solid #a5a5a5;
}

.form-input input {
    width: 100%;
	font-size: 14px;
    line-height: 2;
    border: none;
    outline: none;
}

.form-input textarea {
    width: 100%;
    height: 90px;
    border: none;
    outline: none;
    background: none;
    font-size: 14px;
    line-height: 1.8;
    color: #333;
    resize: none;
}

.form-upload {
    width: 100%;
    justify-content: space-between;
    flex-direction: row;
    position: relative;
}

.form-upload::before,
.form-upload::after {
    display: none;
}

.form-upload .filename {
    position: relative;
    border: none;
    outline: none;
    width: 92%;
    height: 30px;
    z-index: 1;
}

.form-upload .file-btn {
    width: 5%;
    display: inline-block;
    border: none;
    padding: 6px 0;
    background: url(../images/ico-upload.png) no-repeat 0 center;
    background-size: contain;
    cursor: pointer;
    outline: none;
}

.form-upload input[type="file"] {
    position: absolute;
    top: 0;
    right: 0;
    bottom: 0;
    width: 100%;
    height: 100%;
    border: none;
    opacity: 0;
}

.form-btn {
    border: none;
    background-color: #14436d;
    border-radius: 5px;
    font-size: 16px;
    padding: 6px 60px;
    color: #fff;
}
/*page product detail*/
.page-pro-top{
    margin-bottom: 20px;
    flex-direction: row;
    justify-content: space-between;
    align-items: flex-start;
}
.page-pro-top .pro-pic{
    margin: 0;
    width: 42%;
}
.page-pro-top .pro-text{
    margin: 0;
    width: 55%;
}
.page-pro-top .page-pro-title {
    font-size: 26px;
    font-weight: 700;
    line-height: 1.8;
    margin-bottom: 30px;
    position: initial;
    color: #333
}
.page-pro-desc {
    padding: 18px 23px;
    background: #f9f9f9;
    font-size: 14px;
    color: gray;
    line-height: 2;
    margin-bottom: 30px;
}

.page-pro-tel {
    font-size: 18px;
    color: gray;
    overflow: hidden
}

.page-pro-tel i {
    color: #0f80e0;
    font-size: 20px;
    float: left;
    margin-right: 10px;
}

.page-pro-tel b {
    color: #0f80e0;
    font-size: 32px;
}

.page-pro-button {
    margin-top: 30px;
    display: flex
}

.page-pro-button a {
    width: 180px;
    height: 50px;
    background: #14436d;
    border-radius: 5px;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 20px;
    color: #fff;
    margin-bottom: 40px;
    margin-right: 20px;
}
/*page honor*/
.page-honor {
    margin: 30px 0;
}

.page-title span {
    margin: 30px auto;
    position: relative;
    font-size: 28px;
    font-weight: 600;
    color: #14436d;
    line-height: 1;
}

.page-title span:before {
    content: "";
    position: absolute;
    right: 160px;
    top: 50%;
    transform: translateY(-50%);
    height: 12px;
    width: 140px;
    background-image: url(../images/t1.png);
    background-repeat: no-repeat;
	background-position: center
}

.page-title span:after {
    content: "";
    position: absolute;
    left: 160px;
    top: 50%;
    transform: translateY(-50%);
    height: 12px;
    width: 140px;
    background-image: url(../images/t2.png);
    background-repeat: no-repeat;
	background-position: center
}

.page-title .subtit {
    font-size: 18px;
    color: #333;
}

.honor-tab {
    margin: 30px auto;
    flex-direction: row;
}

.honor-tab span,.honor-tab a {
    padding: 10px 20px;
    color: #14436d;
    font-size: 18px;
    background-color: #fff;
    border-radius: 10px;
    margin: 0 10px;
    box-shadow: 0 1px 3px #eee;
    cursor: pointer;
}

.honor-tab span:hover,
.honor-tab span.active,
.honor-tab a:hover,
.honor-tab a.active {
    background-color: #14436d;
    color: #fff;
}

.page-honor-list {
    padding: 10px 10px 50px;
	flex-direction: row;
	flex-wrap: wrap;
	justify-content: flex-start
}

.page-honor-list .swiper-slide,.page-honor-list .hor-item {
	margin:0 1% 2%; 
	width: 31.33%;
    background-color: #fff;
    padding: 15px;
    box-shadow: 0 1px 7px #aaa;
    height: 402px !important;
}

.page-honor-list .swiper-slide img,.page-honor-list .hor-item img {
    width: 100%;
    height: 100%;
    display: block;
    object-fit: cover;
}

.page-honor-list .swiper-honor-pagination,
.page-case-list2 .swiper-case-pagination {
    left: 0;
    bottom: 5px;
}

.page-honor-list .swiper-pagination-bullet,
.page-case-list2 .swiper-pagination-bullet {
    width: 12px;
    height: 12px;
    background-color: #a0a0a0;
    margin: 0 10px !important;
}

.page-honor-list .swiper-pagination-bullet-active,
.page-case-list2 .swiper-pagination-bullet-active {
    background-color: #14436d;
}

.p-about-banner .container {
    position: absolute;
    left: 50%;
    bottom: 0;
    -webkit-transform: translateX(-50%);
    -ms-transform: translateX(-50%);
    transform: translateX(-50%);
    align-items: flex-end;
}

.about-text {
    margin: 0;
    padding-bottom: 50px;
    width: 52%;
}

.about-text p {
	margin-bottom: 15px;
    font-size: 18px;
    text-align: justify;
    line-height: 1.8;
    color: #fff;
    text-indent: 2em;
}

.page-path {
    padding: 100px 0;
    background: url("../images/path-bg.jpg") no-repeat center;
    background-size: cover;
}

.page-path .container {
    flex-direction: row;
}

.page-path .container div {
    margin: 0;
}

.page-path .path-tit {
    width: 10%;
    font-size: 28px;
    font-weight: 600;
    color: #14436d;
}

.page-path .path-bd {
    position: relative;
    width: 90%;
}

.page-path .path-bd img {
    width: 100%;
}

.path-list {
    padding-left: 1%;
    width: 100%;
    height: 100%;
    position: absolute;
    left: 0;
    top: 0;
}

.path-item {
    position: absolute;
    width: 208px;
}

.path-item:nth-child(1) {
    top: -20px;
    left: 8%;
}

.path-item:nth-child(2) {
    top: -20px;
    left: 28%;
}

.path-item:nth-child(3) {
    top: -20px;
    left: 48%;
}

.path-item:nth-child(4) {
    top: -20px;
    left: 68%;
}

.path-item:nth-child(5) {
    top: -20px;
    right: -8%;
}

.path-item:nth-child(6) {
    bottom: -40px;
    left: 18%;
}

.path-item:nth-child(7) {
    bottom: -40px;
    left: 38%;
}

.path-item:nth-child(8) {
    bottom: -10px;
    left: 58%;
}

.path-item:nth-child(9) {
    bottom: -40px;
    left: 78%;
}

.path-item h4 {
    font-size: 26px;
    font-weight: 600;
    color: #14436d;
}

.path-item p {
    font-size: 18px;
    line-height: 1.8;
}
/*platform*/
.page-logistics{
	background-color: #eee;
	padding: 60px 0;
}
.page-subtitle{
	margin-bottom: 30px;
	font-size: 16px;
	line-height: 1.8
}
.page-process-box{
	position: relative;
	align-items: flex-start;
	flex-direction: row;
	background-color: rgba(67,80,97,0.5);
	border-radius: 10px;
	padding: 30px;
}
.page-process-box:after{
	content: "";
	position: absolute;
	left: 50%;
	bottom: -48px;
	transform: translateX(-50%);
	width: 0;
	height: 0;
	border-left: 24px solid transparent;
	border-bottom: 24px solid transparent;
	border-right: 24px solid transparent;
	border-top: 24px solid rgba(67,80,97,0.5);
}
.process-item{
	position: relative
}
.page-process-box > div+div:before{
	content: "";
	width: 49px;
	height: 28px;
	background: url(../images/arrow.png) no-repeat 0 0;
	position: absolute;
	left: -80%;
	top: 50px;
	transform: translateY(-50%);
}
.process-item i{
	display: flex;
	align-items: center;
	justify-content: center;
	width: 90px;
	height: 90px;
	border-radius: 50%;
	background-color: #fff;
}
.process-item i img{
	height: 48%;
}
.process-item p{
	text-align: center;
	padding: 10px 0;
	font-size: 16px;
	line-height: 1.4;
	color: #fff;
	font-weight: 600
}
.page-platform{
	margin-top: 50px;
	flex-direction: row;
	justify-content: space-between
}
.platform-left{
	margin: 0;
	width: 42%;
	flex-direction: row;
	justify-content: space-between
}
.platform-left .icon{
	line-height: 2;
}
.platform-left .icon span{
	font-size: 16px;
	line-height: 2
}
.platform-left p{
	font-size: 18px;
	margin-left: 4%;
	line-height: 2
}
.platform-list{
	margin: 0;
	padding: 20px;
	border-radius: 8px;
	background-color: rgba(67,80,97,0.5);
	width: 56%;
	flex-direction: row;
	justify-content: center;
}
.platform-list .item{
	color: #fff;
	font-size: 16px;
	line-height: 2;
	text-align: center;
}
.platform-list .item .icon{
	margin: 0 auto;
	width: 90%;
	display: flex;
	align-items: center;
	justify-content: center;
}
.platform-list .item .icon img{
	width: 80%;
}
.platform-list .item span{
	font-size: 18px;
	line-height: 2
}

.page-good-case {
    padding: 60px 0;
    width: 1600px;
}

.page-case-list {
    padding-top: 30px;
}

.page-case-list .swiper-slide {
    width: 720px;
    position: relative;
}

.page-case-list .swiper-slide img {
    display: block;
    width: 100%;
    border-radius: 14px;
    box-shadow: 0 1px 7px #6a6a6a;
    opacity: 0.5;
}

.page-case-list .swiper-slide.swiper-slide-active img {
    opacity: 1;
    border-radius: 12px;
}

.page-case-list .swiper-slide .case_txt {
    position: absolute;
    bottom: 30px;
    right: 30px;
    color: #fff;
    letter-spacing: 1px;
    opacity: .6;
}

.page-case-list .swiper-slide.swiper-slide-active .case_txt {
    opacity: 1;
}

.page-case-list .swiper-slide .case_txt .case_tls {
    font-size: 24px;
    margin-bottom: 5px;
}

.page-case-list .swiper-button-prev {
    left: 440px;
    width: 25px;
    height: 70px;
    background-color: rgb(29 164 228 / 60%);
}

.page-case-list .swiper-button-next {
    right: 440px;
    width: 25px;
    height: 70px;
    background-color: rgb(29 164 228 / 60%);
    ;
}

.page-case-list .swiper-button-next:after,
.page-case-list .swiper-button-prev:after {
    font-size: 20px;
    font-weight: 600;
    color: #fff;
}

.page-case-desc {
    margin-top: 30px;
    text-indent: 2em;
    font-size: 16px;
    line-height: 1.8;
    color: #333;
}

.page-case-desc:before,
.page-case-desc:after {
    display: none;
}

.page-team-bd {
    margin-top: 30px;
    margin-bottom: 50px;
    padding: 40px 30px;
    border-radius: 10px;
    flex-direction: row;
    justify-content: space-between;
    box-shadow: 0 1px 8px #ccc;
}

.page-team-bd .team-item {
    margin: 0;
    width: 31%;
}

.page-team-bd .team-item .team-tit {
    margin-bottom: 20px;
    flex-direction: row;
    align-items: flex-end;
    justify-content: center;
}

.page-team-bd .team-item .team-tit span {
    margin-left: 10px;
    padding: 5px 0;
    color: #14436d;
    font-size: 22px;
    font-weight: 800;
}

.page-team-bd .team-item .team-ct p {
    margin-bottom: 30px;
    text-align: justify;
    text-indent: 2em;
    font-size: 16px;
    line-height: 1.8;
    color: #333;
}

.page-team-bd .team-item .team-ct img {
    width: 100%;
}

.page-application {
    background-color: #eee;
}

.app-list {
    padding: 30px 0 60px;
    flex-direction: row;
    flex-wrap: wrap;
    justify-content: space-between;
}

.app-item {
    margin: 0 0 1%;
    width: 24%;
    position: relative;
    transition: all 0.4s ease-in-out;
    cursor: pointer;
}

.app-item .txt {
    display: block;
    width: 90px;
    height: 36px;
    text-align: center;
    line-height: 36px;
    color: #fff;
    background-color: #14436d;
    font-size: 15px;
    position: absolute;
    right: 0;
    bottom: 20px;
}

.app-item .txt::before {
    content: "";
    width: 0;
    height: 0px;
    border-left: 18px solid transparent;
    border-top: 18px solid transparent;
    border-bottom: 18px solid transparent;
    border-right: 18px solid #14436d;
    position: absolute;
    left: -36px;
    top: 0;
}

.app-item:hover {
    transform: scale(1.35);
    z-index: 9;
}

.page-case {
    padding-bottom: 60px;
}

.page-case-list2 {
    padding: 15px 15px 50px;
    width: 100%;
    height: 800px;
}

.page-case-list2 .swiper-wrapper {}

.page-case-list2 .case-li {
    width: 32.33%;
    height: calc((100% - 30px) / 2);
    padding: 20px 25px;
    box-shadow: 0 2px 10px #aaa;
    border-radius: 5px;
}

.page-case-list2 .case-li:nth-child(3n) {
    margin-right: 0;
}

.page-case-list2 .case-li .cs-name {
    font-size: 20px;
    line-height: 2;
    font-weight: 800;
    text-align: center;
    border-bottom: 2px solid #14436d;
    margin-bottom: 20px;
    white-space: nowrap;
    overflow: hidden;
    text-overflow: ellipsis;
}

.page-case-list2 .case-li .img-box {
    margin-bottom: 10px;
    height: 176px;
}

.page-case-list2 .case-li p {
    height: 52px;
    font-size: 14px;
    color: #5a5a5a;
    line-height: 1.8;
    text-indent: 2em;
    margin-bottom: 5px;
    display: -webkit-box;
    -webkit-box-orient: vertical;
    -webkit-line-clamp: 2;
    overflow: hidden;
}

.page-case-list2 .case-li span {
    display: block;
    width: 100%;
    color: #14436d;
    font-size: 12px;
    text-align: right;
}

.page-news-box {
    margin-bottom: 60px;
    flex-direction: row;
    justify-content: space-between;
}

.page-news-list {
    margin: 0;
    width: 48%;
    padding: 30px 20px 30px 40px;
    box-shadow: 0 2px 10px #aaa;
    background-color: #fff;
}

.page-news-list .news-tit {
    margin-bottom: 10px;
    padding-left: 15px;
    position: relative;
    font-size: 24px;
    font-weight: 600;
    letter-spacing: 1px;
    color: #333;
    line-height: 2;
}

.page-news-list .news-tit::before {
    content: "";
    width: 5px;
    height: 60%;
    background-color: #14436d;
    position: absolute;
    left: 0;
    top: 50%;
    transform: translateY(-50%);
}

.page-news-list .news-list-box {
    padding-right: 15px;
    overflow-y: auto;
    height: 430px;
}

.page-news-list .news-list-box::-webkit-scrollbar {
    width: 8px;
    height: 8px;
    background-color: #f3f6f8;
}

.page-news-list .news-list-box::-webkit-scrollbar-track {
    border-radius: 0;
    background-color: #f3f6f8;
}

.page-news-list .news-list-box::-webkit-scrollbar-thumb {
    border-radius: 3px;
    background-color: #dbe2e9;
    -webkit-box-shadow: inset 0 0 6px rgba(0, 0, 0, 0);
}

.news-list-box a+a {
    margin-top: 10px;
}

.news-list-box .news-li .img-box {
    margin-left: 0;
    margin-right: 3%;
    width: 26%;
    height: 86px;
}

.news-list-box .news-li .news-title {
    margin-bottom: 6px;
    font-size: 15px;
    color: #14436d;
	overflow: hidden;
	white-space: nowrap;
	text-overflow: ellipsis
}

.news-list-box .news-li .news-text {
    width: 70%;
}

.news-list-box .news-li .news-text p {
    line-height: 1.8;
    min-height: 42px;
    display: -webkit-box;
    -webkit-box-orient: vertical;
    -webkit-line-clamp: 2;
    overflow: hidden;
}

.news-list-box .news-li span {
    display: block;
    color: #14436d;
    text-align: right;
}

.page-location {
    margin-right: 2.083vw;
    line-height: 66px;
    font-size: 16px;
    color: #333
}

.page-location svg {
    width: 16px;
    height: 16px;
    margin-right: 10px;
    fill: #808080;
    float: left
}

.page-location a {
    color: #333;
    margin: auto 5px;
}

.page-location a:hover {
    color: #14436d;
    font-weight: bold
}

/*page news details*/
.page-news-details {
    background: #f2f2f2;
    padding: 50px 0
}

.page-news-details .container.text-box {
    flex-direction: row;
    align-items: stretch;
    justify-content: space-between;
}

.page-news-left {
    margin: 0;
    width: 70%;
    max-width: 65vw;
    float: left
}

.page-details-title {
    font-size: 24px;
    color: #000;
    font-weight: bold;
    margin-bottom: 10px;
}

.aside {
    margin: 0;
    width: 25%;
}

.page-side-right {
    background: #fff;
    padding: 20px 30px;
    position: -webkit-sticky;
    position: sticky;
    top: 0px;
}

.page-info {
    padding: 15px 0 10px;
    border-bottom: dashed 1px #ddd;
    margin-bottom: 20px;
	font-size: 14px
}

.page-info span {
    margin: auto 1vw
}

.page-news-blank {
    margin-bottom: 30px;
}

.r-news-li {
    line-height: 32px;
    display: block
}

.r-news-li i {
    width: 16px;
    line-height: 16px;
    background: transparent;
    display: inline-block;
    text-align: center;
    line-height: 18px;
    color: #666;
    font-style: normal;
    margin-right: 6px;
    font-size: 12px;
}

.r-news-li a {
    display: block;
    font-size: 14px;
    color: #333;
    overflow: hidden;
    white-space: nowrap;
    text-overflow: ellipsis;
}

.r-news-li:first-child i {
    color: #fff;
    background: #14436d
}

.r-news-li:nth-child(2) i {
    color: #fff;
    background: rgba(237, 110, 3, .7)
}

.r-news-li:nth-child(3) i {
    color: #fff;
    background: rgba(237, 110, 3, .4)
}

.r-news-li:hover a {
    color: #14436d
}

.page-news-right-title {
    margin-bottom: 15px;
    padding-left: 12px;
    position: relative;
    display: block;
    line-height: 40px;
    font-size: 22px;
    color: #333;
    font-weight: 600;
    border-bottom: 1px solid rgba(0, 0, 0, .05);
}

.page-news-right-title::before {
    content: "";
    width: 5px;
    height: 60%;
    background-color: #14436d;
    position: absolute;
    left: 0;
    top: 50%;
    transform: translateY(-50%);
}

.page-news-hot-item {
    margin-bottom: 15px;
}

.page-news-hot-item:last-child {
    margin-bottom: 0
}

.page-news-hot-img {
    margin-bottom: 10px
}

.page-news-hot-title {
    font-size: 16px;
    line-height: 1.6;
    border-bottom: 1px solid rgba(0, 0, 0, .05);
    padding-bottom: 10px;
}

.page-news-hot-item:hover .page-news-hot-title {
    color: #0f80e0
}

.page-news-left .page-text {
    font-size: 18px;
}

.page-news-left .page-text img {
    width: 100%;
    height: auto !important;
}
.page-newslist-box .news-li .img-box{
	margin-right: 2%;
	height: 110px
}
.page-newslist-box a+a{
	margin-top: 15px
}
/*pages*/
.pages{
	padding-top: 20px;
	margin-bottom: 30px;
}
.pages a,
.pages b {
    box-shadow: 0 0 5px rgba(0, 0, 0, .2);
    margin: 5px;
    border-color: #fff;
    color: #777777;
    line-height: 36px;
    height: 36px;
    border-radius: 4px;
    padding: 0 12px
}

.pages b {
    background: #1da4e4;
    color: #fff
}

.pages a:hover {
    color: #1da4e4
}

@media(max-width: 760px) {

    .pages a,
    .pages b {
        height: 28px;
        line-height: 28px;
        padding: 0 8px;
    }
}

/*page next*/
.page-next {
    margin-top: 20px;
    border-top: dashed 1px #ddd;
    padding-top: 15px;
    display: flex
}

.page-next p {
    font-size: 14px;
    line-height: 30px;
    color: #999;
    width: 50%
}

.page-next p:last-child {
    text-align: right
}

.page-next p a {
    color: var(--FEY-color-black);
    display: block;
    font-weight: bold
}

.page-next p:hover,
.page-next p:hover a {
    color: #14436d
}

.page-pro-series{
	margin-top: 60px;
	margin-bottom: 60px;
	flex-direction: row;
	flex-wrap: wrap
}
.page-pro-series .pro-series-item{
	display: block;
	margin: 0 0.5% 1%;
	border: 3px solid #1da4e4;
	border-radius: 6px;
	width: 24%;
}
.page-pro-series .pro-series-item span{
	display: block;
	text-align: center;
	background-color: #1da4e4;
	display: block;
    padding: 5px 10px;
    color: #fff;
    font-size: 18px;
    line-height: 2;
}
.page-contact-box{margin-top: 50px;flex-direction: row;background: #fff;align-items: stretch}
.page-contact-left{width: 50%;border: 1px solid #dbdbdb;display: flex;align-items: center}
.page-contact-list{padding: 35px 45px;width: 100%}
.page-contact-item{margin-bottom: 40px;display: flex;flex-wrap: wrap;align-items: center}
.page-contact-item:last-child{margin-bottom: 0}
.page-contact-item h4{
	font-size: 24px;
	font-weight: 600;
	color: #1da4e4
}
.page-contact-item i{display: flex;width: 48px;height: 48px;text-align: center;line-height: 48px;align-items: center;justify-content: center;border: 1px solid #1da4e4;border-radius: 50%;font-size: 24px;margin-right: 20px;-webkit-background-clip: text;-webkit-text-fill-color: transparent;}
.page-contact-item i img{
	width: 50%;
}
.page-contact-item:nth-child(5) i{line-height: 40px}
.page-contact-text{width: 80%;margin: 0}
.page-contact-text span{display: block;font-size: 16px;color: #333}
.page-contact-text p,.page-contact-text a{font-size: 18px;color: #666}
.page-contact-right{width: 50%}
.page-contact-right>div{width: 100%;height: 420px;font-size: 14px;}
@media(max-width: 1600px) {}

@media(max-width: 1440px) {}

@media(max-width: 1200px) {}

@media(max-width: 1024px) {}

@media(max-width: 992px) {}

@media(max-width: 760px) {
    #header .container {
        padding: 5px 12px;
		height: 50px;
    }

    .header-logo {
        margin: 0;
		width: 80%;
    }

    .header-logo a {
        flex-direction: row;
        align-items: center;
        justify-content: flex-start;
    }

    .header-logo img {
        width:100%;
    }

    .header-logo .logo-text {
        margin: 0;
        width: 70%;
    }

    .header-logo h1 {
        font-size: 20px;
        letter-spacing: normal;
    }

    .header-logo p {
        font-size: 13px;
        line-height: 1.6;
        letter-spacing: normal;
    }
	.header-button{
		margin: 0
	}
    .banner {
        height: 22vh;
    }
	.banner .swiper-banner-pagination{
		bottom: 5px;
	}
	.swiper-pagination-bullet{
		width: 30px;
	}
	.swiper-pagination-bullet span{
		width: 100%;
	}
	.swiper-pagination-bullet i{
		width: 100%
	}
	.swiper-pagination-bullet-active span, .swiper-pagination-bullet:hover span{
		width: 100%
	}
    .box .title {
        background-color: transparent;
    }

    .box .title .container {
        padding: 0;
    }

    .box .title .container div {
        margin: 0 auto;
    }

    .title .hd-name {
        background-color: transparent;
        padding: 3px 15px;
    }

    .title .hd-name span {
        color: #14436d;
        font-size: 22px;
    }

    .title .hd-name p {
        color: #1da4e4;
        font-size: 12px;
    }

    .sub-title {
        margin-top: 30px;
        margin-bottom: 30px;
    }

    .sub-title h4 {
        font-size: 24px;
    }

    .sub-title p {
        font-size: 12px;
    }
	.product-content{
		margin: 20px auto
	}
	.pro-right{
		margin-top: 20px;
		width: 100%;
		float: none;
	}

    .product-good .more {
        padding: 8px 12px;
        font-size: 12px;
    }

    .advantage-bd {
        margin: 30px auto 0;
    }

    .adv-tab {
        margin-bottom: 10px;
        padding: 5px;
        position: initial;
        width: 100%;
        border: none;
    }

    .adv-tab div {
        width: 19%;
    }

    .adv-tab div span {
        width: 100%;
        height: 48px;
    }

    .adv-tab div span img {
        border-width: 1px;
    }

    .adv-tab div p {
        font-size: 12px;
    }

    .adv-bd-box .adv-pic {
        width: 100%;
        height: 202px;
    }

    .adv-bd-box .adv-pic-text {
        flex-direction: column;
    }

    .adv-bd-box .adv-text {
        width: 100%;
        padding: 15px 0;
    }

    .adv-tbd {
        padding-left: 0;
    }

    .adv-thd i {
        margin-right: 10px;
        width: 40px;
        height: 40px;
        line-height: 40px;
        font-size: 16px;
        font-weight: 400;
    }

    .adv-hd-r strong {
        font-size: 16px;
    }

    .adv-hd-r p {
        font-size: 12px;
    }

    .adv-tbd p {
        padding-left: 18px;
        font-size: 12px;
    }

    .adv-tbd p::before {
        width: 6px;
        height: 6px;
        top: 6px;
    }

    .about-cont {
        margin: 15px 0 30px;
        flex-direction: column-reverse;
    }

    .about-pic {
        width: 100%;
        height: 276px;
        overflow: hidden;
    }

    .about-info {
        width: 100%;
        padding-right: 0;
    }

    .about-info h4 {
        margin: 15px 0;
        text-align: center;
        font-size: 20px;
    }

    .about-info p {
        font-size: 12px;
        line-height: 1.8;
    }

    .about-adv {
        margin-bottom: 30px;
    }
	.about-adv .adv-item{
		padding-left: 3.33%;
		width: 30%;
	}
	.about-adv .adv-item:first-child{
		
	}
	.about-adv > div.adv-item+div.adv-item:before{
		width: 1px
	}
	.about-adv .adv-item .subtitle{
		font-size: 14px;
	}
	.about-adv .adv-item i{
		font-size: 20px;
	}
	.about-adv .adv-item p{
		font-size: 14px;
	}

    .about-subtitle {
        margin-bottom: 20px;
    }

    .about-environment {
        margin-bottom: 30px;
        flex-direction: column;
    }

    .about-env-left {
        margin-bottom: 15px;
        width: 100%;
    }

    .about-env-left .img-box {
        height: 218px;
    }

    .about-env-left h4 {
        margin-bottom: 10px;
        line-height: 1;
        font-size: 16px;
    }

    .about-env-left p {
        font-size: 13px;
        line-height: 1.8;
    }

    .about-equipment-list {
        width: 100%;
    }

    .about-equipment-list .equip-item p {
        text-align: center;
    }
    .news-bd {
        margin-top: 20px;
        padding: 20px 0;
    }

    .news-bd .container {
        flex-wrap: wrap;
    }

    .news-bd-item {
        width: 100%;
    }

    .news-bd div.news-bd-item+div.news-bd-item {
        margin-top: 15px;
    }

    .news-stit span {
        font-size: 18px;
    }

    .news-pic-list .news-li .img-box {
        height: 88px;
    }
	.page-news-left .page-text table{
		width: 100%!important;
	}
	.page-news-left .page-text img{
		display: block;
	}

    .links {
        padding: 15px 0;
    }

    .links .container.text-box {
        flex-direction: column;
        align-items: flex-start;
        justify-content: flex-start;
    }

    .link-bt {
        margin: 0;
        color: #333;
        margin-bottom: 5px;
    }

    .link-bt span {
        font-size: 14px;
    }

    .link-bd {
        margin: 0;
        width: 100%;
        font-size: 13px;
    }

    .page-banner .t {
        left: 50%;
        transform: translate(-50%, -50%);
    }

    .page-banner .t div {
        padding: 10px 30px;
    }

    .page-banner .t h3 {
        font-size: 15px;
    }

    .page-banner .t h2 {
        font-size: 20px;
        line-height: 1.4;
    }

    .page-banner .t p {
        font-size: 12px;
    }
	.about-text{
		display: none;
	}
    .page-right{
        margin-left: 0;
        width: 100%;
        padding: 0;
    }
    .page-title span{
        margin: 20px auto;
        font-size: 24px;
    }
    .page-title span:before{
        right: 115%;
        width: 50%;
    }
    .page-title span:after{
        left: 115%;
        width: 50%;
    }
    .page-title .subtit{
        font-size: 13px;
    }
	.page-path{
		padding: 30px 0 60px
	}
	.page-path .container{
		flex-direction: column;
		align-items: center;
	}
	.page-path .path-tit{
		margin-bottom: 40px!important;
		font-size: 20px;
		width: 100%;
		text-align: center
	}
	.page-path .path-bd{
		width: 100%
	}
	.path-list{
		padding-left: 0
	}
	.path-item{
		width: 17%
	}
	.path-item:nth-child(5){
		right: auto;
		left: 88%
	}
	.path-item h4{
		font-size: 16px
	}
	.path-item p{
		font-size: 12px
	}
	.page-good-case{
		padding: 35px 0;
		width: 100%
	}
	.page-case-list .swiper-slide{
		width: 80%
	}
	.page-case-list .swiper-slide .case_txt .case_tls{
		font-size: 22px
	}
	.page-case-list .swiper-slide .case_txt{
		bottom: 15px;
		right: 20px
	}
	.page-case-desc{
		margin-top: 20px;
		font-size: 14px
	}
	.page-team-bd{
		padding: 15px;
		flex-direction: column
	}
	.page-team-bd .team-item{
		width: 100%
	}
	.page-team-bd div.team-item+div.team-item{
		margin-top: 15px
	}
	.page-team-bd .team-item .team-tit img{
		width: 10%
	}
	.page-team-bd .team-item .team-tit span{
		font-size: 20px
	}
	.page-team-bd .team-item .team-ct p{
		font-size: 14px;
		margin-bottom: 10px
	}
	.app-list{
		padding: 20px 0 30px
	}
	.app-item{
		margin-bottom: 2%;
		width: 49%
	}
	.app-item .txt{
		width: 75px;
		height: 32px;
		line-height: 32px;
		font-size: 12px;
		bottom: 12px;
	}
	.app-item .txt::before{
		left: -32px;
		border-width: 16px
	}
    .honor-tab{
        margin-bottom: 15px;
        flex-wrap: wrap;
    }
    .honor-tab span{
        margin: 0 5px 10px;
        border-radius: 6px;
        padding: 5px 10px;
        font-size: 14px;
    }
    .page-honor-list .swiper-slide{
        height: 292px!important;
    }
    .enquiry-form-box{
        margin: 20px 0;
        padding: 20px;
    }
    .form-hd{
        font-size: 20px;
    }
    .form-item.text-box{
        flex-direction: column;
    }
    .form-item .form-div{
        width: 100%;
    }
    .form-input textarea{
        font-size: 12px;
        line-height: 1.6;
    }
    .form-upload .file-btn{
        width: 8%;
        padding: 10px 0;
    }
    .pro-classify{
        margin-top: 20px;
        width: 100%;
        float: none;
    }
    .pro-classify h2 a{
        font-size: 26px;
    }
    .pro-fname{
        margin-top: 20px;
        font-size: 18px;
        padding: 10px 15px;
        letter-spacing: 1px;
    }
    .product-list li{
        margin-left: 1%;
        margin-bottom: 2%;
        width: 48%;
    }
    .product-list li a div{
        padding: 12px;
        height: 164px;
    }
    .product-list li em{
        margin-top: 10px;
        padding: 0;
        font-size: 13px;
        height: 50px;
        line-height: 1.8;
        display: -webkit-box;
        -webkit-box-orient: vertical;
        -webkit-line-clamp: 2;
        overflow: hidden;
    }
    .page-pro-content{
        margin-top: 20px;
    }
    .page-pro-top{
        flex-direction: column;
    }
    .page-pro-top .pro-pic{
        width: 100%;
    }
    .page-pro-top .pro-text{
        width: 100%;
    }
    .page-pro-top .page-pro-title{
        font-size: 18px;
        margin-bottom: 20px;
    }
    .page-pro-desc{
        margin-bottom: 20px;
    }
    .page-pro-tel b{
        font-size: 20px;
    }
    .page-pro-button a{
        padding: 5px 15px;
        width: auto;
        height: auto;
        font-size: 16px;
    }
    .page-case {
        margin-bottom: 20px;
        padding-bottom: 0;
    }

    .page-case-list2 {
        padding: 20px 10px;
        height: 552px;
    }

    .page-case-list2 .case-li {
        padding: 10px;
    }

    .page-case-list2 .case-li .cs-name {
        margin-bottom: 12px;
        font-size: 14px;
    }

    .page-case-list2 .case-li .img-box {
        height: 96px;
    }

    .page-case-list2 .case-li p {
        font-size: 13px;
        height: 44px;
        line-height: 1.6;
    }

    .page-honor-list .swiper-pagination-bullet,
    .page-case-list2 .swiper-pagination-bullet {
        width: 8px;
        height: 8px;
    }

    .page-news-box {
        margin-bottom: 0;
        flex-direction: column;
    }

    .page-news-list {
        margin-bottom: 20px;
        padding: 15px 10px 15px 20px;
        width: 100%;
    }

    .page-news-list .news-tit {
        font-size: 20px;
    }

    .news-pic-list .news-li .img-box {
        width: 30%;
        height: 68px;
    }
	.news-pic-list .news-title,.news-bd-item .news-title{
		font-size: 13px;
		overflow: hidden;
		white-space: nowrap;
		text-overflow: ellipsis
	}
    .news-list-box .news-li .news-text p {
        min-height: 21px;
        -webkit-line-clamp: 1
    }

    .news-pic-list .news-li .news-text {
        width: 67%;
    }

    .page-news-list .news-list-box::-webkit-scrollbar {
        width: 4px;
        height: 4px;
    }

    .page-news-details {
        padding: 30px 0
    }
    .page-news-details .container.text-box{
        flex-direction: column;
    }
    .page-news-details .container {
        width: 100%
    }

    .page-news-left {
        margin-bottom: 15px;
        max-width: 100%;
        width: 100%
    }

    .page-details-title {
        font-size: 1.8rem;
        line-height: 1.5;
        margin-bottom: 0
    }

    .page-info {
        padding: 8px 0;
        font-size: 1.2rem;
        margin-bottom: 15px;
    }

    .page-news-left .page-text {
        font-size: 16px;
    }
    .aside{
        width: 100%;
    }
    .page-side-right{
        padding: 20px;
    }
    .page-news-right {
        margin-top: 30px;
        width: 100%;
        padding: 10px;
    }

    .page-news-right-title {
        font-size: 2rem;
        font-weight: bold;
        padding-bottom: 10px;
        line-height: 1.4
    }

    .page-location {
        padding: 0 2vw;
        line-height: 40px;
        font-size: 12px;
    }

    .page-location svg {
        width: 12px;
        height: 12px;
        margin-right: 5px;
    }

    .page-next p {
        line-height: 1.8;
        font-size: 12px;
        padding-right: 3vw
    }

    .page-next p:last-child {
        padding-right: 0;
        padding-left: 3vw
    }
	.bottom{
		padding: 20px 0;
	}
    .f-nav a {
        padding: 0 10px;
        font-size: 13px;
    }

    .ft-box {
        margin-top: 0;
        flex-direction:column-reverse;
    }
	.ft-left{
		width: 100%;
	}
	.f-logo{
		width: 100%;
	}
	.f-logo .logo-info h2{
		font-size: 16px;
	}
	.f-logo .logo-info p{
		font-size: 12px;
	}
    .bottom-contact {
        width: 100%;
        padding: 0 10px;
        text-align: center;
    }

    .bottom-contact h4 {
        margin-bottom: 10px;
        font-size: 20px;
    }

    .bottom-contact p {
        font-size: 13px;
    }

    .copyright .container {
        flex-direction: column;
        justify-content: center;
		text-align: center;
    }
	.page-pro-series{
		margin:30px 0 
	}
	.page-pro-series .pro-series-item{
		width: 49%;
	}
	.page-contact-box{
		margin-top: 30px;
		flex-direction: column
	}
	.page-contact-left,.page-contact-right{
		width: 100%;
	}
	.page-contact-list{
		padding: 20px;
	}
	.page-contact-item{
		margin-bottom: 20px
	}
	.page-contact-item h4{
		font-size: 20px;
	}
	.page-contact-item i{
		width: 38px;
		height: 38px;
		line-height: 38px;
	}
	.page-contact-text p, .page-contact-text a{
		font-size: 16px;
	}
}