* {
    margin: 0;
    padding: 0;
    outline: none;
    font-size: 14px;
    box-sizing: border-box;
    resize: none;
    font-family: "Hiragino Sans GB", "Microsoft YaHei", "黑体", "WenQuanYi Micro Hei", arial, sans-serif;
}

li {
    list-style: none
}

a {
    text-decoration: none;
    color: #000;
}

:root {
    --primary-color: #e27a32;
    --second-color: #000000;
}

/*页面居中*/
.centered {
    width: 1200px;
    margin-left: auto;
    margin-right: auto;
}

.clear:after {
    content: "";
    height: 0;
    line-height: 0;
    display: block;
    visibility: hidden;
    clear: both;
}

.clear {
    zoom: 1; /* 为了兼容IE */
}

.fs_16 {
    font-size: 16px;
}

.fs_18 {
    font-size: 18px;
}

.fs_20 {
    font-size: 20px;
}

.fs_22 {
    font-size: 22px;
}

.fs_24 {
    font-size: 24px;
}

.fs_26 {
    font-size: 26px;
}

.fs_28 {
    font-size: 28px;
}

.fs_30 {
    font-size: 30px;
}

.fs_32 {
    font-size: 32px;
}

.fs_34 {
    font-size: 34px;
}

.fs_36 {
    font-size: 36px;
}

.fs_38 {
    font-size: 36px;
}

.fs_40 {
    font-size: 36px;
}

.fs_42 {
    font-size: 42px;
}

.fs_44 {
    font-size: 44px;
}

.fs_46 {
    font-size: 46px;
}

.fs_48 {
    font-size: 48px;
}

.fs_50 {
    font-size: 50px;
}

.fs_52 {
    font-size: 52px;
}

.fs_54 {
    font-size: 54px;
}

.fs_56 {
    font-size: 56px;
}

.fs_weight {
    font-weight: bold;
}

/*多列*/
.column:after {
    content: "";
    height: 0;
    line-height: 0;
    display: block;
    visibility: hidden;
    clear: both;
}

.column {
    zoom: 1; /* 为了兼容IE */
}

.column .column-box {
    float: left;
    position: relative;
}

.column-col-1 .column-box {
    width: 100%;
}

.column-col-1 .column-box:nth-child(1n+2) {
    margin-top: 3%;
}

.column-col-2 .column-box {
    width: 49%;
}

.column-col-2 .column-box:nth-child(2n) {
    margin-left: 2%;
}

.column-col-2 .column-box:nth-child(1n+3) {
    margin-top: 2%;
}

.column-col-3 .column-box {
    width: 48%;
}

.column-col-3 .column-box:nth-child(3n + 2) {
    margin-left: 2%;
}

.column-col-3 .column-box:nth-child(2n) {
    margin-left: 2%;
}

/*.column-col-3 .column-box:nth-child(1n+4) {*/
/*    margin-top: 2%;*/
/*}*/

.needTop .column-col-3 .column-box:nth-child(n+3) {
    margin-top: 2%;
}

.column-col-4 .column-box {
    width: 23.5%;
}

.column-col-4 .column-box:nth-child(4n), .column-col-4 .column-box:nth-child(4n-1), .column-col-4 .column-box:nth-child(4n-2) {
    margin-left: 2%;
}

.column-col-4 .column-box:nth-child(1n+5) {
    margin-top: 2%;
}

.column-col-5 .column-box {
    width: 18.4%;
}

.column-col-5 .column-box:nth-child(5n), .column-col-5 .column-box:nth-child(5n-1), .column-col-5 .column-box:nth-child(5n-2), .column-col-5 .column-box:nth-child(5n-3) {
    margin-left: 2%;
}

.column-col-5 .column-box:nth-child(1n+6) {
    margin-top: 2%;
}

.column-col-6 .column-box {
    width: 15%;
}

.column-col-6 .column-box:nth-child(6n), .column-col-6 .column-box:nth-child(6n-1), .column-col-6 .column-box:nth-child(6n-2), .column-col-6 .column-box:nth-child(6n-3), .column-col-6 .column-box:nth-child(6n-4) {
    margin-left: 2%;
}

.column-col-6 .column-box:nth-child(1n+7) {
    margin-top: 2%;
}

/*多列结束*/

/*图片域*/
.thumb {
    position: relative;
    overflow: hidden;
}

.thumb div {
    position: relative;
    overflow: hidden;
}

.thumb img {
    position: absolute;
    width: auto;
    height: auto;
    max-width: 100%;
    max-height: 100%;
    min-width: 100%;
    min-height: 100%;
    left: 50%;
    top: 50%;
    -webkit-transform: translate(-50%, -50%);
    -moz-transform: translate(-50%, -50%);
    transform: translate(-50%, -50%);
}

.contactUs .thumb img {
    object-fit: scale-down;
}

/*图片域结束*/

/*动画*/
.hover img {
    transition: all .5s;
}

.hover:hover .thumb img {
    transform: translate(-50%, -50%) scale(1.05);
    -webkit-transform: translate(-50%, -50%) scale(1.05);
    -moz-transform: translate(-50%, -50%) scale(1.05);
}

/*动画结束*/

/*flex属性*/
.flex {
    display: flex;
    display: -webkit-flex;
    display: -webkit-inline-flex;
    display: -moz-flex;
    display: -ms-flex;
}

.flex-row {
    flex-flow: row wrap;
}

.flex-justify-between {
    justify-content: space-between;
    -webkit-justify-content: space-between;
}

.flex-justify-center {
    justify-content: center;
    -webkit-justify-content: center;
}

.flex-justify-end {
    justify-content: flex-end;
    -webkit-justify-content: flex-end;
}

.flex-align-center {
    align-items: center;
    -webkit-align-items: center;
}

/*flex属性结束*/

/*字体居中*/
.text-center {
    text-align: center;
}

/*字体居中结束*/

/*字体行高*/
.line-1 {
    line-height: 1em;
}

.line-1-5 {
    line-height: 1.5em;
}

.line-2 {
    line-height: 2em;
}

.line-2-5 {
    line-height: 2.5em;
}

.line-3 {
    line-height: 3em;
}

.line-4 {
    line-height: 4em;
}

/*字体通用颜色*/
.color-fff {
    color: #fff;
}

.color-1d2a54 {
    color: #1d2a54;
}

.color-dbdce0 {
    color: #dbdce0;
}

.color-e45827 {
    color: #e45827;
}

.color-808080 {
    color: #808080;
}

.color-eee {
    color: #eee;
}

/*字体通用颜色结束*/

/*限制行数*/
.color-line {
    -webkit-line-clamp: 2;
    overflow: hidden;
    text-overflow: ellipsis;
    display: -webkit-box;
    -webkit-box-orient: vertical;
    height: 42px;
}

/*限制行数结束*/

/*页面大标题*/
.page-title-content {
    margin-top: 78px;
}

.page-title-content .title_en {
    font-size: 54px;
    color: #eee;
    text-transform: uppercase;
}

.page-title-content .title {
    font-size: 24px;
    color: #e45827;
}

.page-title-content .subtitle {
    line-height: 3em;
    color: #808080;
}

/*页面大标题结束*/

/*平板*/
@media screen and (max-width: 1024px) {
    .column .column-box {
        width: 49%;
    }

    .column .column-box:nth-child(1), .column .column-box:nth-child(2) {
        margin-top: 0;
    }

    .column .column-box:nth-child(1n+3) {
        margin-top: 2%;
    }

    .column .column-box:nth-child(1n) {
        margin-left: 0;
    }

    .column .column-box:nth-child(2n) {
        margin-left: 2%;
    }
}

/*平板结束*/

/*手机*/
@media screen and (max-width: 750px) {
    .column {
        width: 100%;
    }

    .column .column-box {
        width: 100%;
    }

    .column .column-box:nth-child(1n) {
        margin-left: 0;
    }

    .column .column-box:nth-child(1n+2) {
        margin-top: 2%;
    }
}

/*手机结束*/

/*pc-down-column*/
.pc-down-column {
    position: fixed;
    height: 64px;
    overflow: hidden;
    width: 100%;
    top: 0;
    left: 0;
    z-index: 9999;
}

.pc-down-column .fixed-hide {
    display: none;
}

.pc-down-column a {
    color: #fff;
    position: relative;
}

.pc-down-column a i {
    position: absolute;
    width: calc((100% - 64px) / 2);
    height: 2px;
    background-color: #e45827;
    left: 0;
    top: 46px;
    transform: translate(0%);
    opacity: 0;
    transition: all .5s;
}

.pc-down-column a:hover i {
    opacity: 1;
    transform: translate(-50%);
    left: 50%;
}

.pc-down-column a.active {
    color: #e45827;
}

.pc-down-column a.active i {
    transform: translate(-50%);
    left: 50%;
    opacity: 1;
}

.pc-down-column-fixed {
    background-color: #fff;
    box-shadow: 0 0 10px #ddd;
}

.pc-down-column-fixed a {
    color: #000;
}

.pc-down-column-fixed .fixed-show {
    display: none;
}

.pc-down-column-fixed .fixed-hide {
    display: flex;
}

.pc-down-column .logo.thumb {
    /*width: 270px;*/
}

.pc-down-column .logo.thumb div {
    padding-bottom: calc(64 / 270 * 100%);
}

/*pc-down-cloumn-menu*/
.pc-down-column .menu-box a {
    height: 100%;
    padding-left: 34px;
    padding-right: 34px;
}

.pc-down-column .search-content {
    padding-right: 0;
    align-items: center;
    display: flex;
}

.pc-down-column .search-content .thumb {
    width: 30px;
    height: 30px;
    cursor: pointer;
    transition: all .5s;
    border: 1px solid transparent;
}

.pc-down-column .search-content .thumb .search1 {
    display: block;
}

.pc-down-column .search-content .thumb .search2 {
    display: none;
}

.pc-down-column .search-content .thumb div {
    padding-bottom: 100%;
}

.pc-down-column .search-content form {
    overflow: hidden;
    width: 0;
    transition: all .5s;
}

.pc-down-column .search-content form input {
    height: 30px;
}

.pc-down-column-fixed .search-content .thumb .search1 {
    display: none;
}

.pc-down-column-fixed .search-content .thumb .search2 {
    display: block !important;
}

.pc-down-column .search-content.active form {
    width: 160px;
}

.pc-down-column .search-content.active input {
    background-color: transparent;
    border: 1px solid #ddd;
    padding-left: 10px;
    color: #fff;
    width: 160px;
}

.pc-down-column .search-content.active .thumb {
    border-width: 1px 1px 1px 0;
    border-style: solid;
    border-color: #ddd;
}

.pc-down-column-fixed .search-content.active {
    background-color: #fff;
}

.pc-down-column-fixed .search-content.active input {
    color: #000;
}

/*pc-down-column-end*/

/*move-menu*/
.move-down-column {
    display: none;
}

/*move-menu-end*/

.banner-content .swiper-slide img {
    width: 100%;
}

.banner-content .swiper-pagination {
    bottom: 40px;
}

.banner-content .swiper-pagination span {
    width: 10px;
    height: 10px;
    background-color: #1d2a54;
    opacity: 1;
}

.banner-content .swiper-pagination span.swiper-pagination-bullet-active {
    background-color: #e45827;
}

.banner-content .swiper-button-prev {
    left: 100px;
    background-image: none;
}

.banner-content .swiper-button-next {
    right: 100px;
    background-image: none;
}

.banner-content .swiper-button-next i, .banner-content .swiper-button-prev i {
    font-size: 50px;
    color: #e45827;
}

.banner-content .swiper-button-next:focus, .banner-content .swiper-button-next i:focus, .banner-content .swiper-button-prev:focus, .banner-content .swiper-button-prev i:focus {
    outline: none;
}

.banner-content .swiper-slide .text-content {
    position: absolute;
    top: 32%;
    left: 0;
    z-index: 9;
    width: 100%;
}

.banner-content .swiper-slide .text-content .index-title, .banner-content .swiper-slide .text-content .index-title span {
    font-size: 120px;
    font-weight: bold;
    text-align: center;
}

.banner-content .swiper-slide .text-content .title, .banner-content .swiper-slide .text-content .title span {
    text-transform: uppercase;
    font-size: 50px;
    font-weight: bold;
    text-align: center;
}

.banner-content .swiper-slide .text-content .title span {
    color: #e45827;
}

.banner-content .swiper-slide .text-content .index-des {
    text-align: center;
    font-size: 30px;
    margin-top: 40px;
    letter-spacing: 2px;
}

.banner-content .swiper-slide .text-content .des {
    text-align: center;
    font-size: 50px;
    font-weight: bold;
    margin-top: 10px;
    letter-spacing: 2px;
}

/*底部*/
.footer-content .footer-down {
    background-image: url("../image/footer1.jpg");
    background-position: 50%;
    background-size: 100% 100%;
    background-repeat: no-repeat;
    padding-bottom: 40px;
}

.footer-content .footer-down .footer-down-left, .footer-content .footer-down .footer-down-right {
    width: 50%;
    padding-top: 40px;
}

.footer-content .footer-down .footer-down-left .depict {
    width: 350px;
}

.footer-content .footer-down .footer-down-left .depict .title {
    width: 100%;
}

.footer-content .footer-down .footer-down-left .depict .title .thumb {
    width: 68px;
}

.footer-content .footer-down .footer-down-left .depict .title .thumb div {
    padding-bottom: calc(24 / 68 * 100%);
}

.footer-content .footer-down .footer-down-left .depict .des {
    letter-spacing: 1px;
}

.footer-content .footer-down .footer-down-left .section {
    width: 250px;
}

.footer-content .footer-down .footer-down-left .section a {
    display: block;
}

.footer-content .footer-down .footer-down-right .depict {
    width: calc(100% - 180px);
}

.footer-content .footer-down .footer-down-right .depict .centered {
    width: 240px;
}

.footer-content .footer-down .footer-down-right .depict .phone .thumb {
    width: 31px;
    margin-right: 12px;
}

.footer-content .footer-down .footer-down-right .depict .phone .thumb div {
    padding-bottom: calc(1 / 1 * 100%);
}

.footer-content .footer-down .footer-down-right .depict .address {
    margin-top: 10px;
}

.footer-content .footer-down .footer-down-right .erweima {
    width: 180px;
}

.footer-content .footer-down .footer-down-right .erweima .thumbBox {
    display: flex;
    justify-content: center;
}

.footer-content .footer-down .footer-down-right .erweima .thumb {
    padding-bottom: calc(1 / 1 * 49%);
    width: 49%;
}

.footer-content .footer-up {
    background-color: #0f1939;
}

.footer-content .footer-up .flex {
    height: 48px;
}

/*英文版适配*/
.footer-content .footer-down .footer-down-left .section_en a {
    display: flex;
}

.footer-content .footer-down .footer-down-left .section_en a span {
    flex: 1;
}

.footer-content .footer-down .footer-down-right .depict_en .centered {
    width: 290px;
}

/*底部结束*/

/*订单跟踪*/
.order-content {
    position: absolute;
    z-index: 9;
    width: 350px;
    bottom: 15%;
    left: 50%;
    transform: translateX(-50%);
    background-color: rgba(0, 0, 0, .5);
    box-shadow: 0 0 10px #fff;
    border-radius: 10px;
    padding: 15px 20px;
}

.order-content .input-content {
    border-radius: 5px;
    overflow: hidden;
    background-color: #fff;
    height: 30px;
}

.order-content .input-content input {
    border-width: 0;
    width: 240px;
    padding-left: 10px;
}

.order-content .input-content button {
    border-width: 0;
    background-color: transparent;
    color: #808080;
    /*border-left: 1px solid #808080;*/
    padding: 0 5px;
    font-size: 20px;
    cursor: pointer;
}

.order-page-content {
    margin-top: 40px;
}

.order-page-content .centered {
    width: 800px;
}

.order-page-content .order-search-content {
    width: 600px;
    display: block;
    margin: auto;
}

.order-page-content .order-search-content textarea {
    width: 100%;
    height: 60px;
    padding: 10px 15px;
    border: 1px solid #ddd;
}

.order-page-content .order-search-content textarea + textarea {
    margin-top: 10px;
}

/*.order-page-content .order-search-content div {*/
/*    display: flex;*/
/*    justify-content: space-between;*/
/*}*/

.order-page-content .order-search-content .btn_query {
    margin-top: 40px;
    height: 40px;
    background-color: #e45827;
    border-width: 0;
    display: block;
    margin-left: auto;
    margin-right: auto;
    cursor: pointer;
    padding: 0 20px;
}

.order-page-content .order-search-content .btn_query i {
    margin-right: 10px;
}

.order-page-content dl {
    width: 100%;
    margin: 50px 0;
}

.order-page-content dt {
    padding: 5px 10px;
    text-align: center;
    font-size: 20px;
    font-weight: bold;
}

.order-page-content dd {
    width: 100%;
    position: relative;
}

.order-page-content dd:before {
    position: absolute;
    content: '';
    border-left: 1px dashed #ddd;
    left: 50%;
    transform: translate(-50%);
    top: 0;
    height: 100%;
}

.order-page-content dd span {
    display: block;
    text-align: right;
}

.order-page-content dd span, .order-page-content dd label {
    padding: 10px 20px;
    width: 50%;
}

.order-page-content dd i {
    position: absolute;
    width: 10px;
    height: 10px;
    background-color: #999;
    left: 50%;
    top: 50%;
    transform: translate(-50%, -50%) rotate(45deg);
}

.order-page-content dd:nth-child(2) i {
    background-color: var(--primary-color);
    animation: orderIcon 3s ease-in-out infinite;
    box-shadow: 0 0 2px var(--primary-color);
}

@keyframes orderIcon {
    0% {
        box-shadow: 0 0 2px var(--primary-color);
        /*transform: scale(1) translate(-50%, -50%) rotate(45deg);*/
    }
    50% {
        box-shadow: 0 0 15px var(--primary-color);
        /*transform: scale(1.1) translate(-50%, -50%) rotate(45deg);*/
    }
    100% {
        box-shadow: 0 0 2px var(--primary-color);
    }
}

.order-page-content dd:nth-child(2) i, .order-page-content dd:nth-last-child(1) i {
    width: 20px;
    height: 20px;
}

.order-page-content dd i p {
    color: #fff;
    font-size: 12px;
    width: 20px;
    height: 20px;
    text-align: center;
    line-height: 20px;
    transform: rotate(-45deg);
}

/*.order-page-content dd + dd{border-top: 1px solid #ddd;}*/
/*订单跟踪结束*/

/*首页banner*/
.index-banner {
    background-repeat: no-repeat;
    background-position: 50%;
    background-size: 110%;
}

.index-banner .swiper-container {
    height: 100%;
}

.index-banner .swiper-slide {
    background-repeat: no-repeat;
    background-position: 50%;
    background-size: 110%;
}

.index-banner .swiper-slide .text-content {
    color: #fff;
    padding-top: 15%;
    text-align: center;
}

.index-banner .swiper-slide .text-content .title, .index-banner .swiper-slide .text-content .title * {
    font-size: 80px;
    font-weight: bold;
}

.index-banner .swiper-slide .text-content .title span {
    color: #e45827;
}

.index-banner .swiper-slide .text-content .des {
    font-size: 30px;
    text-align: center;
    margin-top: 40px;
}

.index-banner .swiper-slide .text-content .des * {
    font-size: 30px;
}

.index-banner .swiper-button-prev {
    left: 100px;
    background-image: none;
}

.index-banner .swiper-button-next {
    right: 100px;
    background-image: none;
}

.index-banner .swiper-button-next i, .index-banner .swiper-button-prev i {
    font-size: 50px;
    color: #e45827;
}

/*英文版适配*/
.index-banner-en .swiper-slide .text-content .title, .index-banner-en .swiper-slide .text-content .title * {
    font-size: 50px;
}

/*首页banner结束*/

/*四大版块*/
.plate {
    margin-top: 100px;
}

.plate .column-box {
    border: 1px solid #e5e5e5;
    border-radius: 5px;
    background-color: transparent;
    height: 225px;
    padding-top: 50px;
    padding-left: 155px;
    padding-right: 155px;
    transition: all 1s;
}

.plate .thumb {
    width: 56px;
    margin-left: auto;
    margin-right: auto;
}

.plate .thumb div {
    padding-bottom: calc(36 / 56 * 100%);
}

.plate .thumb div .imgHide {
    display: none;
}

.plate .column-box:hover {
    background-color: #1d2a54;
}

.plate .column-box:hover .imgHide {
    display: block;
}

.plate .column-box:hover .imgShow {
    display: none;
}

.plate .column-box:hover * {
    color: #fff;
}

.plate .column-box .title {
    font-weight: bold;
}

/*四大板块英文版调整*/
.plate_en .column-box {
    padding-right: 80px;
    padding-left: 80px;
}

/*关于我们*/
.about {
    margin-top: 100px;
    background-color: #ebecf0;
    padding-top: 100px;
    padding-bottom: 100px;
}

.about .text-content {
    width: 820px;
    float: left;
    padding-right: 184px;
}

.about .text-content .title-content {
    position: relative;
}

.about .text-content .title-content .thumb {
    width: 103px;
    position: absolute;
    right: 0;
    top: 0;
}

.about .text-content .title-content .thumb div {
    padding-bottom: calc(75 / 103 * 100%);
}

.about .text-content .des {
    margin-top: 28px;
    text-indent: 2em;
}

.about .text-content .des i {
    display: block;
    margin-top: 28px;
    margin-bottom: 28px;
    width: 34px;
    height: 4px;
    background-color: #e45827;
}

.about .text-content .column {
    margin-top: 30px;
}

.about .text-content .column-box .thumb {
    padding-bottom: calc(147 / 198 * 100%);
}

.about .image-content {
    width: calc(100% - 820px);
    float: left;
}

.about .image-content .thumb {
    padding-bottom: calc(505 / 378 * 100%);
}

/*公司文化*/
.culture .column {
    margin-top: 50px;
}

.culture .column-box {
    width: 400px;
    transition: all .5s;
    position: relative;
    overflow: hidden;
}

.culture .column-box:nth-child(1n) {
    margin-left: 0;
}

.culture .column-box .exhibition {
    padding-bottom: calc(359 / 400 * 100%);
}

.culture .cover-bg {
    position: absolute;
    width: 100%;
    height: 100%;
    top: 0;
    left: 0;
    background-color: rgba(0, 0, 0, 0.5);
    transition: transform .3s, opacity .6s;
}

.culture .cover-bg .icon {
    width: 50px;
    margin-left: auto;
    margin-right: auto;
    margin-bottom: 20px;
}

.culture .cover-bg .icon div {
    padding-bottom: calc(1 / 1 * 100%);
}

.culture .column-box:hover .cover-bg {
    transform: scale(0.9);
    opacity: 0;
}

.culture .cover-con {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background-color: rgba(255, 255, 255, 0.8);
    transform: scale(1.2);
    opacity: 0;
    transition: transform .8s, opacity .8s;
}

.culture .cover-con .icon {
    width: 50px;
    margin-left: auto;
    margin-right: auto;
    margin-bottom: 20px;
}

.culture .cover-con .icon div {
    padding-bottom: calc(1 / 1 * 100%);
}

.culture .cover-con i {
    width: 1px;
    height: 20px;
    display: block;
    margin-top: 10px;
    margin-left: auto;
    margin-right: auto;
    background-color: #808080
}

.culture .cover-con .des {
    margin-top: 30px;
}

.culture .column-box:hover .cover-con {
    transform: scale(.9);
    opacity: 1;
}

/*个性化*/
.personality {
    background-color: #1d2a54;
    margin-top: 100px;
    padding-bottom: 100px;
}

.personality .title-content {
    padding-top: 82px;
}

.personality .title-content i {
    margin-top: 26px;
    margin-bottom: 26px;
    width: 34px;
    height: 4px;
    display: block;
    margin-left: auto;
    margin-right: auto;
    background-color: #e45827;
}

.personality .column {
    margin-top: 200px;
}

.personality .column-box {
    width: 33.3%;
}

.personality .column-box:nth-child(1n) {
    margin-left: 0;
}

.personality .thumb {
    width: 80px;
    margin-left: auto;
    margin-right: auto;
}

.personality .thumb div {
    padding-bottom: calc(1 / 1 * 100%)
}

.personality .new_contents {
    width: 97vw;
    position: absolute;
    left: 0;
    margin: 20px;
}

.personality .text-center div {
    margin-top: 30px;
}

/*客户展示*/
.customer .swiper-container {
    margin-top: 40px;
}

.customer .swiper-slide {
    border: 1px solid #eee;
}

.customer .swiper-slide .thumb {
    width: 600px;
    border-right: 1px solid #eee;
}

.customer .swiper-slide .thumb div {
    padding-bottom: calc(330 / 600 * 100%);
}

.customer .swiper-slide .text-content {
    width: 600px;
    padding: 70px 38px 0 38px;
}

.customer .swiper-slide .text-content i {
    display: block;
    width: 36px;
    height: 2px;
    background-color: #e45827;
    margin-top: 16px;
    margin-bottom: 16px;
}

.customer .swiper-slide .text-content .des {
    margin-top: 30px;
    letter-spacing: 2px;
}

.customer .swiper-pagination {
    width: 100%;
    position: relative;
    margin-top: 40px;
}

.customer .swiper-pagination .swiper-pagination-bullet-active {
    background-color: #e45827;
}

.customer .swiper-pagination span {
    width: 10px;
    height: 10px;
}

.customer .swiper-pagination span + span {
    margin-left: 8px;
}

/*下单方式*/
.logistics {
    margin-top: 140px;
    padding-top: 1px;
    background-color: #ebecf0;
    padding-bottom: 100px;
}

.logistics .page-title-content .title_en {
    color: #dbdce0;
}

.logistics .column {
    margin-top: 60px;
}

.logistics .column .column-box {
    width: 25%;
    position: relative;
}

.logistics .column .column-box:nth-child(1n) {
    margin-left: 0;
}

.logistics .column-box:before {
    position: absolute;
    content: "";
    width: 0;
    height: 0;
    border-width: 8px 12px 8px 12px;
    border-style: solid;
    border-color: transparent transparent transparent #e45827;
    right: calc(-10% + 12px);
    top: 52px;
}

.logistics .column-box:after {
    position: absolute;
    content: '';
    border-bottom: 2px dashed #e45827;
    width: 40%;
    right: -20%;
    top: 59px;
    /*border-style: dashed;*/
}

.logistics .column-box .multilateral {
    position: relative;
    width: 64px;
    height: 120px;
    margin-left: auto;
    margin-right: auto;
    background-color: #e45827;
}

.logistics .column-box .multilateral > div {
    width: 100%;
    height: 100%;
}

.logistics .column-box .multilateral:before {
    position: absolute;
    content: '';
    width: 0;
    border-bottom: 60px solid transparent;
    border-top: 60px solid transparent;
    border-right: 38px solid #e45827;
    left: -38px;
    top: 0;
}

.logistics .column-box .multilateral:after {
    position: absolute;
    content: '';
    width: 0;
    border-bottom: 60px solid transparent;
    border-top: 60px solid transparent;
    border-left: 38px solid #e45827;
    right: -38px;
    top: 0;
}

.logistics .column-box .multilateral .thumb {
    width: 55px;
}

.logistics .column-box .multilateral .thumb div {
    padding-bottom: calc(1 / 1 * 100%);
}

.logistics .column .multilateral .thumb img {
    transition: all 1s;
}

.logistics .column-box .multilateral span {
    position: absolute;
    width: 30px;
    height: 30px;
    border: 2px solid #fff;
    border-radius: 50%;
    background-color: #e45827;
    left: -32px;
    top: 6px;
}

.logistics .column-box:nth-child(4):before, .logistics .column-box:nth-child(4):after {
    display: none;
}

.logistics .column-box:nth-child(2n) .multilateral {
    background-color: #1d2a54;
}

.logistics .column-box:nth-child(2n) .multilateral:before {
    border-right-color: #1d2a54;
}

.logistics .column-box:nth-child(2n) .multilateral:after {
    border-left-color: #1d2a54;
}

.logistics .column-box:nth-child(2n) .multilateral span {
    background-color: #1d2a54;
}

.logistics .column-box .text-content {
    margin-top: 30px;
}

.logistics .column .column-box:hover .multilateral .thumb img {
    transform: translate(-50%, -50%) rotateY(180deg);
    -webkit-transform: translate(-50%, -50%) rotateY(180deg);
}

/*新闻中心*/
.news .news-title {
    width: 100%;
    margin-top: 48px;
}

.news .news-title div {
    margin-left: 22px;
    margin-right: 22px;
    cursor: pointer;
    position: relative;
}

.news .news-title div.active {
    color: #e45827;
}

.news .news-title div:before {
    position: absolute;
    width: 100%;
    bottom: -14px;
    height: 2px;
    content: '';
    background-color: #e45827;
    left: -50%;
    transition: all .5s;
    opacity: 0;
}

.news .news-title div.active:before {
    left: 0;
    opacity: 1;
}

.news .news-box {
    margin-top: 44px;
}

.news .news-box .column {
    display: none;
}

.news .news-box .column.active {
    display: block;
}

.news .news-box .column .column-box {
    box-shadow: 0 0 5px #ddd;
}

.news .news-box .column .thumb {
    padding-bottom: calc(217 / 387 * 100%);
}

.news .news-box .column .text-content {
    padding: 0 15px 0 15px;
}

.news .news-box .column .text-content .title {
    -webkit-line-clamp: 1;
}

.news .news-box .column .text-content .time-box {
    width: 100%
}

.news .news-title div:hover {
    color: #e45827;
}

.news .news-title div:hover:before {
    opacity: 1;
    left: 0;
}

.news .news-box .column .column-box:hover .title {
    color: #e45827;
}

.news .news-box .column .column-box .time-box label {
    transition: all .5s;
}

.news .news-box .column .column-box:hover .time-box label {
    color: #e45827;
    margin-right: 5px;
}

/*咨询*/
.advisory {
    margin-top: 100px;
    background-repeat: no-repeat;
    background-position: 50%;
    background-size: 100% 100%;
    background-image: url("../image/advisory-1.jpg");
    padding-top: 1px;
    padding-bottom: 42px;
}

/*.advisory .centered{width: 700px;}*/
.advisory .advisory-title {
    margin-top: 50px;
}

.advisory .advisory-ex {
    width: 100%;
}

.advisory .advisory-ex li + li {
    margin-left: 48px;
}

.advisory .advisory-ex .thumb {
    width: 30px;
    margin-right: 10px;
}

.advisory .advisory-ex .thumb div {
    padding-bottom: calc(26 / 30 * 100%);
}

.advisory form {
    width: 700px;
    margin-left: auto;
    margin-right: auto;
}

.advisory .input-content {
    margin-top: 24px;
    width: 100%;
}

.advisory .input-content input {
    border: 1px solid #dcdcdc;
    height: 48px;
    border-radius: 5px;
    font-size: 16px;
    padding-left: 12px;
    padding-right: 12px;
}

.advisory .input-content .name {
    width: 220px;
}

.advisory .input-content .phone {
    width: calc(100% - 220px - 16px);
    margin-left: 16px;
}

.advisory textarea {
    padding: 12px;
    border: 1px solid #dcdcdc;
    height: 90px;
    display: block;
    width: 100%;
    margin-top: 20px;
    border-radius: 5px;
}

.advisory form button {
    width: 220px;
    height: 48px;
    font-size: 16px;
    color: #fff;
    background-color: #e45827;
    border-radius: 5px;
    display: block;
    margin-top: 44px;
    margin-left: auto;
    margin-right: auto;
    border-width: 0;
    cursor: pointer;
}

/*公司简介*/
.contact .column {
    margin-top: 50px;
    width: 100%;
}

.contact .column .column-box {
    width: 50%;
}

.contact .column .column-box:nth-child(2n) {
    margin-left: 0;
}

.contact .exhibition {
    padding-bottom: calc(496 / 615 * 100%);
}

.contact .text-content {
    border: 1px solid #eee;
    padding-left: 30px;
    padding-right: 30px;
}

.contact .text-content .title {
    margin-top: 80px;
}

.contact .text-content .des {
    margin-top: 30px;
}

.contact .text-content .des i {
    display: block;
    margin-top: 28px;
    margin-bottom: 28px;
    width: 34px;
    height: 4px;
    background-color: #e45827;
}

.contact .text-content .des p {
    margin-top: 40px;
}

/*英文版适配*/
.contact_en .text-content .title {
    margin-top: 60px;
}


/*合作战略*/
.strategy {
    background-color: #f5f5f5;
    padding-bottom: 80px;
}

.strategy .column {
    margin-top: 38px;
}

.strategy .column-box {
    background-color: #fff;
    border-radius: 5px;
    overflow: hidden;
    transition: all .5s;
}

.strategy .column-box .thumb {
    padding-bottom: calc(298 / 379 * 100%);
}

.strategy .column-box .text-content {
    padding-left: 12px;
    padding-right: 12px;
    padding-bottom: 32px;
}

.strategy .column-box .text-content .des {
    -webkit-line-clamp: 2;
    height: 38px;
}

.strategy .column-box:hover {
    box-shadow: 0 0 20px #bbb;
}

/*核心理念*/
.core .column {
    margin-top: 40px;
    margin-bottom: 60px;
}

.core .column-box {
    position: relative;
    border: 1px solid #eee;
    height: 265px;
    transition: all .5s;
    border-radius: 5px;
}

.core .column-box .thumb {
    width: 88px;
    margin-top: 36px;
    margin-left: auto;
    margin-right: auto;
    border-radius: 50%;
    border: 1px solid #eee;
}

.core .column-box .thumb div {
    padding-bottom: 100%;
}

.core .column-box .title {
    transition: all .5s;
}

.core .column-box:hover {
    background-color: #fff;
    box-shadow: 0 0 20px #bbb;
}

.core .column-box:hover .title {
    color: #e45827;
}

.core .column-box > div {
    position: absolute;
    width: 100%;
    height: 100%;
    /*top: 50%;left: 50%;transform: translate(-50%,-50%);*/
    left: 0;
    top: 0;
    transition: all .5s;
}

.core .column-box:hover > div {
    transform: scale(.8);
    background-color: rgba(0, 0, 0, 0.8);
}

/*联系我们*/
.contactUs .centered > .flex {
    margin-top: 40px;
    width: 100%;
}

.contactUs .contactUs-one {
    width: 320px;
    padding-top: 40px;
}

.contactUs .contactUs-one .thumb {
    width: 270px;
    overflow: unset;
}

.contactUs .contactUs-one .thumb div {
    padding-bottom: calc(64 / 270 * 100%);
    overflow: unset;
}

.contactUs .contactUs-one p {
    width: 100%;
}

.contactUs .contactUs-two {
    width: 500px;
}

.contactUs .contactUs-two .thumb {
    overflow: unset;
    width: 28px;
    background-color: #e87655;
    border-radius: 50%;
    margin-right: 10px;
}

.contactUs .contactUs-two .thumb div {
    overflow: unset;
    padding-bottom: 100%;
}

.contactUs .contactUs-two {
    column-count: 2;
    -moz-column-count: 2;
    -webkit-column-count: 2;
    margin-top: 40px;
}

.contactUs .contactUs-two li {
    margin-bottom: 20px;
}

.contactUs .contactUs-two li:nth-child(1) {
    column-span: all;
    -webkit-column-span: all;
}

.contactUs .contactUs-two li > div {
    width: 100%;
}

.contactUs .erweima {
    width: 184px;
}

.contactUs .erweima div {
    padding-bottom: 100%;
    border: 1px solid #ddd;
}

/*地图*/
.adrMap {
    height: 620px;
    margin-top: 80px;
}

/*form要求*/
.tell {
    background-color: #f5f5f5;
    padding-top: 1px;
    margin-top: 60px;
    padding-bottom: 54px;
}

.tell form {
    margin-top: 50px;
}

.tell .column input {
    border: 1px solid #eee;
    background-color: #fff;
    border-radius: 5px;
    width: 100%;
    height: 42px;
    padding-left: 6px;
    padding-right: 6px;
}

.tell textarea {
    display: block;
    width: 100%;
    height: 122px;
    padding: 10px 6px;
    border: 1px solid #eee;
    margin-top: 16px;
    border-radius: 5px;
}

.tell button {
    width: 274px;
    height: 42px;
    display: block;
    margin-right: auto;
    margin-left: auto;
    margin-top: 26px;
    border-width: 0;
    background-color: #e87655;
    color: #fff;
    border-radius: 5px;
}


/*新闻*/
.new-content {
    width: 100%;
    margin-top: 50px;
}

.new-content .newsClass-content {
    width: 20%;
}

.new-content .newsClass-content dt {
    background-color: #e45827;
    width: 100%;
}

.new-content .newsClass-content dd {
    border-width: 0 1px 1px 1px;
    border-color: #ddd;
    border-style: solid;
}

.new-content .newsClass-content dd a {
    width: 100%;
}

.new-content .newsClass-content dd.active {
    background-color: #1d2a54;
    border-width: 0 1px 1px 1px;
    border-color: #1d2a54;
    border-style: solid;
}

.new-content .newsClass-content dd.active a {
    color: #fff;
}

.new-content .newsClass-content dd:hover {
    background-color: #1d2a54;
    border-color: #1d2a54;
    border-style: solid;
}

.new-content .newsClass-content dd:hover a {
    color: #fff;
}

.news-list {
    width: 74%;
    /*column-count:3;*/
    /*-moz-column-count:3;*/
    /*-webkit-column-count:3;*/
    /*-moz-column-gap:16px;*/
    /*-webkit-column-gap:16px;*/
    /*column-gap:16px;*/
}

.news-list .box {
    width: 286px;
    box-shadow: 0 0 5px #ddd;
    margin-bottom: 20px;
}

.news-list .box a {
    display: block;
}

.news-list .thumb {
    padding-bottom: calc(217 / 387 * 100%);
}

.news-list .box .des {
    height: 40px;
}

.news-list .text-content {
    padding: 0 10px;
}

.news-list .text-content .title {
    -webkit-line-clamp: 1;
    height: 54px;
    overflow: hidden;
}

.news-list .text-content .time-box {
    width: 100%;
}

.news .news-box .column .column-box:hover .title {
    color: #e45827;
}

.news-list .box img {
    transition: all .5s;
}

.news-list .box:hover img {
    transform: translate(-50%, -50%) scale(1.02);
}

.news-list .box .time-box label {
    transition: all .5s;
}

.news-list .box:hover .time-box label {
    color: #e45827;
    margin-right: 5px;
}

/*详情*/
.details .time {
    padding-bottom: 30px;
}

.details .content {
    border-top: 1px solid #ddd;
    padding-top: 30px;
    padding-bottom: 30px;
}

.details .content * {
    line-height: 2em;
}

.details #share2 {
    padding-top: 30px;
    padding-bottom: 50px;
}

.pageBtn-content {
    padding: 20px 0 50px 0;
}

.pageBtn-content a {
    padding: 5px 10px;
    background-color: #1d2a54;
    color: #fff;
}

.pageBtn-content a + a {
    margin-left: 5px;
}

.pageBtn-content .nolinks {
    background-color: #e45827;
}

@media screen and (max-width: 750px) {
    .line-1 {
        line-height: 1em;
    }

    .line-1-5 {
        line-height: 1.5em;
    }

    .line-2 {
        line-height: 2em;
    }

    .line-2-5 {
        line-height: 2.5em;
    }

    .line-3 {
        line-height: 3em;
    }

    .line-4 {
        line-height: 4em;
    }

    .fs_16 {
        font-size: 16px;
    }

    .fs_18 {
        font-size: 18px;
    }

    .fs_20 {
        font-size: 20px;
    }

    .fs_22 {
        font-size: 22px;
    }

    .fs_24 {
        font-size: 20px;
    }

    .fs_26 {
        font-size: 20px;
    }

    .fs_28 {
        font-size: 20px;
    }

    .fs_30 {
        font-size: 20px;
    }

    .fs_32 {
        font-size: 30px;
    }

    .fs_34 {
        font-size: 30px;
    }

    .fs_36 {
        font-size: 30px;
    }

    .fs_38 {
        font-size: 30px;
    }

    .fs_40 {
        font-size: 30px;
    }

    .fs_42 {
        font-size: 30px;
    }

    .fs_44 {
        font-size: 30px;
    }

    .fs_46 {
        font-size: 30px;
    }

    .fs_48 {
        font-size: 30px;
    }

    .fs_50 {
        font-size: 30px;
    }

    .fs_52 {
        font-size: 30px;
    }

    .fs_54 {
        font-size: 30px;
    }

    .fs_56 {
        font-size: 30px;
    }

    .centered {
        width: 100%;
        padding: 0 10px;
    }

    /*PC-menu*/
    .pc-down-column {
        display: none;
    }

    /*PC-menu-end*/
    /*move-menu*/
    .move-down-column {
        z-index: 99999;
        top: 0;
        left: 0;
        background-color: #fff;
        right: 0;
        height: 60px;
        display: block;
    }

    .move-down-column .move-down-header {
        padding: 10px;
        background-color: transparent;
        height: 100%;
        display: flex;
        justify-content: space-between;
        align-items: center;
    }

    .move-down-column .move-down-header .logo {
        height: 40px;
    }

    .move-down-column .move-down-header .logo img {
        height: 100%;
    }

    .move-down-column .move-down-header .menuBtn {
        height: 40px;
    }

    .move-down-column .move-down-header .menuBtn img {
        height: 100%;
    }

    .move-down-column .move-down-content {
        position: fixed;
        left: 0;
        right: 0;
        bottom: 0;
        top: 0;
        background-color: rgba(0, 0, 0, .3);
        z-index: 99999;
        transition: all .5s;
        display: none;
    }

    .move-down-column .menu-box {
        position: absolute;
        top: 0;
        bottom: 0;
        right: 0;
        left: 40%;
        background-color: #3c3c3c;
        padding-top: 20px;
        overflow: hidden;
    }

    .move-down-column .menu-box .menu-content {
        height: 50px;
    }

    .move-down-column .menu-box .menu-content .menu-title-content {
        position: relative;
        display: flex;
        display: -webkit-flex;
        align-items: center;
        width: 100%;
        height: 50px;
        color: #fff;
        padding-left: 25px;
        padding-right: 25px;
    }

    .move-down-column .menu-box .menu-content .menu-title-content:before {
        position: absolute;
        content: '';
        width: calc(100% - 30px);
        left: 50%;
        transform: translateX(-50%);
        height: 1px;
        background-color: #fff;
        top: 49px;
    }

    .move-down-column-fixed {
        background-color: #fff;
        position: fixed;
    }

    .move-down-column-fixed {
        box-shadow: 0 0 10px #ddd;
    }

    .move-down-column .move-down-content.is-menu {
        display: block;
    }

    /*move-menu-end*/
    /*底部*/
    .footer-content .footer-down > .centered > .flex {
        display: block;
    }

    .footer-content .footer-down {
        background-image: none;
        padding-bottom: 0;
    }

    .footer-content .footer-down .centered {
        padding: 0;
    }

    .footer-content .footer-down .footer-down-left {
        background-color: #1d2a54;
        padding: 10px;
    }

    .footer-content .footer-down .footer-down-right {
        background-color: #e45827;
        padding: 0 10px;
    }

    .footer-content .footer-down .footer-down-left, .footer-content .footer-down .footer-down-right,
    .footer-content .footer-down .footer-down-left .depict, .footer-content .footer-down .footer-down-left .section,
    .footer-content .footer-down .footer-down-right .depict .centered,
    .footer-content .footer-down .footer-down-right .depict,
    .footer-content .footer-up .flex,
    .footer-content .footer-down .footer-down-right .depict {
        width: 100%;
        display: block;
        height: auto;
    }

    .flex-align-center {
        width: 100%;
    }

    .footer-content .footer-down .footer-down-left .section {
        display: none;
    }

    .footer-content .footer-down .footer-down-left .section a {
        text-align: left;
        float: left;
        width: 50%;
    }

    .footer-content .footer-down .footer-down-right .erweima {
        margin-left: auto;
        margin-right: auto;
        width: 95%;
        display: block;
    }

    .footer-content .footer-up {
        text-align: center;
    }

    .footer-content .footer-up .flex #share {
        display: flex;
        justify-content: center;
    }

    /*banner*/
    .banner-content .swiper-pagination {
        bottom: 20px;
    }

    .banner-content .swiper-button-prev {
        left: 10px;
    }

    .banner-content .swiper-button-next {
        right: 10px;
    }

    .banner-content .swiper-button-next i, .banner-content .swiper-button-prev i {
        font-size: 30px;
    }

    .banner-content .swiper-slide .text-content .index-title, .banner-content .swiper-slide .text-content .index-title span {
        font-size: 28px;
    }

    .banner-content .swiper-slide .text-content .title, .banner-content .swiper-slide .text-content .title span {
        font-size: 14px;
    }

    .banner-content .swiper-slide .text-content .index-des {
        font-size: 12px;
        margin-top: 14px;
    }

    .banner-content .swiper-slide .text-content .des {
        font-size: 12px;
        margin-top: 0;
    }

    /*banner-end*/
    /*首页banner*/
    .index-banner .swiper-slide {
        background-size: auto 110%;
    }

    .index-banner .swiper-slide .text-content {
        padding-top: 60%;
    }

    .index-banner .swiper-slide .text-content .title, .index-banner .swiper-slide .text-content .title * {
        font-size: 28px;
    }

    .index-banner .swiper-slide .text-content .des {
        font-size: 16px;
        padding: 0 10px;
        line-height: 1.5em;
    }

    .index-banner .swiper-button-prev {
        left: 10px;
    }

    .index-banner .swiper-button-next {
        right: 10px;
    }

    /*首页banner结束*/
    /*订单号跟踪*/
    .order-content {
        bottom: 0;
        width: 100%;
        border-bottom-right-radius: 0;
        border-bottom-left-radius: 0;
        position: fixed;
    }

    .order-page-content .centered, .order-page-content .order-search-content {
        width: 100%;
    }

    /*订单跟踪结束*/
    /*页面大标题*/
    .page-title-content {
        margin-top: 30px;
    }

    .page-title-content .title_en {
        font-size: 30px;
    }

    /*页面大标题结束*/
    /*四大版块*/
    .plate {
        margin-top: 50px;
    }

    .plate .column-box {
        padding-left: 20px;
        padding-right: 20px;
        height: auto;
        padding-bottom: 30px;
    }

    /*关于我们*/
    .about {
        margin-top: 50px;
        padding-top: 50px;
        padding-bottom: 50px;
    }

    .about .text-content {
        width: 100%;
        padding-right: 0;
    }

    .about .text-content .column {
        width: 100%;
    }

    .about .text-content .column .column-box {
        width: 32%;
        margin-top: 0;
        margin-left: 2%;
    }

    .about .text-content .column .column-box:nth-child(3n-2) {
        margin-left: 0;
    }

    /*公司文化*/
    .culture .column-box {
        width: 100%;
    }

    .culture .column-box .text-content > div {
        margin: 20px;
    }

    .culture .column-box:hover {
        transform: scale(1);
    }

    /*个性化*/
    .personality {
        margin-top: 50px;
    }

    .personality .title-content {
        padding-top: 40px;
    }

    .personality .column-box {
        width: 100%;
    }

    .personality .column-box + .column-box {
        margin-top: 30px;
    }

    /*客户展示*/
    .customer .swiper-slide {
        display: block;
    }

    .customer .swiper-slide .thumb {
        width: 100%;
    }

    .customer .swiper-slide .text-content {
        width: 100%;
        padding: 20px 10px 10px 10px;
    }

    .customer .swiper-slide .text-content i {
        margin: 10px 0;
    }

    .customer .swiper-slide .text-content .des {
        margin-top: 10px;
    }

    /*下单方式*/
    .logistics {
        margin-top: 30px;
        padding-bottom: 40px;
    }

    .logistics .column {
        margin-top: 0;
    }

    .logistics .column .column-box {
        width: 48%;
        margin-top: 20px;
    }

    .logistics .column .column-box:nth-child(2n) {
        margin-left: 4%;
    }

    .logistics .column-box:before, .logistics .column-box:after {
        display: none;
    }

    .logistics .column-box .text-content {
        margin-top: 10px;
    }

    /*新闻中心*/
    .news .news-title {
        margin-top: 20px;
    }

    .news .news-box {
        margin-top: 30px;
    }

    /*咨询*/
    .advisory {
        margin-top: 40px;
    }

    .advisory .centered {
        width: 100%;
    }

    .advisory .advisory-ex {
        display: block;
        column-count: 1;
    }

    .advisory .advisory-ex li {
        width: 60%;
        column-span: all;
        margin-left: 20%;
        margin-right: 20%;
    }

    .advisory .advisory-ex li + li {
        margin-left: 20%;
        margin-top: 10px;
    }

    .advisory .input-content {
        display: block;
        margin-top: 0;
    }

    .advisory .input-content .name, .advisory .input-content .phone, .advisory textarea {
        width: 100%;
        margin-left: 0;
        margin-top: 10px;
    }

    .advisory form {
        width: 100%;
    }

    .advisory form button {
        margin-top: 10px;
    }

    /*公司简介*/
    .contact .column {
        display: block;
    }

    .contact .column .column-box {
        width: 100%;
    }

    .contact .text-content {
        padding-left: 10px;
        padding-right: 10px;
        padding-bottom: 10px;
    }

    .contact .text-content .title {
        margin-top: 10px;
    }

    .contact .text-content .des p {
        margin-top: 10px;
    }

    /*业务战略*/
    .strategy {
        padding-bottom: 20px;
    }

    /*联系我们*/
    .contactUs .centered > .flex {
        display: block;
    }

    .contactUs .contactUs-one {
        display: none;
    }

    .contactUs .contactUs-two {
        margin-top: 0;
        padding-top: 0;
    }

    .contactUs .contactUs-two {
        display: block;
        width: 100%;
    }

    .contactUs .erweima {
        margin-left: auto;
        margin-right: auto;
    }

    .adrMap {
        height: 300px;
        margin-top: 20px;
    }

    .tell {
        margin-top: 20px;
        padding-bottom: 20px;
    }

    .tell form {
        margin-top: 20px;
    }

    /*新闻列表页*/
    .new-content {
        display: block;
        margin-top: 20px;
    }

    .new-content .newsClass-content {
        display: block;
        width: 100%;
    }

    .new-content .newsClass-content dt {
        display: none;
    }

    .new-content .newsClass-content dd {
        border-top: 1px solid #ddd;
        float: left;
        width: 33.3%;
    }

    .new-content .newsClass-content dd + dd {
        border-left-width: 0;
    }

    .news-list {
        margin-top: 20px;
        width: 100%;
        column-count: 1;
        -moz-column-count: 1;
        -webkit-column-count: 1;
    }

    .news-list .box {
        width: 100%;
    }

    .pageBtn-content {
        padding: 20px 0;
    }

    .details #share2 {
        padding: 20px 0;
    }
}

/*返回顶部*/
.gototop {
    display: none;
    -webkit-animation: hide 350ms ease-out forwards 1;
    animation: hide 350ms ease-out forwards 1;
    width: 50px;
    height: 50px;
    border-radius: 50%;
    text-align: center;
    box-shadow: #e45827 0 0 5px;
    color: #e45827;
    position: fixed;
    bottom: 16px;
    right: 16px;
    -webkit-transition: background-color 100ms ease-in-out;
    transition: background-color 100ms ease-in-out;
    border: 0;
}

.gototop > span {
    display: inline-block;
    -webkit-transition: transform 100ms 100ms ease-in-out;
    transition: transform 100ms 100ms ease-in-out;
}

.gototop > span > i {
    font-size: 20px;
    font-weight: bold;
}

.gototop:hover {
    background-color: #D5D6E2;
}

.gototop:hover > span,
.gototop:focus > span {
    -webkit-transform: translateY(-2px);
    transform: translateY(-2px);
}

.isvisible {
    -webkit-animation: show 1s ease-out forwards 1;
    animation: show 1s ease-out forwards 1;
}

@-webkit-keyframes hide {
    0% {
        opacity: 1;
        -webkit-transform: translateY(0);
    }
    25% {
        opacity: .5;
        -webkit-transform: rotate(-3deg) translateY(-40px);
    }
    75% {
        -webkit-transform: rotate(3deg);
    }
    100% {
        opacity: 0;
        -webkit-transform: translateY(100px);
    }
}

@keyframes hide {
    0% {
        opacity: 1;
        transform: translateY(0);
    }
    25% {
        opacity: .5;
        transform: rotate(-3deg) translateY(-40px);
    }
    75% {
        transform: rotate(3deg);
    }
    100% {
        opacity: 0;
        transform: translateY(100px);
    }
}

@-webkit-keyframes show {
    0% {
        -webkit-transform: rotate(0deg);
    }
    25% {
        opacity: .5;
        -webkit-transform: rotate(-3deg) translateY(-40px);
    }
    75% {
        -webkit-transform: rotate(3deg);
    }
    100% {
        opacity: 1;
        -webkit-transform: rotate(0deg);
    }
}

@keyframes show {
    0% {
        transform: rotate(0deg);
    }
    25% {
        opacity: .5;
        transform: rotate(-3deg) translateY(-40px);
    }
    75% {
        transform: rotate(3deg);
    }
    100% {
        opacity: 1;
        transform: rotate(0deg);
    }
}
