@charset "utf-8";
html {
    font-size: 100px;
}
body, div, dl, dt, dd, ul, ol, li, h1, h2, h3, h4, form, input, textarea, p {
    margin: 0;
    padding: 0;
    font-size:14px;
    font-size:0.14rem;
    font-family: "Microsoft YaHei", Arial;
    color: #333
}

body {
    background: #fff
}

ul, li {
    list-style: none
}

input {
    outline: none;
}

input::-webkit-input-placeholder {
    color: #9a9a9a;
    opacity: 0.8;
}
input:-moz-placeholder {
    color: #9a9a9a;
    opacity: 0.8;
}
input::-moz-placeholder {
    color: #9a9a9a;
    opacity: 0.8;
}
input:-ms-input-placeholder {
    color: #9a9a9a;
    opacity: 0.8;
}

a {
    color: #333;
    text-decoration: none;
    cursor: pointer;
}

a:hover {
    text-decoration: none;
}

img {
    border: 0
}

.head {
    position: relative;
}

.akps-head {
    position: fixed;
    width: 100%;
    height: 80px;
    height: 0.8rem;
    left: 0;
    top: 0;
    background: url("../img/headbg.png");
    z-index: 9;
}

.content-body {
    width: 1295px;
    width: 12.95rem;
    margin-left: auto;
    margin-right: auto;
}

.solution-body {
    width: 1315px;
    width: 13.15rem;
    margin-left: auto;
    margin-right: auto;
    padding: 75px 10px;
}

.akps-logo {
    display: inline-block;
    line-height: 80px;
    line-height: 0.8rem;
}

.akps-logo img {
    max-height: 80px;
    max-height: 0.8rem;
}

.head-search a {
    float: left;
}

.all-search {
    float: left;
    padding: 20px 0;
    width: 0;
    overflow: hidden;
}

.search-body {
    position: relative;
    width: 200px;
    height: 40px;
    margin-left: 10px;
}

.search-body input {
    width: 100%;
    height: 100%;
    border: 1px solid #fff;
    padding: 0 15px;
    border-radius: 40px;
}

.search-body button {
    position: absolute;
    display: inline-block;
    width: 38px;
    height: 38px;
    line-height: 38px;
    right: 1px;
    top: 1px;
    background: #fff;
    border: none;
    border-radius: 50%;
    font-size: 20px;
    color: #ccc;
    outline: none;
}
.search-body button:hover {
    background: #6b9c21;
    color: #fff;
}


.open-search {
    animation: mySearch1 0.5s;
    animation-fill-mode : forwards;
}

.close-search {
    animation: mySearch2 0.5s;
    animation-fill-mode : forwards;
}

@keyframes mySearch1 {
    from {
        width: 0;
    }

    to {
        width: 220px;
    }
}

@keyframes mySearch2 {
    from {
        width: 220px;
    }

    to {
        width: 0;
    }
}

.menu-switch {
    position: relative;
    display: block;
    float: right;
    margin-top: 17px;
    margin-top: 0.17rem;
    width: 46px;
    width: 0.46rem;
    height: 40px;
    height: 0.4rem;
    cursor: pointer;
    z-index: 9999;
}

.s-open {
    background: url("../img/open.png") no-repeat center;
}

.s-close {
    background: url("../img/close.png") no-repeat center;
}

.akps-nav {
    position: absolute;
    display: none;
    z-index: 999;
    width: 100%;
    left: 0;
    top: 0;
    background: url("../img/lbg.png");
}

.akps-nav.active {
    display: block;
}

.menu-list {

}

.menu-list > li {
    float: left;
    margin-left: 90px;
    margin-left: 0.7rem;
}

.menu-list > li:first-child {
    margin-left: 0;
}

.menu-list > li > a {
    display: block;
    font-size: 26px;
    font-size: 0.22rem;
    color: #fff;
    line-height: 80px;
    line-height: 0.8rem;
    padding: 0 12px;
    padding: 0 0.12rem;
    text-decoration: none;
}

.menu-list > li > a:hover {
    background: #428321;
}

.akps-banner-pc .swiper-slide {
    position: relative;
}

.akps-banner-pc .banner-cover {
    position: absolute;
    opacity: 0;
    margin-top: -170px;
    z-index: 9;
}

.banner-cover div + div {
    margin-top: 30px;
}

.ban-btn {
    display: inline-block;
    text-align: center;
    padding: 12px 39px;
    border-radius: 35px;
    border-radius: 0.35rem;
    color: #fff;
    background: #dab008;
    opacity: 0;
}

.ban-btn:hover {
    color: #fff;
    background: -webkit-linear-gradient(#f9c806, #bb9600); /* Safari 5.1 - 6.0 */
    background: -o-linear-gradient(#f9c806, #bb9600); /* Opera 11.1 - 12.0 */
    background: -moz-linear-gradient(#f9c806, #bb9600); /* Firefox 3.6 - 15 */
    background: linear-gradient(#f9c806, #bb9600); /* 标准的语法 */
}

.akps-banner-pc .swiper-slide-active .banner-cover {
    animation: banCover 1s;
    animation-fill-mode: forwards;
}

.swiper-slide-active .banner-cover {
    animation: banCover 1s;
    animation-fill-mode: forwards;
}

@keyframes banCover {
    0% {
        width: 0;
        height: 0;
        left: 100%;
        top: 100%;
        opacity: 0;
    }

    100% {
        width: 490px;
        height: 334px;
        left: 20%;
        top: 50%;
        opacity: 1;
    }
}

.swiper-slide-active .banner-cover .ban-btn {
    animation: coverBtn 0.5s;
    transform: translateY(0px);
    animation-delay: 1s;
    animation-fill-mode: forwards;
}

@keyframes coverBtn {
    0% {
        opacity: 0;
    }

    25% {
        opacity: 1;
    }

    50% {
        opacity: 0;
    }

    75% {
        opacity: 1;
    }

    100% {
        opacity: 1;
    }
}

.drop-xjt {
    display: inline-block;
    vertical-align: middle;
    margin-left: 8px;
    margin-left: 0.08rem;
    width: 16px;
    width: 0.16rem;
    height: 9px;
    height: 0.09rem;
    background: url("../img/xjt.png") no-repeat;
}

.drop-down {
    display: none;
    margin-top: 10px;
    margin-top: 0.1rem;
    margin-bottom: 50px;
    margin-bottom: 0.5rem;
}

.menu-list > li.open .drop-down {
    display: block;
}

.drop-down > li {
    line-height: 34px;
    line-height: 34px;
    line-height: 0.34rem;
    text-align: center;
}

.drop-down > li > a {
    font-size: 18px;
    font-size: 0.18rem;
    color: #fff;
    opacity: 0.6;
}

.drop-down > li > a:hover {
    opacity: 1;
}

.swiper-slide img {
    width: 100%;
}

.tool-type {
    background: url("../img/cpbg.png") no-repeat;
    background-size: 100% 100%;
    overflow: hidden;
}

.tool-item {
    float: left;
    width: 25%;
    height: 330px;
    background: url("../img/lbg.png");
    padding: 50px;
    text-align: center;
    color: #fff;
}

.tool-item:nth-child(2n+2) {
    background: url("../img/lbg1.png");
}

.tool-icon {
    height: 82px;
}

.tool-name {
    font-size: 20px;
    font-size: 0.2rem;
    line-height: 48px;
    line-height: 0.48rem;
    vertical-align: top;
    color: #fff;
}

.tool-slogan {
    line-height: 24px;
    line-height: 0.24rem;
    display: -webkit-box;
    -webkit-box-orient: vertical;
    -webkit-line-clamp: 2;
    color: #fff;
    overflow: hidden;
}

.tool-operat {
    padding: 10px;
    padding: 0.1rem;
}

.ak-btn {
    display: inline-block;
    padding: 0 35px;
    padding: 0 0.35rem;
    height: 35px;
    height: 0.35rem;
    line-height: 35px;
    line-height: 0.35rem;
    border: 1px solid #fff;
    color: #fff;
    border-radius: 35px;
    border-radius: 0.35rem;
}

.ak-btn:hover {
    box-shadow: 0 0 10px 1px #fff;
    box-shadow: 0 0 0.1rem 0.01rem #fff;
    color: #fff;
    background: #316a19;
}

.ak-btn-default {
    display: inline-block;
    width: 135px;
    width: 1.35rem;
    height: 0.35rem;
    line-height: 35px;
    line-height: 0.35rem;
    border-radius: 35px;
    border-radius: 0.35rem;
    border: 1px solid #fff;
    text-align: center;
    color: #333;
    margin-top: 45px;
    background: #fff;
}

.ak-btn-default:hover {
    border: 1px solid #219bc9;
    background: #219bc9;
    color: #fff;
}

.product-bc {
    background: url("../img/commenbg.jpg");
    padding: 80px 10px;
}

.left-p {
    float: left;
    width: 50%;
    overflow: hidden;
    padding: 50px 20px;
    padding: 0.5rem 0.2rem;
}

.left-p img {
    max-width: 100%;
    transition: all 0.6s;
}

.left-p:hover img {
    transform: scale(1.1);
}

.right-msg {
    float: right;
    width: 50%;
    padding: 50px 10px;
    padding: 0.5rem 0.1rem;
}

.bcb-title {
    font-size: 20px;
    font-size: 0.2rem;
    font-weight: bold;
    line-height: 30px;
    line-height: 0.3rem;
    margin-bottom: 20px;
}

.right-msg p {
    color: #666;
    line-height: 30px;
    line-height: 0.3rem;
}

.to-detail {
    display: inline-block;
    width: 135px;
    width: 1.35rem;
    height: 0.35rem;
    line-height: 35px;
    line-height: 0.35rem;
    border-radius: 35px;
    border-radius: 0.35rem;
    text-align: center;
    color: #fff;
    margin-top: 45px;
    background: -webkit-linear-gradient(#2cbdea, #013d6b); /* Safari 5.1 - 6.0 */
    background: -o-linear-gradient(#2cbdea, #013d6b); /* Opera 11.1 - 12.0 */
    background: -moz-linear-gradient(#2cbdea, #013d6b); /* Firefox 3.6 - 15 */
    background: linear-gradient(#2cbdea, #013d6b); /* 标准的语法 */
}

.to-detail:hover {
    color: #fff;
    background: -webkit-linear-gradient(#013d6b, #2cbdea); /* Safari 5.1 - 6.0 */
    background: -o-linear-gradient(#013d6b, #2cbdea); /* Opera 11.1 - 12.0 */
    background: -moz-linear-gradient(#013d6b, #2cbdea); /* Firefox 3.6 - 15 */
    background: linear-gradient(#013d6b, #2cbdea); /* 标准的语法 */
}

.buy {
    background: url("../img/buybg.png");
    background-size: 100% 100%;
}

.buy-item {
    background: url("../img/tmbg.png");
    text-align: center;
    padding: 40px 10px;
    padding: 0.4rem 0.1rem;
}

.buy-title {
    font-size: 28px;
    font-size: 0.28rem;
    color: #fff;
    line-height: 45px;
    line-height: 0.45rem;
    margin-bottom: 30px;
    margin-bottom: 0.3rem;
}

.buy-search {
    position: relative;
    width: 560px;
    width: 5.6rem;
    height: 54px;
    height: 0.54rem;
    margin-left: auto;
    margin-right: auto;
}

.buy-search input {
    width: 100%;
    height: 100%;
    border-radius: 54px;
    border: 1px solid #fff;
    padding: 0 30px;
    padding: 0 0.3rem;
    background: inherit;
    color: #fff;
}

.buy-search input::-webkit-input-placeholder {
    color: #fff;
    opacity: 0.8;
}
.buy-search input:-moz-placeholder {
    color: #fff;
    opacity: 0.8;
}
.buy-search input::-moz-placeholder {
    color: #fff;
    opacity: 0.8;
}
.buy-search input:-ms-input-placeholder {
    color: #fff;
    opacity: 0.8;
}

.search-btn {
    position: absolute;
    display: inline-block;
    width: 34px;
    width: 0.34rem;
    height: 34px;
    height: 0.34rem;
    right: 30px;
    right: 0.3rem;
    top: 0.11rem;
    background: url("../img/search.png") no-repeat;
    background-size: 100% 100%;
	outline: none;
	border: none;
}

.search-btn:hover {
    background: url("../img/search1.png") no-repeat;
}

.buy-search input:focus {
    border-color: #2cbdea;
}

.solution {
    background: url("../img/commenbg.jpg");
}

.solution-item {
    float: left;
    width: 32%;
    margin-left: 2%;
    border-radius: 4px;
}

.solution-item:first-child {
    margin-left: 0;
}

.slt-img {
    width: 100%;
    max-height: 205px;
    overflow: hidden;
    border-radius: 4px 4px 0 0;
}

.slt-msg {
    padding: 25px;
    padding: 0.25rem;
    border: 1px solid #e0e7ec;
    border-radius: 0 0 4px 4px;
}

.slt-title {
    font-size: 20px;
    font-size: 0.2rem;
    line-height: 48px;
    line-height: 0.48rem;
}

.slt-msg p {
    height: 120px;
    height: 1.2rem;
    line-height: 24px;
    line-height: 0.24rem;
    color: #666;
    overflow: hidden;
}

.slt-img img {
    width: 100%;
    transition: all 0.6s;
}

.slt-opreat {
    text-align: center;
    margin-top: 10px;
    margin-top: 0.1rem;
}

.slt-detail {
    display: inline-block;
    width: 135px;
    width: 1.35rem;
    height: 0.35rem;
    line-height: 35px;
    line-height: 0.35rem;
    border-radius: 35px;
    border-radius: 0.35rem;
    text-align: center;
    color: #2cbdea;
    border: 1px solid #2cbdea;
    background: inherit;
}

.slt-detail:hover {
    color: #fff;
    background: -webkit-linear-gradient(#2cbdea, #013d6b); /* Safari 5.1 - 6.0 */
    background: -o-linear-gradient(#2cbdea, #013d6b); /* Opera 11.1 - 12.0 */
    background: -moz-linear-gradient(#2cbdea, #013d6b); /* Firefox 3.6 - 15 */
    background: linear-gradient(#2cbdea, #013d6b); /* 标准的语法 */
}

.solution-item:hover .slt-img img {
    transform: scale(1.2);
}

.solution-item:hover {
    box-shadow: 0 0 10px 1px #2cbdea;
}

.ak-group {
    margin-bottom: 10px;
    margin-bottom: 0.1rem;
}

.ak-group:last-child {
    margin-bottom: 0;
}


.c-us {
    background: #fff;
    padding: 40px 10px;
    padding: 0.4rem 0.1rem;
}

.c-us-body {
    width: 1200px;
    width: 12rem;
    margin-left: auto;
    margin-right: auto;
}

.c-us-left {
    float: left;
    width: 32%;
    padding: 15px 0;
    padding: 0.15rem 0;
}

.title1 {
    font-size: 20px;
    font-size: 0.2rem;
    font-weight: bold;
    line-height: 30px;
    line-height: 0.3rem;
}

.title2 {
    font-size: 16px;
    font-size: 0.16rem;
    font-weight: bold;
    line-height: 30px;
    line-height: 0.3rem;
}

.c-us-right {
    float: left;
    width: 68%;
}

.cm-input {
    float: left;
    margin-left: 1.5%;
}

.cm-input:first-child {
    margin-left: 0;
}

.cm-btm {
    width: 19%;
}

.to-button {
    display: inline-block;
    width: 100%;
    height: 40px;
    height: 0.4rem;
    line-height: 40px;
    line-height: 0.4rem;
    border-radius: 40px;
    border-radius: 0.4rem;
    text-align: center;
    color: #fff;
    border: none;
    background: -webkit-linear-gradient(#2cbdea, #013d6b); /* Safari 5.1 - 6.0 */
    background: -o-linear-gradient(#2cbdea, #013d6b); /* Opera 11.1 - 12.0 */
    background: -moz-linear-gradient(#2cbdea, #013d6b); /* Firefox 3.6 - 15 */
    background: linear-gradient(#2cbdea, #013d6b); /* 标准的语法 */
}

.to-button:hover {
    color: #fff;
    background: -webkit-linear-gradient(#013d6b, #2cbdea); /* Safari 5.1 - 6.0 */
    background: -o-linear-gradient(#013d6b, #2cbdea); /* Opera 11.1 - 12.0 */
    background: -moz-linear-gradient(#013d6b, #2cbdea); /* Firefox 3.6 - 15 */
    background: linear-gradient(#013d6b, #2cbdea); /* 标准的语法 */
}

.ly {
    width: 39%;
    height: 40px;
    height: 0.4rem;
}

.ly input {
    width: 100%;
    height: 100%;
    line-height: 40px;
    line-height: 0.4rem;
    border: 1px solid #0a5886;
    border-radius: 40px;
    border-radius: 0.4rem;
    padding: 0 20px;
    padding: 0 0.2rem;
}

.ly-input {
    width: 100%;
    height: 40px;
    height: 0.4rem;
}

.ly-input input {
    width: 100%;
    height: 100%;
    line-height: 40px;
    line-height: 0.4rem;
    border: 1px solid #0a5886;
    border-radius: 40px;
    border-radius: 0.4rem;
    padding: 0 20px;
    padding: 0 0.2rem;
}

.filing {
    text-align: center;
    background: #042e4c;
    line-height: 40px;
}

.filing span {
    color: #fff;
    opacity: 0.6;
}

.s-banner {
    position: relative;
    width: 100%;
}

.s-banner > img {
    width: 100%;
}

.content-head {
    position: absolute;
    left: 0;
    bottom: -1px;
}

.content-head > img {
    width: 100%;
}


.second-head {
    position: relative;
    width: 100%;
    margin-top: -80px;
}

.second-title {
    font-size: 25px;
    font-size: 0.3rem;
    font-weight: bold;
    line-height: 30px;
    line-height: 0.3rem;
    text-align: center;
    color: #76b422;
    margin-bottom: 30px;
    margin-bottom: 0.3rem;
}

.bread-crumbs {
    border-bottom: 1px solid #e5e5e5;
}

.bread-crumbs .bread-l {
    font-size: 12px;
    font-size: 0.12rem;
    color: #999;
}

.fgx {
    display: inline-block;
    vertical-align: middle;
    width: 2px;
    height: 14px;
    background: #c6c6c6;
}

.bread-crumbs a {
    font-size: 12px;
    font-size: 0.12rem;
    color: #999;
}

.bread-crumbs a:hover {
    font-size: 12px;
    font-size: 0.12rem;
    color: #76b422;
}

.about-js {
    margin-bottom:50px;
}

.left-js {
    float: left;
    width: 64%;
}

.rd .left-js {
    width: 54%;
}

.about-left-img {
    float: left;
    width: 34%;
}

.rd .about-left-img {
    width: 44%;
}

.about-left-img img {
    width: 100%;
}

.about-js > div + div {
    margin-left: 2%;
}

.about-title {
    font-size: 35px;
    font-size: 0.35rem;
    color: #0d9de8;
    margin-bottom: 20px;
    margin-bottom: 0.2rem;
}

.about-left-msg {
    font-size: 16px;
    font-size: 0.16rem;
    line-height: 30px;
    line-height: 0.3rem;
}

.inner-page {
    margin-top: 60px;
    margin-top: 0.6rem;
    padding-bottom: 30px;
    padding-bottom: 0.3rem;
}

.inner-cus {
    background: url("../img/innercus.png") no-repeat;
    background-size: 100% 100%;
}

.inner-cus .c-us {
    background: url("../img/lbg.png");
}

.inner-cus input {
    background: inherit;
    border: 1px solid #fff;
    color: #fff;
}

.inner-cus .title1, .inner-cus .title2 {
    color: #fff;
}

.inner-cus .filing {
    background: #275f0a;
}

.product-item {
    float: left;
    width: 24.25%;
    margin-left: 1%;
    cursor: pointer;
    margin-bottom: 20px;
}

.product-item:nth-child(4n + 1) {
    margin-left: 0;
}

.product-img {
    text-align: center;
    line-height: 200px;
    line-height: 2rem;
    border: 1px solid #e5e5e5;
    border-radius: 8px;
    border-radius: 0.08rem;
    overflow: hidden;
}

.product-img img {
    max-width: 100%;
    max-height: 100%;
    transition: all 0.6s;
}

.product-name {
    font-size: 20px;
    font-size: 0.2rem;
    text-align: center;
    line-height: 48px;
    line-height: 0.48rem;
}

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

.product-name a:hover {
    color: #68ab24;
}

.product-images {
    float: left;
    width: 40%;
    margin-bottom: 20px;
    margin-bottom: 0.2rem;
}

.product-detail {
    float: right;
    width: 58%;
    min-height: 500px;
    min-height: 5rem;
    margin-bottom: 20px;
    margin-bottom: 0.2rem;
}

.pd-name {
    font-size: 20px;
    font-size: 0.2rem;
    line-height: 48px;
    line-height: 0.48rem;
}

.pd-ad {
    font-size: 25px;
    font-size: 0.25rem;
    line-height: 48px;
    line-height: 0.48rem;
    color: #8bbf4c;
    margin-bottom: 20px;
    margin-bottom: 0.2rem;
}

.jianjie {
    font-size: 16px;
    font-size: 0.16rem;
    line-height: 30px;
    line-height: 0.3rem;
    margin-bottom: 30px;
    margin-bottom: 0.3rem;
}

.ms-title {
    font-size: 20px;
    font-size: 0.2rem;
    margin-bottom: 10px;
    margin-bottom: 0.1rem;
}

.ms-content {
    font-size: 16px;
    font-size: 0.16rem;
    line-height: 30px;
    line-height: 0.3rem;
    margin-bottom: 30px;
    margin-bottom: 0.3rem;
}

.video-a {
    position: relative;
    float: left;
    width: 40%;
    margin-bottom: 20px;
}

.video-a .wh-img > img {
    width: 100%;
}

.video-a .m {
    position: absolute;
    width: 100%;
    height: 100%;
    left: 0;
    top: 0;
}

.video-a .video-js {
    width: 100%;
    height: 100%;
}

.share {
    line-height: 50px;
    line-height: 0.5rem;
}

.share-item {
    display: inline-block;
    vertical-align: middle;
    width: 21px;
    width: 0.21rem;
    height: 0.21rem;
    margin-left: 5px;
    margin-left: 0.05rem;
}

.share-item.qq {
    background: url("../img/qq.png") no-repeat;
    background-size: 100% 100%;
}

.share-item.wx {
    background: url("../img/wx.png") no-repeat;
    background-size: 100% 100%;
}

.share-item.kj {
    background: url("../img/kj.png") no-repeat;
    background-size: 100% 100%;
}

.share-item.xl {
    background: url("../img/xl.png") no-repeat;
    background-size: 100% 100%;
}

.product-images .swiper-container-horizontal>.swiper-pagination-bullets, .product-images .swiper-pagination-custom, .product-images .swiper-pagination-fraction {
    background: url("../img/hbg.png");
    background-size: 100% 100%;
    bottom: 0;
    text-align: right;
    padding-right: 20px;
    padding-right: 0.2rem;
}

.product-images .swiper-container-horizontal>.swiper-pagination-bullets .swiper-pagination-bullet {
    background: #fff;
}

.service-body {
    width: 1315px;
    width: 13.15rem;
    margin-left: auto;
    margin-right: auto;
    padding: 0 10px;
    padding: 0 0.1rem;
}

.service-item {
    float: left;
    width: 32%;
    margin-left: 2%;
    border-radius: 4px;
    margin-bottom:20px;

}

.fg-title {
    font-size: 30px;
    font-size: 0.3rem;
    line-height: 30px;
    line-height: 0.3rem;
    color: #666;
    margin-top: 25px;
    margin-top: 0.5rem;
    margin-bottom: 25px;
    margin-bottom: 0.25rem;
}

.service-img {
    width: 100%;
    max-height: 205px;
    overflow: hidden;
    border-radius: 4px 4px 0 0;
}

.service-img img {
    width: 100%;
    transition: all 0.6s;
}

.service-msg {
    padding: 25px;
    padding: 0.25rem;
    border: 1px solid #e0e7ec;
    border-radius: 0 0 4px 4px;
}

.service-title {
    font-size: 20px;
    font-size: 0.2rem;
    line-height: 48px;
    line-height: 0.48rem;
}

.service-text {
    height: 120px;
    height: 1.2rem;
    line-height: 24px;
    line-height: 0.24rem;
    color: #666;
    overflow: hidden;
}

.service-item:nth-child(3n + 1) {
    margin-left: 0
}

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

.service-item:hover {
    box-shadow: 0 0 10px 1px #2cbdea;
}

.hc .product-item:hover .product-img {
    border: 1px solid #68ab24;
}

.hc-msg {
    float: right;
    width: 58%;
    min-height: 5rem;
    margin-bottom: 20px;
    margin-bottom: 0.2rem;
}

.xgcp .product-item:hover .product-img {
    box-shadow: 0 0 10px 2px #98e5ff;
    border-color: #fff;
}

.m-l-0 {
    margin-left: 0 !important;
}

.p-t-0 {
    padding-top: 0 !important;
}

.m-l-15 {
    margin-left: 15px !important;
    margin-left: 0.15rem !important;
}

/*animation*/

.tool-1 {
    animation: sport 1.5s;
    transform: translateY(0px);
    animation-delay: 200ms;
    animation-fill-mode: backwards!important;
}
.tool-2 {
    animation: sport 1.5s;
    transform: translateY(0px);
    animation-delay: 400ms;
    animation-fill-mode: backwards!important;
}
.tool-3 {
    animation: sport 1.5s;
    transform: translateY(0px);
    animation-delay: 600ms;
    animation-fill-mode: backwards!important;
}
.tool-4 {
    animation: sport 1.5s;
    transform: translateY(0px);
    animation-delay: 800ms;
    animation-fill-mode: backwards!important;
}

@keyframes sport {
    0%   {transform: translateY(330px);opacity: 0.4;}
    100% {transform: translateY(0px);opacity: 1}
}

.item21 {
    animation: item21 1.5s;
    transform: translateX(0px);
    animation-delay: 100ms;
    animation-fill-mode: backwards!important;
}

.item22 {
    animation: item22 1.5s;
    transform: translateX(0px);
    animation-delay: 100ms;
    animation-fill-mode: backwards!important;
}

@keyframes item21 {
    0%   {transform: translateX(-330px);opacity: 0.4;}
    100% {transform: translateX(0px);opacity: 1}
}

@keyframes item22 {
    0%   {transform: translateX(330px);opacity: 0.4;}
    100% {transform: translateX(0px);opacity: 1}
}

.solution11 {
    animation: solution1 1.5s;
    transform: translateY(0px);
    animation-delay: 200ms;
    animation-fill-mode: backwards!important;
}

.solution12 {
    animation: solution1 1.5s;
    transform: translateY(0px);
    animation-delay: 400ms;
    animation-fill-mode: backwards!important;
}

.solution13 {
    animation: solution1 1.5s;
    transform: translateY(0px);
    animation-delay: 600ms;
    animation-fill-mode: backwards!important;
}

@keyframes solution1 {
    0%   {opacity: 0;}
    100% {opacity: 1}
}










/*media*/
@media screen and (max-width: 1440px) {
    .akps-nav {
        padding: 0 30px;
    }

    .menu-switch {
        right: 30px;
        right: 0.3rem;
    }

    .buy {
        background-size: cover;
    }
}

@media screen and (max-width: 1400px) {
    .content-body {
        width: 100%;
        padding-left: 10px;
        padding-left: 0.1rem;
        padding-right: 10px;
        padding-right: 0.1rem;
    }

    .solution-body {
        width: 100%;
        padding: 30px 10px;
        padding: 0.3rem 0.1rem;
    }

    .service-body {
        width: 100%;
    }

    .menu-list > li {
        margin-left: 70px;
        margin-left: 0.7rem;
    }
}

@media screen and (max-width: 1366px) {
    .menu-list > li {
        margin-left: 0.5rem;
    }

    .tool-item {
        height: 300px;
        height: 3rem;
        padding: 30px;
        padding: 0.3rem;
    }

    .tool-icon {
        height: 75px;
        height: 0.75rem;
    }
}

@media screen and (max-width: 1280px) {
    .tool-item {
        height: 270px;
        padding: 15px;
    }

    .second-head {
        margin-top: -60px;
        margin-top: -0.4rem;
    }

    .left-js {
        width: 59%;
    }

    .rd .left-js {
        width: 59%;
    }

    .about-left-img {
        width: 39%;
    }

    .rd .about-left-img {
        width: 39%;
    }
}

@media screen and (max-width: 1200px) {
    .c-us-body {
        width: 100%;
    }
}

@media screen and (min-width: 993px) {
    .pc-hide {
        display: none !important;
    }
}

@media screen and (max-width: 992px) {
    body, div, dl, dt, dd, ul, ol, li, h1, h2, h3, h4, form, input, textarea, p {
        margin: 0;
        padding: 0;
        font-size:18px;
        font-size:0.18rem;
        font-family: "Microsoft YaHei", Arial;
        color: #333
    }

    .left-js {
        width: 49%;
    }

    .about-left-img {
        width: 49%;
    }

    .yd-hide {
        display: none !important;
    }

    .menu-list > li {
        float: none;
        margin-left: 0;
        text-align: center;
    }

    .akps-head {
        position: fixed;
        width: 100%;
        left: 0;
        top: 0;
    }

    .drop-down {
        background: #42832199;
        margin-top: 0;
        margin-bottom: 0;
        padding: 10px 0;
    }

    .tool-item {
        width: 50%;
    }

    .tool-item:nth-child(2), .tool-item:nth-child(3) {
        background: url("../img/lbg1.png");
    }

    .tool-item:nth-child(4) {
        background: url("../img/lbg.png");
    }

    .left-p, .right-msg {
        width: 100%;
        float: none;
        padding: 10px;
    }

    .left-p img {
        width: 100%;
    }

    .solution-item {
        width: 100%;
        margin-left: 0;
        margin-bottom:20px;
    }

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

    .banner-cover {
        position: absolute;
        opacity: 0;
        margin-top: -170px;
        z-index: 9;
    }

    .c-us-left {
        width: 100%;
        text-align: center;
    }

    .c-us-right {
        width: 100%;
    }

    .all-search {
        float: none;
        display: inline-block;
        width: 220px;
    }

    .menu-list > li.head-search > a {
        float: none;
        display: inline-block;
        vertical-align: top;
    }



    .slt-img {
        max-height: inherit;
    }

    .inner-page {
        margin-top:30px;
    }

    .left-js {
        width: 100%;
    }

    .about-left-img {
        width: 100%;
    }

    .about-js > div + div {
        margin-left: 0;
    }

    .product-item {
        width: 49%;
        margin-left: 0;
    }

    .product-item:nth-child(4n + 1) {
        margin-left: inherit;
    }

    .product-item:nth-child(2n) {
        margin-left: 2%;
    }

    .product-images {
        width: 100%;
    }

    .product-detail {
        width: 100%;
    }

    .video-a {
        width: 100%;
    }

    .rd .left-js {
        width: 100%;
    }

    .rd .about-left-img {
        width: 100%;
    }

    .hc-msg {
        width: 100%;
    }
}
/*内容分页翻页样式*/
/*page*/
.page {
    /* text-align: center; */
    /* margin-top: 30px; */
}
.page a {
    display: inline-block;
    height: 40px;
    line-height: 40px;
    padding: 0 18px;
    background: #e7e7e7;
    color: #0b2b4d;
    font-size: 14px;
    margin-bottom: 5px;
    border: 1px solid #e5e5e5;
    border-radius: 5px;
}
.page a:hover, .page a.current {
    background: #275f0a;
    color: #ffffff;
}

.page strong{
    display: inline-block;
    height: 40px;
    line-height: 40px;
    padding: 0 18px;
    background: #275f0a;
    color: #ffffff;
    font-size: 14px;
    margin-bottom: 5px;
    border: 1px solid #e5e5e5;
    border-radius: 5px;
}

.friend-link .dropdown-menu {
    background: #282828;
    overflow-y: auto;
    height: 100px;
}
blockquote {
	border: none !important;
	}
ol li {    list-style: decimal;}
.ch-en {
    float: right;
    line-height: 80px;
    margin-right: 40px;
}

.ch-en a {
    font-size: 1.142em;
    color: #fff;
}

.ch-en a:hover {
    color: #2cbdea;
}

.ch-en span {
    font-size: 1.142em;
    color: #fff;
    margin-left: 5px;
    margin-right: 5px;
}
