/* banner */
.banner {
    width: 100%;
    margin-top: 110px;
}

.banner>a {
    width: 100%;
    display: block;
    overflow: hidden;
}

.banner>a>img {
    overflow: hidden;
    width: 100%;
}

@media (max-width: 1200px) {
    .banner {
        margin-top: 60px;
    }
}

@media (max-width: 760px) {
    .banner>a>img {
        width: 200%;
        margin-left: -20%;
    }
}

/* page_banner */
.page_banner {
    width: 100%;
    margin-top: 110px;
}

.page_banner>a {
    width: 100%;
    display: block;
    overflow: hidden;
}

.page_banner>a>img {
    overflow: hidden;
    width: 100%;
}

@media (max-width: 1200px) {
    .page_banner {
        margin-top: 60px;
    }
}

@media (max-width: 760px) {
    .page_banner>a>img {
        width: 200%;
        margin-left: -20%;
    }
}


/* 二级导航 */
.navigation {
    padding-top: 50px;
}

.navigation .content {
    width: 75%;
    margin: 0 auto;

}

.navigation .content .boxlist {
    width: 100%;
    display: flex;
    justify-content: space-between;
    align-items: center;
}

.navigation .content .theme {}

.navigation .content .theme h1 {
    font-size: 40px;
    color: #eaeaea;
    line-height: 30px;
    font-weight: bold;
    text-transform: uppercase;
    letter-spacing: 5px;
    margin-bottom: 10px;
}

.navigation .content .theme p {
    font-size: 26px;
    color: #333333;
    line-height: 30px;
}

.navigation .content ul {
    width: 70%;
    display: flex;
    justify-content: flex-end;
    align-items: center;
    flex-wrap: wrap;
    position: relative;
}

.navigation .content ul > li {
    text-align: right;
    margin-left: 8%;
}

.navigation .content ul > li > a {
    display: inline-block;
    font-size: 16px;
    line-height: 28px;
    color: #666666;
    padding: 10px 0 15px;
    border-bottom: 1px solid transparent;
    transition: all .5s linear;
    -webkit-transition: all .5s linear;
    -moz-transition: all .5s linear;
    -ms-transition: all .5s linear;
    -o-transition: all .5s linear;
}

.navigation .content ul > .active > a {
    border-bottom: 1px solid #f2201f;
}

.navigation .content ul > li:hover > a {
    border-bottom: 1px solid #f2201f;
}


.navigation .content ul > li > ol{
    width: 100%;
    position: absolute;
    top: 100%;
    right: 0;
    display: flex;
    justify-content: flex-end;
    align-items: center;
    display: none;
    border-top: 1px solid #dddddd;
    padding: 20px 0;
    flex-wrap: wrap;
}
.navigation .content ul > li > ol > li{
    text-align: right;
    margin-left: 8%;
    padding-bottom: 10px;
}
.navigation .content ul > li > ol > li > a{
    display: inline-block;
    font-size: 16px;
    line-height: 28px;
    color: #666666;
}
.navigation .content ul > .active > ol{
    display: flex;
}

@media (max-width:1600px) {
    .navigation .content .theme h1 {
        font-size: 30px;
        letter-spacing: 2px;
    }

    .navigation .content .theme p {
        font-size: 22px;
    }
}

@media (max-width:1400px) {
    .navigation .content {
        width: 85%;
    }
}

@media (max-width:1200px) {
    .navigation .content .theme h1 {
        font-size: 24px;
        letter-spacing: 2px;
    }

    .navigation .content .theme p {
        font-size: 18px;
    }

    .navigation .content {
        width: 95%;
    }
.navigation {
    padding: 50px 0 30px;
}
}

@media (max-width:760px) {
    .navigation .content .boxlist {
        flex-wrap: wrap;
    }

    .navigation .content .theme {
        width: 100%;
        margin-bottom: 20px;
    }

    .navigation .content ul {
        width: 100%;
        justify-content: flex-start;
    }

    .navigation .content ul > li > ol{
        justify-content: flex-start;
    }
    .navigation .content ul > li > ol > li{
        margin-right: 8%;
        margin-left: 0%;
    }

    .navigation .content ul > li {
        margin-left: 0;
        margin-right: 5%;
    }
.navigation .content ul > li > ol > li{
    padding-bottom: 0px;
    margin-right: 5%;
}
}

@media (max-width:550px) {
    .navigation {
        padding-top: 30px;
    }

    .navigation .content .theme h1 {
        font-size: 20px;
        letter-spacing: 0px;
        margin-bottom: 0;
    }

    .navigation .content .theme p {
        font-size: 16px;
    }

    .navigation .content ul > li > a {
        font-size: 12px;
    }

    .navigation .content .theme {
        margin-bottom: 10px;
    }

    .navigation .content ul > li > ol > li > a {
        font-size: 12px;
    }
    .navigation .content ul > li > a{
        padding: 5px 0 10px;
    }
    .navigation .content ul > li > ol{
        padding: 10px 0;
    }
}

/* 公司介绍 */
.about01 {
    padding: 120px 0;
}

.about01 .content {
    width: 75%;
    margin: 0 auto;
    display: flex;
    justify-content: space-between;
}

.about01 .content .boxlist {
    width: 100%;
}

.about01 .content .boxlist .top {
    display: flex;
    justify-content: space-between;
    margin-bottom: 60px;
}

.about01 .content .boxlist .top .theme {
    width: 40%;
}

.about01 .content .boxlist .top .theme h1 {
    font-size: 22px;
    color: #333333;
    line-height: 30px;
    font-weight: normal;
    margin-bottom: 10px;
}

.about01 .content .boxlist .top .theme p {
    font-size: 15px;
    color: #999999;
    line-height: 30px;
}

.about01 .content .boxlist .top .info {
    width: 60%;
}

.about01 .content .boxlist .top .info p {
    font-size: 15px;
    color: #999999;
    line-height: 30px;
}

.about01 .content .boxlist .center {
    background: url(../images/about01_background.jpg) no-repeat;
    background-size: cover;
    padding: 6%;
    margin-bottom: 40px;
}

.about01 .content .boxlist .center ul {
    display: flex;
    background-color: #ffffff;
    flex-wrap: wrap;
    padding: 2% 2%;
}

.about01 .content .boxlist .center ul li {
    width: 50%;
    display: flex;
    margin: 3% 0;
    padding: 0 6%;
}

.about01 .content .boxlist .center ul li .img {
    width: 40px;
    height: 40px;
}

.about01 .content .boxlist .center ul li .img img {
    width: 100%;
}

.about01 .content .boxlist .center ul li .theme {
    margin-left: 40px;
}

.about01 .content .boxlist .center ul li .theme h1 {
    font-size: 20px;
    color: #333333;
    line-height: 30px;
    font-weight: normal;
}

.about01 .content .boxlist .center ul li .theme p {
    font-size: 14px;
    color: #666666;
    line-height: 30px;
}

.about01 .content .boxlist .bottom p {
    font-size: 15px;
    color: #999999;
    line-height: 30px;
}

@media (max-width:1400px) {
    .about01 .content {
        width: 85%;
    }

    .about01 .content .boxlist .center ul li {
        padding: 0 4%;
    }

    .about01 .content .boxlist .center ul li .theme {
        margin-left: 30px;
    }
}

@media (max-width:1200px) {
    .about01 .content {
        width: 95%;
    }

    .about01 .content .boxlist .top .theme h1 {
        font-size: 18px;
        line-height: 24px;
    }

    .about01 .content .boxlist .top .theme p {
        font-size: 14px;
        line-height: 24px;
    }

    .about01 .content .boxlist .top .info p {
        font-size: 14px;
        line-height: 24px;
    }

    .about01 .content .boxlist .center ul li .theme h1 {
        font-size: 16px;
        line-height: 24px;
    }

    .about01 .content .boxlist .center ul li .theme p {
        font-size: 13px;
        line-height: 24px;
    }

    .about01 .content .boxlist .center ul li {
        margin: 2% 0;
    }

    .about01 .content .boxlist .center {
        padding: 4%;
        margin-bottom: 30px;
    }

    .about01 .content .boxlist .top {
        margin-bottom: 40px;
    }

    .about01 .content .boxlist .bottom p {
        font-size: 14px;
        line-height: 24px;
    }

    .about01 {
        padding: 90px 0;
    }
}

@media (max-width:760px) {
    .about01 .content .boxlist .center ul li {
        width: 100%;
    }

    .about01 .content .boxlist .top {
        flex-wrap: wrap;
    }

    .about01 .content .boxlist .top .theme {
        width: 100%;
        margin-bottom: 20px;
    }

    .about01 .content .boxlist .top .info {
        width: 100%;
    }
}

@media (max-width:550px) {
    .about01 {
        padding: 60px 0;
    }

    .about01 .content .boxlist .top .theme h1 {
        font-size: 16px;
        margin-bottom: 0px;
    }

    .about01 .content .boxlist .top .theme p {
        font-size: 12px;
    }

    .about01 .content .boxlist .top .theme {
        margin-bottom: 10px;
    }

    .about01 .content .boxlist .top .info p {
        font-size: 12px;
    }

    .about01 .content .boxlist .top {
        margin-bottom: 30px;
    }

    .about01 .content .boxlist .center {
        margin-bottom: 20px;
    }

    .about01 .content .boxlist .center ul li .theme h1 {
        font-size: 14px;
    }

    .about01 .content .boxlist .center ul li .theme p {
        font-size: 12px;
    }

    .about01 .content .boxlist .center ul li .img {
        width: 30px;
        height: 30px;
    }

    .about01 .content .boxlist .center ul li .theme {
        margin-left: 20px;
    }

    .about01 .content .boxlist .bottom p {
        font-size: 12px;
    }
}

/* 资质荣誉 */
.about02 {
    padding-bottom: 200px;
}

.about02 .content {
    width: 75%;
    margin: 0 auto;
}

.about02 .content .boxlist {
    width: 100%;
}

.about02 .content .boxlist .top {
    width: 100%;
}

.about02 .content .boxlist .top .theme {
    width: 100%;
    margin-bottom: 30px;
}

.about02 .content .boxlist .top .theme h1 {
    font-size: 22px;
    color: #333333;
    line-height: 30px;
    font-weight: normal;
    margin-bottom: 10px;
}

.about02 .content .boxlist .top .theme p {
    font-size: 15px;
    color: #999999;
    line-height: 30px;
}

.about02 .content .boxlist .bottom .swiper {
    width: 100%;
    padding-bottom: 50px;
}

.about02 .content .boxlist .bottom .swiper .swiper-wrapper {
    width: 100%;
}

.about02 .content .boxlist .bottom .swiper .swiper-wrapper .swiper-slide {
    width: 100%;
}

.about02 .content .boxlist .bottom .swiper .swiper-wrapper .swiper-slide .list {
    width: 100%;
}

.about02 .content .boxlist .bottom .swiper .swiper-wrapper .swiper-slide .list .list_img {
    width: 100%;
    background-color: #f7f7f7;
}

.about02 .content .boxlist .bottom .swiper .swiper-wrapper .swiper-slide .list .list_img .img {
    width: 100%;
    padding-bottom: 100%;
    overflow: hidden;
    position: relative;
}

.about02 .content .boxlist .bottom .swiper .swiper-wrapper .swiper-slide .list .list_img .img a {
    width: 52%;
    height: 80%;
    position: absolute;
    top: 10%;
    left: 24%;
    display: flex;
    justify-content: center;
    align-items: center;
}

.about02 .content .boxlist .bottom .swiper .swiper-wrapper .swiper-slide .list .list_img .img a img {
    width: 100%;
}

.about02 .content .boxlist .bottom .swiper .swiper-wrapper .swiper-slide .list .list_txt {
    width: 100%;
}

.about02 .content .boxlist .bottom .swiper .swiper-wrapper .swiper-slide .list .list_txt a {
    display: flex;
    justify-content: center;
    align-items: center;
    padding: 20px 10px;
}

.about02 .content .boxlist .bottom .swiper .swiper-wrapper .swiper-slide .list .list_txt a p {
    color: #333333;
    line-height: 30px;
    font-size: 20px;
    text-overflow: ellipsis;
    overflow: hidden;
    display: -webkit-box;
    -webkit-box-orient: vertical;
    -webkit-line-clamp: 1;
}

.about02 .content .boxlist .bottom .swiper .swiper-button-next {
    display: none;
}

.about02 .content .boxlist .bottom .swiper .swiper-button-prev {
    display: none;
}

.about02 .content .boxlist .bottom .swiper .swiper-pagination {
    position: absolute;
    left: 50%;
    bottom: 0%;
    transform: translateX(-50%);
    -webkit-transform: translateX(-50%);
    -moz-transform: translateX(-50%);
    -ms-transform: translateX(-50%);
    -o-transform: translateX(-50%);
    display: flex;
    justify-content: center;
    align-items: center;
}

.about02 .content .boxlist .bottom .swiper .swiper-pagination .swiper-pagination-bullet {
    width: 10px;
    height: 10px;
    background-color: rgba(0, 0, 0, .3);
    opacity: 1;
    margin: 0 10px;
}

.about02 .content .boxlist .bottom .swiper .swiper-pagination .swiper-pagination-bullet.swiper-pagination-bullet-active {
    width: 16px;
    height: 16px;
    background-color: transparent;
    border: 3px solid #f2201f;
    border-radius: 100%;
    -webkit-border-radius: 100%;
    -moz-border-radius: 100%;
    -ms-border-radius: 100%;
    -o-border-radius: 100%;
}

@media (max-width:1400px) {
    .about02 .content {
        width: 85%;
    }
}

@media (max-width:1200px) {
    .about02 .content {
        width: 95%;
    }

    .about02 .content .boxlist .bottom .swiper .swiper-wrapper .swiper-slide .list .list_txt a {
        padding: 15px 10px;
    }

    .about02 .content .boxlist .bottom .swiper .swiper-wrapper .swiper-slide .list .list_txt a p {
        line-height: 24px;
        font-size: 16px;
    }

    .about02 .content .boxlist .bottom .swiper {
        padding-bottom: 30px;
    }

    .about02 .content .boxlist .top .theme h1 {
        font-size: 18px;
        line-height: 24px;
    }

    .about02 .content .boxlist .top .theme p {
        font-size: 14px;
        line-height: 24px;
    }

    .about02 {
        padding-bottom: 150px;
    }
}

@media (max-width:550px) {
    .about02 .content .boxlist .bottom .swiper .swiper-pagination .swiper-pagination-bullet {
        margin: 0 5px;
    }

    .about02 .content .boxlist .bottom .swiper .swiper-wrapper .swiper-slide .list .list_txt a p {
        font-size: 12px;
    }

    .about02 .content .boxlist .top .theme h1 {
        font-size: 16px;
        margin-bottom: 0px;
    }

    .about02 .content .boxlist .top .theme p {
        font-size: 12px;
    }

    .about02 .content .boxlist .top .theme {
        width: 100%;
        margin-bottom: 20px;
    }

    .about02 {
        padding-bottom: 100px;
    }

    .about02 .content .boxlist .bottom .swiper .swiper-pagination .swiper-pagination-bullet {
        width: 7px;
        height: 7px;
    }

    .about02 .content .boxlist .bottom .swiper .swiper-pagination .swiper-pagination-bullet.swiper-pagination-bullet-active {
        width: 12px;
        height: 12px;
        border: 2px solid #f2201f;
    }
}

/* 免费试用 */
.free_trial {
    padding: 140px 0 200px;
    background-color: #ffffff;
}

.free_trial .content {
    width: 66.6%;
    margin: 0 auto;
}

.free_trial .content .boxlist {
    display: flex;
    justify-content: space-between;
    align-items: flex-start;
    padding: 0 10.9% 0 8.5%;
}

.free_trial .content .boxlist .left {
    width: 81.5%;
    background-color: #f7f7f7;
    padding: 6% 10% 8% 6%;
}

.free_trial .content .boxlist .left .top {
    width: 100%;
    padding-left: 20%;
}

.free_trial .content .boxlist .left .top .theme {
    margin-bottom: 40px;
}

.free_trial .content .boxlist .left .top .theme h1 {
    font-size: 26px;
    line-height: 30px;
    color: #333333;
    font-weight: normal;
    margin-bottom: 10px;
}

.free_trial .content .boxlist .left .top .theme p {
    font-size: 15px;
    line-height: 30px;
    color: #666666;
}

.free_trial .content .boxlist .left .bottom {
    width: 100%;
}

.free_trial .content .boxlist .left .bottom ul {
    display: flex;
    flex-wrap: wrap;
}

.free_trial .content .boxlist .left .bottom ul li {
    width: 100%;
    display: flex;
    justify-content: space-between;
    align-items: flex-start;
    margin-bottom: 20px;
}

.free_trial .content .boxlist .left .bottom ul li>p {
    color: #666666;
    font-size: 15px;
    line-height: 30px;
    margin-top: 8px;
}

.free_trial .content .boxlist .left .bottom ul li>p span {
    color: #f2201f;
    margin-left: 20px;
}

.free_trial .content .boxlist .left .bottom ul li .list {
    width: 80%;
}

.free_trial .content .boxlist .left .bottom ul li .list input {
    width: 100%;
    padding: 12px 20px;
    background-color: #fffFff;
    border: 1px solid #dddddd;
    outline: none;
}

.free_trial .content .boxlist .left .bottom ul li .list input::placeholder {
    color: #999999;
    font-size: 14px;
}

.free_trial .content .boxlist .left .bottom ul li.company_address .list {
    display: flex;
    justify-content: space-between;
    align-items: center;
}

.free_trial .content .boxlist .left .bottom ul li.company_address .list .provinces {
    width: 48%;
    border: 1px solid #dddddd;
    border-radius: 0;
    position: relative;
    background-color: #ffffff;
}

.free_trial .content .boxlist .left .bottom ul li.company_address .list .provinces select{
    outline: none;
    border: none;
    width: 100%;
    background-color: #ffffff;
    color: #999999;
    font-size: 14px;
    padding: 12px 20px;
}

.free_trial .content .boxlist .left .bottom ul li.company_address .list .select_box {
    width: 48%;
    padding: 12px 20px;
    background: url(../images/free_trial_icon01.png) #ffffff no-repeat 95% center;
    border: 1px solid #dddddd;
    border-radius: 0;
    position: relative;
}

.free_trial .content .boxlist .left .bottom ul li.company_address .list .select_box .show {
    width: 100%;
    color: #999999;
    font-size: 14px;
}

.free_trial .content .boxlist .left .bottom ul li.company_address .list .select_box .provinces {
    width: 100%;
    position: absolute;
    top: 100%;
    left: 0px;
    border: 1px solid #dddddd;
    display: none;
    background: #fff;
}

.free_trial .content .boxlist .left .bottom ul li.company_address .list .select_box .provinces span {
    display: block;
    cursor: pointer;
    line-height: 36px;
    text-indent: 10px;
    color: #999999;
    font-size: 14px;
}

.free_trial .content .boxlist .left .bottom ul li.company_address .list .select_box .provinces span:hover {
    background-color: #f2201f;
    color: #fff;
}

.free_trial .content .boxlist .left .bottom ul li.details_address .list {
    height: 90px;
}

.free_trial .content .boxlist .left .bottom ul li.details_address .list textarea {
    width: 100%;
    height: 100%;
    padding: 12px 20px;
    background-color: #fffFff;
    border: 1px solid #dddddd;
    outline: none;
}

.free_trial .content .boxlist .left .bottom ul li.details_address .list textarea::placeholder {
    color: #999999;
    font-size: 14px;
}

.free_trial .content .boxlist .left .bottom ul li.agree {
    justify-content: flex-start;
    align-items: center;
}

.free_trial .content .boxlist .left .bottom ul li.agree p {
    color: #666666;
    font-size: 14px;
    line-height: 30px;
    margin-top: 0;
}

.free_trial .content .boxlist .left .bottom ul li.agree p:last-child {
    color: #666666;
    font-size: 14px;
    line-height: 30px;
}

.free_trial .content .boxlist .left .bottom ul li.agree p:last-child span {
    margin-left: 0;
    margin: 0 5px;
    border-bottom: 1px solid #f2201f;
}

.free_trial .content .boxlist .left .bottom ul li.agree .item-value {
    display: inline-block;
    margin: 0 5px;
    margin-top: 2px;
}

.free_trial .content .boxlist .left .bottom ul li.agree .item-value input[type="checkbox"] {
    display: none;
}

.free_trial .content .boxlist .left .bottom ul li.agree .item-value input[type="checkbox"]+label>i {
    position: relative;
    display: inline-block;
    width: 14px;
    height: 14px;
    border: 1px solid #dddddd;
    background: transparent;
    vertical-align: middle;
    border-radius: 3px;
    top: -2px;
    box-sizing: border-box;
}

.free_trial .content .boxlist .left .bottom ul li.agree .item-value input[type="checkbox"]+label>i {
    border-radius: 100%;
}

.free_trial .content .boxlist .left .bottom ul li.agree .item-value input[type="checkbox"]+label {
    cursor: pointer;
}

.free_trial .content .boxlist .left .bottom ul li.agree .item-value input[type="checkbox"]:checked+label {
    color: #f2201f;
}

.free_trial .content .boxlist .left .bottom ul li.agree .item-value input[type="checkbox"]:checked+label>i {
    background: #f2201f;
    border: 2px solid #f2201f;
}

.free_trial .content .boxlist .left .bottom ul li.agree .item-value input[type="checkbox"]:checked+label>i::before {
    content: '';
    position: absolute;
    text-align: center;
    width: 4px;
    height: 10px;
    border-bottom: 2px solid #FFFFFF;
    border-right: 2px solid #FFFFFF;
    left: 50%;
    top: 20%;
    transform-origin: center;
    transform: translate(-50%, -30%) rotate(40deg);
    -webkit-transform: translate(-50%, -30%) rotate(40deg);
}

.free_trial .content .boxlist .left .bottom .more {
    width: 100%;
    padding-left: 20%;
    margin-top: 20px;
}

.free_trial .content .boxlist .left .bottom .more a {
    width: 200px;
    height: 60px;
    border: 1px solid #dddddd;
    border-radius: 30px;
    -webkit-border-radius: 30px;
    -moz-border-radius: 30px;
    -ms-border-radius: 30px;
    -o-border-radius: 30px;
    display: flex;
    justify-content: space-between;
    align-items: center;
    background-color: transparent;
    transition: all .5s linear;
    -webkit-transition: all .5s linear;
    -moz-transition: all .5s linear;
    -ms-transition: all .5s linear;
    -o-transition: all .5s linear;
    padding: 0 30px;
    background-color: #f2201f;
    box-shadow: 15px 15px 45px rgba(242, 32, 31, .2);
    border: 1px solid transparent;
}

.free_trial .content .boxlist .left .bottom .more a span {
    font-size: 16px;
    line-height: 28px;
    color: #ffffff;
    transition: all .5s linear;
    -webkit-transition: all .5s linear;
    -moz-transition: all .5s linear;
    -ms-transition: all .5s linear;
    -o-transition: all .5s linear;
}

.free_trial .content .boxlist .left .bottom .more a img {
    width: 16px;
    height: 10px;
    transition: all .5s linear;
    -webkit-transition: all .5s linear;
    -moz-transition: all .5s linear;
    -ms-transition: all .5s linear;
    -o-transition: all .5s linear;
    filter: brightness(8);
    -webkit-filter: brightness(8);
}

.free_trial .content .boxlist .left .bottom .more a:hover {
    background-color: #f2201f;
    box-shadow: 15px 15px 45px rgba(242, 32, 31, .2);
    border: 1px solid transparent;
}

.free_trial .content .boxlist .right {
    width: 17.47%;
    background-color: #222222;
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: center;
    padding: 3%;
}

.free_trial .content .boxlist .right .img {
    width: 100%;
    margin-bottom: 10px;
}

.free_trial .content .boxlist .right .img img {
    width: 100%;
}

.free_trial .content .boxlist .right p {
    width: 100%;
    text-align: center;
    color: #ffffff;
    font-size: 14px;
    line-height: 24px;
}

@media (max-width:1800px) {
    .free_trial .content .boxlist {
        padding: 0 6% 0 4%;
    }
}

@media (max-width:1600px) {
    .free_trial .content {
        width: 75%;
    }
}

@media (max-width:1400px) {
    .free_trial .content {
        width: 85%;
    }
}

@media (max-width:1200px) {
    .free_trial .content {
        width: 95%;
    }

    .free_trial .content .boxlist .left .top .theme h1 {
        font-size: 22px;
        line-height: 24px;
    }

    .free_trial .content .boxlist .left .top .theme p {
        font-size: 14px;
        line-height: 24px;
    }

    .free_trial .content .boxlist .left .bottom ul li>p {
        font-size: 14px;
    }

    .free_trial .content .boxlist .left .bottom .more a {
        width: 160px;
        height: 50px;
        padding: 0 25px;
    }

    .free_trial .content .boxlist .left .bottom .more a span {
        font-size: 14px;
    }

    .free_trial {
        padding: 100px 0 150px;
    }
}

@media (max-width:1000px) {
    .free_trial .content .boxlist {
        padding: 0;
    }

    .free_trial .content .boxlist .left {
        padding: 4% 6% 5% 4%;
    }

    .free_trial .content .boxlist .right p {
        font-size: 12px;
        line-height: 20px;
    }
}

@media (max-width:800px) {
    .free_trial .content .boxlist {
        position: relative;
    }

    .free_trial .content .boxlist .left {
        width: 100%;
    }

    .free_trial .content .boxlist .right {
        position: absolute;
        top: 0;
        right: 0;
        width: 25%;
    }

    .free_trial .content .boxlist .left .top .theme h1 {
        font-size: 18px;
        margin-bottom: 0;
    }

    .free_trial .content .boxlist .left .top .theme p {
        font-size: 12px;
    }

    .free_trial .content .boxlist .left .bottom ul li>p {
        font-size: 12px;
    }

    .free_trial .content .boxlist .left .bottom ul li .list input::placeholder {
        font-size: 12px;
    }

    .free_trial .content .boxlist .left .bottom ul li.company_address .list .select_box .show {
        font-size: 12px;
    }

    .free_trial .content .boxlist .left .bottom .more a {
        width: 130px;
        height: 45px;
        padding: 0 15px;
    }

    .free_trial .content .boxlist .left .bottom .more a span {
        font-size: 12px;
    }

    .free_trial .content .boxlist .left .bottom ul li.details_address .list textarea::placeholder {
        font-size: 12px;
    }

    .free_trial .content .boxlist .left .bottom ul li.company_address .list .select_box .provinces span {
        font-size: 12px;
    }
}

@media (max-width:550px) {
    .free_trial .content .boxlist .left .bottom ul li .list {
        width: 70%;
    }

    .free_trial .content .boxlist .left .bottom ul li .list input {
        padding: 8px 15px;
    }

    .free_trial .content .boxlist .left .bottom ul li.company_address .list .select_box {
        padding: 8px 15px;
    }

    .free_trial .content .boxlist .left .bottom ul li.details_address .list textarea {
        padding: 8px 15px;
    }

    .free_trial .content .boxlist .left .bottom ul li>p {
        margin-top: 3px;
    }

    .free_trial .content .boxlist .left .top {
        padding: 0;
    }

    .free_trial .content .boxlist .left .bottom ul li>p span {
        margin-left: 0;
    }

    .free_trial .content .boxlist .left .bottom ul li.agree p:last-child {
        font-size: 12px;
        line-height: 20px;
    }

    .free_trial .content .boxlist .left .bottom .more {
        margin-top: 0;
    }

    .free_trial .content .boxlist .right {
        width: 30%;
        transform: translateY(-50%);
    }

    .free_trial {
        padding: 60px 0 100px;
    }

    .free_trial .content .boxlist .left .bottom .more a:hover {
        box-shadow: 10px 10px 20px rgba(242, 32, 31, .2);
    }
}

/* 广东丽锐电子有限公司 */
.contact01 {
    padding: 140px 0;
}

.contact01 .content {
    width: 75%;
    margin: 0 auto;
}

.contact01 .content .boxlist {
    width: 100%;
}

.contact01 .content .boxlist .top {
    width: 100%;
    margin-bottom: 100px;
}

.contact01 .content .boxlist .top .theme {
    width: 100%;
    margin-bottom: 30px;
}

.contact01 .content .boxlist .top .theme h1 {
    color: #333333;
    font-size: 30px;
    line-height: 30px;
    padding-bottom: 30px;
    font-weight: normal;
    position: relative;
    margin-bottom: 30px;
}

.contact01 .content .boxlist .top .theme h1::after {
    content: "";
    position: absolute;
    top: auto;
    right: auto;
    left: 0;
    bottom: 0;
    width: 30px;
    height: 1px;
    background-color: #f2201f;
}

.contact01 .content .boxlist .top ul {
    display: flex;
    justify-content: space-between;
}

.contact01 .content .boxlist .top ul li {
    background-color: #f7f7f7;
    width: 31.94%;
    padding: 4%;
}

.contact01 .content .boxlist .top ul li p {
    width: 100%;
    display: flex;
    justify-content: space-between;
    align-items: center;
    margin-bottom: 40px;
}

.contact01 .content .boxlist .top ul li p span {
    color: #333333;
    line-height: 30px;
    font-size: 14px;
}

.contact01 .content .boxlist .top ul li p img {
    width: 40px;
    height: 40px;
}

.contact01 .content .boxlist .top ul li h3 {
    width: 100%;
    font-weight: normal;
}

.contact01 .content .boxlist .top ul li h3 span {
    color: #222222;
    font-size: 20px;
    line-height: 36px;
    display: block;
}

.contact01 .content .boxlist .center {
    width: 100%;
    margin-bottom: 120px;
}

.contact01 .content .boxlist .center .gaode {
    width: 100%;
    position: relative;
    padding-bottom: 34.7%;
    overflow: hidden;
}

.contact01 .content .boxlist .bottom {
    width: 100%;
}

.contact01 .content .boxlist .bottom .list {
    width: 100%;
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 2%;
    margin-bottom: 20px;
    border-bottom: 1px solid #dddddd;
}

.contact01 .content .boxlist .bottom .list .list_txt {
    width: 60%;
}

.contact01 .content .boxlist .bottom .list .list_txt .theme {
    margin-bottom: 40px;
}

.contact01 .content .boxlist .bottom .list .list_txt .theme h1 {
    color: #333333;
    font-size: 22px;
    line-height: 30px;
    padding-bottom: 30px;
    font-weight: normal;
    position: relative;
    margin-bottom: 30px;
}

.contact01 .content .boxlist .bottom .list .list_txt .theme h1::after {
    content: "";
    position: absolute;
    top: auto;
    right: auto;
    left: 0;
    bottom: 0;
    width: 30px;
    height: 1px;
    background-color: #f2201f;
}

.contact01 .content .boxlist .bottom .list .list_txt .theme p {
    color: #666666;
    font-size: 16px;
    line-height: 30px;
}

.contact01 .content .boxlist .bottom .list .list_txt .more {
    width: 160px;
    height: 40px;
    border: 1px solid #dddddd;
    border-radius: 20px;
    display: flex;
    justify-content: center;
    align-items: center;
    background-color: #ffffff;
    transition: all .5s linear;
    -webkit-transition: all .5s linear;
    -moz-transition: all .5s linear;
    -ms-transition: all .5s linear;
    -o-transition: all .5s linear;
}

.contact01 .content .boxlist .bottom .list .list_txt .more a {
    width: 100%;
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 0 25px;
}

.contact01 .content .boxlist .bottom .list .list_txt .more a span {
    font-size: 14px;
    line-height: 30px;
    color: #999999;
    transition: all .5s linear;
    -webkit-transition: all .5s linear;
    -moz-transition: all .5s linear;
    -ms-transition: all .5s linear;
    -o-transition: all .5s linear;
}

.contact01 .content .boxlist .bottom .list .list_txt .more a img {
    width: 16px;
    height: 10px;
    transition: all .5s linear;
    -webkit-transition: all .5s linear;
    -moz-transition: all .5s linear;
    -ms-transition: all .5s linear;
    -o-transition: all .5s linear;
}

.contact01 .content .boxlist .bottom .list .list_txt .more:hover {
    background-color: #f2201f;
    box-shadow: 15px 15px 45px rgba(242, 32, 31, .2);
    border: 1px solid transparent;
}

.contact01 .content .boxlist .bottom .list .list_txt .more:hover a span {
    color: #ffffff;
}

.contact01 .content .boxlist .bottom .list .list_txt .more:hover a img {
    filter: brightness(8);
    -webkit-filter: brightness(8);
}

.contact01 .content .boxlist .bottom .list .list_img {
    width: 33.3%;
}

.contact01 .content .boxlist .bottom .list .list_img .img {
    width: 100%;
}

.contact01 .content .boxlist .bottom .list .list_img .img img {
    width: 100%;
}

@media (max-width:1400px) {
    .contact01 .content {
        width: 85%;
    }
}

@media (max-width:1200px) {
    .contact01 .content {
        width: 95%;
    }

    .contact01 {
        padding: 100px 0;
    }

    .contact01 .content .boxlist .top .theme h1 {
        font-size: 20px;
        line-height: 24px;
        padding-bottom: 20px;
        margin-bottom: 20px;
    }

    .contact01 .content .boxlist .top ul li p {
        margin-bottom: 20px;
    }

    .contact01 .content .boxlist .top ul li h3 span {
        font-size: 16px;
        line-height: 24px;
    }

    .contact01 .content .boxlist .top {
        margin-bottom: 60px;
    }

    .contact01 .content .boxlist .bottom .list .list_txt .theme h1 {
        font-size: 20px;
        line-height: 24px;
        padding-bottom: 20px;
        margin-bottom: 20px;
    }

    .contact01 .content .boxlist .bottom .list .list_txt .theme p {
        font-size: 14px;
        line-height: 24px;
    }

    .contact01 .content .boxlist .bottom .list .list_txt .theme {
        margin-bottom: 30px;
    }

    .contact01 .content .boxlist .bottom .list .list_img {
        width: 39%;
    }

    .contact01 .content .boxlist .top ul li {
        padding: 2%;
    }

    .contact01 .content .boxlist .center {
        margin-bottom: 80px;
    }

}

@media (max-width:1000px) {
    .contact01 .content .boxlist .top ul {
        flex-wrap: wrap;
    }

    .contact01 .content .boxlist .top ul li {
        width: 48%;
        margin-bottom: 4%;
    }
}

@media (max-width:760px) {
    .contact01 .content .boxlist .center .gaode {
        padding-bottom: 45%;
    }

    .contact01 .content .boxlist .bottom .list {
        flex-wrap: wrap;
    }

    .contact01 .content .boxlist .bottom .list .list_txt {
        width: 100%;
        margin-bottom: 40px;
    }

    .contact01 .content .boxlist .bottom .list .list_img {
        width: 100%;
    }
}

@media (max-width:550px) {
    .contact01 {
        padding: 60px 0;
    }

    .contact01 .content .boxlist .top .theme h1 {
        font-size: 16px;
    }

    .contact01 .content .boxlist .top ul li {
        width: 100%;
        padding: 4%;
    }

    .contact01 .content .boxlist .top {
        margin-bottom: 40px;
    }

    .contact01 .content .boxlist .center {
        margin-bottom: 50px;
    }

    .contact01 .content .boxlist .bottom .list .list_txt .theme h1 {
        font-size: 16px;
    }

    .contact01 .content .boxlist .bottom .list .list_txt .theme p {
        font-size: 12px;
    }

    .contact01 .content .boxlist .bottom .list .list_txt .more {
        width: 120px;
        height: 35px;
    }

    .contact01 .content .boxlist .bottom .list .list_txt .more a {
        padding: 0px 15px;
    }

    .contact01 .content .boxlist .bottom .list .list_txt .more a span {
        font-size: 12px;
        line-height: 24px;
    }

    .contact01 .content .boxlist .bottom .list .list_txt {
        width: 100%;
        margin-bottom: 20px;
    }

    .contact01 .content .boxlist .bottom .list .list_txt .more:hover {
        box-shadow: 10px 10px 20px rgba(242, 32, 31, .2);
    }

    .contact01 .content .boxlist .top ul li p img {
        width: 30px;
        height: 30px;
    }

    .contact01 .content .boxlist .center .gaode {
        padding-bottom: 60%;
    }
}

/* 在线留言 */
.contact02 {
    padding-bottom: 200px;
}

.contact02 .content {
    width: 75%;
    margin: 0 auto;
}

.contact02 .content .boxlist {
    width: 100%;
}

.contact02 .content .boxlist .theme {
    margin-bottom: 40px;
}

.contact02 .content .boxlist .theme h1 {
    color: #333333;
    font-size: 30px;
    line-height: 30px;
    padding-bottom: 30px;
    font-weight: normal;
    position: relative;
    margin-bottom: 30px;
}

.contact02 .content .boxlist .theme h1::after {
    content: "";
    position: absolute;
    top: auto;
    right: auto;
    left: 0;
    bottom: 0;
    width: 30px;
    height: 1px;
    background-color: #f2201f;
}

.contact02 .content .boxlist .theme p {
    color: #666666;
    font-size: 15px;
    line-height: 30px;
}

.contact02 .content .boxlist .bottom .message {
    display: flex;
    flex-wrap: wrap;
    justify-content: space-between;
}

.contact02 .content .boxlist .bottom .message .one {
    width: 32%;
    margin-bottom: 20px;

}

.contact02 .content .boxlist .bottom .message .one input {
    width: 100%;
    padding: 20px;
    border: none;
    outline: none;
    background-color: #ffffff;
    border-radius: 4px;
    -webkit-border-radius: 4px;
    -moz-border-radius: 4px;
    -ms-border-radius: 4px;
    -o-border-radius: 4px;
    border-bottom: 1px solid #dddddd;
}

.contact02 .content .boxlist .bottom .message .one input::placeholder {
    color: #999999;
    font-size: 14px;
}

.contact02 .content .boxlist .bottom .message .two {
    width: 100%;

}

.contact02 .content .boxlist .bottom .message .two textarea {
    width: 100%;
    height: 150px;
    padding: 20px;
    border: none;
    margin-bottom: 40px;
    outline: none;
    background-color: #ffffff;
    border-radius: 4px;
    -webkit-border-radius: 4px;
    -moz-border-radius: 4px;
    -ms-border-radius: 4px;
    -o-border-radius: 4px;
    border-bottom: 1px solid #dddddd;
}

.contact02 .content .boxlist .bottom .message .two textarea::placeholder {
    color: #999999;
    font-size: 14px;
}

.contact02 .content .boxlist .bottom .message .more {
    width: 100%;
}

.contact02 .content .boxlist .bottom .message .more a {
    width: 200px;
    height: 60px;
    border: 1px solid #dddddd;
    border-radius: 30px;
    -webkit-border-radius: 30px;
    -moz-border-radius: 30px;
    -ms-border-radius: 30px;
    -o-border-radius: 30px;
    display: flex;
    justify-content: space-between;
    align-items: center;
    background-color: transparent;
    transition: all .5s linear;
    -webkit-transition: all .5s linear;
    -moz-transition: all .5s linear;
    -ms-transition: all .5s linear;
    -o-transition: all .5s linear;
    padding: 0 30px;
    background-color: #f2201f;
    box-shadow: 15px 15px 45px rgba(242, 32, 31, .2);
    border: 1px solid transparent;
}

.contact02 .content .boxlist .bottom .message .more a span {
    font-size: 16px;
    line-height: 28px;
    color: #ffffff;
    transition: all .5s linear;
    -webkit-transition: all .5s linear;
    -moz-transition: all .5s linear;
    -ms-transition: all .5s linear;
    -o-transition: all .5s linear;
}

.contact02 .content .boxlist .bottom .message .more a img {
    width: 16px;
    height: 10px;
    transition: all .5s linear;
    -webkit-transition: all .5s linear;
    -moz-transition: all .5s linear;
    -ms-transition: all .5s linear;
    -o-transition: all .5s linear;
    filter: brightness(8);
    -webkit-filter: brightness(8);
}

.contact02 .content .boxlist .bottom .message .more a:hover {
    background-color: #f2201f;
    box-shadow: 15px 15px 45px rgba(242, 32, 31, .2);
    border: 1px solid transparent;
}

@media (max-width:1600px) {
    .contact02 .content .boxlist .theme h1 {
        font-size: 24px;
        line-height: 30px;
    }

    .contact02 .content .boxlist .bottom .message .one input {
        padding: 15px;
    }

    .contact02 .content .boxlist .bottom .message .two textarea {
        padding: 15px;
    }
}

@media (max-width:1400px) {
    .contact02 .content {
        width: 85%;
    }
}

@media (max-width:1200px) {
    .contact02 .content {
        width: 95%;
    }

    .contact02 .content .boxlist .theme h1 {
        font-size: 20px;
        line-height: 30px;
    }

    .contact02 .content .boxlist .bottom .message .more a {
        width: 150px;
        height: 50px;
        padding: 0 25px;
    }

    .contact02 .content .boxlist .bottom .message .more a span {
        font-size: 14px;
    }

    .contact02 {
        padding-bottom: 150px;
    }
}

@media (max-width:760px) {
    .contact02 .content .boxlist .bottom .message .one {
        width: 100%;
    }
}

@media (max-width:550px) {
    .contact02 {
        padding-bottom: 100px;
    }

    .contact02 .content .boxlist .bottom .message .one input {
        padding: 10px;
    }

    .contact02 .content .boxlist .bottom .message .two textarea {
        padding: 10px;
        height: 120px;
    }

    .contact02 .content .boxlist .bottom .message .one input::placeholder {
        font-size: 12px;
    }

    .contact02 .content .boxlist .bottom .message .two textarea::placeholder {
        font-size: 12px;
    }

    .contact02 .content .boxlist .bottom .message .more a {
        width: 120px;
        height: 40px;
        padding: 0 15px;
    }

    .contact02 .content .boxlist .bottom .message .more a span {
        font-size: 12px;
    }

    .contact02 .content .boxlist .bottom .message .more a:hover {
        box-shadow: 10px 10px 20px rgba(242, 32, 31, .2);
    }
}

/* 办公环境 */
.huanijng01 {
    padding: 120px 0 200px;
}

.huanijng01 .content {
    width: 75%;
    margin: 0 auto;
}

.huanijng01 .content .boxlist {
    width: 100%;
}

.huanijng01 .content .boxlist .top {
    width: 100%;
    margin-bottom: 40px;
}

.huanijng01 .content .boxlist .top ul {
    display: flex;
    align-items: center;
    flex-wrap: wrap;
}

.huanijng01 .content .boxlist .top ul li {
    margin-right: 6%;
    color: #999999;
    font-size: 22px;
    line-height: 28px;
    position: relative;
    margin-bottom: 20px;
}

.huanijng01 .content .boxlist .top ul li::after {
    content: "";
    position: absolute;
    left: 0;
    bottom: -15px;
    width: 100%;
    height: 1px;
    background-color: transparent;
}

.huanijng01 .content .boxlist .top ul li.active {
    color: #333333;
}

.huanijng01 .content .boxlist .top ul li.active::after {
    background-color: #c81d1d;
}

.huanijng01 .content .boxlist .bottom {
    width: 100%;
}

.huanijng01 .content .boxlist .bottom {
    width: 100%;
}

.huanijng01 .content .boxlist .bottom .content_box {
    width: 100%;
    display: none;
}

.huanijng01 .content .boxlist .bottom .content_box.active {
    display: block;
}

.huanijng01 .content .boxlist .bottom .content_box .content_list {
    width: 100%;
    display: flex;
    flex-wrap: wrap;
}

.huanijng01 .content .boxlist .bottom .content_box .content_list .list {
    width: 31.25%;
    margin-right: 3.125%;
    margin-bottom: 3.125%;
    position: relative;
}

.huanijng01 .content .boxlist .bottom .content_box .content_list .list:nth-child(3n) {
    margin-right: 0;
}

.huanijng01 .content .boxlist .bottom .content_box .content_list .list .list_img {
    width: 100%;
    opacity: .6;
    transition: all .5s linear;
}

.huanijng01 .content .boxlist .bottom .content_box .content_list .list:hover .list_img {
    opacity: 1;
}

.huanijng01 .content .boxlist .bottom .content_box .content_list .list .list_img .img {
    width: 100%;
    padding-bottom: 66.6%;
    overflow: hidden;
    position: relative;
}

.huanijng01 .content .boxlist .bottom .content_box .content_list .list .list_img .img a {
    width: 100%;
    height: 100%;
    position: absolute;
    top: 0;
    left: 0;
    display: flex;
    justify-content: center;
    align-items: center;
}

.huanijng01 .content .boxlist .bottom .content_box .content_list .list .list_img .img a img {
    width: 100%;
    transition: all .5s cubic-bezier(0.64, 0.02, 0.29, 0.97);
    -webkit-transition: all .5s cubic-bezier(0.64, 0.02, 0.29, 0.97);
    -moz-transition: all .5s cubic-bezier(0.64, 0.02, 0.29, 0.97);
    -ms-transition: all .5s cubic-bezier(0.64, 0.02, 0.29, 0.97);
    -o-transition: all .5s cubic-bezier(0.64, 0.02, 0.29, 0.97);
}

.huanijng01 .content .boxlist .bottom .content_box .content_list .list:hover .list_img .img a img {
    transform: scale(1.1);
    -webkit-transform: scale(1.1);
    -moz-transform: scale(1.1);
    -ms-transform: scale(1.1);
    -o-transform: scale(1.1);
}

.huanijng01 .content .boxlist .bottom .content_box .content_list .list .list_txt {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    transform: scale(0);
    -webkit-transform: scale(0);
    -moz-transform: scale(0);
    -ms-transform: scale(0);
    -o-transform: scale(0);
    transition: all .5s cubic-bezier(0.64, 0.02, 0.29, 0.97);
    -webkit-transition: all .5s cubic-bezier(0.64, 0.02, 0.29, 0.97);
    -moz-transition: all .5s cubic-bezier(0.64, 0.02, 0.29, 0.97);
    -ms-transition: all .5s cubic-bezier(0.64, 0.02, 0.29, 0.97);
    -o-transition: all .5s cubic-bezier(0.64, 0.02, 0.29, 0.97);
    display: none;
}

.huanijng01 .content .boxlist .bottom .content_box .content_list .list .list_txt a {
    width: 100%;
    height: 100%;
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: center;
}

.huanijng01 .content .boxlist .bottom .content_box .content_list .list .list_txt a .img {
    width: 15%;
    margin-bottom: 15px;
}

.huanijng01 .content .boxlist .bottom .content_box .content_list .list .list_txt a .img img {
    width: 100%;
}

.huanijng01 .content .boxlist .bottom .content_box .content_list .list .list_txt a p {
    font-size: 14px;
    color: #333333;
    line-height: 30px;
}

.huanijng01 .content .boxlist .bottom .content_box .content_list .list:hover .list_txt {
    transform: scale(1);
    -webkit-transform: scale(1);
    -moz-transform: scale(1);
    -ms-transform: scale(1);
    -o-transform: scale(1);
}

.huanijng01 .content .boxlist .bottom .content_box .list_other {
    text-align: center;
}

.huanijng01 .content .boxlist .bottom .content_box .list_other span {
    color: #999999;
    font-size: 16px;
    line-height: 28px;
    text-align: center;
    position: relative;
    cursor: pointer;
    display: inline-block;
}

.huanijng01 .content .boxlist .bottom .content_box .list_other span::after {
    content: "";
    position: absolute;
    bottom: -20px;
    left: 50%;
    right: auto;
    top: auto;
    width: 19px;
    height: 11px;
    background: url(../images/huanjing01_icon01.png) no-repeat;
    background-size: cover;
    transform: translateX(-50%);
    -webkit-transform: translateX(-50%);
    -moz-transform: translateX(-50%);
    -ms-transform: translateX(-50%);
    -o-transform: translateX(-50%);
}

.huanijng01 .content .boxlist .bottom .content_box .list_other .opened::after {
    transform: translateX(-50%) rotateZ(180deg);
    -webkit-transform: translateX(-50%) rotateZ(180deg);
    -moz-transform: translateX(-50%) rotateZ(180deg);
    -ms-transform: translateX(-50%) rotateZ(180deg);
    -o-transform: translateX(-50%) rotateZ(180deg);
}

@media (max-width:1400px) {
    .huanijng01 .content {
        width: 85%;
    }
}

@media (max-width:1200px) {
    .huanijng01 .content {
        width: 95%;
    }

    .huanijng01 .content .boxlist .top ul li {
        font-size: 18px;
    }

    .huanijng01 .content .boxlist .top ul li::after {
        bottom: -8px;
    }

    .huanijng01 {
        padding: 90px 0 150px;
    }
}

@media (max-width:760px) {
    .huanijng01 .content .boxlist .bottom .content_box .content_list {
        justify-content: space-between;
    }

    .huanijng01 .content .boxlist .bottom .content_box .content_list .list {
        width: 48%;
        margin-bottom: 4%;
        margin-right: 0;
    }

    .huanijng01 .content .boxlist .top {
        margin-bottom: 20px;
    }
}

@media (max-width:550px) {
    .huanijng01 {
        padding: 60px 0 100px;
    }

    .huanijng01 .content .boxlist .top ul li {
        font-size: 14px;
        margin-bottom: 10px;
    }

    .huanijng01 .content .boxlist .bottom .content_box .list_other span {
        font-size: 12px;
    }

    .huanijng01 .content .boxlist .bottom .content_box .list_other span::after {
        bottom: -11px;
        width: 12px;
        height: 6px;
    }
}

/* 新闻中心 */
.news01 {
    padding: 130px 0 200px;
}

.news01 .content {
    width: 75%;
    margin: 0 auto;
}

.news01 .content .boxlist {
    width: 100%;
}

.news01 .content .boxlist .top {
    margin-bottom: 130px;
    display: flex;
    justify-content: space-between;
}

.news01 .content .boxlist .top .left {
    width: 52%;
}

.news01 .content .boxlist .top .left .img {
    width: 100%;
    position: relative;
    padding-bottom: 66.6%;
    overflow: hidden;
}

.news01 .content .boxlist .top .left .img a {
    width: 100%;
    height: 100%;
    position: absolute;
    top: 0;
    left: 0;
    display: flex;
    justify-content: center;
    align-items: center;
}

.news01 .content .boxlist .top .left .img a img {
    width: 100%;
    transition: all .5s cubic-bezier(0.64, 0.02, 0.29, 0.97);
    -webkit-transition: all .5s cubic-bezier(0.64, 0.02, 0.29, 0.97);
    -moz-transition: all .5s cubic-bezier(0.64, 0.02, 0.29, 0.97);
    -ms-transition: all .5s cubic-bezier(0.64, 0.02, 0.29, 0.97);
    -o-transition: all .5s cubic-bezier(0.64, 0.02, 0.29, 0.97);
}

.news01 .content .boxlist .top .left .img:hover a img {
    transform: scale(1.1);
}

.news01 .content .boxlist .top .right {
    width: 48%;
    padding: 4% 10% 6% 8%;
    background-color: #f7f7f7;
}

.news01 .content .boxlist .top .right .time {
    margin-bottom: 40px;
}

.news01 .content .boxlist .top .right .time h1 {
    color: #999999;
    font-size: 44px;
    line-height: 30px;
    margin-bottom: 10px;
    font-weight: lighter;
}

.news01 .content .boxlist .top .right .time p {
    color: #999999;
    font-size: 14px;
    line-height: 30px;
}

.news01 .content .boxlist .top .right .theme {
    margin-bottom: 50px;
}

.news01 .content .boxlist .top .right .theme h1 {
    font-weight: lighter;
    padding-bottom: 25px;
    margin-bottom: 20px;
    position: relative;
}

.news01 .content .boxlist .top .right .theme h1 a {
    font-size: 22px;
    line-height: 40px;
    color: #333333;
    text-overflow: ellipsis;
    overflow: hidden;
    display: -webkit-box;
    -webkit-box-orient: vertical;
    -webkit-line-clamp: 1;
}

.news01 .content .boxlist .top .right .theme h1::after {
    content: "";
    position: absolute;
    top: auto;
    right: auto;
    left: 0;
    bottom: 0;
    width: 30px;
    height: 1px;
    background-color: #f2201f;
}

.news01 .content .boxlist .top .right .theme p {
    color: #999999;
    font-size: 14px;
    line-height: 30px;
    height: 60px;
    text-overflow: ellipsis;
    overflow: hidden;
    display: -webkit-box;
    -webkit-box-orient: vertical;
    -webkit-line-clamp: 2;
}

.news01 .content .boxlist .top .right .more {
    width: 150px;
    height: 50px;
    border: 1px solid #dddddd;
    border-radius: 25px;
    -webkit-border-radius: 25px;
    -moz-border-radius: 25px;
    -ms-border-radius: 25px;
    -o-border-radius: 25px;
    display: flex;
    justify-content: center;
    align-items: center;
    background-color: #ffffff;
    transition: all .5s linear;
    -webkit-transition: all .5s linear;
    -moz-transition: all .5s linear;
    -ms-transition: all .5s linear;
    -o-transition: all .5s linear;
    background-color: #f2201f;
    box-shadow: 15px 15px 45px rgba(242, 32, 31, .2);
    border: 1px solid transparent;
}

.news01 .content .boxlist .top .right .more a {
    width: 100%;
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 0 25px;
}

.news01 .content .boxlist .top .right .more a span {
    font-size: 14px;
    line-height: 30px;
    color: #ffffff;
    transition: all .5s linear;
    -webkit-transition: all .5s linear;
    -moz-transition: all .5s linear;
    -ms-transition: all .5s linear;
    -o-transition: all .5s linear;
}

.news01 .content .boxlist .top .right .more a img {
    width: 16px;
    height: 10px;
    transition: all .5s linear;
    -webkit-transition: all .5s linear;
    -moz-transition: all .5s linear;
    -ms-transition: all .5s linear;
    -o-transition: all .5s linear;
    filter: brightness(8);
    -webkit-filter: brightness(8);
}

.news01 .content .boxlist .top .right .more:hover {
    background-color: #f2201f;
    box-shadow: 15px 15px 45px rgba(242, 32, 31, .2);
    border: 1px solid transparent;
}

.news01 .content .boxlist .top .right .more:hover a span {
    color: #ffffff;
}

.news01 .content .boxlist .top .right .more:hover a img {
    filter: brightness(8);
    -webkit-filter: brightness(8);
}

.news01 .content .boxlist .bottom {
    width: 100%;
}

.news01 .content .boxlist .bottom .list {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 2%;
    border-bottom: 1px solid #dddddd;
    transition: all .5s linear;
    margin-bottom: 20px;
}

.news01 .content .boxlist .bottom .list .list_img {
    width: 18.75%;
}

.news01 .content .boxlist .bottom .list .list_img .img {
    width: 100%;
    position: relative;
    padding-bottom: 66.6%;
    overflow: hidden;
}

.news01 .content .boxlist .bottom .list .list_img .img a {
    width: 100%;
    height: 100%;
    position: absolute;
    top: 0;
    left: 0;
    display: flex;
    justify-content: center;
    align-items: center;
}

.news01 .content .boxlist .bottom .list .list_img .img a img {
    width: 100%;
    transition: all .5s cubic-bezier(0.64, 0.02, 0.29, 0.97);
    -webkit-transition: all .5s cubic-bezier(0.64, 0.02, 0.29, 0.97);
    -moz-transition: all .5s cubic-bezier(0.64, 0.02, 0.29, 0.97);
    -ms-transition: all .5s cubic-bezier(0.64, 0.02, 0.29, 0.97);
    -o-transition: all .5s cubic-bezier(0.64, 0.02, 0.29, 0.97);
}

.news01 .content .boxlist .bottom .list .list_img:hover .img a img {
    transform: scale(1.1);
}

.news01 .content .boxlist .bottom .list .list_txt {
    width: 76.3%;
    display: flex;
    justify-content: space-between;
    padding: 0 2%;
}

.news01 .content .boxlist .bottom .list .list_txt .left {
    width: 45%;
}

.news01 .content .boxlist .bottom .list .list_txt .left .theme {
    width: 100%;
}

.news01 .content .boxlist .bottom .list .list_txt .left .theme h1 {
    font-weight: lighter;
    margin-bottom: 20px;
}

.news01 .content .boxlist .bottom .list .list_txt .left .theme h1 a {
    font-size: 22px;
    line-height: 40px;
    color: #333333;
    text-overflow: ellipsis;
    overflow: hidden;
    display: -webkit-box;
    -webkit-box-orient: vertical;
    -webkit-line-clamp: 1;
}

.news01 .content .boxlist .bottom .list .list_txt .left .theme p {
    color: #999999;
    font-size: 14px;
    line-height: 30px;
    height: 60px;
    text-overflow: ellipsis;
    overflow: hidden;
    display: -webkit-box;
    -webkit-box-orient: vertical;
    -webkit-line-clamp: 2;
}

.news01 .content .boxlist .bottom .list .list_txt .right .time {
    margin-bottom: 40px;
}

.news01 .content .boxlist .bottom .list .list_txt .right .time h1 {
    color: #999999;
    font-size: 44px;
    line-height: 30px;
    margin-bottom: 10px;
    font-weight: lighter;
}

.news01 .content .boxlist .bottom .list .list_txt .right .time p {
    color: #999999;
    font-size: 14px;
    line-height: 30px;
}

.news01 .content .boxlist .bottom .list .list_txt .right .more a span {
    color: #666666;
    line-height: 30px;
    font-size: 14px;
    transition: all .5s linear;
}

.news01 .content .boxlist .bottom .list .list_txt .right .more a img {
    width: 16px;
    height: 10px;
    filter: invert(50%);
    transition: all .5s linear;
    margin-left: 30px;
}

.news01 .content .boxlist .bottom .list:hover .list_txt .right .more a span {
    color: #f2201f;
}

.news01 .content .boxlist .bottom .list:hover .list_txt .right .more a img {
    filter: invert(0%);
}

.news01 .content .boxlist .bottom .list:hover {
    border-bottom: 1px solid #f2201f;
}

@media (max-width:1800px) {
    .news01 .content .boxlist .top .right {
        padding: 4% 6%;
    }

    .news01 .content .boxlist .top .right .time h1 {
        font-size: 38px;
    }

    .news01 .content .boxlist .top .right .time {
        margin-bottom: 30px;
    }

    .news01 .content .boxlist .top .right .theme {
        margin-bottom: 40px;
    }

    .news01 .content .boxlist .top .right .theme h1 a {
        line-height: 30px;
    }

    .news01 .content .boxlist .bottom .list .list_txt .right .time h1 {
        font-size: 38px;
    }
}

@media (max-width:1600px) {
    .news01 .content .boxlist .top .right .theme h1 a {
        font-size: 20px;
    }

    .news01 .content .boxlist .top .right .theme h1 {
        padding-bottom: 20px;
        margin-bottom: 15px;
    }

    .news01 .content .boxlist .top .right .time {
        margin-bottom: 20px;
    }

    .news01 .content .boxlist .top .right .theme p {
        color: #999999;
        font-size: 13px;
        line-height: 24px;
        height: 48px;
    }

    .news01 .content .boxlist .top .right .theme {
        margin-bottom: 30px;
    }
}

@media (max-width:1400px) {
    .news01 .content {
        width: 85%;
    }
}

@media (max-width:1200px) {
    .news01 .content {
        width: 95%;
    }

    .news01 {
        padding: 90px 0 150px;
    }

    .news01 .content .boxlist .top {
        margin-bottom: 90px;
    }

    .news01 .content .boxlist .top .right .more {
        width: 120px;
        height: 40px;
    }

    .news01 .content .boxlist .top .right .more a {
        padding: 0 15px;
    }

    .news01 .content .boxlist .top .right .more a span {
        font-size: 12px;
        line-height: 24px;
    }

    .news01 .content .boxlist .top .right {
        padding: 2% 3%;
    }

    .news01 .content .boxlist .bottom .list .list_txt .left .theme h1 a {
        font-size: 18px;
        line-height: 30px;
    }

    .news01 .content .boxlist .bottom .list .list_txt .left .theme p {
        font-size: 13px;
        line-height: 24px;
        height: 48px;
    }

    .news01 .content .boxlist .bottom .list .list_img {
        width: 25%;
    }

    .news01 .content .boxlist .bottom .list .list_txt {
        width: 70%;
    }

    .news01 .content .boxlist .bottom .list .list_txt .left .theme h1 {
        font-weight: lighter;
        margin-bottom: 10px;
    }

    .news01 .content .boxlist .top .right .time h1 {
        font-size: 30px;
    }

    .news01 .content .boxlist .bottom .list .list_txt .right .time h1 {
        font-size: 30px;
    }
}

@media (max-width:1000px) {
    .news01 .content .boxlist .top {
        flex-wrap: wrap;
    }

    .news01 .content .boxlist .top .left {
        width: 100%;
    }

    .news01 .content .boxlist .top .right {
        width: 100%;
    }

    .news01 .content .boxlist .top .right {
        padding: 4% 6%;
    }

    .news01 .content .boxlist .bottom .list .list_img {
        width: 35%;
    }

    .news01 .content .boxlist .bottom .list .list_txt {
        width: 60%;
    }

    .news01 .content .boxlist .bottom .list .list_txt .left {
        width: 60%;
    }
}

@media (max-width:760px) {
    .news01 .content .boxlist .bottom .list .list_img {
        width: 45%;
    }

    .news01 .content .boxlist .bottom .list .list_txt {
        width: 50%;
        flex-wrap: wrap
    }

    .news01 .content .boxlist .bottom .list .list_txt .left {
        width: 100%;
        margin-bottom: 20px;
    }

    .news01 .content .boxlist .bottom .list .list_txt .right {
        width: 100%;
        display: flex;
        justify-content: space-between;
        align-items: center;
    }

    .news01 .content .boxlist .bottom .list .list_txt .right .time {
        margin-bottom: 0;
    }

    .news01 .content .boxlist .bottom .list .list_txt .right .more a img {
        margin-left: 15px;
    }
}

@media (max-width:550px) {
    .news01 .content .boxlist .top .right .more {
        width: 100px;
        height: 34px;
    }

    .news01 .content .boxlist .top .right .more a {
        padding: 0 10px;
    }

    .news01 {
        padding: 60px 0 100px;
    }

    .news01 .content .boxlist .top {
        margin-bottom: 60px;
    }

    .news01 .content .boxlist .top .right .time h1 {
        font-size: 24px;
        margin-bottom: 0px;
    }

    .news01 .content .boxlist .top .right .time p {
        font-size: 12px;
        line-height: 24px;
    }

    .news01 .content .boxlist .top .right .time {
        margin-bottom: 10px;
    }

    .news01 .content .boxlist .top .right .theme {
        margin-bottom: 20px;
    }

    .news01 .content .boxlist .top .right .theme h1 a {
        font-size: 16px;
    }

    .news01 .content .boxlist .top .right .theme h1 {
        padding-bottom: 10px;
        margin-bottom: 10px;
    }

    .news01 .content .boxlist .top .right .theme p {
        font-size: 12px;
    }

    .news01 .content .boxlist .bottom .list .list_txt .left .theme h1 a {
        font-size: 14px;
        line-height: 24px;
    }

    .news01 .content .boxlist .bottom .list .list_txt .left .theme p {
        font-size: 12px;
        line-height: 20px;
        height: 40px;
    }

    .news01 .content .boxlist .bottom .list .list_txt .left .theme h1 {
        margin-bottom: 5px;
    }

    .news01 .content .boxlist .bottom .list .list_txt .left {
        margin-bottom: 10px;
    }

    .news01 .content .boxlist .bottom .list .list_txt .right .time h1 {
        font-size: 24px;
        margin-bottom: 0;
    }

    .news01 .content .boxlist .bottom .list .list_txt .right .time p {
        font-size: 12px;
        line-height: 24px;
    }

    .news01 .content .boxlist .bottom .list .list_txt .right .more a span {
        line-height: 24px;
        font-size: 12px;
    }

    .news01 .content .boxlist .bottom .list .list_txt .right .more a img {
        margin-left: 5px;
    }

    .news01 .content .boxlist .bottom {
        display: flex;
        justify-content: space-between;
        flex-wrap: wrap;
    }

    .news01 .content .boxlist .bottom .list {
        width: 48%;
        flex-wrap: wrap;
    }

    .news01 .content .boxlist .bottom .list .list_img {
        width: 100%;
    }

    .news01 .content .boxlist .bottom .list .list_txt {
        width: 100%;
        padding: 10px;
    }
}

/* 新闻详情 */
.news_detail {
    padding: 100px 0 200px;
}

.news_detail .content {
    width: 75%;
    margin: 0 auto;
}

.news_detail .content .theme {
    border-bottom: 1px solid #e5e5e5;
}

.news_detail .content .theme .title {
    font-size: 28px;
    line-height: 30px;
    text-align: center;
    margin-bottom: 20px;
    color: #000000;
    font-weight: bold;
}

.news_detail .content .theme .time {
    text-align: center;
    font-size: 12px;
    line-height: 30px;
    margin-bottom: 10px;
    color: #666666;
}

.news_detail .content .news_detail_info {
    padding: 80px 0;
    border-bottom: 1px solid #bfbfbf;
}
.news_detail .content .news_detail_info iframe{
    width: 100%;
    height: 600px;
}
.news_detail .content .news_detail_info p {
    font-size: 14px;
    line-height: 24px;
    color: #333333;
    padding: 0 2%;
}

.news_detail .content .news_detail_info p>img {
    max-width: 100%;
}

.news_detail .content .news_detail_other {
    display: flex;
    justify-content: space-between;
    align-items: center;
    margin-top: 40px;
}

.news_detail .content .news_detail_other ul li {
    font-size: 14px;
    line-height: 26px;
    color: #666666;
}

.news_detail .content .news_detail_other ul li a {
    color: #666666;
}

.news_detail .content .news_detail_other ul li:hover {
    color: #0156a7;
}

.news_detail .content .news_detail_other ul li:hover a {
    color: #0156a7;
}

.news_detail .content .news_detail_other .more {
    width: 150px;
    height: 50px;
    border: 1px solid #dddddd;
    border-radius: 25px;
    -webkit-border-radius: 25px;
    -moz-border-radius: 25px;
    -ms-border-radius: 25px;
    -o-border-radius: 25px;
    display: flex;
    justify-content: center;
    align-items: center;
    background-color: #ffffff;
    transition: all .5s linear;
    -webkit-transition: all .5s linear;
    -moz-transition: all .5s linear;
    -ms-transition: all .5s linear;
    -o-transition: all .5s linear;
    background-color: #f2201f;
    box-shadow: 15px 15px 45px rgba(242, 32, 31, .2);
    border: 1px solid transparent;
}

.news_detail .content .news_detail_other .more a {
    width: 100%;
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 0 25px;
}

.news_detail .content .news_detail_other .more a span {
    font-size: 14px;
    line-height: 30px;
    color: #ffffff;
    transition: all .5s linear;
    -webkit-transition: all .5s linear;
    -moz-transition: all .5s linear;
    -ms-transition: all .5s linear;
    -o-transition: all .5s linear;
}

.news_detail .content .news_detail_other .more a img {
    width: 16px;
    height: 10px;
    transition: all .5s linear;
    -webkit-transition: all .5s linear;
    -moz-transition: all .5s linear;
    -ms-transition: all .5s linear;
    -o-transition: all .5s linear;
    filter: brightness(8);
    -webkit-filter: brightness(8);
}

.news_detail .content .news_detail_other .more:hover {
    background-color: #f2201f;
    box-shadow: 15px 15px 45px rgba(242, 32, 31, .2);
    border: 1px solid transparent;
}

.news_detail .content .news_detail_other .more:hover a span {
    color: #ffffff;
}

.news_detail .content .news_detail_other .more:hover a img {
    filter: brightness(8);
    -webkit-filter: brightness(8);
}

@media (max-width:1400px) {
    .news_detail .content {
        width: 85%;
    }
}

@media (max-width:1200px) {
    .news_detail .content {
        width: 95%;
    }

    .news_detail .content .theme .title {
        font-size: 18px;
    }

    .news_detail {
        padding: 90px 0 150px;
    }

    .news_detail .content .news_detail_other .more {
        width: 120px;
        height: 40px;
    }

    .news_detail .content .news_detail_other .more a {
        padding: 0 15px;
    }

    .news_detail .content .news_detail_other .more a span {
        font-size: 12px;
        line-height: 24px;
    }
}
@media (max-width:760px) {
.news_detail .content .news_detail_info iframe{
    width: 100%;
    height: 420px;
}
}
@media (max-width:550px) {
    .news_detail .content .news_detail_other .more {
        width: 100px;
        height: 34px;
    }

    .news_detail .content .news_detail_other .more a {
        padding: 0px 10px;
    }

    .news_detail .content .news_detail_other ul li {
        font-size: 12px;
    }

    .news_detail {
        padding: 60px 0 100px;
    }
.news_detail .content .news_detail_info iframe{
    width: 100%;
    height: 260px;
}
}


/* 产品中心 */
.product01 {
    padding: 130px 0 200px;
}

.product01 .content {
    width: 75%;
    margin: 0 auto;
}

.product01 .content .boxlist {
    width: 100%;
}

.product01 .content .boxlist .list {
    display: flex;
    justify-content: space-between;
    margin-bottom: 80px;
}

.product01 .content .boxlist .list:nth-child(odd) .list_img {
    order: 1;
}

.product01 .content .boxlist .list:nth-child(odd) .list_txt {
    order: 2;
}

.product01 .content .boxlist .list:nth-child(even) .list_img {
    order: 2;
}

.product01 .content .boxlist .list:nth-child(even) .list_txt {
    order: 1;
}

.product01 .content .boxlist .list .list_img {
    width: 50%;
}

.product01 .content .boxlist .list .list_img .swiper {
    width: 100%;
}

.product01 .content .boxlist .list .list_img .swiper .swiper-wrapper {
    width: 100%;
}

.product01 .content .boxlist .list .list_img .swiper .swiper-wrapper .swiper-slide {
    width: 100% !important;
}

.product01 .content .boxlist .list .list_img .swiper .swiper-wrapper .swiper-slide .img {
    width: 100%;
    position: relative;
    padding-bottom: 75%;
    overflow: hidden;
}

.product01 .content .boxlist .list .list_img .swiper .swiper-wrapper .swiper-slide .img a {
    width: 100%;
    height: 100%;
    position: absolute;
    top: 0;
    left: 0;
    display: flex;
    justify-content: center;
    align-items: center;
}

.product01 .content .boxlist .list .list_img .swiper .swiper-wrapper .swiper-slide .img a img {
    width: 100%;
    transition: all .5s cubic-bezier(0.64, 0.02, 0.29, 0.97);
    -webkit-transition: all .5s cubic-bezier(0.64, 0.02, 0.29, 0.97);
    -moz-transition: all .5s cubic-bezier(0.64, 0.02, 0.29, 0.97);
    -ms-transition: all .5s cubic-bezier(0.64, 0.02, 0.29, 0.97);
    -o-transition: all .5s cubic-bezier(0.64, 0.02, 0.29, 0.97);
}

.product01 .content .boxlist .list .list_img .swiper .swiper-wrapper .swiper-slide .img:hover a img {
    transform: scale(1.1);
}

.product01 .content .boxlist .list .list_img .swiper .swiper-button-prev {
    display: none;
}

.product01 .content .boxlist .list .list_img .swiper .swiper-button-next {
    display: none;
}

.product01 .content .boxlist .list .list_img .swiper .swiper-pagination {
    position: absolute;
    width: 100%;
    left: 50%;
    bottom: 4%;
    transform: translateX(-50%);
    -webkit-transform: translateX(-50%);
    -moz-transform: translateX(-50%);
    -ms-transform: translateX(-50%);
    -o-transform: translateX(-50%);
    display: flex;
    justify-content: center;
    align-items: center;
}

.product01 .content .boxlist .list .list_img .swiper .swiper-pagination .swiper-pagination-bullet {
    width: 10px;
    height: 10px;
    background-color: rgba(0, 0, 0, .3);
    opacity: 1;
    margin: 0 10px;
}

.product01 .content .boxlist .list .list_img .swiper .swiper-pagination .swiper-pagination-bullet.swiper-pagination-bullet-active {
    width: 14px;
    height: 14px;
    background-color: transparent;
    border: 3px solid #f2201f;
    border-radius: 100%;
    -webkit-border-radius: 100%;
    -moz-border-radius: 100%;
    -ms-border-radius: 100%;
    -o-border-radius: 100%;
}

.product01 .content .boxlist .list .list_txt {
    width: 50%;
    background-color: #fbfbfb;
    padding: 0 8%;
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: flex-start;
}

.product01 .content .boxlist .list .list_txt .theme {
    margin-bottom: 50px;
}

.product01 .content .boxlist .list .list_txt .theme h1 {
    font-size: 30px;
    line-height: 28px;
    color: #333333;
    font-weight: lighter;
}

.product01 .content .boxlist .list .list_txt ul {
    margin-bottom: 50px;
}

.product01 .content .boxlist .list .list_txt ul li {
    display: flex;
    justify-content: space-between;
    margin-bottom: 20px;
}

.product01 .content .boxlist .list .list_txt ul li span {
    display: block;
    color: #999999;
    line-height: 28px;
    font-size: 15px;
    white-space: nowrap;
}

.product01 .content .boxlist .list .list_txt ul li p {
    color: #666666;
    line-height: 28px;
    font-size: 15px;
    width: 80%;
}

.product01 .content .boxlist .list .list_txt .more {
    width: 150px;
    height: 50px;
    border: 1px solid #dddddd;
    border-radius: 25px;
    -webkit-border-radius: 25px;
    -moz-border-radius: 25px;
    -ms-border-radius: 25px;
    -o-border-radius: 25px;
    display: flex;
    justify-content: center;
    align-items: center;
    background-color: transparent;
    transition: all .5s linear;
    -webkit-transition: all .5s linear;
    -moz-transition: all .5s linear;
    -ms-transition: all .5s linear;
    -o-transition: all .5s linear;
}

.product01 .content .boxlist .list .list_txt .more a {
    width: 100%;
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 0 25px;
}

.product01 .content .boxlist .list .list_txt .more a span {
    font-size: 14px;
    line-height: 30px;
    color: #666666;
    transition: all .5s linear;
    -webkit-transition: all .5s linear;
    -moz-transition: all .5s linear;
    -ms-transition: all .5s linear;
    -o-transition: all .5s linear;
}

.product01 .content .boxlist .list .list_txt .more a img {
    width: 16px;
    height: 10px;
    transition: all .5s linear;
    -webkit-transition: all .5s linear;
    -moz-transition: all .5s linear;
    -ms-transition: all .5s linear;
    -o-transition: all .5s linear;
}

.product01 .content .boxlist .list .list_txt .more:hover {
    background-color: #f2201f;
    box-shadow: 15px 15px 45px rgba(242, 32, 31, .2);
    border: 1px solid transparent;
}

.product01 .content .boxlist .list .list_txt .more:hover a span {
    color: #ffffff;
}

.product01 .content .boxlist .list .list_txt .more:hover a img {
    filter: brightness(8);
    -webkit-filter: brightness(8);
}

.product01 .content .list_other {
    text-align: center;
}

.product01 .content .list_other span {
    color: #999999;
    font-size: 16px;
    line-height: 28px;
    text-align: center;
    position: relative;
    cursor: pointer;
    display: inline-block;
}

.product01 .content .list_other span::after {
    content: "";
    position: absolute;
    bottom: -20px;
    left: 50%;
    right: auto;
    top: auto;
    width: 19px;
    height: 11px;
    background: url(../images/huanjing01_icon01.png) no-repeat;
    background-size: cover;
    transform: translateX(-50%);
    -webkit-transform: translateX(-50%);
    -moz-transform: translateX(-50%);
    -ms-transform: translateX(-50%);
    -o-transform: translateX(-50%);
}

.product01 .content .list_other .opened::after {
    transform: translateX(-50%) rotateZ(180deg);
    -webkit-transform: translateX(-50%) rotateZ(180deg);
    -moz-transform: translateX(-50%) rotateZ(180deg);
    -ms-transform: translateX(-50%) rotateZ(180deg);
    -o-transform: translateX(-50%) rotateZ(180deg);
}

@media (max-width:1400px) {
    .product01 .content {
        width: 85%;
    }
}

@media (max-width:1200px) {
    .product01 .content {
        width: 95%;
    }

    .product01 {
        padding: 90px 0 150px;
    }

    .product01 .content .boxlist .list .list_txt .theme h1 {
        font-size: 24px;
        line-height: 24px;
    }

    .product01 .content .boxlist .list .list_txt .theme {
        margin-bottom: 40px;
    }

    .product01 .content .boxlist .list .list_txt ul {
        margin-bottom: 40px;
    }

    .product01 .content .boxlist .list .list_txt ul li span {
        line-height: 24px;
        font-size: 14px;
    }

    .product01 .content .boxlist .list .list_txt ul li p {
        line-height: 24px;
        font-size: 14px;
    }

    .product01 .content .boxlist .list .list_txt {
        padding: 0 6%;
    }

    .product01 .content .boxlist .list .list_txt ul li {
        margin-bottom: 10px;
    }

    .product01 .content .boxlist .list .list_txt .more {
        width: 120px;
        height: 40px;
    }

    .product01 .content .boxlist .list .list_txt .more a {
        padding: 0 15px;
    }

    .product01 .content .boxlist .list .list_txt .more span {
        font-size: 12px;
        line-height: 24px;
    }

    .product01 .content .boxlist .list {
        margin-bottom: 50px;
    }
}

@media (max-width:1000px) {
    .product01 .content .boxlist .list .list_txt {
        padding: 0 4%;
    }

    .product01 .content .boxlist .list .list_txt .theme {
        margin-bottom: 30px;
    }

    .product01 .content .boxlist .list .list_txt ul {
        margin-bottom: 30px;
    }

}

@media (max-width:800px) {
    .product01 .content .boxlist .list {
        flex-wrap: wrap;
    }

    .product01 .content .boxlist .list .list_img {
        width: 100%;
    }

    .product01 .content .boxlist .list .list_txt {
        width: 100%;
    }

    .product01 .content .boxlist .list .list_txt {
        padding: 6%;
    }

    .product01 .content .boxlist .list .list_img .swiper .swiper-pagination .swiper-pagination-bullet {
        width: 6px;
        height: 6px;
        margin: 0 5px;
    }

    .product01 .content .boxlist .list .list_img .swiper .swiper-pagination .swiper-pagination-bullet.swiper-pagination-bullet-active {
        border: 2px solid #f2201f;
        width: 10px;
        height: 10px;
    }

    .product01 .content .boxlist .list:nth-child(odd) .list_img {
        order: 1;
    }

    .product01 .content .boxlist .list:nth-child(odd) .list_txt {
        order: 2;
    }

    .product01 .content .boxlist .list:nth-child(even) .list_img {
        order: 1;
    }

    .product01 .content .boxlist .list:nth-child(even) .list_txt {
        order: 2;
    }
}

@media (max-width:550px) {
    .product01 .content .boxlist .list .list_txt .theme h1 {
        font-size: 20px;
    }

    .product01 .content .boxlist .list .list_txt ul li span {
        font-size: 12px;
    }

    .product01 .content .boxlist .list .list_txt ul li p {
        font-size: 12px;
    }

    .product01 .content .boxlist .list .list_txt .theme {
        margin-bottom: 20px;
    }

    .product01 .content .boxlist .list .list_txt ul {
        margin-bottom: 20px;
    }

    .product01 .content .boxlist .list .list_txt ul li {
        margin-bottom: 5px;
    }

    .product01 .content .boxlist .list .list_txt .more {
        width: 100px;
        height: 34px;
    }

    .product01 .content .boxlist .list .list_txt .more a {
        padding: 0 10px;
    }

    .product01 .content .boxlist .list .list_txt .more:hover {
        box-shadow: 10px 10px 20px rgba(242, 32, 31, .2);
    }

    .product01 .content .list_other span {
        font-size: 12px;
        line-height: 24px;
    }

    .product01 .content .list_other span::after {
        bottom: -11px;
        width: 12px;
        height: 6px;
    }

    .product01 .content .boxlist .list {
        margin-bottom: 30px;
    }

    .product01 {
        padding: 60px 0 100px;
    }
}

/* 产品详情 */
.product_detail01 {
    padding: 120px 0;
}

.product_detail01 .content {
    width: 75%;
    margin: 0 auto;
}

.product_detail01 .content .boxlist {
    width: 100%;
}

.product_detail01 .content .boxlist .top {
    width: 100%;
    margin-bottom: 40px;
}

.product_detail01 .content .boxlist .top .theme {
    width: 100%;
    border-bottom: 1px solid #dddddd;
}

.product_detail01 .content .boxlist .top .theme h1 {
    font-size: 30px;
    color: #333333;
    line-height: 28px;
    padding-bottom: 30px;
    font-weight: lighter;
    position: relative;
}

.product_detail01 .content .boxlist .top .theme h1::after {
    content: "";
    position: absolute;
    top: auto;
    right: auto;
    left: 0;
    bottom: 0;
    width: 20px;
    height: 1px;
    background-color: #f2201f;
}

.product_detail01 .content .boxlist .bottom {
    display: flex;
    justify-content: space-between;
}

.product_detail01 .content .boxlist .bottom .left {
    width: 58.3%;
}

.product_detail01 .content .boxlist .bottom .left .swiper {
    display: flex;
    justify-content: flex-end;
    position: relative;
}

.product_detail01 .content .boxlist .bottom .left .swiper .gallery-thumbs {
    width: 25%;
    height: 100%;
    overflow: hidden;
    position: absolute;
    left: 0;
    top: 0;
}

.product_detail01 .content .boxlist .bottom .left .swiper .gallery-top {
    width: 75%;
    overflow: hidden;
    position: relative;
}

.product_detail01 .content .boxlist .bottom .left .swiper .swiper-container .swiper-wrapper {
    width: 100%;
}

.product_detail01 .content .boxlist .bottom .left .swiper .swiper-container .swiper-wrapper .swiper-slide {
    width: 100%;
    height: auto !important;
    margin-bottom: 0 !important;
}

.product_detail01 .content .boxlist .bottom .left .swiper .swiper-container .swiper-wrapper .swiper-slide .list {
    width: 100%;
    border: 1px solid #dddddd;
}

.product_detail01 .content .boxlist .bottom .left .swiper .gallery-thumbs .swiper-wrapper .swiper-slide.swiper-slide-thumb-active .list {
    border: 1px solid #666666;
}

.product_detail01 .content .boxlist .bottom .left .swiper .swiper-container .swiper-wrapper .swiper-slide .list .list_img {
    width: 100%;
    position: relative;
    padding-bottom: 100%;
    overflow: hidden;
}

.product_detail01 .content .boxlist .bottom .left .swiper .swiper-container .swiper-wrapper .swiper-slide .list .list_img .img {
    width: 100%;
    height: 100%;
    position: absolute;
    top: 0;
    left: 0;
    display: flex;
    justify-content: center;
    align-items: center;
}

.product_detail01 .content .boxlist .bottom .left .swiper .swiper-container .swiper-wrapper .swiper-slide .list .list_img .img img {
    width: 100%;
}

.product_detail01 .content .boxlist .bottom .left .swiper .gallery-top .swiper-button-next {
    display: none;
}

.product_detail01 .content .boxlist .bottom .left .swiper .gallery-top .swiper-button-prev {
    display: none;
}

.product_detail01 .content .boxlist .bottom .left .swiper .gallery-top .swiper-pagination {
    position: absolute;
    width: 90%;
    left: 50%;
    bottom: 6%;
    transform: translateX(-50%);
    -webkit-transform: translateX(-50%);
    -moz-transform: translateX(-50%);
    -ms-transform: translateX(-50%);
    -o-transform: translateX(-50%);
    display: flex;
    justify-content: flex-end;
    align-items: center;
}

.product_detail01 .content .boxlist .bottom .left .swiper .gallery-top .swiper-pagination .swiper-pagination-bullet {
    width: 10px;
    height: 10px;
    background-color: rgba(0, 0, 0, .3);
    opacity: 1;
    margin: 0 10px;
}

.product_detail01 .content .boxlist .bottom .left .swiper .gallery-top .swiper-pagination .swiper-pagination-bullet.swiper-pagination-bullet-active {
    width: 14px;
    height: 14px;
    background-color: transparent;
    border: 3px solid #f2201f;
    border-radius: 100%;
    -webkit-border-radius: 100%;
    -moz-border-radius: 100%;
    -ms-border-radius: 100%;
    -o-border-radius: 100%;
}

.product_detail01 .content .boxlist .bottom .right {
    width: 41.6%;
    padding: 0 6%;
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: flex-start;
}

.product_detail01 .content .boxlist .bottom .right .theme {
    margin-bottom: 30px;
}

.product_detail01 .content .boxlist .bottom .right .theme h1 {
    font-size: 20px;
    line-height: 28px;
    color: #333333;
    font-weight: normal;
}

.product_detail01 .content .boxlist .bottom .right ul {
    margin-bottom: 100px;
}

.product_detail01 .content .boxlist .bottom .right ul li {
    display: flex;
    justify-content: space-between;
}

.product_detail01 .content .boxlist .bottom .right ul li span {
    display: block;
    color: #999999;
    line-height: 40px;
    font-size: 14px;
    white-space: nowrap;
}

.product_detail01 .content .boxlist .bottom .right ul li p {
    color: #666666;
    line-height: 40px;
    font-size: 14px;
    width: 80%;
}

.product_detail01 .content .boxlist .bottom .right .more {
    width: 150px;
    height: 50px;
    border: 1px solid #dddddd;
    border-radius: 25px;
    -webkit-border-radius: 25px;
    -moz-border-radius: 25px;
    -ms-border-radius: 25px;
    -o-border-radius: 25px;
    display: flex;
    justify-content: center;
    align-items: center;
    background-color: #ffffff;
    transition: all .5s linear;
    -webkit-transition: all .5s linear;
    -moz-transition: all .5s linear;
    -ms-transition: all .5s linear;
    -o-transition: all .5s linear;
}

.product_detail01 .content .boxlist .bottom .right .more a {
    width: 100%;
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 0 25px;
}

.product_detail01 .content .boxlist .bottom .right .more a span {
    font-size: 14px;
    line-height: 30px;
    color: #666666;
    transition: all .5s linear;
    -webkit-transition: all .5s linear;
    -moz-transition: all .5s linear;
    -ms-transition: all .5s linear;
    -o-transition: all .5s linear;
}

.product_detail01 .content .boxlist .bottom .right .more a img {
    width: 16px;
    height: 10px;
    transition: all .5s linear;
    -webkit-transition: all .5s linear;
    -moz-transition: all .5s linear;
    -ms-transition: all .5s linear;
    -o-transition: all .5s linear;
}

.product_detail01 .content .boxlist .bottom .right .more:hover {
    background-color: #f2201f;
    box-shadow: 15px 15px 45px rgba(242, 32, 31, .2);
    border: 1px solid transparent;
}

.product_detail01 .content .boxlist .bottom .right .more:hover a span {
    color: #ffffff;
}

.product_detail01 .content .boxlist .bottom .right .more:hover a img {
    filter: brightness(8);
    -webkit-filter: brightness(8);
}

@media (max-width:1600px) {
    .product_detail01 .content .boxlist .bottom .right .theme {
        margin-bottom: 20px;
    }

    .product_detail01 .content .boxlist .bottom .right ul {
        margin-bottom: 60px;
    }

    .product_detail01 .content .boxlist .bottom .right ul li span {
        line-height: 34px;
    }

    .product_detail01 .content .boxlist .bottom .right ul li p {
        line-height: 34px;
    }

    .product_detail01 .content .boxlist .bottom .right {
        padding: 0 4%;
    }
}

@media (max-width:1400px) {
    .product_detail01 .content {
        width: 85%;
    }
}

@media (max-width:1200px) {
    .product_detail01 .content {
        width: 95%;
    }

    .product_detail01 .content .boxlist .top .theme h1 {
        font-size: 24px;
        padding-bottom: 20px;
    }

    .product_detail01 .content .boxlist .bottom .right .theme h1 {
        font-size: 18px;
    }

    .product_detail01 .content .boxlist .bottom .right ul li span {
        line-height: 30px;
        font-size: 13px;
    }

    .product_detail01 .content .boxlist .bottom .right ul li p {
        line-height: 30px;
        font-size: 13px;
    }

    .product_detail01 .content .boxlist .bottom .right .more {
        width: 120px;
        height: 40px;
    }

    .product_detail01 .content .boxlist .bottom .right .more a {
        padding: 0 15px;
    }

    .product_detail01 .content .boxlist .bottom .right .more a span {
        font-size: 12px;
    }

    .product_detail01 .content .boxlist .bottom .right ul {
        margin-bottom: 40px;
    }

    .product_detail01 {
        padding: 90px 0;
    }


}

@media (max-width:1000px) {
    .product_detail01 .content .boxlist .bottom .left .swiper {
        flex-wrap: wrap;
    }

    .product_detail01 .content .boxlist .bottom .left .swiper .gallery-thumbs {
        width: 100%;
        order: 2;
        position: initial;
    }

    .product_detail01 .content .boxlist .bottom .left .swiper .gallery-top {
        width: 100%;
        order: 1;
    }

    .product_detail01 .content .boxlist .bottom .left .swiper .gallery-top .swiper-pagination {
        display: none;
    }

    .product_detail01 .content .boxlist .bottom .left {
        width: 40%;
    }

    .product_detail01 .content .boxlist .bottom .right {
        width: 60%;
    }
}

@media (max-width:760px) {
    .product_detail01 .content .boxlist .bottom {
        flex-wrap: wrap;
    }

    .product_detail01 .content .boxlist .bottom .left {
        width: 100%;
        margin-bottom: 40px;
    }

    .product_detail01 .content .boxlist .bottom .right {
        width: 100%;
    }
}

@media (max-width:550px) {
    .product_detail01 .content .boxlist .top .theme h1 {
        font-size: 20px;
    }

    .product_detail01 .content .boxlist .bottom .right .theme h1 {
        font-size: 14px;
    }

    .product_detail01 .content .boxlist .bottom .right ul li span {
        font-size: 12px;
    }

    .product_detail01 .content .boxlist .bottom .right ul li p {
        font-size: 12px;
    }

    .product_detail01 .content .boxlist .bottom .right .more {
        width: 100px;
        height: 34px;
    }

    .product_detail01 .content .boxlist .bottom .right .more a {
        padding: 0 10px;
    }

    .product_detail01 .content .boxlist .bottom .left {
        margin-bottom: 20px;
    }

    .product_detail01 {
        padding: 60px 0;
    }

}

.product_detail02 {
    padding-bottom: 120px;
}

.product_detail02 .content {
    width: 75%;
    margin: 0 auto;
}

.product_detail02 .content .boxlist {
    width: 100%;
}

.product_detail02 .content .boxlist .top {
    width: 100%;
    margin-bottom: 40px;
}

.product_detail02 .content .boxlist .top .theme {
    width: 100%;
    border-bottom: 1px solid #dddddd;
}

.product_detail02 .content .boxlist .top .theme h1 {
    font-size: 30px;
    color: #333333;
    line-height: 28px;
    padding-bottom: 30px;
    font-weight: lighter;
    position: relative;
}

.product_detail02 .content .boxlist .top .theme h1::after {
    content: "";
    position: absolute;
    top: auto;
    right: auto;
    left: 0;
    bottom: 0;
    width: 20px;
    height: 1px;
    background-color: #f2201f;
}

.product_detail02 .content .boxlist .bottom {
    width: 100%;
}

.product_detail02 .content .boxlist .bottom .info {
    width: 100%;
}

@media (max-width:1400px) {
    .product_detail02 .content {
        width: 85%;
    }
}

@media (max-width:1200px) {
    .product_detail02 .content {
        width: 95%;
    }

    .product_detail02 .content .boxlist .top .theme h1 {
        font-size: 24px;
        padding-bottom: 20px;
    }

    .product_detail02 {
        padding-bottom: 90px;
    }
}

@media (max-width:550px) {
    .product_detail02 .content .boxlist .top .theme h1 {
        font-size: 20px;
    }

    .product_detail02 {
        padding-bottom: 60px;
    }
}


/* 应用场景 */
.product_detail03 {
    padding-bottom: 200px;
}

.product_detail03 .content {
    width: 83.3%;
    margin: 0 auto;
}

.product_detail03 .content .boxlist {
    width: 100%;
}

.product_detail03 .content .boxlist .top {
    width: 100%;
    margin-bottom: 40px;
    padding: 0 5%;
}

.product_detail03 .content .boxlist .top .theme {
    width: 100%;
    border-bottom: 1px solid #dddddd;
}

.product_detail03 .content .boxlist .top .theme h1 {
    font-size: 30px;
    color: #333333;
    line-height: 28px;
    padding-bottom: 30px;
    font-weight: lighter;
    position: relative;
}

.product_detail03 .content .boxlist .top .theme h1::after {
    content: "";
    position: absolute;
    top: auto;
    right: auto;
    left: 0;
    bottom: 0;
    width: 20px;
    height: 1px;
    background-color: #f2201f;
}

.product_detail03 .content .boxlist .bottom {
    width: 100%;
    padding: 0 5%;
    position: relative;
}

.product_detail03 .content .boxlist .bottom .swiper {
    width: 100%;
    position: initial;
}

.product_detail03 .content .boxlist .bottom .swiper .swiper-wrapper {
    width: 100%;
}

.product_detail03 .content .boxlist .bottom .swiper .swiper-wrapper .swiper-slide {
    width: 100%;
}

.product_detail03 .content .boxlist .bottom .swiper .swiper-wrapper .swiper-slide .list {
    width: 100%;
}

.product_detail03 .content .boxlist .bottom .swiper .swiper-wrapper .swiper-slide .list .list_img {
    width: 100%;
}

.product_detail03 .content .boxlist .bottom .swiper .swiper-wrapper .swiper-slide .list .list_img .img {
    width: 100%;
    padding-bottom: 66.6%;
    overflow: hidden;
    position: relative;
}

.product_detail03 .content .boxlist .bottom .swiper .swiper-wrapper .swiper-slide .list .list_img .img a {
    width: 100%;
    height: 100%;
    position: absolute;
    top: 0;
    left: 0;
    display: flex;
    justify-content: center;
    align-items: center;
}

.product_detail03 .content .boxlist .bottom .swiper .swiper-wrapper .swiper-slide .list .list_img .img a img {
    width: 100%;
    transition: all .5s cubic-bezier(0.64, 0.02, 0.29, 0.97);
    -webkit-transition: all .5s cubic-bezier(0.64, 0.02, 0.29, 0.97);
    -moz-transition: all .5s cubic-bezier(0.64, 0.02, 0.29, 0.97);
    -ms-transition: all .5s cubic-bezier(0.64, 0.02, 0.29, 0.97);
    -o-transition: all .5s cubic-bezier(0.64, 0.02, 0.29, 0.97);
}

.product_detail03 .content .boxlist .bottom .swiper .swiper-wrapper .swiper-slide .list .list_img:hover .img a img {
    transform: scale(1.1);
}

.product_detail03 .content .boxlist .bottom .swiper .swiper-wrapper .swiper-slide .list .list_txt {
    width: 100%;
}

.product_detail03 .content .boxlist .bottom .swiper .swiper-wrapper .swiper-slide .list .list_txt a {
    display: block;
    padding: 0 10px;
}

.product_detail03 .content .boxlist .bottom .swiper .swiper-wrapper .swiper-slide .list .list_txt a p {
    text-align: center;
    font-size: 16px;
    line-height: 40px;
    color: #666666;
}

.product_detail03 .content .boxlist .bottom .swiper .swiper-button-next {
    position: absolute;
    right: 1%;
    top: 50%;
    bottom: auto;
    left: auto;
    width: 30px;
    height: 30px;
    background: url(../images/product_detail03_right_icon01.png) no-repeat center center;
    transform: translateY(-50%);
    transition: all .5s linear;
}

.product_detail03 .content .boxlist .bottom .swiper .swiper-button-next:hover {
    background: url(../images/product_detail03_right_icon02.png) no-repeat center center;
}

.product_detail03 .content .boxlist .bottom .swiper .swiper-button-prev {
    position: absolute;
    right: auto;
    top: 50%;
    bottom: auto;
    left: 1%;
    width: 30px;
    height: 30px;
    background: url(../images/product_detail03_left_icon01.png) no-repeat center center;
    transform: translateY(-50%);
    transition: all .5s linear;
}

.product_detail03 .content .boxlist .bottom .swiper .swiper-button-prev:hover {
    background: url(../images/product_detail03_left_icon02.png) no-repeat center center;
}

.product_detail03 .content .boxlist .bottom .swiper .swiper-pagination {
    display: none;
}

@media (max-width:1400px) {
    .product_detail03 .content .boxlist .top {
        padding: 0;
    }

    .product_detail03 .content {
        width: 85%;
    }
}

@media (max-width:1200px) {
    .product_detail03 .content {
        width: 95%;
    }

    .product_detail03 .content .boxlist .top .theme h1 {
        font-size: 24px;
        padding-bottom: 20px;
    }

    .product_detail03 {
        padding-bottom: 150px;
    }
}

@media (max-width:760px) {
    .product_detail03 .content .boxlist .bottom {
        padding: 0;
    }

    .product_detail03 .content .boxlist .bottom .swiper .swiper-button-next {
        display: none;
    }

    .product_detail03 .content .boxlist .bottom .swiper .swiper-button-prev {
        display: none;
    }
}

@media (max-width:550px) {
    .product_detail03 .content .boxlist .top .theme h1 {
        font-size: 20px;
    }

    .product_detail02 {
        padding-bottom: 100px;
    }

    .product_detail03 .content .boxlist .bottom .swiper .swiper-wrapper .swiper-slide .list .list_txt a p {
        font-size: 12px;
        line-height: 30px;
    }

    .product_detail03 {
        padding-bottom: 100px;
    }
}

/* 售后服务 */
/* 让我们做得更好 */
.service_aftersale01 {
    width: 100%;
}
.service_aftersale01 .boxlist {
    width: 100%;
}

.service_aftersale01 .boxlist .top {
    width: 100%;
    margin-bottom: 50px;
}

.service_aftersale01 .boxlist .top .theme {
    text-align: center;
    width: 100%;
}

.service_aftersale01 .boxlist .top .theme h3 {
    color: #666666;
    font-size: 26px;
    line-height: 30px;
    font-weight: normal;
    margin-bottom: 20px;
}

.service_aftersale01 .boxlist .top .theme h1 {
    color: #1563c4;
    font-size: 40px;
    line-height: 30px;
    font-weight: normal;
    margin-bottom: 20px;
}

.service_aftersale01 .boxlist .top .theme p {
    color: #999999;
    font-size: 14px;
    line-height: 30px;
}

.service_aftersale01 .boxlist .bottom {
    width: 100%;
}

.service_aftersale01 .boxlist .bottom ul {
    display: flex;
    justify-content: space-around;
}

.service_aftersale01 .boxlist .bottom ul li {
    width: 22%;
    text-align: center;
}

.service_aftersale01 .boxlist .bottom ul li .list_img {
    margin-bottom: 30px;
}

.service_aftersale01 .boxlist .bottom ul li .list_img .img {
    width: 35%;
    margin: 0 auto;
    margin-bottom: 10px;
}

.service_aftersale01 .boxlist .bottom ul li .list_img .img img {
    width: 100%;
}

.service_aftersale01 .boxlist .bottom ul li .list_img p {
    font-size: 22px;
    line-height: 30px;
    color: #333333;
}

.service_aftersale01 .boxlist .bottom ul li .list_txt {
    border-top: 1px solid #dddddd;
    border-bottom: 1px solid #dddddd;
    padding: 15px 10px;
}

.service_aftersale01 .boxlist .bottom ul li .list_txt p {
    font-size: 20px;
    line-height: 30px;
    color: #666666;
}

@media (max-width:1200px) {
    .service_aftersale01 .boxlist .top .theme h3 {
        font-size: 22px;
        margin-bottom: 10px;
    }

    .service_aftersale01 .boxlist .top .theme h1 {
        font-size: 30px;
        margin-bottom: 10px;
    }

    .service_aftersale01 .boxlist .top .theme p {
        font-size: 13px;
        line-height: 24px;
    }

    .service_aftersale01 .boxlist .bottom ul li .list_img p {
        font-size: 18px;
    }

    .service_aftersale01 .boxlist .bottom ul li .list_txt p {
        font-size: 16px;
    }

    .service_aftersale01 .boxlist .bottom ul li {
        width: 28%;
    }
}

@media (max-width:760px) {
    .service_aftersale01 .boxlist .bottom ul {
        flex-wrap: wrap;
        justify-content: space-between;
    }

    .service_aftersale01 .boxlist .bottom ul li {
        width: 45%;
        margin-bottom: 40px;
    }
}

@media (max-width:550px) {
    .service_aftersale01 .boxlist .top .theme h3 {
        font-size: 16px;
        margin-bottom: 0px;
    }

    .service_aftersale01 .boxlist .top .theme h1 {
        font-size: 20px;
        margin-bottom: 0px;
    }

    .service_aftersale01 .boxlist .top .theme p {
        font-size: 12px;
    }

    .service_aftersale01 .boxlist .bottom ul li {
        width: 80%;
        margin: 0 auto;
        margin-bottom: 40px;
    }

    .service_aftersale01 .boxlist .bottom ul li .list_img p {
        font-size: 14px;
        line-height: 24px;
    }

    .service_aftersale01 .boxlist .bottom ul li .list_txt p {
        font-size: 12px;
        line-height: 24px;
    }

    .service_aftersale01 .boxlist .top {
        margin-bottom: 30px;
    }

    .service_aftersale01 .boxlist .bottom ul li .list_img {
        margin-bottom: 10px;
    }

    .service_aftersale01 .boxlist .bottom ul li .list_txt {
        padding: 10px;
    }
}

/* 极致的服务 */
.service_aftersale02 {
    margin-top: 150px;
}

.service_aftersale02 .boxlist {
    width: 100%;
}

.service_aftersale02 .boxlist .top {
    width: 100%;
    margin-bottom: 50px;
}

.service_aftersale02 .boxlist .top .theme {
    text-align: center;
    width: 100%;
}

.service_aftersale02 .boxlist .top .theme h3 {
    color: #666666;
    font-size: 26px;
    line-height: 30px;
    font-weight: normal;
    margin-bottom: 20px;
}

.service_aftersale02 .boxlist .top .theme h1 {
    color: #1563c4;
    font-size: 40px;
    line-height: 30px;
    font-weight: normal;
    margin-bottom: 20px;
}

.service_aftersale02 .boxlist .top .theme p {
    color: #999999;
    font-size: 14px;
    line-height: 30px;
}

.service_aftersale02 .boxlist .bottom {
    width: 100%;
}

.service_aftersale02 .boxlist .bottom ul {
    display: flex;
    justify-content: space-around;
}

.service_aftersale02 .boxlist .bottom ul li {
    width: 22%;
    text-align: center;
}

.service_aftersale02 .boxlist .bottom ul li .list_img {
    margin-bottom: 15px;
}

.service_aftersale02 .boxlist .bottom ul li .list_img .img {
    width: 50%;
    margin: 0 auto;
    margin-bottom: 25px;
}

.service_aftersale02 .boxlist .bottom ul li .list_img .img img {
    width: 100%;
}

.service_aftersale02 .boxlist .bottom ul li .list_img p {
    font-size: 26px;
    line-height: 30px;
    color: #333333;
    font-weight: 500;
}

.service_aftersale02 .boxlist .bottom ul li .list_txt {
    width: 100%;
}

.service_aftersale02 .boxlist .bottom ul li .list_txt p {
    font-size: 18px;
    line-height: 30px;
    color: #666666;
}

@media (max-width:1200px) {
    .service_aftersale02 .boxlist .top .theme h3 {
        font-size: 22px;
        margin-bottom: 10px;
    }

    .service_aftersale02 .boxlist .top .theme h1 {
        font-size: 30px;
        margin-bottom: 10px;
    }

    .service_aftersale02 .boxlist .top .theme p {
        font-size: 13px;
        line-height: 24px;
    }

    .service_aftersale02 {
        margin-top: 100px;
    }

    .service_aftersale02 .boxlist .bottom ul li .list_img p {
        font-size: 22px;
    }

    .service_aftersale02 .boxlist .bottom ul li .list_txt p {
        font-size: 15px;
    }

    .service_aftersale02 .boxlist .bottom ul li {
        width: 28%;
    }
}

@media (max-width:760px) {
    .service_aftersale02 .boxlist .bottom ul {
        flex-wrap: wrap;
        justify-content: space-between;
    }

    .service_aftersale02 .boxlist .bottom ul li {
        width: 45%;
        margin-bottom: 40px;
    }
}

@media (max-width:550px) {
    .service_aftersale02 .boxlist .top .theme h3 {
        font-size: 16px;
        margin-bottom: 0px;
    }

    .service_aftersale02 .boxlist .top .theme h1 {
        font-size: 20px;
        margin-bottom: 0px;
    }

    .service_aftersale02 .boxlist .top .theme p {
        font-size: 12px;
    }

    .service_aftersale02 {
        margin-top: 60px;
    }

    .service_aftersale02 .boxlist .bottom ul li {
        width: 80%;
        margin: 0 auto;
        margin-bottom: 40px;
    }

    .service_aftersale02 .boxlist .bottom ul li .list_img p {
        font-size: 15px;
        line-height: 24px;
    }

    .service_aftersale02 .boxlist .bottom ul li .list_txt p {
        font-size: 12px;
        line-height: 24px;
    }

    .service_aftersale02 .boxlist .top {
        margin-bottom: 30px;
    }

    .service_aftersale02 .boxlist .bottom ul li .list_img {
        margin-bottom: 10px;
    }

    .service_aftersale02 .boxlist .bottom ul li .list_img .img {
        margin-bottom: 15px;
    }
}

/* 专业证书，购买放心 */
.service_aftersale03 {
    margin-top: 150px;
}

.service_aftersale03 .boxlist {
    width: 100%;
}

.service_aftersale03 .boxlist .top {
    width: 100%;
    margin-bottom: 50px;
}

.service_aftersale03 .boxlist .top .theme {
    text-align: center;
    width: 100%;
}

.service_aftersale03 .boxlist .top .theme h3 {
    color: #666666;
    font-size: 26px;
    line-height: 30px;
    font-weight: normal;
    margin-bottom: 20px;
}

.service_aftersale03 .boxlist .top .theme h1 {
    color: #1563c4;
    font-size: 40px;
    line-height: 30px;
    font-weight: normal;
    margin-bottom: 20px;
}

.service_aftersale03 .boxlist .top .theme p {
    color: #999999;
    font-size: 14px;
    line-height: 30px;
}

.service_aftersale03 .boxlist .bottom {
    width: 100%;
}

.service_aftersale03 .boxlist .bottom img {
    width: 100%;
}

.service_aftersale03 .boxlist .bottom .img {
    width: 100%;
}

.service_aftersale03 .boxlist .bottom .img img {
    width: 100%;
}
@media (max-width:1200px) {
    .service_aftersale03 .boxlist .top .theme h3 {
        font-size: 22px;
        margin-bottom: 10px;
    }

    .service_aftersale03 .boxlist .top .theme h1 {
        font-size: 30px;
        margin-bottom: 10px;
    }

    .service_aftersale03 .boxlist .top .theme p {
        font-size: 13px;
        line-height: 24px;
    }

    .service_aftersale03 {
        margin-top: 100px;
    }
}

@media (max-width:550px) {
    .service_aftersale03 .boxlist .top .theme h3 {
        font-size: 16px;
        margin-bottom: 0px;
    }

    .service_aftersale03 .boxlist .top .theme h1 {
        font-size: 20px;
        margin-bottom: 0px;
    }

    .service_aftersale03 .boxlist .top .theme p {
        font-size: 12px;
    }

    .service_aftersale03 {
        margin-top: 60px;
    }
}

/* 专业证书，购买放心 */
.service_aftersale04 {
    margin-top: 120px;
}

.service_aftersale04 .boxlist {
    width: 100%;
}

.service_aftersale04 .boxlist .top {
    width: 100%;
    margin-bottom: 50px;
}

.service_aftersale04 .boxlist .top .theme {
    text-align: center;
    width: 100%;
}

.service_aftersale04 .boxlist .top .theme h3 {
    color: #666666;
    font-size: 26px;
    line-height: 30px;
    font-weight: normal;
    margin-bottom: 20px;
}

.service_aftersale04 .boxlist .top .theme h1 {
    color: #1563c4;
    font-size: 40px;
    line-height: 30px;
    font-weight: normal;
    margin-bottom: 20px;
}

.service_aftersale04 .boxlist .top .theme p {
    color: #999999;
    font-size: 14px;
    line-height: 30px;
}

.service_aftersale04 .boxlist .bottom {
    width: 100%;
}

.service_aftersale04 .boxlist .bottom .theme {
    margin-bottom: 40px;
    text-align: center;
}

.service_aftersale04 .boxlist .bottom .theme h1 {
    color: #f2201f;
    font-size: 30px;
    line-height: 36px;
    font-weight: bold;
}

.service_aftersale04 .boxlist .bottom .theme p {
    color: #333333;
    font-size: 18px;
    line-height: 30px;
    margin-bottom: 10px;
}

.service_aftersale04 .boxlist .bottom ul {
    display: flex;
    justify-content: space-between;
}

.service_aftersale04 .boxlist .bottom ul li {
    padding: 4% 6% 4% 4%;
    width: 31.25%;
    background-color: #f6f6f6;
}

.service_aftersale04 .boxlist .bottom ul li h1 {
    font-size: 20px;
    line-height: 28px;
    font-weight: normal;
    color: #333333;
    margin-bottom: 30px;
}

.service_aftersale04 .boxlist .bottom ul li .info {
    width: 100%;
}

.service_aftersale04 .boxlist .bottom ul li .info span {
    font-size: 14px;
    color: #999999;
    line-height: 28px;
}

.service_aftersale04 .boxlist .bottom ul li .info p {
    font-size: 15px;
    color: #333333;
    line-height: 28px;
}

@media (max-width:1200px) {
    .service_aftersale04 .boxlist .top .theme h3 {
        font-size: 22px;
        margin-bottom: 10px;
    }

    .service_aftersale04 .boxlist .top .theme h1 {
        font-size: 30px;
        margin-bottom: 10px;
    }

    .service_aftersale04 .boxlist .top .theme p {
        font-size: 13px;
        line-height: 24px;
    }

    .service_aftersale04 {
        margin-top: 90px;
    }

    .service_aftersale04 .boxlist .bottom .theme p {
        font-size: 16px;
        line-height: 24px;
    }

    .service_aftersale04 .boxlist .bottom .theme h1 {
        font-size: 26px;
        line-height: 30px;
    }

    .service_aftersale04 .boxlist .bottom ul li h1 {
        font-size: 18px;
        line-height: 24px;
        margin-bottom: 20px;
    }

    .service_aftersale04 .boxlist .bottom ul li {
        padding: 2% 4% 2% 2%;
    }

    .service_aftersale04 .boxlist .bottom ul li .info span {
        font-size: 13px;
        line-height: 24px;
    }

    .service_aftersale04 .boxlist .bottom ul li .info p {
        font-size: 14px;
        line-height: 24px;
    }
}

@media (max-width:760px) {
    .service_aftersale04 .boxlist .bottom ul {
        flex-wrap: wrap;
    }

    .service_aftersale04 .boxlist .bottom ul li {
        width: 48%;
        padding: 3% 6% 3% 3%;
        margin-bottom: 4%;
    }
}

@media (max-width:550px) {
    .service_aftersale04 .boxlist .top .theme h3 {
        font-size: 16px;
        margin-bottom: 0px;
    }

    .service_aftersale04 .boxlist .top .theme h1 {
        font-size: 20px;
        margin-bottom: 0px;
    }

    .service_aftersale04 .boxlist .top .theme p {
        font-size: 12px;
    }

    .service_aftersale04 {
        margin-top: 60px;
    }

    .service_aftersale04 .boxlist .bottom ul li {
        width: 100%;
        padding: 3% 6% 3% 3%;
        margin-bottom: 4%;
    }

    .service_aftersale04 .boxlist .bottom ul li h1 {
        font-size: 15px;
        margin-bottom: 10px;
    }

    .service_aftersale04 .boxlist .bottom ul li .info span {
        font-size: 12px;
    }

    .service_aftersale04 .boxlist .bottom ul li .info p {
        font-size: 13px;
    }

    .service_aftersale04 .boxlist .top {
        margin-bottom: 30px;
    }
}

/* 操作指南 */
.service_download01 {
    padding: 140px 0 200px;
}

.service_download01 .content {
    width: 66.6%;
    margin: 0 auto;
}

.service_download01 .content .boxlist {
    width: 100%;
}

.service_download01 .content .boxlist ul {
    width: 100%;
    margin-bottom: 3%;
}

.service_download01 .content .boxlist ul li {
    width: 100%;
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 2%;
    border-bottom: 1px solid #dddddd;
    transition: all .5s linear;
    -webkit-transition: all .5s linear;
    -moz-transition: all .5s linear;
    -ms-transition: all .5s linear;
    -o-transition: all .5s linear;
}

.service_download01 .content .boxlist ul li .theme {}

.service_download01 .content .boxlist ul li .theme h1 {
    color: #666666;
    font-size: 20px;
    line-height: 28px;
    font-weight: normal;
    margin-bottom: 10px;
}

.service_download01 .content .boxlist ul li .theme span {
    color: #999999;
    font-size: 14px;
    line-height: 28px;
}

.service_download01 .content .boxlist ul li .more {
    width: 150px;
    height: 50px;
    border: 1px solid #dddddd;
    border-radius: 25px;
    -webkit-border-radius: 25px;
    -moz-border-radius: 25px;
    -ms-border-radius: 25px;
    -o-border-radius: 25px;
    display: flex;
    justify-content: center;
    align-items: center;
    background-color: #ffffff;
    transition: all .5s linear;
    -webkit-transition: all .5s linear;
    -moz-transition: all .5s linear;
    -ms-transition: all .5s linear;
    -o-transition: all .5s linear;
}

.service_download01 .content .boxlist ul li .more a {
    width: 100%;
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 0 25px;
}

.service_download01 .content .boxlist ul li .more a span {
    font-size: 14px;
    line-height: 30px;
    color: #666666;
    transition: all .5s linear;
    -webkit-transition: all .5s linear;
    -moz-transition: all .5s linear;
    -ms-transition: all .5s linear;
    -o-transition: all .5s linear;
}

.service_download01 .content .boxlist ul li .more a img {
    width: 16px;
    height: 16px;
    transition: all .5s linear;
    -webkit-transition: all .5s linear;
    -moz-transition: all .5s linear;
    -ms-transition: all .5s linear;
    -o-transition: all .5s linear;
}

.service_download01 .content .boxlist ul li:hover .more {
    background-color: #f2201f;
    box-shadow: 15px 15px 45px rgba(242, 32, 31, .2);
    border: 1px solid transparent;
}

.service_download01 .content .boxlist ul li:hover .more a span {
    color: #ffffff;
}

.service_download01 .content .boxlist ul li:hover .more a img {
    filter: brightness(8);
    -webkit-filter: brightness(8);
}

.service_download01 .content .boxlist ul li:hover {
    border-bottom: 1px solid #f2201f;
}

@media (max-width:1600px) {
    .service_download01 .content {
        width: 75%;
    }
}

@media (max-width:1400px) {
    .service_download01 .content {
        width: 85%;
    }
}

@media (max-width:1200px) {
    .service_download01 .content {
        width: 95%;
    }

    .service_download01 .content .boxlist ul li .more {
        width: 120px;
        height: 40px;
    }

    .service_download01 .content .boxlist ul li .more a {
        padding: 0 15px;
    }

    .service_download01 .content .boxlist ul li .more a span {
        font-size: 12px;
        line-height: 24px;
    }

    .service_download01 .content .boxlist ul li .theme h1 {
        font-size: 16px;
        line-height: 24px;
    }

    .service_download01 .content .boxlist ul li .theme span {
        font-size: 13px;
        line-height: 24px;
    }

    .service_download01 {
        padding: 100px 0 150px;
    }
}

@media (max-width:550px) {
    .service_download01 .content .boxlist ul li .more {
        width: 100px;
        height: 34px;
    }

    .service_download01 .content .boxlist ul li .more a {
        padding: 0 10px;
    }

    .service_download01 .content .boxlist ul li .theme h1 {
        font-size: 14px;
        margin-bottom: 0;
    }

    .service_download01 .content .boxlist ul li .theme span {
        font-size: 12px;
    }

    .service_download01 {
        padding: 60px 0 100px;
    }
}

/* 解决方案 */
.solution01 {
    padding: 140px 0 200px;
}

.solution01 .content {
    width: 75%;
    margin: 0 auto;
}

.solution01 .content .boxlist {
    width: 100%;
    display: flex;
    flex-wrap: wrap;
}

.solution01 .content .boxlist .list {
    width: 31.25%;
    margin-right: 3.125%;
    margin-bottom: 3.125%;
}

.solution01 .content .boxlist .list:nth-child(3n) {
    margin-right: 0;
}

.solution01 .content .boxlist .list .list_img {
    width: 100%;
}

.solution01 .content .boxlist .list .list_img .img {
    width: 100%;
    padding-bottom: 66.6%;
    overflow: hidden;
    position: relative;
}

.solution01 .content .boxlist .list .list_img .img a {
    width: 100%;
    height: 100%;
    position: absolute;
    top: 0;
    left: 0;
    display: flex;
    justify-content: center;
    align-items: center;
}

.solution01 .content .boxlist .list .list_img .img a img {
    width: 100%;
    transition: all .5s cubic-bezier(0.64, 0.02, 0.29, 0.97);
    -webkit-transition: all .5s cubic-bezier(0.64, 0.02, 0.29, 0.97);
    -moz-transition: all .5s cubic-bezier(0.64, 0.02, 0.29, 0.97);
    -ms-transition: all .5s cubic-bezier(0.64, 0.02, 0.29, 0.97);
    -o-transition: all .5s cubic-bezier(0.64, 0.02, 0.29, 0.97);
}

.solution01 .content .boxlist .list .list_img:hover .img a img {
    transform: scale(1.1);
}

.solution01 .content .boxlist .list .list_txt {
    padding: 6%;
    background-color: #f7f7f7;
}

.solution01 .content .boxlist .list .list_txt h1 {
    font-weight: lighter;
    margin-bottom: 20px;
    padding-bottom: 20px;
    position: relative;
}

.solution01 .content .boxlist .list .list_txt h1::after {
    content: "";
    position: absolute;
    left: 0;
    bottom: 0;
    width: 20px;
    height: 1px;
    background-color: #cccccc;
    transition: all .5s linear;
}

.solution01 .content .boxlist .list:hover .list_txt h1::after {
    background-color: #f2201f;
}

.solution01 .content .boxlist .list .list_txt h1 a {
    color: #222222;
    line-height: 28px;
    font-size: 20px;
    text-overflow: ellipsis;
    overflow: hidden;
    display: -webkit-box;
    -webkit-box-orient: vertical;
    -webkit-line-clamp: 1;
}

.solution01 .content .boxlist .list .list_txt p {
    color: #999999;
    line-height: 28px;
    height: 56px;
    font-size: 14px;
    text-overflow: ellipsis;
    overflow: hidden;
    display: -webkit-box;
    -webkit-box-orient: vertical;
    -webkit-line-clamp: 2;
}

@media (max-width:1400px) {
    .solution01 .content {
        width: 85%;
    }
}

@media (max-width:1200px) {
    .solution01 .content {
        width: 95%;
    }

    .solution01 {
        padding: 100px 0 150px;
    }

    .solution01 .content .boxlist .list .list_txt h1 a {
        font-size: 16px;
        line-height: 24px;
    }

    .solution01 .content .boxlist .list .list_txt h1 {
        margin-bottom: 15px;
        padding-bottom: 15px;
    }

    .solution01 .content .boxlist .list .list_txt p {
        line-height: 24px;
        height: 48px;
        font-size: 13px;
    }
}

@media (max-width:760px) {
    .solution01 .content .boxlist {
        justify-content: space-between;
    }

    .solution01 .content .boxlist .list {
        width: 48%;
        margin-bottom: 4%;
        margin-right: 0;
    }
}

@media (max-width:550px) {
    .solution01 .content .boxlist .list .list_txt h1 a {
        font-size: 14px;
    }

    .solution01 .content .boxlist .list .list_txt h1 {
        margin-bottom: 10px;
        padding-bottom: 10px;
    }

    .solution01 .content .boxlist .list .list_txt p {
        line-height: 20px;
        height: 40px;
        font-size: 12px;
    }

    .solution01 {
        padding: 60px 0 100px;
    }
}


/* 解决方案详情 */
.solution_detail {
    padding: 140px 0 200px;
}

.solution_detail .content {
    width: 75%;
    margin: 0 auto;
}

.solution_detail .content .theme {
    border-bottom: 1px solid #e5e5e5;
}

.solution_detail .content .theme .title {
    font-size: 22px;
    line-height: 30px;
    text-align: center;
    margin-bottom: 20px;
    color: #000000;
    font-weight: lighter;
}

.solution_detail .content .theme .time {
    text-align: center;
    font-size: 12px;
    line-height: 30px;
    margin-bottom: 10px;
    color: #666666;
}

.solution_detail .content .solution_detail_info {
    padding: 80px 0;
    border-bottom: 1px solid #bfbfbf;
}

.solution_detail .content .solution_detail_info p {
    font-size: 14px;
    line-height: 24px;
    color: #333333;
    padding: 0 2%;
}

.solution_detail .content .solution_detail_info p>img {
    max-width: 100%;
}

.solution_detail .content .solution_detail_other {
    display: flex;
    justify-content: space-between;
    align-items: center;
    margin-top: 40px;
}

.solution_detail .content .solution_detail_other ul li {
    font-size: 14px;
    line-height: 26px;
    color: #666666;
}

.solution_detail .content .solution_detail_other ul li a {
    color: #666666;
}

.solution_detail .content .solution_detail_other ul li:hover {
    color: #0156a7;
}

.solution_detail .content .solution_detail_other ul li:hover a {
    color: #0156a7;
}

.solution_detail .content .solution_detail_other .more {
    width: 150px;
    height: 50px;
    border: 1px solid #dddddd;
    border-radius: 25px;
    -webkit-border-radius: 25px;
    -moz-border-radius: 25px;
    -ms-border-radius: 25px;
    -o-border-radius: 25px;
    display: flex;
    justify-content: center;
    align-items: center;
    background-color: #ffffff;
    transition: all .5s linear;
    -webkit-transition: all .5s linear;
    -moz-transition: all .5s linear;
    -ms-transition: all .5s linear;
    -o-transition: all .5s linear;
    background-color: #f2201f;
    box-shadow: 15px 15px 45px rgba(242, 32, 31, .2);
    border: 1px solid transparent;
}

.solution_detail .content .solution_detail_other .more a {
    width: 100%;
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 0 25px;
}

.solution_detail .content .solution_detail_other .more a span {
    font-size: 14px;
    line-height: 30px;
    color: #ffffff;
    transition: all .5s linear;
    -webkit-transition: all .5s linear;
    -moz-transition: all .5s linear;
    -ms-transition: all .5s linear;
    -o-transition: all .5s linear;
}

.solution_detail .content .solution_detail_other .more a img {
    width: 16px;
    height: 10px;
    transition: all .5s linear;
    -webkit-transition: all .5s linear;
    -moz-transition: all .5s linear;
    -ms-transition: all .5s linear;
    -o-transition: all .5s linear;
    filter: brightness(8);
    -webkit-filter: brightness(8);
}

.solution_detail .content .solution_detail_other .more:hover {
    background-color: #f2201f;
    box-shadow: 15px 15px 45px rgba(242, 32, 31, .2);
    border: 1px solid transparent;
}

.solution_detail .content .solution_detail_other .more:hover a span {
    color: #ffffff;
}

.solution_detail .content .solution_detail_other .more:hover a img {
    filter: brightness(8);
    -webkit-filter: brightness(8);
}

@media (max-width:1400px) {
    .solution_detail .content {
        width: 85%;
    }
}

@media (max-width:1200px) {
    .solution_detail .content {
        width: 95%;
    }

    .solution_detail .content .theme .title {
        font-size: 18px;
    }

    .solution_detail {
        padding: 90px 0 150px;
    }

    .solution_detail .content .solution_detail_other .more {
        width: 120px;
        height: 40px;
    }

    .solution_detail .content .solution_detail_other .more a {
        padding: 0 15px;
    }

    .solution_detail .content .solution_detail_other .more a span {
        font-size: 12px;
        line-height: 24px;
    }
}

@media (max-width:550px) {
    .solution_detail .content .solution_detail_other .more {
        width: 100px;
        height: 34px;
    }

    .solution_detail .content .solution_detail_other .more a {
        padding: 0px 10px;
    }

    .solution_detail .content .solution_detail_other ul li {
        font-size: 12px;
    }

    .solution_detail {
        padding: 60px 0 100px;
    }
}

/* 产品演示 */
.service_video01 {
    padding: 140px 0 200px;
}

.service_video01 .content {
    width: 75%;
    margin: 0 auto;
}

.service_video01 .content .boxlist {
    width: 100%;
    display: flex;
    flex-wrap: wrap;
}

.service_video01 .content .boxlist .list {
    width: 31.25%;
    margin-right: 3.125%;
    margin-bottom: 3.125%;
}

.service_video01 .content .boxlist .list:nth-child(3n) {
    margin-right: 0;
}

.service_video01 .content .boxlist .list .list_img {
    width: 100%;
    position: relative;
    padding-bottom: 66.6%;
    overflow: hidden;
}

.service_video01 .content .boxlist .list .list_img .img {
    width: 100%;
    height: 100%;
    position: absolute;
    top: 0;
    left: 0;
    display: flex;
    justify-content: center;
    align-items: center;
}

.service_video01 .content .boxlist .list .list_img .img img {
    width: 100%;
}

.service_video01 .content .boxlist .list .list_img .play {
    opacity: 0;
    position: absolute;
    top: 50%;
    left: 50%;
    width: 12%;
    transform: translate(-50%, -50%);
    -webkit-transform: translate(-50%, -50%);
    -moz-transform: translate(-50%, -50%);
    -ms-transform: translate(-50%, -50%);
    -o-transform: translate(-50%, -50%);
    transition: all .5s linear;
    -webkit-transition: all .5s linear;
    -moz-transition: all .5s linear;
    -ms-transition: all .5s linear;
    -o-transition: all .5s linear;
}

.service_video01 .content .boxlist .list .list_img .play img {
    width: 100%;
}

.service_video01 .content .boxlist .list .list_img .mask {
    opacity: 0;
    width: 100%;
    height: 100%;
    position: absolute;
    top: 0;
    left: 0;
    background-color: rgba(255, 255, 255, .3);
    transition: all .5s linear;
    -webkit-transition: all .5s linear;
    -moz-transition: all .5s linear;
    -ms-transition: all .5s linear;
    -o-transition: all .5s linear;
}

.service_video01 .content .boxlist .list .list_txt {
    display: flex;
    justify-content: flex-start;
    align-items: center;
    padding: 20px 0px;
    position: relative;
}

.service_video01 .content .boxlist .list .list_txt::after {
    content: "";
    position: absolute;
    left: 0;
    bottom: 0;
    width: 20px;
    height: 1px;
    background-color: #cccccc;
    transition: all .5s linear;
}

.service_video01 .content .boxlist .list:hover .list_txt::after {
    background-color: #f2201f;
}

.service_video01 .content .boxlist .list .list_txt a {
    color: #333333;
    font-size: 20px;
    line-height: 28px;
    margin-bottom: 0;
    transition: all .5s linear;
    -webkit-transition: all .5s linear;
    -moz-transition: all .5s linear;
    -ms-transition: all .5s linear;
    -o-transition: all .5s linear;
    text-overflow: ellipsis;
    overflow: hidden;
    display: -webkit-box;
    -webkit-box-orient: vertical;
    -webkit-line-clamp: 1;

}
.service_video01 .content .boxlist .list:hover .list_img .play {
    opacity: 1;
}

.service_video01 .content .boxlist .list:hover .list_img .mask {
    opacity: 1;
}

@media(max-width:1400px) {
    .service_video01 .content {
        width: 85%;
    }
}

@media (max-width:1200px) {
    .service_video01 .content {
        width: 95%;
    }

    .service_video01 .content .boxlist .list .list_txt a {
        font-size: 16px;
    }

    .service_video01 .content .boxlist .list .list_txt {
        padding: 15px 0;
    }

    .service_video01 {
        padding: 100px 0 150px;
    }
}

@media (max-width: 760px) {
    .service_video01 .content .boxlist {
        justify-content: space-between;
    }

    .service_video01 .content .boxlist .list {
        width: 48%;
        margin-right: 0;
        margin-bottom: 4%;
    }
}

@media (max-width: 550px) {
    .service_video01 .content .boxlist .list .list_txt a {
        font-size: 12px;
    }

    .service_video01 .content .boxlist .list .list_txt {
        padding: 10px 0;
    }

    .service_video01 {
        padding: 60px 0 100px;
    }
}

/* info单页 */
.info_main {
    padding: 140px 0 200px;
}

.info_main .content {
    width: 66.6%;
    margin: 0 auto;
}

.info_main .content .info_edit p>img {
    max-width: 100%;
}

@media (max-width:1600px) {
    .info_main .content {
        width: 75%;
    }
}

@media (max-width:1400px) {
    .info_main .content {
        width: 85%;
    }
}

@media (max-width:1200px) {
    .info_main .content {
        width: 95%;
    }

    .info_main {
        padding: 100px 0 150px;
    }
}

@media (max-width:550px) {
    .info_main {
        padding: 60px 0 100px;
    }

}

p>img {
    max-width: 100%;
}

p>a>img {
    max-width: 100%;
}

/* 产品演示详情 */
.service_video_detail {
    padding: 140px 0 200px;
}

.service_video_detail .content {
    width: 75%;
    margin: 0 auto;
}

.service_video_detail .content .theme {
    border-bottom: 1px solid #e5e5e5;
}

.service_video_detail .content .theme .title {
    font-size: 22px;
    line-height: 30px;
    text-align: center;
    margin-bottom: 20px;
    color: #000000;
    font-weight: lighter;
}

.service_video_detail .content .theme .time {
    text-align: center;
    font-size: 12px;
    line-height: 30px;
    margin-bottom: 10px;
    color: #666666;
}

.service_video_detail .content .service_video_detail_info {
    padding: 80px 0;
    border-bottom: 1px solid #bfbfbf;
}

.service_video_detail .content .service_video_detail_info p {
    font-size: 14px;
    line-height: 24px;
    color: #333333;
    padding: 0 2%;
}

.service_video_detail .content .service_video_detail_info p>img {
    max-width: 100%;
}

.service_video_detail .content .service_video_detail_other {
    display: flex;
    justify-content: space-between;
    align-items: center;
    margin-top: 40px;
}

.service_video_detail .content .service_video_detail_other ul li {
    font-size: 14px;
    line-height: 26px;
    color: #666666;
}

.service_video_detail .content .service_video_detail_other ul li a {
    color: #666666;
}

.service_video_detail .content .service_video_detail_other ul li:hover {
    color: #0156a7;
}

.service_video_detail .content .service_video_detail_other ul li:hover a {
    color: #0156a7;
}

.service_video_detail .content .service_video_detail_other .more {
    width: 150px;
    height: 50px;
    border: 1px solid #dddddd;
    border-radius: 25px;
    -webkit-border-radius: 25px;
    -moz-border-radius: 25px;
    -ms-border-radius: 25px;
    -o-border-radius: 25px;
    display: flex;
    justify-content: center;
    align-items: center;
    background-color: #ffffff;
    transition: all .5s linear;
    -webkit-transition: all .5s linear;
    -moz-transition: all .5s linear;
    -ms-transition: all .5s linear;
    -o-transition: all .5s linear;
    background-color: #f2201f;
    box-shadow: 15px 15px 45px rgba(242, 32, 31, .2);
    border: 1px solid transparent;
}

.service_video_detail .content .service_video_detail_other .more a {
    width: 100%;
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 0 25px;
}

.service_video_detail .content .service_video_detail_other .more a span {
    font-size: 14px;
    line-height: 30px;
    color: #ffffff;
    transition: all .5s linear;
    -webkit-transition: all .5s linear;
    -moz-transition: all .5s linear;
    -ms-transition: all .5s linear;
    -o-transition: all .5s linear;
}

.service_video_detail .content .service_video_detail_other .more a img {
    width: 16px;
    height: 10px;
    transition: all .5s linear;
    -webkit-transition: all .5s linear;
    -moz-transition: all .5s linear;
    -ms-transition: all .5s linear;
    -o-transition: all .5s linear;
    filter: brightness(8);
    -webkit-filter: brightness(8);
}

.service_video_detail .content .service_video_detail_other .more:hover {
    background-color: #f2201f;
    box-shadow: 15px 15px 45px rgba(242, 32, 31, .2);
    border: 1px solid transparent;
}

.service_video_detail .content .service_video_detail_other .more:hover a span {
    color: #ffffff;
}

.service_video_detail .content .service_video_detail_other .more:hover a img {
    filter: brightness(8);
    -webkit-filter: brightness(8);
}

@media (max-width:1400px) {
    .service_video_detail .content {
        width: 85%;
    }
}

@media (max-width:1200px) {
    .service_video_detail .content {
        width: 95%;
    }

    .service_video_detail .content .theme .title {
        font-size: 18px;
    }

    .service_video_detail {
        padding: 90px 0 150px;
    }

    .service_video_detail .content .service_video_detail_other .more {
        width: 120px;
        height: 40px;
    }

    .service_video_detail .content .service_video_detail_other .more a {
        padding: 0 15px;
    }

    .service_video_detail .content .service_video_detail_other .more a span {
        font-size: 12px;
        line-height: 24px;
    }
}

@media (max-width:550px) {
    .service_video_detail .content .service_video_detail_other .more {
        width: 100px;
        height: 34px;
    }

    .service_video_detail .content .service_video_detail_other .more a {
        padding: 0px 10px;
    }

    .service_video_detail .content .service_video_detail_other ul li {
        font-size: 12px;
    }

    .service_video_detail {
        padding: 60px 0 100px;
    }
}

#newBridge .icon-right-center{
top: 70% !important;
}