.zoomPad {
    position: relative;
    float: left;
    z-index: 99;
    cursor: crosshair;
}


.zoomPreload {
    -moz-opacity: 0.8;
    opacity: 0.8;
    filter: alpha(opacity=80);
    color: #333;
    font-size: 12px;
    font-family: Tahoma;
    text-decoration: none;
    border: 1px solid #CCC;
    background-color: white;
    padding: 8px;
    text-align: center;
    background-image: url(../images/zoomloader.gif);
    background-repeat: no-repeat;
    background-position: 43px 30px;
    z-index: 110;
    width: 90px;
    height: 43px;
    position: absolute;
    top: 0px;
    left: 0px;
    *width: 100px;
    *height: 49px;
}


.zoomPup {
    overflow: hidden;
    background-color: #FFF;
    -moz-opacity: 0.6;
    opacity: 0.6;
    filter: alpha(opacity=60);
    z-index: 120;
    position: absolute;
    border: 1px solid #CCC;
    z-index: 101;
    cursor: crosshair;
}


.zoomOverlay {
    position: absolute;
    left: 0px;
    top: 0px;
    background: #FFF;
    /*opacity:0.5;*/
    z-index: 5000;
    width: 100%;
    height: 100%;
    display: none;
    z-index: 101;
}

.zoomWindow {
    position: absolute;
    left: 110%;
    top: 40px;
    background: #FFF;
    z-index: 6000;
    height: auto;
    z-index: 10000;
    z-index: 110;
}

.zoomWrapper {
    position: relative;
    border: 1px solid #999;
    z-index: 110;
}

.zoomWrapperTitle {
    display: block;
    background: #999;
    color: #FFF;
    height: 18px;
    line-height: 18px;
    width: 100%;
    overflow: hidden;
    text-align: center;
    font-size: 10px;
    position: absolute;
    top: 0px;
    left: 0px;
    z-index: 120;
    -moz-opacity: 0.6;
    opacity: 0.6;
    filter: alpha(opacity=60);
}

.zoomWrapperImage {
    display: block;
    position: relative;
    overflow: hidden;
    z-index: 110;

}

.zoomWrapperImage img {
    border: 0px;
    display: block;
    position: absolute;
    z-index: 101;
}

.zoomIframe {
    z-index: -1;
    filter: alpha(opacity=0);
    -moz-opacity: 0.80;
    opacity: 0.80;
    position: absolute;
    display: block;
}

/*********************************************************
/ When clicking on thumbs jqzoom will add the class
/ "zoomThumbActive" on the anchor selected
/*********************************************************/
#baguetteBox-overlay {
    display: none;
    opacity: 0;
    position: fixed;
    overflow: hidden;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background-color: #222;
    background-color: rgba(0, 0, 0, 0.8);
    -webkit-transition: opacity .5s ease;
    -o-transition: opacity .5s ease;
    -moz-transition: opacity .5s ease;
    transition: opacity .5s ease;
    z-index: 99999999999999999999999999999999999999;
}

#baguetteBox-overlay.visible {
    opacity: 1;
}

#baguetteBox-overlay .full-image {
    display: inline-block;
    position: relative;
    width: 100%;
    height: 100%;
    text-align: center;
}

#baguetteBox-overlay .full-image figure {
    display: inline;
    margin: 0;
    height: 100%;
}

#baguetteBox-overlay .full-image img {
    display: inline-block;
    width: auto;
    height: auto;
    max-height: 100%;
    max-width: 100%;
    vertical-align: middle;
    -webkit-box-shadow: 0 0 8px rgba(0, 0, 0, 0.6);
    box-shadow: 0 0 8px rgba(0, 0, 0, 0.6);
}

#baguetteBox-overlay .full-image figcaption {
    display: block;
    position: absolute;
    bottom: 0;
    width: 100%;
    text-align: center;
    line-height: 1.8;
    color: #ccc;
    background-color: #000;
    background-color: rgba(0, 0, 0, 0.6);
    font-family: Verdana, Geneva, sans-serif;
}

#baguetteBox-overlay .full-image:before {
    content: "";
    display: inline-block;
    height: 50%;
    width: 1px;
    margin-right: -1px;
}

#baguetteBox-slider {
    position: absolute;
    left: 0;
    top: 0;
    height: 100%;
    width: 100%;
    white-space: nowrap;
    -webkit-transition: left .4s ease, -webkit-transform .4s ease;
    transition: left .4s ease, -webkit-transform .4s ease;
    -o-transition: left .4s ease, -o-transform .4s ease;
    -moz-transition: left .4s ease, transform .4s ease, -moz-transform .4s ease;
    transition: left .4s ease, transform .4s ease;
    transition: left .4s ease, transform .4s ease, -webkit-transform .4s ease, -moz-transform .4s ease, -o-transform .4s ease;
    transition: left .4s ease, transform .4s ease, -webkit-transform .4s ease;
}

#baguetteBox-slider.bounce-from-right {
    -webkit-animation: bounceFromRight .4s ease-out;
    -moz-animation: bounceFromRight .4s ease-out;
    animation: bounceFromRight .4s ease-out;
}

#baguetteBox-slider.bounce-from-left {
    -webkit-animation: bounceFromLeft .4s ease-out;
    -moz-animation: bounceFromLeft .4s ease-out;
    animation: bounceFromLeft .4s ease-out;
}

.baguetteBox-button#next-button, .baguetteBox-button#previous-button {
    top: 50%;
    top: -webkit-calc(50% - 30px);
    top: -moz-calc(50% - 30px);
    top: calc(50% - 30px);
    width: 44px;
    height: 60px;
}

.baguetteBox-button {
    position: absolute;
    cursor: pointer;
    outline: 0;
    padding: 0;
    margin: 0;
    border: 0;
    border-radius: 15%;
    background-color: #323232;
    background-color: rgba(50, 50, 50, 0.5);
    color: #ddd;
    font: 1.6em sans-serif;
    -webkit-transition: background-color .4s ease;
    -o-transition: background-color .4s ease;
    -moz-transition: background-color .4s ease;
    transition: background-color .4s ease;
}

.baguetteBox-button:hover {
    background-color: rgba(50, 50, 50, 0.9);
}

.baguetteBox-button#next-button {
    right: 2%;
    display: block !important;
}

.baguetteBox-button#previous-button {
    left: 2%;
    display: block !important;
}

.baguetteBox-button#close-button {
    top: 20px;
    right: 2%;
    right: -webkit-calc(2% + 6px);
    right: -moz-calc(2% + 6px);
    right: calc(2% + 6px);
    width: 30px;
    height: 30px;
}

.baguetteBox-button svg {
    position: absolute;
    left: 0;
    top: 0;
}

/*# sourceMappingURL=baguetteBox.css.map */

/* CSS Document */
* {
    margin: 0;
    padding: 0;
}

html {
    font-size: 62.5%;
}

body {
    background-color: #fff;
    color: #333;
    font-family: "OpenSans";
    font-size: 14px;
    font-size: 1.4rem;
    max-width: 1920px;
    margin: 0 auto;
    overflow-x: hidden;
}

img {
    border: none;
}

ul li {
    list-style-type: none;
}

ul, form, p, a, img, table, tr, td, li, dd, dt, dl, span {
    margin: 0;
    padding: 0;
    list-style: none;
}

a {
    text-decoration: none;
    color: #333;
    outline: none;
    transition: 0.3s;
    -moz-transition: 0.3s;
    -o-transition: 0.3s;
    -webkit-transition: 0.3s;
}

h1 {
    margin: 0;
    padding: 0;
    font-weight: normal;
}

input, textarea {
    font-family: "OpenSans";
    font-size: 14px;
    font-size: 1.4rem;
    border: none;
    outline: none;
}

img {
    max-width: 100%;
    border: 0px solid #ccc;
}

embed, video {
    max-width: 100%;
}

input, textarea {
    border: none;
    background: none;
    font-family: inherit;
}

input[type="submit"], textarea[type="submit"] {
    cursor: pointer;
}

input[type="checkbox"], textarea[type="checkbox"] {
    cursor: pointer;
}

input[type="radio"], textarea[type="radio"] {
    cursor: pointer;
}

input:focus, textarea:focus {
    outline: none;
}

textarea {
    resize: none;
}

.pull-left {
    float: left;
}

.pull-right {
    float: right;
}

.clear {
    clear: both;
}

.fix {
    *zoom: 1;
}

.fix:after, .fix:before {
    display: block;
    content: "clear";
    height: 0;
    clear: both;
    overflow: hidden;
    visibility: hidden;
}

/* html5 */
article, aside, dialog, footer, header, section, footer, nav, figure, menu {
    display: block;
}

ul, form, p, a, img, table, tr, td, ul, li, dd, dt, dl, span, div {
    box-sizing: border-box;
    -moz-box-sizing: border-box;
    -webkit-box-sizing: border-box;
}

input, textarea {
    box-sizing: border-box;
    -moz-box-sizing: border-box;
    -webkit-box-sizing: border-box;
}

::-webkit-input-placeholder {
    color: #A6A6A6;
    opacity: 1;
}

/* WebKit browsers */
:-o-placeholder {
    color: #A6A6A6;
    opacity: 1;
}

/* Mozilla Firefox 4 to 18 */
::-moz-placeholder {
    color: #A6A6A6;
    opacity: 1;
}

/* Mozilla Firefox 19+ */
:-ms-input-placeholder {
    color: #A6A6A6;
    opacity: 1;
}

/* Internet Explorer 10+ */
.self-ellipsis {
    overflow: hidden;
    white-space: nowrap;
    text-overflow: ellipsis;
}

.self-ellipsis-2 {
    display: -webkit-box;
    overflow: hidden;
    white-space: normal !important;
    text-overflow: ellipsis;
    word-wrap: break-word;
    -webkit-line-clamp: 2;
    -webkit-box-orient: vertical;
}

.self-ellipsis-3 {
    display: -webkit-box;
    overflow: hidden;
    white-space: normal !important;
    text-overflow: ellipsis;
    word-wrap: break-word;
    -webkit-line-clamp: 3;
    -webkit-box-orient: vertical;
}

.self-ellipsis-4 {
    display: -webkit-box;
    overflow: hidden;
    white-space: normal !important;
    text-overflow: ellipsis;
    word-wrap: break-word;
    -webkit-line-clamp: 4;
    -webkit-box-orient: vertical;
}

.relative {
    position: relative;
}

.absolute {
    position: absolute;
}

.common-vc {
    position: absolute;
    top: 50%;
    transform: translateY(-50%);
    -ms-transform: translateY(-50%);
    -webkit-transform: translateY(-50%);
    -moz-transform: translateY(-50%);
    -o-transform: translateY(-50%);
}

.common-hc {
    position: absolute;
    left: 50%;
    transform: translateX(-50%);
    -ms-transform: translateX(-50%);
    -webkit-transform: translateX(-50%);
    -moz-transform: translateX(-50%);
    -o-transform: translateX(-50%);
}

.common-center {
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    -ms-transform: translate(-50%, -50%);
    -webkit-transform: translate(-50%, -50%);
    -moz-transform: translate(-50%, -50%);
    -o-transform: translate(-50%, -50%);
}

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

.text-left {
    text-align: left;
}

.nlazy {
    min-width: 20%;
}

::-moz-selection {
    color: #fff;
    background: #145a91;
}

::selection {
    color: #fff;
    background: #145a91;
}

.email {
    word-break: break-all;
}

/**/
[class*="-item"] .item-pic, [class*="-item"] .item-pics {
    position: relative;
    display: block;
    text-align: center;
    overflow: hidden;
}

[class*="-item"] .item-pic img {
    -webkit-transition: all 350ms;
    -o-transition: all 350ms;
    -moz-transition: all 350ms;
    transition: all 350ms;
}

[class*="-item"] .item-pic:hover img {
    -webkit-transform: scale(1.1);
    -moz-transform: scale(1.1);
    -ms-transform: scale(1.1);
    -o-transform: scale(1.1);
    transform: scale(1.1);
}

[class*="-item"] .item-title {
    overflow: hidden;
}

[class*="-item"] .item-title a:hover {
    color: #145a91 !important;
}

[class*="-item"] .item-subt {
    overflow: hidden;
}

[class*="-item"] .item-subt a:hover {
    color: #145a91 !important;
}

[class*="-item"] .item-desc {
    overflow: hidden;
}

[class*="-item"] .item-desc a {
    display: block;
    color: #666;
}

[class*="-item"] .item-desc a:hover {
    color: #145a91 !important;
}

/* @media screen and (min-width:1420px) {.wp {width: 1410px;margin: auto;}}

@media screen and (min-width:1220px) and (max-width:1419px) {.wp {width: 1200px;margin: auto;}} */
.wp {
    width: 1200px;
    margin: auto;
}

@media screen and (min-width: 1220px) {
    .wp {
        width: 1200px;
        margin: auto;
    }
}

@media screen and (min-width: 1000px) and (max-width: 1219px) {
    .wp {
        width: 980px;
        margin: auto;
    }
}

@media screen and (max-width: 999px) {
    .wp {
        width: 95%;
        margin: auto;
    }
}

@media screen and (min-width: 1220px) {
    .no_marginr {
        margin-right: auto !important;
    }

    .no_marginl {
        margin-left: auto !important;
    }
}

@media screen and (min-width: 1000px) and (max-width: 1219px) {
    .no_marginr {
        margin-right: auto !important;
    }

    .no_marginl {
        margin-left: auto !important;
    }
}

.at-resp-share-element .at4-share-count-container {
    text-decoration: none;
    float: right;
    padding-right: 15px;
    line-height: 25px !important;
}

.at-resp-share-element .at-icon {
    width: 24px !important;
    height: 24px !important;
}

.at-style-responsive .at-share-btn {
    padding: 0 !important;
    border-radius: 2px !important;
}

.at-resp-share-element .at-share-btn .at-icon-wrapper {
    width: 24px !important;
    height: 24px !important;
}

.at-resp-share-element .at-share-btn {
    margin-bottom: 0 !important;
    margin-right: 3px !important;
}

.at-resp-share-element .at-icon {
    width: 24px !important;
    height: 24px !important;
}

.at-style-responsive .at-share-btn {
    padding: 0 !important;
    border-radius: 2px !important;
}

.at-resp-share-element .at-share-btn .at-icon-wrapper {
    width: 24px !important;
    height: 24px !important;
}

.at-resp-share-element .at-share-btn {
    margin-bottom: 0 !important;
    margin-right: 3px !important;
}

.an-bd3 {
    position: relative;
}

.an-bd3 .item-backdrop {
    content: '';
    background-color: #000;
    background: rgba(0, 0, 0, 0.37);
    position: absolute;
    left: 0;
    right: 0;
    top: 0;
    bottom: 0;
    -webkit-transition: all .3s;
    -o-transition: all .3s;
    -moz-transition: all .3s;
    transition: all .3s;
}

@media screen and (min-width: 992px) {
    .an-bd3 .item-backdrop {
        visibility: hidden;
        opacity: 0;
        filter: alpha(opacity=0);
        -ms-filter: "progid:DXImageTransform.Microsoft.Alpha(Opacity=0)";
        -webkit-transform: scale(0);
        -moz-transform: scale(0);
        -ms-transform: scale(0);
        -o-transform: scale(0);
        transform: scale(0);
    }
}

@media screen and (min-width: 992px) {
    .an-bd3:hover .item-backdrop {
        visibility: visible;
        opacity: 1;
        filter: alpha(opacity=100);
        -ms-filter: "progid:DXImageTransform.Microsoft.Alpha(Opacity=100)";
        -webkit-transform: scale(1);
        -moz-transform: scale(1);
        -ms-transform: scale(1);
        -o-transform: scale(1);
        transform: scale(1);
    }
}

.item-table {
    display: table;
    table-layout: fixed;
    width: 100%;
    height: 100%;
}

.item-cell {
    display: table-cell;
    width: 100%;
    height: 100%;
    vertical-align: middle;
}

/*-------------table start-------------------------------------------------------------------*/
.table table {
    width: 100%;
    border-collapse: collapse;
    line-height: 22px;
    border: 1px solid #ccc;
}

.table table tr td {
    padding: 3px;
    border: 1px solid #ccc;
}

@media screen and (max-width: 1000px) {
    .table {
        width: 100%;
        overflow: scroll;
    }

    .table table {
        width: 885px;
    }
}

@media screen and (max-width: 767px) {
    .table table tr td {
        height: 28px;
    }
}

/*-------------table end---------------------------------------------------------------------*/
/*-------------proslide_menubtn start--------------------------------------------------------*/
.proslide_menubtn {
    display: none;
    width: 23px;
    height: 18px;
    position: absolute;
    top: 12px;
    right: 12px;
    cursor: pointer;
    -webkit-transition: all 0.4s ease 0s;
    -o-transition: all 0.4s ease 0s;
    -moz-transition: all 0.4s ease 0s;
    transition: all 0.4s ease 0s;
    z-index: 9999;
}

.proslide_menubtn span {
    display: block;
    width: 100%;
    height: 3px;
    margin-bottom: 3px;
    background-color: #FFFFFF;
}

@media screen and (max-width: 767px) {
    .proslide_menubtn {
        display: block;
    }
}

/*-------------proslide_menubtn end----------------------------------------------------------*/
/*-------------page-start--------------------------------------------------------------------*/
.page {
    text-align: center;
    overflow: hidden;
}

.page a {
    display: inline-block;
    border: solid 1px #ededed;
    background-color: #f8f8f8;
    color: #333;
    width: 44px;
    height: 37px;
    line-height: 35px;
    margin: 0 4px 10px;
}

.page a.prev, .page a.next {
    width: 60px;
    border: 0;
    background-color: transparent;
}

.page a:hover, .page a.page-active {
    border-color: #145a91;
    background-color: #145a91;
    color: #FFFFFF;
}

@media only screen and (max-width: 767px) {
    .page a {
        height: 28px;
        line-height: 26px;
        width: 33px;
        font-size: 12px;
        font-size: 1.2rem;
    }

    .page a.prev, .page a.next {
        width: 40px;
    }
}

.page .fl {
    float: none;
    display: inline-block;
}

.page .add-form {
    float: none;
    display: inline-block;
    background: url(../images/af-bg.png) no-repeat right center;
    padding-right: 36px;
    margin-left: 15px;
}

.page .add-form .add-btn {
    text-align: center;
    width: 176px;
    height: 37px;
    line-height: 37px;
    background-color: #145a91;
    color: #FFFFFF;
    cursor: pointer;
    letter-spacing: 1px;
    font-size: 14px;
    font-size: 1.4rem;
}

.page .add-form .add-btn:hover {
    background-color: #333;
}

@media only screen and (max-width: 767px) {
    .page .add-form {
        margin-left: 0;
        padding-right: 20px;
        background-size: 15px;
    }

    .page .add-form .add-btn {
        width: 140px;
        height: 28px;
        line-height: 26px;
        font-size: 14px;
        font-size: 1.4rem;
        letter-spacing: 0;
    }
}

/*-------------page-end--------------------------------------------------------------------*/
/*-------------contact start---------------------------------------------------------------*/

/*back-top*/
.back-top {
    position: fixed;
    right: 80px;
    bottom: -100px;
    -webkit-transition: 1s;
    -o-transition: 1s;
    -moz-transition: 1s;
    transition: 1s;
    cursor: pointer;
    z-index: 998;
    width: 69px;
    height: 69px;
    line-height: 69px;
    text-align: center;
    border-radius: 5px;
    background-color: #eee;
    box-shadow: 0px 4px 10px 0px rgba(0, 0, 0, 0.3);
    border-radius: 5px;
}

.back-top .iconfont {
    font-size: 31px;
    font-size: 3.1rem;
    color: #145a91;
}

@media screen and (max-width: 767px) {
    .back-top {
        width: 50px;
        height: 50px;
        line-height: 50px;
        right: 10px
    }
}

/*-------------contact end-----------------------------------------------------------------*/
/*-------------pro-share start-------------------------------------------------------------*/
.pro-share {
    height: 280px;
    font-size: 0;
    letter-spacing: 0;
}

.pro-share .share-title {
    margin-right: 8px;
    display: inline-block;
    *display: inline;
    *zoom: 1;
    line-height: 26px;
    font-size: 14px;
    font-size: 1.4rem;
    color: #333;
}

.pro-share .share-pic {
    display: inline-block;
    *display: inline;
    *zoom: 1;
    vertical-align: top;
    height: 26px;
}

/*-------------pro-share end---------------------------------------------------------------*/
/*-------------m-oths----------------------------------------------------------------------*/
.m-oths {
    padding: 37px 0 0;
    border-top: solid 1px #333;
}

.m-oths .oths-item {
    font-size: 16px;
    font-size: 1.6rem;
    line-height: 24px;
}

.m-oths .oths-item, .m-oths .oths-item a {
    color: #333;
}

.m-oths .oths-item a:hover {
    color: #145a91;
}

.m-oths .oths-item-1 {
    margin-bottom: 20px;
}

@media only screen and (max-width: 767px) {
    .m-oths {
        padding: 20px 0 0;
    }

    .m-oths .oths-item {
        font-size: 14px;
        font-size: 1.4rem;
    }

    .m-oths .oths-item-1 {
        margin-bottom: 10px;
    }
}

/*-------------bread start-----------------------------------------------------------------*/
.bread {
    height: 265px;
    background-size: cover;
    padding: 80px 0 15px;
}

.bread .item-title {
    font-family: "OpenSans-Semibold";
    font-size: 40px;
    font-size: 4rem;
}

.bread .item-title a:hover {
    text-decoration: underline;
}

.bread .item-subt {
    margin-top: 8px;
    font-size: 16px;
    font-size: 1.6rem;
    text-transform: capitalize;
    line-height: 24px;
}

.bread .item-subt a:hover, .bread .item-subt .bread-active {
    text-decoration: underline;
}

.bread, .bread a, .bread p {
    color: #fff;
}

.bread .item-subt .bread-active {
    cursor: auto;
}

@media screen and (max-width: 1219px) {
    .bread .item-title {
        font-size: 34px;
        font-size: 3.4rem;
    }
}

@media screen and (max-width: 999px) {
    .bread {
        height: auto;
        padding: 50px 0;
    }

    .bread .item-title {
        font-size: 28px;
        font-size: 2.8rem;
    }

    .bread .item-subt {
        margin-top: 10px;
    }
}

@media screen and (max-width: 767px) {
    .bread {
        height: auto;
        padding: 30px 0;
    }

    .bread .item-title {
        font-size: 22px;
        font-size: 2.2rem;
    }

    .bread .item-subt {
        font-size: 14px;
        font-size: 1.4rem;
        line-height: 24px;
        margin-top: 5px;
    }
}

/*-------------bread end-------------------------------------------------------------------*/
.search-box ::-webkit-input-placeholder {
    color: #666;
    opacity: 1;
}

/* WebKit browsers */
.search-box :-o-placeholder {
    color: #666;
    opacity: 1;
}

/* Mozilla Firefox 4 to 18 */
.search-box ::-moz-placeholder {
    color: #666;
    opacity: 1;
}

/* Mozilla Firefox 19+ */
.search-box :-ms-input-placeholder {
    color: #666;
    opacity: 1;
}

/* Internet Explorer 10+ */
.search {
    position: relative;
}

.search .search-icon {
    cursor: pointer;
    display: block;
}

.search .search-icon .iconfont {
    font-size: 23px;
    font-size: 2.3rem;
    color: #155990;
    line-height: 26px;
    display: inline-block;
}

@media screen and (max-width: 999px) {
    .search .search-icon .iconfont {
        font-size: 18px;
        font-size: 1.8rem;
    }
}

.search .search-box {
    display: none;
    overflow: hidden;
    position: absolute;
    top: 35px;
    right: 0;
    z-index: 999;
    width: 250px;
    height: 32px;
    border-radius: 2px;
    border: solid 1px #BFBFBF;
    background-color: #FFFFFF;
    cursor: pointer;
}

.search .search-box .iconfont {
    font-size: 16px;
    font-size: 1.6rem;
    color: #333;
    position: absolute;
    width: 29px;
    height: 16px;
    line-height: 16px;
    text-align: center;
    right: 0;
    top: 50%;
    margin-top: -8px;
    z-index: -1;
}

.search .search-input {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    line-height: 32px;
    padding: 0 35px 0 9px;
}

.search .search-submit {
    position: absolute;
    width: 35px;
    height: 100%;
    top: 0px;
    right: 0px;
    cursor: pointer;
    z-index: 1;
}

/*-------------header start----------------------------------------------------------------*/
.header {
    background-color: #fff;
}

@media screen and (max-width: 767px) {
    .header {
        margin-bottom: 1px;
		background-color: black; /* 背景色黑色 */
    }
}

.header .h-top {
    padding: 40px 0 48px;
}

.header .h-top .wp {
    position: relative;
}

.header .h-top, .header .h-top a {
    color: #18669a;
}

.header .h-top a:hover {
    color: #ccc;
}

.header .h-top .langbox {
    margin: 0 0 0 56px;
    position: relative;
}

@media screen and (max-width: 999px) {
    .header .h-top .langbox {
        margin-left: 10px;
    }
}

.header .h-top .langbox .current-lang {
    width: 100%;
    background: url(../images/lang.png) no-repeat right center;
    display: inline-block;
    padding-right: 21px;
    line-height: 26px;
    cursor: pointer;
    font-size: 16px;
    font-size: 1.6rem;
}

@media screen and (max-width: 767px) {
    .header .h-top .langbox .current-lang {
        font-size: 14px;
        font-size: 1.4rem;
        line-height: 20px;
    }
}

.header .h-top .langbox .lang-list {
    display: none;
    position: absolute;
    top: 100%;
    right: 0;
    width: 120px;
    line-height: 24px;
    padding: 5px;
    background-color: #f5f5f5;
    z-index: 999;
}

.header .h-top .langbox .lang-list a {
    color: #333;
    display: block;
    text-align: center;
}

.header .h-top .langbox .lang-list a:hover {
    color: #145a91;
}

.header .h-select {
    float: right;
    position: relative;
    margin-right: 50px;
}

@media screen and (max-width: 999px) {
    .header .h-select {
        display: none;
    }
}

.header .h-select .iconfont {
    display: block;
    font-size: 26px;
    font-size: 2.6rem;
    color: #fff;
    cursor: pointer;
}

.header .h-select .box-yiji {
    display: none;
    position: absolute;
    right: 0;
    top: 100%;
    width: 180px;
    background: #FFFFFF;
    box-shadow: 2px 0px 9px 0px rgba(0, 0, 0, 0.21);
    z-index: 99;
}

.header .h-select .box-yiji li {
    position: relative;
}

.header .h-select .box-yiji li > a {
    line-height: 30px;
    display: block;
    padding: 5px 15px;
    text-transform: capitalize;
    color: #333;
}

.header .h-select .box-yiji li > a:hover {
    background-color: #145a91;
    color: #fff;
}

.header .h-select .box-yiji li.active > a {
    background-color: #145a91;
    color: #fff;
}

.header .h-select .box-yiji li:hover .box-erji {
    -webkit-transform: translateY(0px);
    -moz-transform: translateY(0px);
    -ms-transform: translateY(0px);
    -o-transform: translateY(0px);
    transform: translateY(0px);
    visibility: visible;
    opacity: 1;
}

.header .h-select .box-erji {
    position: absolute;
    right: 100%;
    top: 0;
    background: #FFFFFF;
    box-shadow: 2px 0px 9px 0px rgba(0, 0, 0, 0.21);
    width: 180px;
    display: block;
    visibility: hidden;
    opacity: 0;
    -webkit-transform: translateY(30px);
    -moz-transform: translateY(30px);
    -ms-transform: translateY(30px);
    -o-transform: translateY(30px);
    transform: translateY(30px);
    -webkit-transform-origin: top;
    -moz-transform-origin: top;
    -ms-transform-origin: top;
    -o-transform-origin: top;
    transform-origin: top;
    -webkit-transition: all 400ms ease;
    -o-transition: all 400ms ease;
    -moz-transition: all 400ms ease;
    transition: all 400ms ease;
}


.header .h-top .item-p {
    font-size: 16px;
    font-size: 1.6rem;
    line-height: 26px;
    margin-right: 22px;
}

.header .h-top .item-p .iconfont {
    display: inline-block;
    vertical-align: middle;
}

.header .h-top .item-p .icon-tel1 {
    font-size: 23px;
    font-size: 2.3rem;
}

.header .h-top .item-p .icon-email11 {
    font-size: 27px;
    font-size: 2.7rem;
}

@media screen and (max-width: 1219px) {
    .header .h-top .box-list {
        margin-top: -10px;
    }

    .header .h-top .item-p {
        float: none;
    }
}

@media screen and (max-width: 999px) {
    .header .h-top {
        padding: 5px 35px 0;
    }

    .header .h-top .box-list {
        display: none;
    }
}

.header .h-bot {
    background-color: #145a91;
}

.header .logo {
    display: block;
}

@media screen and (max-width: 999px) {
    .header .logo {
        position: relative;
        top: auto;
        left: auto;
        float: none;
        margin: 15px auto 25px;
        width: 200px;
    }
}

.header .navlist {
    font-size: 0;
    letter-spacing: 0;
    text-align: center;
}

.header .navlist > li {
    display: inline-block;
    vertical-align: top;
    position: relative;
    margin-left: 40px;
}

.header .navlist > li:first-child {
    margin-left: 0;
}

.header .navlist > li > a {
    position: relative;
    display: inline-block;
    font-size: 16px;
    font-size: 1.6rem;
    font-family: "OpenSans-Semibold";
    text-transform: uppercase;
    line-height: 30px;
    border-bottom: solid 2px transparent;
    color: #fff;
    padding: 14px 3px 13px;
}

.header .navlist > li.nav-active > a, .header .navlist > li:hover > a {
    border-bottom-color: #fff;
}

@media screen and (max-width: 999px) {
    .header .navlist > li {
        margin-left: 0;
        width: 14.28%;
    }

    .header .navlist > li > a {
        font-size: 14px;
        font-size: 1.4rem;
    }
}

@media screen and (max-width: 999px) {
    .header .navlist {
        display: none;
    }
}

.header .navlist li:hover .yiji {
    top: 100%;
}

.header .yiji {
    z-index: 99;
    position: absolute;
    top: -9999px;
    width: 206px;
    left: 0;
    border-top: solid 15px transparent;
}

.header .yiji li {
    background-color: #fff;
    position: relative;
    text-align: left;
}

.header .yiji li > a {
    display: block;
    line-height: 24px;
    padding: 10px 15px 9px 23px;
    font-size: 16px;
    font-size: 1.6rem;
}

.header .yiji li:hover > a {
    background-color: #145a91;
    color: #fff;
}

.header .yiji li:hover .erji {
    left: 100%;
}

@media screen and (max-width: 980px) {
    .header .yiji {
        display: none;
    }
}

.header .erji li:hover .sanji {
    left: 100%;
}

.header .erji, .header .sanji {
    position: absolute;
    left: -9999px;
    top: 0;
    border-left: solid 1px transparent;
    width: 206px;
}

/*-------------header end------------------------------------------------------------------*/
/*-------------footer start----------------------------------------------------------------*/
.footer ::-webkit-input-placeholder {
    color: #999;
    opacity: 1;
}

/* WebKit browsers */
.footer :-o-placeholder {
    color: #999;
    opacity: 1;
}

/* Mozilla Firefox 4 to 18 */
.footer ::-moz-placeholder {
    color: #999;
    opacity: 1;
}

/* Mozilla Firefox 19+ */
.footer :-ms-input-placeholder {
    color: #999;
    opacity: 1;
}

/* Internet Explorer 10+ */
.footer {
    overflow: hidden;
    background-color: #000;
}

@media screen and (max-width: 767px) {
    .footer {
        padding-bottom: 80px;
    }
}


.footer, .footer a {
    color: #EEEEEE;
}

.footer a:hover {
    color: #145a91;
}

.footer .f-top {
    padding: 48px 0 68px;
}

.footer .f-top .footer-title {
    font-size: 24px;
    font-size: 2.4rem;
    text-transform: uppercase;
    margin-bottom: 24px;
}

.footer .f-top li {
    line-height: 30px;
    font-size: 14px;
    font-size: 1.4rem;
}

.footer .f-top .flist1 {
    width: 490px;
}

.footer .f-top .flist1 li {
    line-height: 26px;
}

.footer .f-top .flist2 {
    width: 295px;
}

.footer .f-top .flist3 {
    width: 170px;
}

.footer .f-top .f-follow {
    padding-top: 5px;
}

.footer .f-top .f-follow a {
    float: left;
    margin-right: 17px;
    margin-bottom: 12px;
    -o-transition: all .5s;
    -moz-transition: all .5s;
    transition: all .5s;
    -webkit-transition: all .5s;
}

.footer .f-top .f-follow a:hover {
    margin-top: -5px;
    margin-bottom: 17px;
}

.footer .f-top .f-follow .iconfont {
    font-size: 36px;
    font-size: 3.6rem;
    color: #fff;
    text-align: center;
    line-height: 38px;
    display: block;
}

@media screen and (max-width: 1219px) {
    .footer .f-top .flist1 {
        width: 350px;
    }
}

@media screen and (max-width: 999px) {
    .footer .f-top .flist1 {
        width: 30%;
    }

    .footer .f-top .flist2 {
        width: 40%;
    }

    .footer .f-top .flist3 {
        width: 23%;
    }
}

@media screen and (max-width: 767px) {
    .footer .f-top {
        padding: 15px 0;
    }

    .footer .f-top .flist1, .footer .f-top .flist2, .footer .f-top .footer-title {
        display: none;
    }

    .footer .f-top .flist3 {
        width: 100%;
    }

    .footer .f-top .f-follow a {
        margin-bottom: 0;
        margin-right: 10px;
    }

    .footer .f-top .f-follow a:hover {
        margin-top: 0;
        margin-bottom: 0;
    }
}

.footer .f-bot {
    border-top: solid 1px #fff;
    line-height: 24px;
    padding: 5px 0 44px;
}

.footer .f-bot img {
    margin-left: 5px;
}

@media screen and (max-width: 999px) {
    .footer .f-bot {
        padding: 5px 0 20px;
    }
}

@media screen and (max-width: 767px) {
    .footer .f-bot {
        padding: 5px 0 15px;
    }
}

.footer .links {
    margin-top: 3px;
}

.footer .links a {
    display: inline-block;
    margin-right: 30px;
}

@media screen and (max-width: 767px) {
    .footer .links {
        display: none;
    }
}

/*-------------footer end------------------------------------------------------------------*/
/*-------------index start-----------------------------------------------------------------*/
/* keys start */
.keys {
    background: url(../images/bg2.jpg) no-repeat center;
    background-size: cover;
    padding: 21px 0;
    font-size: 16px;
    font-size: 1.6rem;
    line-height: 26px;
}

.keys a {
    display: inline-block;
}

.keys, .keys a {
    color: #fff;
}

.keys a:hover {
    color: #ccc;
}

@media screen and (max-width: 767px) {
    .keys {
        font-size: 14px;
        font-size: 1.4rem;
        padding: 15px 0;
    }
}

/* keys end */
/* index-title start */
.index-title {
    font-family: "OpenSans-Semibold";
    font-size: 40px;
    font-size: 4rem;
    text-align: center;
    position: relative;
    padding-bottom: 11px;
}

.index-title:after {
    position: absolute;
    content: '';
    width: 74px;
    height: 2px;
    background-color: #145a91;
    left: 50%;
    margin-left: -36px;
    bottom: 0;
}

.index-title a:hover {
    color: #145a91;
}

@media screen and (max-width: 1219px) {
    .index-title {
        font-size: 36px;
        font-size: 3.6rem;
    }
}

@media screen and (max-width: 999px) {
    .index-title {
        font-size: 30px;
        font-size: 3rem;
    }
}

@media screen and (max-width: 767px) {
    .index-title {
        font-size: 24px;
        font-size: 2.4rem;
        padding-bottom: 8px;
    }
}

/* index-title end */
/* About Us start */
.index-about {
    background-color: #F5F6FA;
    padding: 38px 0 40px;
    overflow: hidden; /* .item-videobox start */ /* .item-videobox end */
}

.index-about .item-videobox {
    float: right;
    width: 524px;
    margin-left: 7.91667%;
    overflow: hidden;
}

.index-about .item-videobox .item-video {
    position: relative;
    overflow: hidden;
    padding-bottom: 71.75573%;
    height: 0;
}

.index-about .item-videobox .item-video iframe, .index-about .item-videobox .item-video video {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    border: none;
}

.index-about .item-videobox .item-video iframe body {
    margin: 0px !important;
}

@media screen and (max-width: 1219px) {
    .index-about .item-videobox {
        margin-left: 2.5%;
    }
}

@media screen and (max-width: 999px) {
    .index-about .item-videobox {
        width: 350px;
    }
}

@media screen and (max-width: 767px) {
    .index-about .item-videobox {
        float: none;
        width: 100%;
        max-width: 524px;
        margin: 0 auto 30px;
    }
}

.index-about .item-body {
    text-align: center;
    padding-left: 20px;
}

@media screen and (max-width: 1219px) {
    .index-about .item-body {
        padding-left: 0;
    }
}

.index-about .index-title {
    display: inline-block;
    margin-top: 32px;
}

@media screen and (max-width: 999px) {
    .index-about .index-title {
        margin-top: 0;
    }
}

.index-about .item-desc {
    margin-top: 24px;
    font-size: 16px;
    font-size: 1.6rem;
    line-height: 30px;
    text-align: center;
    overflow: hidden;
    text-overflow: ellipsis;
    display: -webkit-box;
    -webkit-line-clamp: 5;
    -webkit-box-orient: vertical;
}

.index-about .item-desc, .index-about .item-desc a {
    color: #333;
}

@media screen and (max-width: 767px) {
    .index-about .item-desc {
        line-height: 24px;
        margin-top: 14px;
        font-size: 14px;
        font-size: 1.4rem;
    }
}

.index-about .item-btn {
    display: inline-block;
    width: 148px;
    line-height: 45px;
    border-radius: 10px;
    background-color: #145a91;
    text-align: center;
    color: #fff;
    margin: 51px auto 0;
    font-size: 16px;
    font-size: 1.6rem;
}

.index-about .item-btn:hover {
    background-color: #333;
}

@media screen and (max-width: 999px) {
    .index-about .item-btn {
        margin-top: 30px;
    }
}

@media screen and (max-width: 767px) {
    .index-about .item-btn {
        font-size: 14px;
        font-size: 1.4rem;
        line-height: 36px;
        width: 120px;
        margin: 20px auto 0;
    }
}

/* About Us end */
/* Hot Products start */
.index-hotpro {
    padding: 63px 0 86px;
}

@media screen and (max-width: 1219px) {
    .index-hotpro {
        padding: 63px 0 50px;
    }
}

@media screen and (max-width: 999px) {
    .index-hotpro {
        padding: 50px 0 20px;
    }
}

@media screen and (max-width: 767px) {
    .index-hotpro {
        padding: 50px 0 10px;
    }
}

.index-hotpro .tab-options {
    font-size: 0;
    letter-spacing: 0;
    text-align: center;
    margin: 44px 0 38px;
}

@media screen and (max-width: 767px) {
    .index-hotpro .tab-options {
        margin: 30px 0 25px;
    }
}

.index-hotpro .tab-options li {
    display: inline-block;
    vertical-align: top;
    cursor: pointer;
    font-size: 16px;
    font-size: 1.6rem;
    font-family: "OpenSans-Semibold";
    border-radius: 8px;
    line-height: 42px;
    padding: 0 36px;
    margin-bottom: 5px;
    margin-left: 4px;
}

.index-hotpro .tab-options li:hover, .index-hotpro .tab-options li.tab-active {
    background-color: #145a91;
    color: #fff;
}

@media screen and (max-width: 767px) {
    .index-hotpro .tab-options li {
        padding: 0 20px;
        line-height: 36px;
    }
}

.index-hotpro .box-list .list-item {
    float: left;
    width: 21.66667%;
    margin-left: 2.5%;
    margin-bottom: 29px;
}

@media screen and (max-width: 999px) {
    .index-hotpro .box-list .list-item {
        width: 31.33%;
        margin: 0 1% 30px;
    }
}

@media screen and (max-width: 600px) {
    .index-hotpro .box-list .list-item {
        width: 48%;
    }
}

.index-hotpro .box-list .item-pic {
    width: 100%;
    border: solid 1px #CCCCCC;
    border-radius: 8px;
    position: relative;
}

.index-hotpro .box-list .item-pic img {
    display: block;
    max-width: 400px;
    margin: 0 auto;
    width: 100%;
}

.index-hotpro .box-list .item-title {
    font-family: "OpenSans-Semibold";
    font-size: 16px;
    font-size: 1.6rem;
    text-align: center;
    margin-top: 15px;
}

@media screen and (max-width: 767px) {
    .index-hotpro .box-list .item-title {
        margin-top: 5px;
    }
}

.index-hotpro .box-list .item-desc {
    line-height: 24px;
    height: 48px;
    font-size: 14px;
    font-size: 1.4rem;
    margin-top: 6px;
}

@media screen and (max-width: 600px) {
    .index-hotpro .box-list .item-desc {
        line-height: 20px;
        height: 40px;
    }
}

/* Hot Products end */
/* New Products start */
.index-newpro {
    overflow: hidden;
    background-color: #F5F6FA;
    padding: 43px 0 57px;
}

@media screen and (max-width: 767px) {
    .index-newpro {
        padding: 30px 0;
    }
}

.index-newpro .item-pic {
    width: 46.66667%;
    margin-right: 4.58333%;
}

.index-newpro .item-pic img {
    display: block;
    width: 100%;
    margin: 0 auto;
    max-width: 560px;
}

@media screen and (max-width: 999px) {
    .index-newpro .item-pic {
        width: 380px;
        margin-right: 2.5%;
    }
}

@media screen and (max-width: 767px) {
    .index-newpro .item-pic {
        width: 300px;
    }
}

@media screen and (max-width: 640px) {
    .index-newpro .item-pic {
        width: 100%;
        max-width: 560px;
        margin: 0 auto 30px;
        float: none;
    }
}

.index-newpro .item-body {
    overflow: hidden;
    padding: 0 20px;
    height: 560px;
    width: 1000px;
    display: table-cell;
    vertical-align: middle;
}

@media screen and (max-width: 1219px) {
    .index-newpro .item-body {
        height: 457px;
    }
}

@media screen and (max-width: 999px) {
    .index-newpro .item-body {
        height: 380px;
        padding: 0;
    }
}

@media screen and (max-width: 767px) {
    .index-newpro .item-body {
        height: 300px;
    }
}

@media screen and (max-width: 640px) {
    .index-newpro .item-body {
        height: auto;
        width: 100%;
        display: block;
    }
}

.index-newpro .item-desc {
    margin-top: 24px;
    font-size: 16px;
    font-size: 1.6rem;
    line-height: 30px;
    overflow: hidden;
    text-overflow: ellipsis;
    display: -webkit-box;
    -webkit-line-clamp: 3;
    -webkit-box-orient: vertical;
    text-align: center;
}

.index-newpro .item-desc, .index-newpro .item-desc a {
    color: #333;
}

@media screen and (max-width: 767px) {
    .index-newpro .item-desc {
        line-height: 24px;
        margin-top: 14px;
        font-size: 14px;
        font-size: 1.4rem;
    }
}

.index-newpro .item-btn {
    display: block;
    width: 148px;
    line-height: 45px;
    border-radius: 10px;
    background-color: #145a91;
    text-align: center;
    color: #fff;
    margin: 51px auto 0;
    font-size: 16px;
    font-size: 1.6rem;
}

.index-newpro .item-btn:hover {
    background-color: #333;
}

@media screen and (max-width: 767px) {
    .index-newpro .item-btn {
        font-size: 14px;
        font-size: 1.4rem;
        line-height: 36px;
        width: 120px;
        margin: 20px auto 0;
    }
}

/* New Products end */
/* Application start */
.index-app {
    padding-top: 50px;
}

@media screen and (max-width: 767px) {
    .index-app {
        padding-top: 30px;
    }
}

.index-app .app1-list {
    padding: 52px 0 43px;
}

@media screen and (max-width: 767px) {
    .index-app .app1-list {
        padding: 30px 0 10px;
    }
}

/* Application end */
/* index-contact start */
.index-contact {
    background: url(../images/bg1.jpg) no-repeat center;
    background-size: cover;
    padding: 59px 0 139px;
}

@media screen and (max-width: 1219px) {
    .index-contact {
        padding: 58px 0 70px;
    }
}

@media screen and (max-width: 999px) {
    .index-contact {
        padding: 50px 0;
    }
}

@media screen and (max-width: 767px) {
    .index-contact {
        padding: 30px 0;
    }
}

.index-contact .box-title {
    font-size: 40px;
    font-size: 4rem;
    text-align: center;
}

.index-contact .box-title, .index-contact .box-title a {
    color: #fff;
}

.index-contact .box-title a:hover {
    color: #145a91;
}

@media screen and (max-width: 1219px) {
    .index-contact .box-title {
        font-size: 36px;
        font-size: 3.6rem;
    }
}

@media screen and (max-width: 999px) {
    .index-contact .box-title {
        font-size: 30px;
        font-size: 3rem;
    }
}

@media screen and (max-width: 767px) {
    .index-contact .box-title {
        font-size: 24px;
        font-size: 2.4rem;
    }
}

.index-contact .box-desc {
    max-width: 905px;
    margin: 16px auto 0;
    text-align: center;
    font-size: 16px;
    font-size: 1.6rem;
    line-height: 30px;
}

.index-contact .box-desc, .index-contact .box-desc a {
    color: #fff;
}

.index-contact .box-desc a {
    display: block;
}

.index-contact .box-desc a:hover {
    color: #145a91;
}

@media screen and (max-width: 767px) {
    .index-contact .box-desc {
        font-size: 14px;
        font-size: 1.4rem;
        line-height: 24px;
    }
}

.index-contact .box-form { /* WebKit browsers */ /* Mozilla Firefox 4 to 18 */ /* Mozilla Firefox 19+ */ /* Internet Explorer 10+ */
    max-width: 983px;
    margin: 34px auto 0;
}

.index-contact .box-form ::-webkit-input-placeholder {
    color: #fff;
    opacity: 1;
}

.index-contact .box-form :-o-placeholder {
    color: #fff;
    opacity: 1;
}

.index-contact .box-form ::-moz-placeholder {
    color: #fff;
    opacity: 1;
}

.index-contact .box-form :-ms-input-placeholder {
    color: #fff;
    opacity: 1;
}

@media screen and (max-width: 767px) {
    .index-contact .box-form {
        margin-top: 20px;
    }
}

.index-contact .box-form div {
    position: relative;
}

.index-contact .box-form .iconfont {
    position: absolute;
    left: 0;
    color: #fff;
    font-size: 24px;
    font-size: 2.4rem;
}

.index-contact .box-form input, .index-contact .box-form textarea {
    width: 100%;
    border-bottom: solid 1px #C7C5C4;
    display: block;
    color: #fff;
}

.index-contact .box-form .item-input {
    width: 45.37131%;
    margin-bottom: 35px;
    float: left;
}

.index-contact .box-form .item-input:nth-child(even) {
    float: right;
}

.index-contact .box-form .item-input input {
    padding: 0 10px 0 36px;
}

.index-contact .box-form .item-input .iconfont {
    top: 3px;
}

@media screen and (max-width: 767px) {
    .index-contact .box-form .item-input {
        margin-bottom: 15px;
        width: 48%;
    }
}

@media screen and (max-width: 500px) {
    .index-contact .box-form .item-input {
        width: 100%;
    }
}

.index-contact .box-form .item-textarea {
    width: 100%;
    margin-bottom: 40px;
}

@media screen and (max-width: 767px) {
    .index-contact .box-form .item-textarea {
        margin-bottom: 15px;
    }
}

.index-contact .box-form input {
    height: 40px;
}

.index-contact .box-form textarea {
    height: 151px;
    padding: 0 10px 0 36px;
    line-height: 24px;
}

@media screen and (max-width: 767px) {
    .index-contact .box-form textarea {
        height: 120px;
    }
}

.index-contact .box-form .item-code {
    width: 100%;
}

.index-contact .box-form .code-img {
    width: 151px;
    cursor: pointer;
}

.index-contact .box-form .code-img img {
    display: block;
    max-height: 40px;
}

.index-contact .box-form .code-input {
    width: 28.48423%;
    margin-left: 1.62767%;
}

@media screen and (max-width: 767px) {
    .index-contact .box-form .code-input {
        float: right;
        width: -moz-calc(100% - 160px);
        width: calc(100% - 160px);
        margin-left: 0;
        margin-bottom: 15px;
    }
}

.index-contact .box-form .code-btn {
    font-size: 18px;
    font-size: 1.8rem;
    width: 45.57477%;
    background-color: #145a91;
    color: #fff;
    text-align: center;
    border: 0;
    cursor: pointer;
}

.index-contact .box-form .code-btn:hover {
    background-color: #333;
}

@media screen and (max-width: 767px) {
    .index-contact .box-form .code-btn {
        width: 100%;
    }
}

.index-contact .box-form .attachment {
    float: left;
    width: 100%;
    position: relative;
    margin-bottom: 20px;
}

.index-contact .box-form .attachment span {
    float: left;
}

.index-contact .box-form .attachment #file-name {
    padding: 0 10px;
    overflow: hidden;
    text-overflow: ellipsis;
    white-space: nowrap;
}

.index-contact .box-form .attachment .file-group {
    float: left;
    width: 40%;
    height: 40px;
    line-height: 40px;
    background-color: #145a91;
    position: relative;
    overflow: hidden;
    border-radius: 0;
}

@media screen and (max-width: 767px) {
    .index-contact .box-form .attachment .file-group {
        width: 100%;
    }
}

.index-contact .box-form .attachment .file-group .file-btn {
    border-radius: 0;
    width: 100%;
    height: 100%;
    background-color: #145a91;
    color: #FFFFFF;
    border: 0;
    border-radius: 0;
    line-height: 40px;
}

.index-contact .box-form .attachment .file-group .file-single {
    width: 100%;
    height: 100%;
    opacity: 0;
    cursor: pointer;
    position: absolute;
    left: 0;
    top: 0;
    z-index: 111;
}

.index-contact .box-form .attachment .file-group .file {
    width: 100%;
    height: 100%;
    opacity: 0;
    cursor: pointer;
    position: absolute;
    left: 0;
    top: 0;
    z-index: 111;
}

.index-contact .box-form .attachment .file-group .file-name-p {
    overflow: hidden;
    height: 34px;
    line-height: 34px;
    display: -webkit-box;
    display: -webkit-flex;
    display: -moz-box;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-align: end;
    -webkit-align-items: flex-end;
    -moz-box-align: end;
    -ms-flex-align: end;
    align-items: flex-end;
}

.index-contact .box-form .attachment .file-group .file-name-p i {
    cursor: pointer;
}

.index-contact .box-form .attachment .file-group .file-name-p span {
    overflow: hidden;
    white-space: nowrap;
    text-overflow: ellipsis;
}


/* index-contact end */
/* index-news start */
.index-news {
    padding-top: 44px;
}

@media screen and (max-width: 767px) {
    .index-news {
        padding-top: 30px;
    }
}

.index-news .news1-list {
    padding: 49px 0 16px;
}

@media screen and (max-width: 767px) {
    .index-news .news1-list {
        padding: 30px 0 10px;
    }
}

/* index-news end */
/*-------------index end-------------------------------------------------------------------*/
.page_wrap {
    padding: 69px 0 95px;
}

@media screen and (max-width: 1219px) {
    .page_wrap {
        padding: 69px 0 70px;
    }
}

@media screen and (max-width: 999px) {
    .page_wrap {
        padding: 50px 0 50px;
    }
}

@media screen and (max-width: 767px) {
    .page_wrap {
        padding: 30px 0;
    }
}

/*-------------1-1-products start----------------------------------------------------------*/
.main .box-slide {
    width: 271px;
}

@media screen and (max-width: 999px) {
    .main .box-slide {
        width: 100%;
        margin-top: 30px;
    }
}

.main .box-main {
    width: 894px;
}

@media screen and (max-width: 1219px) {
    .main .box-main {
        width: 660px;
    }
}

@media screen and (max-width: 999px) {
    .main .box-main {
        width: 100%;
    }
}

/* .pro1-top start */
.pro1-top .item-title {
    font-family: "OpenSans-Semibold";
    font-size: 18px;
    font-size: 1.8rem;
    line-height: 28px;
    color: #145a91;
    padding-bottom: 11px;
    border-bottom: solid 1px #145a91;
}

@media screen and (max-width: 767px) {
    .pro1-top .item-title {
        padding-bottom: 5px;
    }
}

.pro1-top .item-desc {
    line-height: 24px;
    margin-top: 9px;
}

@media screen and (max-width: 767px) {
    .pro1-top .item-desc {
        line-height: 24px;
    }
}

/* .pro1-top end */
/* .pro1-list start */
.pro1-list {
    padding-bottom: 33px;
}

@media screen and (max-width: 999px) {
    .pro1-list {
        padding-bottom: 20px;
    }
}

@media screen and (max-width: 767px) {
    .pro1-list {
        padding-bottom: 10px;
    }
}

.pro1-list .list-item {
    float: left;
    width: 29.08277%;
    margin-left: 3.37584%;
    margin-bottom: 42px;
}

@media screen and (max-width: 999px) {
    .pro1-list .list-item {
        width: 31.33%;
        margin: 0 1% 30px;
    }
}

@media screen and (max-width: 600px) {
    .pro1-list .list-item {
        width: 48%;
    }
}

.pro1-list .item-pic {
    width: 100%;
    border: solid 1px #CCCCCC;
    border-radius: 8px;
    position: relative;
}

.pro1-list .item-pic img {
    display: block;
    max-width: 400px;
    margin: 0 auto;
    width: 100%;
}

.pro1-list .item-title {
    font-family: "OpenSans-Semibold";
    font-size: 16px;
    font-size: 1.6rem;
    text-align: center;
    margin-top: 12px;
}

@media screen and (max-width: 767px) {
    .pro1-list .item-title {
        margin-top: 5px;
    }
}

.pro1-list .item-desc {
    line-height: 24px;
    height: 48px;
    font-size: 14px;
    font-size: 1.4rem;
    margin-top: 6px;
}

@media screen and (max-width: 600px) {
    .pro1-list .item-desc {
        line-height: 20px;
        height: 40px;
    }
}

.pro1-list .item-btnbox {
    font-size: 0;
    letter-spacing: 0;
    margin-top: 17px;
	margin-left:30%
}

.pro1-list .item-btnbox input {
    margin: 0 64px 0 9px;
    display: inline-block;
    vertical-align: middle;
}

@media screen and (max-width: 1219px) {
    .pro1-list .item-btnbox {
        text-align: center;
    }

    .pro1-list .item-btnbox input {
        margin-right: 10px;
    }
}

@media screen and (max-width: 767px) {
    .pro1-list .item-btnbox input {
        margin-right: 5px;
    }
}

.pro1-list .item-btn {
    display: inline-block;
    vertical-align: middle;
    width: 111px;
    line-height: 28px;
    border: solid 1px #145a91;
    text-align: center;
    font-size: 14px;
    font-size: 1.4rem;
    color: #145a91;
}

.pro1-list .item-btn:hover {
    background-color: #145a91;
    color: #fff;
}

@media screen and (max-width: 767px) {
    .pro1-list .item-btn {
        width: 100px;
    }
}

/* .pro1-list end */
.proslide .slide-title {
    font-size: 24px;
    font-size: 2.4rem;
    line-height: 50px;
    text-transform: uppercase;
    background-color: #145a91;
    text-align: center;
    margin-bottom: 5px;
    position: relative;
}

.proslide .slide-title, .proslide .slide-title a {
    color: #fff;
}

.proslide .slide-title a {
    display: block;
}

.proslide .slide-title a:hover {
    background-color: #333;
}

.proslide .slide-title.slide-title1 {
    background-color: #145a91;
    display: none;
    font-size: 18px;
    font-size: 1.8rem;
    line-height: 40px;
}

.proslide .slide-title.slide-title1, .proslide .slide-title.slide-title1 a {
    color: #fff;
}


@media screen and (max-width: 767px) {
    .proslide .slide-title {
        display: none;
    }

    .proslide .slide-title.slide-title1 {
        display: block;
    }
}

@media screen and (max-width: 767px) {
    .slidenav-list {
        display: none;
    }
}

.slidenav-list > li {
    margin-bottom: 4px;
}

.slidenav-list > li > a, .slidenav-list > li > p {
    cursor: pointer;
    width: 100%;
    font-size: 16px;
    font-size: 1.6rem;
    line-height: 24px;
    padding: 8px 35px 8px 14px;
    word-break: break-all;
    background-color: #E0E0E0;
    display: block;
    position: relative;
}

.slidenav-list > li > a:after, .slidenav-list > li > p:after {
    position: absolute;
    content: '';
    width: 16px;
    height: 16px;
    right: 17px;
    top: 12px;
    background: url(../images/snav1.png) no-repeat center;
}

.slidenav-list > li:hover > a, .slidenav-list > li.snav-active > a,
.slidenav-list > li:hover > p, .slidenav-list > li.active > p {
    background-color: #145a91 !important;
    color: #FFFFFF;
}

.slidenav-list > li:hover > a:after, .slidenav-list > li.snav-active > a:after,
.slidenav-list > li:hover > p:after, .slidenav-list > li.active > p:after {
    background-image: url(../images/snav1_1.png) !important;
}

.snav-yiji {
    background-color: #fff;
    padding: 7px 0 16px;
}

.attr-nav .snav-yiji {
    display: none
}

.attr-nav .snav-yiji.active {
    display: block
}

.snav-yiji > li > a {
    cursor: pointer;
    display: block;
    font-size: 16px;
    font-size: 1.6rem;
    line-height: 24px;
    padding: 8px 10px 8px 40px;
    background: url(../images/snav2.png) no-repeat 17px 19px;
}

.snav-yiji > li > label {
    cursor: pointer;
    display: block;
    font-size: 16px;
    font-size: 1.6rem;
    line-height: 24px;
    padding: 8px 10px 8px;
}

.snav-yiji > li > label input {
    margin-right: 5px;
}

.snav-yiji > li:hover > a, .snav-yiji > li.snav-active1 > a {
    background-image: url(../images/snav2_1.png) !important;
    color: #145a91 !important;
}

.snav-yiji > li:hover > label, .snav-yiji > li.active > label {
    color: #145a91 !important;
}


.snav-erji {
    padding: 0 0;
}

.snav-erji > li > a {
    display: block;
    padding: 2px 10px 2px 54px;
    line-height: 24px;
}

.snav-erji > li:hover > a, .snav-erji > li.snav-active2 > a {
    color: #145a91 !important;
}

.attr-slide {
    margin-top: 30px;
}

/* tags start */
.tags {
    margin-top: 46px;
}

@media screen and (max-width: 767px) {
    .tags {
        margin-top: 30px;
    }
}

.tags .box-title {
    font-size: 24px;
    font-size: 2.4rem;
    background: #145a91;
    line-height: 50px;
    text-transform: uppercase;
    color: #FFFFFF;
    padding: 0 14px;
}

@media screen and (max-width: 767px) {
    .tags .box-title {
        font-size: 20px;
        font-size: 2rem;
        line-height: 40px;
    }
}

.tags .box-desc {
    padding: 15px 3px 0;
    line-height: 30px;
}

.tags .box-desc a {
    font-size: 16px;
    font-size: 1.6rem;
    display: inline-block;
    margin-right: 20px;
}

.tags .box-desc a:hover {
    color: #145a91;
}

@media screen and (max-width: 767px) {
    .tags .box-desc {
        line-height: 24px;
        font-size: 14px;
        font-size: 1.4rem;
    }
}

/* tags end */
/*-------------1-1-products end------------------------------------------------------------*/
/*-------------1-2-products start----------------------------------------------------------*/
.pro2-box .m-propic {
    margin: 0 auto;
    width: 575px;
}

.pro2-box .m-propic .provideo-box {
    border: 0 solid #999999;
    border-radius: 0;
    width: 100%;
    overflow: hidden;
    position: absolute;
    top: 0;
    left: 0;
    z-index: 9;
}

.pro2-box .m-propic .provideo-box .provideo {
    position: relative;
    overflow: hidden;
    padding-bottom: 100%;
    height: 0;
}

.pro2-box .m-propic .provideo-box .provideo iframe, .pro2-box .m-propic .provideo-box .provideo video {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    border: none;
}

.pro2-box .m-propic .provideo-box .provideo iframe body {
    margin: 0px !important;
}

.pro2-box .m-propic .pic-big {
    position: relative;
    float: right;
    width: 436px;
}

.pro2-box .m-propic .big-img {
    display: block;
    line-height: 0;
    font-size: 0;
    border-radius: 8px;
    border: 1px solid #ccc;
}

.pro2-box .m-propic .big-img .zoomPad {
    float: none;
    z-index: 8;
}

.pro2-box .m-propic .big-img .zoomPad img {
    border-radius: 8px;
}

.pro2-box .m-propic .zoomWrapperImage img {
    max-width: 1200px;
}

.pro2-box .m-propic .pic-small {
    position: relative;
    float: left;
    width: 117px;
    padding: 35px 0;
    overflow: hidden;
}

.pro2-box .m-propic .pic-btn {
    position: absolute;
    margin: 0 auto;
    left: 0;
    right: 0;
    display: block;
    width: 100%;
    cursor: pointer;
    text-align: center;
}

.pro2-box .m-propic .pic-btn .iconfont {
    font-size: 19px;
    font-size: 1.9rem;
    color: #145a91;
}

.pro2-box .m-propic .pic-btn .iconfont:hover {
    color: #666;
}

.pro2-box .m-propic .pic-btn.prev {
    top: 0;
}

.pro2-box .m-propic .pic-btn.next {
    bottom: 0;
}

.pro2-box .m-propic .pic-list {
    height: 365px;
    overflow: hidden;
}

.pro2-box .m-propic .pic-list ul {
    height: 2000px;
}

.pro2-box .m-propic .pic-list .list-item {
    margin-bottom: 7px;
    overflow: visible;
}

.pro2-box .m-propic .pic-list .item-pics, .pro2-box .m-propic .pic-list .item-video {
    display: block;
    border-radius: 8px;
    border: 1px solid #ccc;
    position: relative;
    overflow: hidden;
}

.pro2-box .m-propic .pic-list .item-pics img, .pro2-box .m-propic .pic-list .item-video img {
    width: 100%;
    display: block;
}

.pro2-box .m-propic .pic-list .item-pics:hover, .pro2-box .m-propic .pic-list .item-pics.active, .pro2-box .m-propic .pic-list .item-video:hover, .pro2-box .m-propic .pic-list .item-video.active {
    border-color: #145a91;
}


.pro2-box .m-propic2 {
    display: none;
}

@media screen and (max-width: 1219px) {
    .pro2-box { /*.m-propic .pic-small { width: 110px; } .m-propic .pic-list { height: 444px; } .m-propic .list-item { margin-bottom: 40px; } */
    }

    .pro2-box .zoomPad {
        cursor: default !important;
    }

    .pro2-box .zoomPup {
        display: none !important;
    }

    .pro2-box .zoomWindow {
        display: none !important;
    }

    .pro2-box .zoomPreload {
        display: none !important;
    }

    .pro2-box .m-propic {
        max-width: 100%;
        float: none;
    }

    .pro2-box .m-propic .pic-big {
        height: auto;
    }
}

@media screen and (max-width: 767px) {
    .pro2-box .m-propic1 {
        display: none;
    }

    .pro2-box .m-propic2 {
        position: relative;
        display: block;
        overflow: hidden;
        width: 100%;
        padding-left: 30px;
        padding-right: 30px;
    }

    .pro2-box .m-propic2 .box-btn {
        position: absolute;
        top: 50%;
        margin-top: -12px;
        display: block;
    }

    .pro2-box .m-propic2 .box-btn .iconfont {
        font-size: 24px;
        font-size: 2.4rem;
        color: #666;
    }

    .pro2-box .m-propic2 .box-btn .iconfont:hover {
        color: #145a91;
    }

    .pro2-box .m-propic2 .box-btn.prev {
        left: 0;
    }

    .pro2-box .m-propic2 .box-btn.next {
        right: 0;
    }

    .pro2-box .m-propic2 .box-list {
        overflow: hidden;
    }

    .pro2-box .m-propic2 .box-list ul {
        width: 1000%;
    }

    .pro2-box .m-propic2 .list-item {
        float: left;
        margin-left: .1%;
        margin-right: .1%;
        margin-bottom: 0;
        width: 3.13%;
        border-radius: 8px;
        border: 1px solid #ccc;
        overflow: hidden;
    }

    .pro2-box .m-propic2 .list-item img {
        display: block;
    }
}

@media only screen and (max-width: 640px) {
    .pro2-box .m-propic2 .list-item {
        float: left;
        margin-left: .1%;
        margin-right: .1%;
        margin-bottom: 0;
        width: 4.8%;
    }
}

@media only screen and (max-width: 480px) {
    .pro2-box .m-propic2 .list-item {
        float: left;
        margin-left: .1%;
        margin-right: .1%;
        margin-bottom: 0;
        width: 9.8%;
    }
}

.pro2-info {
    text-align: center;
}

.pro2-info .item-title {
    line-height: 30px;
    font-size: 24px;
    font-size: 2.4rem;
    margin: 25px 0 0;
}

.pro2-info .pro-share {
    margin-top: 11px;
}

.pro2-info .item-btns {
    text-align: center;
    margin-bottom: 55px;
    font-size: 0;
    letter-spacing: 0;
}

.pro2-info .item-btn {
    display: inline-block;
    vertical-align: top;
    text-align: center;
    width: 111px;
    height: 30px;
    line-height: 28px;
    border: 1px solid #145a91;
    margin: 20px 13px 0;
    font-size: 14px;
    font-size: 1.4rem;
    color: #145a91;
}

.pro2-info .item-btn:hover {
    background-color: #145a91;
    color: #fff;
}

@media only screen and (max-width: 767px) {
    .pro2-info .item-title {
        font-size: 20px;
        font-size: 2rem;
        line-height: 26px;
        margin-top: 20px;
    }

    .pro2-info .item-btns {
        margin-bottom: 30px;
    }
}

@media only screen and (max-width: 500px) {
    .pro2-info .item-btn {
        float: left;
        width: 31.33%;
        height: auto !important;
        line-height: 20px;
        margin: 20px 1% 0 !important;
    }
}

.pro2-title {
    font-family: "OpenSans-Semibold", arial;
    font-size: 20px;
    font-size: 2rem;
    border-bottom: solid 1px #145a91;
    position: relative;
    padding-bottom: 11px;
}

.pro2-title, .pro2-title a {
    color: #145a91;
}

.pro2-title a:hover {
    color: #333;
}

@media screen and (max-width: 767px) {
    .pro2-title {
        font-size: 18px;
        font-size: 1.8rem;
    }
}

.pro2-spec {
    padding: 15px 0 28px;
    font-size: 16px;
    font-size: 1.6rem;
    line-height: 30px;
}
.pro2-spec table {
	width:100%;
}

.pro2-spec p {
    min-height: 30px;
}

.pro2-spec img, .pro2-spec iframe {
    max-width: 100%;
}

@media screen and (max-width: 767px) {
    .pro2-spec {
        padding: 15px 0 20px;
        font-size: 14px;
        font-size: 1.4rem;
        line-height: 24px;
    }
}

.pro-tags {
    font-size: 0;
    letter-spacing: 0;
    padding-top: 9px;
}

.pro-tags a {
    display: inline-block;
    min-width: 148px;
    line-height: 43px;
    background-color: #DADADA;
    font-size: 16px;
    font-size: 1.6rem;
    text-align: center;
    margin-right: 27px;
    margin-top: 9px;
}

.pro-tags a:hover {
    background-color: #145a91;
    color: #fff;
}

@media screen and (max-width: 767px) {
    .pro-tags a {
        min-width: auto;
        padding: 0 20px;
        line-height: 36px;
        margin-right: 15px;
    }
}

.related-scrollbox {
    position: relative;
    margin-top: 67px;
}

@media screen and (max-width: 999px) {
    .related-scrollbox {
        margin-top: 50px;
    }
}

@media screen and (max-width: 767px) {
    .related-scrollbox {
        margin-top: 30px;
    }
}

.related-scrollbox .box-title {
    font-size: 24px;
    font-size: 2.4rem;
    line-height: 30px;
    padding-bottom: 14px;
    border-bottom: solid 1px #145a91;
}

.related-scrollbox .box-title a:hover {
    color: #145a91;
}

@media screen and (max-width: 767px) {
    .related-scrollbox .box-title {
        font-size: 20px;
        font-size: 2rem;
        padding-bottom: 10px;
    }
}

.related-scrollbox .scroll-btns .scroll-btn {
    display: inline-block;
    cursor: pointer;
    position: absolute;
    top: 7px;
}

.related-scrollbox .scroll-btns .scroll-btn .iconfont {
    color: #145a91;
    font-size: 14px;
    font-size: 1.4rem;
    display: block;
    width: 30px;
    height: 30px;
    border-radius: 50%;
    border: solid 1px #145a91;
    text-align: center;
    line-height: 30px;
}

.related-scrollbox .scroll-btns .scroll-btn .iconfont:hover {
    background-color: #145a91;
    color: #fff;
}

.related-scrollbox .scroll-btns .scroll-btn.prev {
    right: 48px;
}

.related-scrollbox .scroll-btns .scroll-btn.next {
    right: 10px;
}

@media screen and (max-width: 767px) {
    .related-scrollbox .scroll-btns .scroll-btn {
        top: 5px;
    }

    .related-scrollbox .scroll-btns .scroll-btn .iconfont {
        width: 24px;
        height: 24px;
        line-height: 24px;
    }

    .related-scrollbox .scroll-btns .scroll-btn.prev {
        right: 28px;
    }

    .related-scrollbox .scroll-btns .scroll-btn.next {
        right: 0;
    }
}

.related-scrollbox .scroll-list-box {
    width: 100%;
    overflow: hidden;
    margin-top: 41px;
}

@media screen and (max-width: 767px) {
    .related-scrollbox .scroll-list-box {
        margin-top: 30px;
    }
}

.related-scrollbox .scroll-list {
    width: 10000%;
}

.related-scrollbox .scroll-list .list-item {
    float: left;
    width: 0.29083%;
    margin-right: 0.06376%;
}

@media screen and (max-width: 999px) {
    .related-scrollbox .scroll-list .list-item {
        width: 0.32%;
        margin-right: 0.02%;
    }
}

@media screen and (max-width: 600px) {
    .related-scrollbox .scroll-list .list-item {
        width: 0.49%;
    }
}

.related-scrollbox .scroll-list .item-pic {
    width: 100%;
    border: solid 1px #CCCCCC;
    border-radius: 8px;
    position: relative;
}

.related-scrollbox .scroll-list .item-pic img {
    display: block;
    max-width: 400px;
    margin: 0 auto;
    width: 100%;
}

.related-scrollbox .scroll-list .item-title {
    font-family: "OpenSans-Semibold", arial;
    font-size: 16px;
    font-size: 1.6rem;
    text-align: center;
    margin-top: 12px;
}

@media screen and (max-width: 767px) {
    .related-scrollbox .scroll-list .item-title {
        margin-top: 5px;
    }
}

.related-scrollbox .scroll-list .item-desc {
    line-height: 24px;
    height: 48px;
    font-size: 14px;
    font-size: 1.4rem;
    margin-top: 6px;
}

@media screen and (max-width: 600px) {
    .related-scrollbox .scroll-list .item-desc {
        line-height: 20px;
        height: 40px;
    }
}

/*-------------1-2-products end------------------------------------------------------------*/
/*-------------2-about start---------------------------------------------------------------*/
/* about-top start */
.about-top .item-title {
    margin-top: 35px;
    font-size: 36px;
    font-size: 3.6rem;
    text-align: center;
    text-transform: uppercase;
}

@media screen and (max-width: 999px) {
    .about-top .item-title {
        font-size: 30px;
        font-size: 3rem;
    }
}

@media screen and (max-width: 767px) {
    .about-top .item-title {
        font-size: 24px;
        font-size: 2.4rem;
        margin-top: 20px;
    }
}

.about-top {
    font-size: 14px;
    font-size: 1.4rem;
    line-height: 30px;
}

.about-top p {
    min-height: 30px;
}

.about-top, .about-top a {
    color: #666;
}

.about-top img {
    max-width: 100%
}

.about-top .item-desc strong {
    font-weight: normal;
    font-family: "OpenSans-Semibold", arial;
    color: #333;
}


@media screen and (max-width: 999px) {
    .about-top .item-desc {
        margin-top: 40px;
    }
}

@media screen and (max-width: 767px) {
    .about-top .item-desc {
        margin-top: 20px;
        line-height: 24px;
    }

    .about-top .item-desc p {
        min-height: 24px;
    }
}

/* about-top end */
/*-------------2-about end-----------------------------------------------------------------*/
/*-------------3-1-application start-------------------------------------------------------*/
.app1-list {
    font-size: 0;
    letter-spacing: 0;
    padding-bottom: 19px;
}

@media screen and (max-width: 767px) {
    .app1-list {
        padding-bottom: 10px;
    }
}

.app1-list .list-item {
    display: inline-block;
    vertical-align: top;
    width: 19.66667%;
    margin-left: 4.44444%;
    margin-bottom: 44px;
}

@media screen and (max-width: 999px) {
    .app1-list .list-item {
        width: 23%;
        margin: 0 1% 30px;
    }
}

@media screen and (max-width: 767px) {
    .app1-list .list-item {
        width: 31.33%;
    }
}

@media screen and (max-width: 600px) {
    .app1-list .list-item {
        width: 48%;
    }
}

.app1-list .item-pic {
    border-radius: 8px;
    border: solid 1px #ccc;
}

.app1-list .item-pic img {
    display: block;
    margin: 0 auto;
    border-radius: 8px;
}

.app1-list .item-title {
    font-family: "OpenSans-Semibold", arial;
    font-size: 16px;
    font-size: 1.6rem;
    text-align: center;
    margin-top: 10px;
    overflow: hidden;
    text-overflow: ellipsis;
    white-space: nowrap;
}

@media screen and (max-width: 767px) {
    .app1-list .item-title {
        margin-top: 5px;
    }
}

.app1-list .item-desc {
    line-height: 24px;
    height: 48px;
    font-size: 14px;
    font-size: 1.4rem;
    margin-top: 6px;
}

@media screen and (max-width: 600px) {
    .app1-list .item-desc {
        line-height: 20px;
        height: 40px;
    }
}

/*-------------3-1-application end---------------------------------------------------------*/
/*-------------3-2-application start-------------------------------------------------------*/
/*-------------3-2-application end---------------------------------------------------------*/
/*-------------4-download start------------------------------------------------------------*/
.download-list {
    padding-bottom: 6px;
}

.download-list .list-item {
    border-bottom: dashed 1px #d7d7d7;
    position: relative;
    padding-bottom: 24px;
    margin-bottom: 54px;
}

.download-list .item-body {
    overflow: hidden;
    padding-right: 250px;
}

.download-list .item-title {
    font-size: 18px;
    font-size: 1.8rem;
    font-family: "OpenSans-Semibold", arial;
    line-height: 24px;
    min-height: 24px;
}

.download-list .item-title .iconfont {
    font-size: 19px;
    font-size: 1.9rem;
    line-height: 24px;
    color: #145a91;
    margin-right: 17px;
    font-weight: normal;
}

.download-list .item-desc {
    line-height: 30px;
    min-height: 30px;
    margin-top: 14px;
}

.download-list .item-desc, .download-list .item-desc a {
    color: #666;
}

.download-list .item-desc a, .download-list .item-title {
    cursor: pointer;
}

.download-list .item-btn {
    text-transform: uppercase;
    text-align: center;
    display: block;
    width: 152px;
    height: 42px;
    border-radius: 5px;
    background-color: #145a91;
    line-height: 42px;
    color: #fff;
    font-family: 'Segoe UI', Tahoma, Geneva, Verdana, sans-serif;
    font-size: 12px;
    font-size: 1.2rem;
    font-weight: bold;
    position: absolute;
    top: 0px;
    right: 0;
    cursor: pointer
}

.download-list .item-btn .iconfont {
    font-size: 34px;
    font-size: 3.4rem;
    vertical-align: middle;
    font-weight: normal;
    margin-right: 10px;
}

.download-list .item-btn:hover {
    background-color: #333;
    color: #fff;
}

@media screen and (max-width: 1219px) {
    .download-list .item-body {
        padding-right: 200px;
    }
}

@media screen and (max-width: 999px) {
    .download-list .list-item {
        margin-bottom: 50px;
    }

    .download-list .item-title {
        font-size: 16px;
        font-size: 1.6rem;
    }

    .download-list .item-desc {
        margin-top: 10px;
        line-height: 24px;
    }
}

@media screen and (max-width: 767px) {
    .download-list .list-item {
        margin-bottom: 30px;
    }

    .download-list .item-btn {
        width: 120px;
        height: 36px;
        line-height: 36px;
    }

    .download-list .item-btn .iconfont {
        font-size: 20px;
        font-size: 2rem;
    }

    .download-list .item-body {
        padding-right: 140px;
    }
}

@media screen and (max-width: 640px) {
    .download-list .item-body {
        padding-right: 0;
    }

    .download-list .item-btn {
        position: relative;
        top: auto;
        right: auto;
        margin: 20px auto 0;
    }
}

/*-------------4-download end--------------------------------------------------------------*/
/*-------------5-1-news start--------------------------------------------------------------*/
.news1-list {
    padding-bottom: 48px;
}

@media screen and (max-width: 999px) {
    .news1-list {
        padding-bottom: 20px;
    }
}

@media screen and (max-width: 767px) {
    .news1-list {
        padding-bottom: 10px;
    }
}

.news1-list .list-item {
    margin-bottom: 60px;
    float: left;
    width: 30.66667%;
    margin-left: 2.5%;
}

@media screen and (max-width: 999px) {
    .news1-list .list-item {
        width: 31.33%;
        margin: 0 1% 30px;
    }
}

@media screen and (max-width: 640px) {
    .news1-list .list-item {
        width: 48%;
    }
}

@media screen and (max-width: 380px) {
    .news1-list .list-item {
        width: 98%;
    }
}

.news1-list .item-pic {
    position: relative;
}

.news1-list .item-pic img {
    display: block !important;
    margin: 0 auto;
    width: 100%;
	height:300px;
    max-width: 380px;
}

.news1-list .item-pic:hover .item-backdrop {
    top: 0;
}

.news1-list .item-backdrop {
    position: absolute;
    top: 999px;
    bottom: 0;
    left: 0;
    width: 100%;
    background-color: #000;
    background-color: rgba(0, 0, 0, 0.5);
    -webkit-transition: all .5s;
    -o-transition: all .5s;
    -moz-transition: all .5s;
    transition: all .5s;
}

.news1-list .item-backdrop:after {
    position: absolute;
    content: '';
    top: 25px;
    bottom: 25px;
    left: 25px;
    right: 25px;
    border: solid 1px #fff;
    border: solid 1px rgba(255, 255, 255, 0.5);
}

@media screen and (max-width: 999px) {
    .news1-list .item-backdrop {
        display: none;
    }
}

.news1-list .item-info {
    padding: 0 9px;
}

.news1-list .item-title {
    margin-top: 10px;
    font-size: 18px;
    font-size: 1.8rem;
    font-family: "OpenSans-Semibold", arial;
    line-height: 30px;
    height: 60px;
}

.news1-list .item-title a {
    display: block;
}

@media screen and (max-width: 767px) {
    .news1-list .item-title {
        font-size: 16px;
        font-size: 1.6rem;
        line-height: 24px;
        height: 48px;
    }
}

.news1-list .item-desc {
    margin-top: 12px;
    font-size: 14px;
    font-size: 1.4rem;
    line-height: 24px;
    height: 72px;
    position: relative;
}

.news1-list .item-desc, .news1-list .item-desc a {
    color: #555;
}

@media screen and (max-width: 767px) {
    .news1-list .item-desc {
        line-height: 20px;
        height: 60px;
        margin-top: 5px;
    }
}

.news1-list .item-body {
    padding-bottom: 16px;
    border-bottom: solid 1px #ccc;
}

@media screen and (max-width: 767px) {
    .news1-list .item-body {
        padding-bottom: 10px;
    }
}

.news1-list .item-btn {
    display: inline-block;
    font-size: 14px;
    font-size: 1.4rem;
    color: #145a91;
    font-family: "OpenSans-Semibold", arial;
    line-height: 24px;
    margin-top: 27px;
}

.news1-list .item-btn:hover {
    color: #333;
}

@media screen and (max-width: 767px) {
    .news1-list .item-btn {
        margin-top: 10px;
    }
}

/*-------------5-1-news end----------------------------------------------------------------*/
/*-------------5-2-news start--------------------------------------------------------------*/
.news2-main > .item-title {
    text-align: center;
    font-size: 24px;
    font-size: 2.4rem;
    line-height: 30px;
}

@media screen and (max-width: 767px) {
    .news2-main > .item-title {
        font-size: 20px;
        font-size: 2rem;
    }
}

.news2-main .item-date {
    text-align: center;
    margin-top: 18px;
}

.news2-main .item-date .iconfont {
    margin-right: 5px;
    vertical-align: middle;
}

.news2-main .item-date > span {
    margin-right: 20px;
    line-height: 26px;
    display: inline-block;
}

@media screen and (max-width: 767px) {
    .news2-main .item-date {
        margin-top: 10px;
    }
}

.news2-main .item-kind {
    font-size: 0;
    letter-spacing: 0;
    text-align: center;
    margin-top: 20px;
}

.news2-main .item-kind > * {
    display: inline-block;
    vertical-align: top;
    font-size: 14px;
    font-size: 1.4rem;
    color: #666;
    margin: 0 15px;
}

@media screen and (max-width: 991px) {
    .news2-main .item-kind {
        margin-top: 15px;
    }

    .news2-main .item-kind > * {
        font-size: 14px;
        font-size: 1.4rem;
        margin: 0 10px;
    }
}

@media screen and (max-width: 767px) {
    .news2-main .item-kind {
        margin-top: 10px;
    }

    .news2-main .item-kind > * {
        font-size: 12px;
        font-size: 1.2rem;
        margin: 0 8px;
    }
}


.news2-main .pro-share {
    display: inline-block;
}

.news2-main .pro-share .share-title {
    color: #666;
}

.news2-main .item-desc {
    font-size: 16px;
    font-size: 1.6rem;
    line-height: 30px;
    padding: 31px 0 68px;
}

.news2-main .item-desc p {
    min-height: 30px;
}

.news2-main .item-desc img, .news2-main .item-desc iframe {
    max-width: 100%;
}

@media screen and (max-width: 999px) {
    .news2-main .item-desc {
        padding: 30px 0 50px;
    }
}

@media screen and (max-width: 767px) {
    .news2-main .item-desc {
        font-size: 14px;
        font-size: 1.4rem;
        line-height: 24px;
        padding: 20px 0;
    }

    .news2-main .item-desc p {
        min-height: 24px;
    }
}

/*-------------5-2-news end----------------------------------------------------------------*/
/*-------------6-contact start-------------------------------------------------------------*/
.contact-top .box-title {
    font-size: 18px;
    font-size: 1.8rem;
    font-weight: bold
}

@media screen and (max-width: 767px) {
    .contact-top .box-title {
        font-size: 20px;
        font-size: 2rem;
    }
}

.contact-top .item-title {
    font-family: "OpenSans-Semibold", arial;
    font-size: 18px;
    font-size: 1.8rem;
    line-height: 30px;
    margin-top: 14px;
}

.contact-top .box-list {
    margin-top: 19px;
    line-height: 36px;
}

.contact-top .box-list a:hover {
    color: #145a91;
}

.contact-top .box-list .iconfont {
    float: left;
    font-size: 18px;
    font-size: 1.8rem;
    color: #666;
    margin-right: 20px;
}

.contact-top .box-list p {
    overflow: hidden;
}

@media screen and (max-width: 767px) {
    .contact-top .item-title {
        font-size: 16px;
        font-size: 1.6rem;
        margin-top: 10px;
    }

    .contact-top .box-list {
        line-height: 30px;
    }
}

.contact-form {
    margin-top: 70px;
    max-width: 1128px;
    overflow: hidden;
}

.contact-form .box-title {
    font-family: "OpenSans-Semibold", arial;
    font-size: 24px;
    font-size: 2.4rem;
    text-transform: uppercase;
    margin-bottom: 46px;
}

@media screen and (max-width: 767px) {
    .contact-form .box-title {
        font-size: 20px;
        font-size: 2rem;
    }
}

.contact-form .star {
    background: url(../images/star1.png) no-repeat left 15px;
}

.contact-form .item-row {
    margin-bottom: 14px;
    padding-left: 17px;
}

.contact-form .item-row input, .contact-form .item-row textarea {
    width: 100%;
    display: block;
    background-color: #fff;
    border: solid 1px #a0a0a0;
    height: 39px;
    line-height: 35px;
    padding: 0 10px;
    color: #a6a6a6;
}

.contact-form .item-row textarea {
    height: 83px;
    line-height: 24px;
    padding-top: 3px;
    padding-bottom: 3px;
}

.contact-form .item-row .code-input {
    width: 20.39356%;
    float: left;
    margin-right: 8.49732%;
}

.contact-form .item-row .code-img {
    float: left;
    width: 228px;
    margin-right: 10px;
    cursor: pointer;
}

.contact-form .item-row .code-img img {
    display: block;
    max-height: 40px
}

.contact-form .item-row .code-btn {
    float: right;
    width: 44.00716%;
    background-color: #145a91;
    text-align: center;
    font-size: 14px;
    font-size: 1.4rem;
    text-transform: uppercase;
    color: #fff;
    border: 0;
    cursor: pointer;
}

.contact-form .item-row .code-btn:hover {
    background-color: #333;
}

.contact-form .attachment {
    float: left;
    width: 100%;
    position: relative;
    padding-left: 17px;
    margin-bottom: 14px;
}

.contact-form .attachment span {
    float: left;
}

.contact-form .attachment #file-name {
    padding: 0 10px;
    overflow: hidden;
    text-overflow: ellipsis;
    white-space: nowrap;
}

.contact-form .attachment .file-group {
    float: left;
    width: 40%;
    height: 40px;
    line-height: 40px;
    background-color: #145a91;
    position: relative;
    overflow: hidden;
    border-radius: 0;
}

@media screen and (max-width: 767px) {
    .contact-form .attachment .file-group {
        width: 100%;
    }
}

.contact-form .attachment .file-group .file-btn {
    border-radius: 0;
    width: 100%;
    height: 100%;
    background-color: #145a91;
    color: #FFFFFF;
    border: 0;
    border-radius: 0;
    line-height: 40px;
}

.contact-form .attachment .file-group .file-single {
    width: 100%;
    height: 100%;
    opacity: 0;
    cursor: pointer;
    position: absolute;
    left: 0;
    top: 0;
    z-index: 111;
}

.contact-form .attachment .file-group .file {
    width: 100%;
    height: 100%;
    opacity: 0;
    cursor: pointer;
    position: absolute;
    left: 0;
    top: 0;
    z-index: 111;
}

.contact-form .attachment .file-group .file-name-p {
    overflow: hidden;
    height: 34px;
    line-height: 34px;
    display: -webkit-box;
    display: -webkit-flex;
    display: -moz-box;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-align: end;
    -webkit-align-items: flex-end;
    -moz-box-align: end;
    -ms-flex-align: end;
    align-items: flex-end;
}

.contact-form .attachment .file-group .file-name-p i {
    cursor: pointer;
}

.contact-form .attachment .file-group .file-name-p span {
    overflow: hidden;
    white-space: nowrap;
    text-overflow: ellipsis;
}


@media screen and (max-width: 1219px) {
    .contact-form {
        margin-top: 70px;
    }

    .contact-form .item-row .code-input {
        margin-right: 10px;
        width: 270px;
    }
}

@media screen and (max-width: 999px) {
    .contact-form {
        margin-top: 50px;
    }

    .contact-form .item-row .code-input {
        width: 170px;
    }

    .contact-form .item-row .code-btn {
        width: 40.25045%;
    }
}

@media screen and (max-width: 767px) {
    .contact-form {
        margin-top: 30px;
    }

    .contact-form .box-title {
        margin-bottom: 30px;
    }

    .contact-form .item-row .code-input {
        width: -moz-calc(100% - 240px);
        width: calc(100% - 240px);
        margin: 0 0 12px;
    }

    .contact-form .item-row .code-img {
        float: right;
        margin: 0;
    }

    .contact-form .item-row .code-btn {
        width: 100%;
        margin: 12px 0 0;
    }
}

@media screen and (max-width: 500px) {
    .contact-form .item-row .code-input {
        width: 100%;
    }

    .contact-form .item-row .code-img {
        float: left;
        margin: 0;
    }
}

.map {
    margin-top: 72px;
}

.map img {
    display: block;
    margin: 0 auto;
}

@media screen and (max-width: 999px) {
    .map {
        margin-top: 50px;
    }
}

@media screen and (max-width: 767px) {
    .map {
        margin-top: 30px;
    }
}

/*-------------6-contact end---------------------------------------------------------------*/

/*# sourceMappingURL=3style.css.map */

/*.phone_nav*/
.phone_nav {
    width: 5px;
    height: 100%;
    position: absolute;
    right: 0;
    -webkit-transition: all 0.4s ease 0s;
    -o-transition: all 0.4s ease 0s;
    -moz-transition: all 0.4s ease 0s;
    transition: all 0.4s ease 0s;
    z-index: 999999999999999;
    cursor: pointer;
    position: fixed;
    top: -5px;
    right: 0;
    display: block;
}

.phone_nav .nav {
    overflow: hidden;
    width: 300px;
    background: rgba(0, 0, 0, 0.8);
    position: absolute;
    top: 0;
    right: 0;
    display: block;
    height: auto;
    overflow: scroll;
}

.phone_nav .nav form {
    margin: 15px auto;
    width: 258px;
    height: 26px;
    border: 1px solid #fff;
    position: relative;
}

.phone_nav .nav form .iptc {
    -moz-box-sizing: border-box;
    box-sizing: border-box;
    padding-left: 15px;
    background-color: #fff;
    width: 80%;
    height: 26px;
    line-height: 26px;
    display: block;
    float: left;
}

.phone_nav .nav form .ipsc {
    width: 20%;
    height: 26px;
    line-height: 26px;
    display: block;
    float: right;
    z-index: 1;
    position: relative;
}

.phone_nav .nav form .iconfont {
    position: absolute;
    top: 0;
    right: 0;
    width: 20%;
    height: 26px;
    text-align: center;
    line-height: 26px;
    color: #145a91;
    z-index: 0;
    background-color: #fff;
}

.phone_nav .nav > ul {
    display: none;
    margin-top: 0px;
    margin-bottom: 0px;
    overflow: scroll;
    padding-top: 45px;
    -ms-box-sizing: border-box;
    -o-box-sizing: border-box;
    -moz-box-sizing: border-box;
    box-sizing: border-box;
}

.phone_nav .nav > ul > li {
    line-height: 40px;
    font-size: 12px;
    font-size: 1.2rem;
    text-indent: 20px;
    position: relative;
    font-family: "OpenSans", arial;
}

.phone_nav .nav > ul > li .addition {
    width: 20px;
    height: 20px;
    position: absolute;
    right: 15px;
    top: 10px;
    background: url("../fonts/shizi.png") no-repeat center center;
}

.phone_nav .nav > ul > li .addition.fa:before {
    margin-right: 5px;
    color: #fff;
    text-indent: 0;
}

.phone_nav .nav > ul > li > a {
    color: #fff;
    font-size: 12px;
    font-size: 1.2rem;
    display: block;
    margin-right: 40px;
}

.phone_nav .nav > ul > li > a span {
    color: #fff;
    font-size: 12px;
    font-size: 1.2rem;
    font-family: "OpenSans", arial;
}

.phone_nav .nav > ul > li .c-show {
    display: none;
    width: 100%;
}

.phone_nav .nav > ul > li .c-show1 .c-s1 {
    position: relative;
    padding-left: 15px;
}

.phone_nav .nav > ul > li .c-show1 .c-s1 > a {
    position: relative;
    font-size: 12px;
    font-size: 1.2rem;
    color: #fff;
    display: block;
    padding-top: 5px;
    padding-bottom: 5px;
    line-height: 30px;
    margin-right: 40px;
}

.phone_nav .nav > ul > li .c-show1 .c-s1 > a span {
    font-size: 12px;
    font-size: 1.2rem;
    color: #fff;
    font-family: "OpenSans", arial;
}

.phone_nav .nav > ul > li .c-show1 .c-s1 > .c-show2 {
    position: relative;
}

.phone_nav .nav > ul > li .c-show1 .c-s1 > .c-show2 .c-s2 {
    position: relative;
}

.phone_nav .nav > ul > li .c-show1 .c-s1 > .c-show2 .c-s2 > a {
    text-indent: 35px;
    font-size: 12px;
    font-size: 1.2rem;
    color: #fff;
    display: block;
    padding-top: 5px;
    padding-bottom: 5px;
    line-height: 30px;
    margin-right: 40px;
}

.phone_nav .nav > ul > li .c-show1 .c-s1 > .c-show2 .c-s2 > a span {
    font-size: 12px;
    font-size: 1.2rem;
    color: #fff;
    font-family: "OpenSans", arial;
}

.phone_nav .nav > ul > li .c-show1 .c-s1 .c-s2 .c-show3 {
    position: relative;
}

.phone_nav .nav > ul > li .c-show1 .c-s1 .c-s2 .c-show3 .c-s3 a {
    text-indent: 50px;
    font-size: 12px;
    font-size: 1.2rem;
    color: #fff;
    display: block;
    padding-top: 5px;
    padding-bottom: 5px;
    line-height: 30px;
}

.phone_nav .nav > ul > li .c-show1 .c-s1 .c-s2 .c-show3 .c-s3 a span {
    font-size: 12px;
    font-size: 1.2rem;
    color: #fff;
    font-family: "OpenSans", arial;
}

.phone_nav .nav > ul > dl {
    padding: 20px;
}

.phone_nav .nav > ul > dl dd {
    float: left;
    margin: 0 2px;
}

.phone_nav .nav > ul > dl dd img {
    width: 23px;
}

.phone_nav .menubtn {
    width: 23px;
    height: 18px;
    position: absolute;
    top: 12px;
    right: 12px;
    -webkit-transition: all 0.4s ease 0s;
    -o-transition: all 0.4s ease 0s;
    -moz-transition: all 0.4s ease 0s;
    transition: all 0.4s ease 0s;
    z-index: 9999;
}

.phone_nav .menubtn span {
    display: block;
    width: 100%;
    height: 3px;
    margin-bottom: 3px;
    background-color: #fff;
}

@media screen and (min-width: 1000px) {
    .phone_nav, .nav {
        display: none !important;
    }
}

/*# sourceMappingURL=4nav.css.map */

.slide {
    position: relative;
}

.slide .carouse {
    width: 100%;
    overflow: hidden;
    position: relative;
}

.slide .carouse .slideItem {
    width: 100%;
    position: absolute;
    cursor: pointer;
}

.slide video {
    position: absolute;
    display: block;
    left: 50%;
    top: 50%;
    -webkit-transform: translate(-50%, -50%);
    -moz-transform: translate(-50%, -50%);
    -ms-transform: translate(-50%, -50%);
    -o-transform: translate(-50%, -50%);
    transform: translate(-50%, -50%);
    min-width: 100%;
    min-height: 100%;
    width: 100%;
    height: 100%;
    max-width: none;
    -o-object-fit: cover;
    object-fit: cover;
    -o-object-position: 50% 50%;
    object-position: 50% 50%;
    display: none \9;
    display: block \9 \0;
}

.slide .carouse .slideItem .banner-img {
    width: 100%;
    display: block;
}

.slide .console {
    height: 57px;
    display: inline-block;
    width: 35px;
    position: absolute;
    top: 40%;
}

.slide .carousel-control {
    position: absolute;
    top: 50%;
    width: 60px;
    height: 60px;
    z-index: 999;
    margin-top: -35px;
}

.slide .carousel-control .iconfont {
    font-size: 69px;
    font-size: 6.9rem;
    color: #fff;
}

.slide .carousel-control:hover .iconfont {
    color: #145a91;
}

.slide .carousel-control.left {
    left: 62px;
    cursor: pointer;
}

.slide .carousel-control.right {
    right: 62px;
    cursor: pointer;
}

.slide .dotList {
    position: absolute;
    width: 100%;
    bottom: 50px;
    text-align: center;
    line-height: 0;
}

.slide .dotList li {
    display: inline-block;
    cursor: pointer;
    background-color: #fff;
    border-radius: 50%;
    font-size: 0px;
    margin: 0 3.5px;
    border: none;
    outline: none;
    width: 12px;
    height: 12px;
}

.slide .dotList li.active {
    background-color: #145a91;
}

@media screen and (max-width: 999px) {
    .slide .carousel-control {
        display: none;
    }

    .slide .dotList {
        bottom: 15px;
    }

    .slide .dotList li {
        margin: 0 3px;
    }
}

@media screen and (max-width: 767px) {
    .slide .dotList {
        bottom: 10px;
    }

    .slide .dotList li {
        margin: 0 3px;
        width: 12px;
        height: 12px;
    }
}

/*# sourceMappingURL=5slide5.css.map */

@media screen and (min-width: 1000px) and (max-width: 1219px) {
}

@media screen and (max-width: 1219px) {
}

@media screen and (max-width: 999px) {
}

@media screen and (max-width: 767px) {
}

@font-face {
    font-family: 'OpenSans';
    src: url('/fonts/OpenSans.eot');
    src: url('/fonts/OpenSans.eot') format('embedded-opentype'),
    url('/fonts/OpenSans.woff2') format('woff2'),
    url('/fonts/OpenSans.woff') format('woff'),
    url('/fonts/OpenSans.ttf') format('truetype'),
    url('/fonts/OpenSans.svg#OpenSans') format('svg');
}

@font-face {
    font-family: 'OpenSans-Semibold';
    src: url('/fonts/OpenSans-Semibold.eot');
    src: url('/fonts/OpenSans-Semibold.eot') format('embedded-opentype'),
    url('/fonts/OpenSans-Semibold.woff2') format('woff2'),
    url('/fonts/OpenSans-Semibold.woff') format('woff'),
    url('/fonts/OpenSans-Semibold.ttf') format('truetype'),
    url('/fonts/OpenSans-Semibold.svg#OpenSans-Semibold') format('svg');
}

@font-face {
    font-family: "iconfont"; /* Project id 2683871 */
    src: url('/fonts/iconfont.woff2?t=1626679415618') format('woff2'),
    url('/fonts/iconfont.woff?t=1626679415618') format('woff'),
    url('/fonts/iconfont.ttf?t=1626679415618') format('truetype');
}

.iconfont {
    font-family: "iconfont" !important;
    font-size: 16px;
    font-size: 1.6rem;
    font-style: normal;
    -webkit-font-smoothing: antialiased;
    -moz-osx-font-smoothing: grayscale;
}

.icon-message2:before {
    content: "\e7dc";
}

.icon-companyname:before {
    content: "\e610";
}

.icon-message1:before {
    content: "\ebe1";
}

.icon-qiyemingcheng-tubiao:before {
    content: "\e601";
}

.icon-vk1:before {
    content: "\e61a";
}

.icon-home:before {
    content: "\e624";
}

.icon-edit:before {
    content: "\e611";
}

.icon-facebook1:before {
    content: "\e620";
}

.icon-vk:before {
    content: "\e735";
}

.icon-pinterest1:before {
    content: "\e8ab";
}

.icon-jian2:before {
    content: "\e600";
}

.icon-linkedin1:before {
    content: "\e648";
}

.icon-youtube1:before {
    content: "\e6d6";
}

.icon-twitter1:before {
    content: "\e607";
}

.icon-jia2:before {
    content: "\e608";
}

.icon-bigger:before {
    content: "\e647";
}

.icon-left:before {
    content: "\e72c";
}

.icon-right:before {
    content: "\e72d";
}

.icon-up1:before {
    content: "\e72e";
}

.icon-bottom1:before {
    content: "\e72f";
}

.icon-left1:before {
    content: "\e730";
}

.icon-right1:before {
    content: "\e731";
}

.icon-up:before {
    content: "\e73e";
}

.icon-bottom:before {
    content: "\e73f";
}

.icon-instagram1:before {
    content: "\e79d";
}

.icon-tumblr:before {
    content: "\e79e";
}

.icon-download1:before {
    content: "\e7a0";
}

.icon-search4:before {
    content: "\e7b2";
}

.icon-email:before {
    content: "\e7bf";
}

.icon-whatsapp1:before {
    content: "\e7c3";
}

.icon-fax:before {
    content: "\e7c5";
}

.icon-mobile:before {
    content: "\e7c8";
}

.icon-phone:before {
    content: "\e7cb";
}

.icon-phone1:before {
    content: "\e7ce";
}

.icon-skype1:before {
    content: "\e7cf";
}

.icon-contact11:before {
    content: "\e7d2";
}

.icon-qq:before {
    content: "\e7d6";
}

.icon-wechat:before {
    content: "\e7d8";
}

.icon-phone2:before {
    content: "\e7d9";
}

.icon-calendar1:before {
    content: "\e7e3";
}

.icon-youbian:before {
    content: "\e60f";
}

.icon-instagram:before {
    content: "\e66e";
}

.icon-download:before {
    content: "\e62a";
}

.icon-linkedin:before {
    content: "\e666";
}

.icon-facebook:before {
    content: "\e667";
}

.icon-twitter:before {
    content: "\e66a";
}

.icon-youtube:before {
    content: "\e66c";
}

.icon-pinterest:before {
    content: "\e66d";
}

.icon-up7:before {
    content: "\e722";
}

.icon-bottom7:before {
    content: "\e723";
}

.icon-left7:before {
    content: "\e724";
}

.icon-right7:before {
    content: "\e725";
}

.icon-up16:before {
    content: "\e746";
}

.icon-bottom16:before {
    content: "\e747";
}

.icon-left16:before {
    content: "\e748";
}

.icon-right16:before {
    content: "\e749";
}

.icon-left25:before {
    content: "\e787";
}

.icon-right25:before {
    content: "\e788";
}

.icon-download8:before {
    content: "\e7a7";
}

.icon-search5:before {
    content: "\e7b3";
}

.icon-address:before {
    content: "\e7bc";
}

.icon-contact:before {
    content: "\e7be";
}

.icon-email1:before {
    content: "\e7c4";
}

.icon-tel:before {
    content: "\e7c7";
}

.icon-whatsapp:before {
    content: "\e7c1";
}

.icon-address1:before {
    content: "\e7c2";
}

.icon-email11:before {
    content: "\e7c6";
}

.icon-skype:before {
    content: "\e7c9";
}

.icon-fax1:before {
    content: "\e7ca";
}

.icon-tel1:before {
    content: "\e7cd";
}

.icon-message:before {
    content: "\e7da";
}

.icon-calendar3:before {
    content: "\e7e1";
}

.icon-top10:before {
    content: "\e7ed";
}

.icon-top101:before {
    content: "\e7ee";
}

.icon-bottom10:before {
    content: "\e7ef";
}

.icon-left10:before {
    content: "\e7f0";
}

.icon-right10:before {
    content: "\e7f1";
}

.icon-yuanxingjiantouxiangyouzuo:before {
    content: "\e60c";
}

.icon-yuanxingjiantouxiangyou:before {
    content: "\e613";
}

.icon-shixinyuanxingjiantoushang1:before {
    content: "\e93f";
}

.icon-shixinyuanxingjiantouxia1:before {
    content: "\e942";
}

.icon-shixinyuanxingjiantouyou1:before {
    content: "\e940";
}

.icon-shixinyuanxingjiantouzuo1:before {
    content: "\e941";
}

.icon-yuanxingjiantouyou:before {
    content: "\e967";
}

.icon-yuanxingjiantouzuo:before {
    content: "\e968";
}

.icon-liebiao:before {
    content: "\e834";
}

.icon-icon-test9:before {
    content: "\e64f";
}

.icon-icon-test10:before {
    content: "\e651";
}

.icon-icon-test12:before {
    content: "\e653";
}

.icon-list:before {
    content: "\e671";
}


.faq-list {
    padding-bottom: 35px;
}

@media screen and (max-width: 999px) {
    .faq-list {
        padding-bottom: 30px;
    }
}

@media screen and (max-width: 767px) {
    .faq-list {
        padding-bottom: 15px;
    }
}

.faq-list .list-item {
    margin-bottom: 30px;
}

.faq-list .list-item:first-child .item-desc {
    display: block;
}

@media screen and (max-width: 1219px) {
    .faq-list .list-item {
        margin-bottom: 20px;
    }
}

@media screen and (max-width: 767px) {
    .faq-list .list-item {
        margin-bottom: 15px;
    }
}

.faq-list .item-title {
    background-color: #f2f2f2;
    font-family: "HelveticaLTStd-Bold", arial;
    line-height: 26px;
    font-size: 16px;
    font-size: 1.6rem;
    padding: 10px 40px 10px 30px;
    cursor: pointer;
    position: relative;
    white-space: pre-wrap
}

@media screen and (max-width: 1219px) {
    .faq-list .item-title {
        padding: 8px 40px 8px 15px;
    }
}

@media screen and (max-width: 767px) {
    .faq-list .item-title {
        font-size: 14px;
        font-size: 1.4rem;
        padding: 5px 28px 5px 10px;
    }
}

.faq-list .item-title:before {
    position: absolute;
    content: '\e725';
    font-family: "iconfont" !important;
    font-size: 16px;
    font-size: 1.6rem;
    font-style: normal;
    -webkit-font-smoothing: antialiased;
    -moz-osx-font-smoothing: grayscale;
    right: 19px;
}

@media screen and (max-width: 767px) {
    .faq-list .item-title:before {
        right: 10px;
    }
}

.faq-list .item-title.active {
    background-color: #145a91;
    color: #fff;
}

.faq-list .item-title.active:before {
    -webkit-transform: rotate(90deg);
    -moz-transform: rotate(90deg);
    -ms-transform: rotate(90deg);
    -o-transform: rotate(90deg);
    transform: rotate(90deg);
}

.faq-list .item-desc {
    display: none;
    padding: 18px 30px 0;
    font-size: 16px;
    font-size: 1.6rem;
    line-height: 30px;
}

.faq-list .item-desc p {
    min-height: 30px;
    white-space: pre-wrap;
}

@media screen and (max-width: 1219px) {
    .faq-list .item-desc {
        padding: 15px 15px 0;
        line-height: 26px;
    }

    .faq-list .item-desc p {
        min-height: 26px;
    }
}

@media screen and (max-width: 999px) {
    .faq-list .item-desc {
        font-size: 14px;
        font-size: 1.4rem;
        line-height: 24px;
    }

    .faq-list .item-desc p {
        min-height: 24px;
    }
}

@media screen and (max-width: 767px) {
    .faq-list .item-desc {
        padding: 10px 10px 0;
        font-size: 12px;
        font-size: 1.2rem;
        line-height: 20px;
    }

    .faq-list .item-desc p {
        min-height: 20px;
    }
}

/* video-list start */
.video-list {
    font-size: 0;
    letter-spacing: 0;
    padding-bottom: 20px; /* .item-videobox start */ /* .item-videobox end */
}

@media screen and (max-width: 767px) {
    .video-list {
        padding-bottom: 10px;
    }
}

.video-list .list-item {
    display: inline-block;
    vertical-align: top;
    width: 29.83333%;
    margin-left: 5.25%;
    margin-bottom: 34px; /* @media screen and (max-width:400px) { width: 98%; } */
}

@media screen and (max-width: 999px) {
    .video-list .list-item {
        width: 31%;
        margin-left: 1%;
        bottom: 25px;
        margin-right: 1%;
    }
}

@media screen and (max-width: 640px) {
    .video-list .list-item {
        width: 48%;
        margin-left: 1% !important;
        margin-right: 1%;
        margin-bottom: 20px;
    }
}

.video-list .item-videobox {
    width: 100%;
    overflow: hidden;
    margin: 0 auto;
    border-radius: 20px;
}

.video-list .item-videobox .item-video {
    position: relative;
    overflow: hidden;
    padding-bottom: 74.86034%;
    height: 0;
}

.video-list .item-videobox .item-video iframe, .video-list .item-videobox .item-video video {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    border: none;
}

.video-list .item-videobox .item-video iframe body {
    margin: 0px !important;
}

.video-list .item-pic {
    border-radius: 10px;
}

.video-list .item-pic img {
    cursor: pointer;
}

.video-list .item-title {
    text-align: center;
    font-size: 18px;
    font-size: 1.8rem;
    line-height: 1.2;
    margin-top: 15px;
}

@media screen and (max-width: 999px) {
    .video-list .item-title {
        font-size: 16px;
        font-size: 1.6rem;
        margin-top: 15px;
    }
}

@media screen and (max-width: 767px) {
    .video-list .item-title {
        font-size: 14px;
        font-size: 1.4rem;
        margin-top: 8px;
    }
}

/* video-list end */
.video-backdrop {
    display: none;
    position: fixed;
    top: 0;
    bottom: 0;
    left: 0;
    right: 0;
    background-color: #000;
    background-color: rgba(0, 0, 0, 0.7);
    z-index: 999999999; /* .item-videobox start */ /* .item-videobox end */
}

.video-backdrop .item-close {
    position: absolute;
    right: 2.60417%;
    top: 2.60417%;
    color: #fff;
    font-size: 36px;
    font-size: 3.6rem;
    cursor: pointer;
}

@media screen and (max-width: 767px) {
    .video-backdrop .item-close {
        font-size: 26px;
        font-size: 2.6rem;
    }
}

.video-backdrop .item-videobox {
    overflow: hidden;
    max-width: 600px;
    border-radius: 20px;
    position: absolute;
    top: 50%;
    left: 50%;
    width: 95%;
    -webkit-transform: translate(-50%, -50%);
    -moz-transform: translate(-50%, -50%);
    -ms-transform: translate(-50%, -50%);
    -o-transform: translate(-50%, -50%);
    transform: translate(-50%, -50%);
}

.video-backdrop .item-videobox .item-video {
    position: relative;
    overflow: hidden;
    padding-bottom: 74.83333%;
    height: 0;
}

.video-backdrop .item-videobox .item-video iframe, .video-backdrop .item-videobox .item-video video {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    border: none;
}

.video-backdrop .item-videobox .item-video iframe body {
    margin: 0px !important;
}

.cer-list {
    font-size: 0;
    letter-spacing: 0;
    padding-bottom: 10px;
}

.cer-list .list-item {
    display: inline-block;
    vertical-align: top;
    width: 31.08333%;
    margin-left: 3.375%;
    margin-bottom: 33px;
}

@media screen and (max-width: 999px) {
    .cer-list .list-item {
        margin-bottom: 30px;
        width: 31.333%;
        margin-left: 1% !important;
        margin-right: 1%;
    }
}

@media screen and (max-width: 400px) {
    .cer-list .list-item {
        width: 48%;
        margin-left: 1% !important;
        margin-right: 1%;
        margin-bottom: 20px;
    }
}

.cer-list .item-pics {
    position: relative;
    padding-bottom: 100%;
    border: solid 1px #DCDCDC;
}

.cer-list .item-pics img {
    max-width: 100% !important;
    max-height: 100% !important;
}

.cer-list .item-box {
    display: -webkit-box;
    display: -webkit-flex;
    display: -moz-box;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-align: center;
    -webkit-align-items: center;
    -moz-box-align: center;
    -ms-flex-align: center;
    align-items: center;
    -webkit-box-pack: center;
    -webkit-justify-content: center;
    -moz-box-pack: center;
    -ms-flex-pack: center;
    justify-content: center;
    position: absolute;
    left: 0;
    top: 0;
    right: 0;
    bottom: 0;
    width: 100%;
    height: 100%;
}

.cer-list .item-backdrop .iconfont {
    display: inline-block;
    width: 50px;
    height: 50px;
    border-radius: 50%;
    background-color: #fff;
    line-height: 50px;
    font-size: 24px;
    font-size: 2.4rem;
    color: #145a91;
    position: relative;
}

@media screen and (max-width: 999px) {
    .cer-list .item-backdrop {
        display: none;
    }
}

.cer-list .item-title {
    font-size: 18px;
    font-size: 1.8rem;
    text-align: center;
    line-height: 1.2;
    margin-top: 16px;
}

@media screen and (max-width: 1219px) {
    .cer-list .item-title {
        font-size: 16px;
        font-size: 1.6rem;
    }
}

@media screen and (max-width: 999px) {
    .cer-list .item-title {
        font-size: 14px;
        font-size: 1.4rem;
        margin-top: 15px;
    }
}

@media screen and (max-width: 767px) {
    .cer-list .item-title {
        font-size: 12px;
        font-size: 1.2rem;
        margin-top: 10px;
    }
}


.pro2-attr {
    margin-bottom: 20px;
}

.pro2-attr .item-title {
    display: inline-block;
    min-width: 170px;
    line-height: 24px;
    padding: 10px;
    border-radius: 22px;
    background-color: #145a91;
    text-align: center;
    font-weight: bold;
    font-size: 16px;
    font-size: 1.6rem;
    color: #fff;
}

@media screen and (max-width: 1219px) {
    .pro2-attr .item-title {
        line-height: 20px;
    }
}

@media screen and (max-width: 991px) {
    .pro2-attr .item-title {
        font-size: 14px;
        font-size: 1.4rem;
        min-width: 140px;
    }
}

@media screen and (max-width: 767px) {
    .pro2-attr .item-title {
        font-size: 12px;
        font-size: 1.2rem;
        padding: 5px;
        min-width: 100px;
    }
}

.pro2-attr .item-desc {
    padding: 15px 0 0;
    font-size: 14px;
    font-size: 1.4rem;
    line-height: 24px;
}

.pro2-attr .item-desc, .pro2-attr .item-desc a {
    color: #666;
}


.index-cer, .index-video, .index-faq, .index-download {
    padding: 50px 0;
}

.index-cer .index-title, .index-video .index-title, .index-faq .index-title, .index-download .index-title {
    margin-bottom: 30px;
}

@media screen and (max-width: 767px) {
    .index-cer, .index-video, .index-faq, .index-download {
        padding: 30px 0;
    }
}

.index-faq .faq-list {
    padding-bottom: 0;
}

.index-download .download-list {
    padding-bottom: 0;
}

.index-cer .cer-scroll {
    position: relative;
    overflow: hidden;
}

.index-cer .cer-scroll .scroll-btns {
    font-size: 0;
    letter-spacing: 0;
    text-align: center;
    margin-top: 20px;
}

.index-cer .cer-scroll .scroll-btns .scroll-btn {
    display: inline-block;
    vertical-align: top;
    cursor: pointer;
    font-size: 28px;
    font-size: 2.8rem;
    color: #C11325;
}

.index-cer .cer-scroll .scroll-btns .scroll-btn:hover {
    color: #000;
}

@media screen and (max-width: 999px) {
    .index-cer .cer-scroll .scroll-btns .scroll-btn {
        font-size: 28px;
        font-size: 2.8rem;
    }
}

@media screen and (max-width: 767px) {
    .index-cer .cer-scroll .scroll-btns .scroll-btn {
        font-size: 24px;
        font-size: 2.4rem;
    }
}

.index-cer .cer-scroll .scroll-btns .prev {
    margin-right: 20px;
}

@media screen and (max-width: 999px) {
    .index-cer .cer-scroll .scroll-btns .prev {
        margin-right: 20px;
    }
}

@media screen and (max-width: 767px) {
    .index-cer .cer-scroll .scroll-btns .prev {
        margin-right: 10px;
    }
}

.index-cer .cer-scroll .scroll-list-box {
    width: 100%;
    overflow: hidden;
}

.index-cer .cer-scroll .scroll-list {
    width: 10000%;
}

.index-cer .cer-scroll .scroll-list .list-item {
    float: left;
    width: 0.23083%;
    margin-right: 0.02556%;
}

@media screen and (max-width: 1219px) {
    .index-cer .cer-scroll .scroll-list .list-item {
        width: 0.235%;
        margin-right: 0.02%;
    }
}

@media screen and (max-width: 767px) {
    .index-cer .cer-scroll .scroll-list .list-item {
        width: 0.32%;
    }
}

@media screen and (max-width: 480px) {
    .index-cer .cer-scroll .scroll-list .list-item {
        width: 0.49%;
    }
}

.index-cer .cer-scroll .scroll-list .item-pics {
    position: relative;
    padding-bottom: 100%;
    border: solid 1px #DCDCDC;
}

.index-cer .cer-scroll .scroll-list .item-pics img {
    max-width: 100% !important;
    max-height: 100% !important;
}

.index-cer .cer-scroll .scroll-list .item-box {
    display: -webkit-box;
    display: -webkit-flex;
    display: -moz-box;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-align: center;
    -webkit-align-items: center;
    -moz-box-align: center;
    -ms-flex-align: center;
    align-items: center;
    -webkit-box-pack: center;
    -webkit-justify-content: center;
    -moz-box-pack: center;
    -ms-flex-pack: center;
    justify-content: center;
    position: absolute;
    left: 0;
    top: 0;
    right: 0;
    bottom: 0;
    width: 100%;
    height: 100%;
}

.index-cer .cer-scroll .scroll-list .item-backdrop:before {
    background-color: #000;
    opacity: 0.5;
    filter: alpha(opacity=50);
    -ms-filter: "progid:DXImageTransform.Microsoft.Alpha(Opacity=50)";
}

.index-cer .cer-scroll .scroll-list .item-backdrop .iconfont {
    font-size: 36px;
    font-size: 3.6rem;
    color: #fff;
    position: relative;
}

@media screen and (max-width: 999px) {
    .index-cer .cer-scroll .scroll-list .item-backdrop {
        display: none;
    }
}

.index-cer .cer-scroll .scroll-list .item-title {
    font-size: 16px;
    font-size: 1.6rem;
    text-align: center;
    line-height: 1.2;
    margin-top: 15px;
}

@media screen and (max-width: 1219px) {
    .index-cer .cer-scroll .scroll-list .item-title {
        font-size: 16px;
        font-size: 1.6rem;
    }
}

@media screen and (max-width: 999px) {
    .index-cer .cer-scroll .scroll-list .item-title {
        font-size: 14px;
        font-size: 1.4rem;
    }
}

@media screen and (max-width: 767px) {
    .index-cer .cer-scroll .scroll-list .item-title {
        font-size: 12px;
        font-size: 1.2rem;
        margin-top: 10px;
    }
}


.pro1-spec {
    overflow: hidden;
    margin-bottom: 30px;
}

.more-btn {
    float: right;
    text-transform: uppercase;
    margin-bottom: 30px;
    cursor: pointer;
}

.zanwu {
    font-size: 14px;
    font-size: 1.4rem;
    line-height: 30px;
    margin-top: 15px;
    margin-bottom: 15px
}

.disnone {
    display: none
}

.inquiry-success {
    text-align: center;
    margin-top: 5%;
    margin-bottom: 10%;
}

.inquiry-success * {
    text-align: center;
}

.inquiry-success p i {
    font-size: 60px;
    font-size: 6rem;
    color: #145a91
}

.inquiry-success .text {
    font-size: 20px;
    color: #333333;
    margin: 20px 0;
}

.inquiry-success .but a {
    display: inline-block;
    width: 200px;
    height: 50px;
    background-color: #145a91;
    color: #FFFFFF;
    line-height: 50px;
    padding: 0;
    border: 0;
    font-size: 16px;
    font-size: 1.6rem
}

.inquiry-success .but a:hover {
    background: #fff;
    color: #145a91
}

.listcart2 {
    margin-top: 30px;
    width: 100%;
    clear: both
}

.listcart2 a, .listcart2 button {
    display: inline-block;
    color: #fff;
    height: 34px;
    min-width: 200px;
    box-sizing: border-box;
    font-size: 14px;
    font-size: 1.4rem;
    margin-right: 10px;
    text-align: center;
    margin-bottom: 10px;
    background: #666;
    padding-left: 5px;
    padding-right: 5px;
    border: none;
    cursor: pointer;
    background: #145a91;
    color: #fff;
    border: #145a91 solid 1px;
    line-height: 34px;
}

.listcart2 a:hover, .listcart2 button:hover {
    background: #fff;
    color: #145a91;
}

@media screen and (max-width: 640px) {
    .listcart2 a, .listcart2 button {
        width: 100%;
        display: block
    }


}


/*xun pan tijiao*/

.xunpanlb {
    margin-top: 30px;
    clear: both;
}

.xunpanlb .table .thead {
    font-size: 0;
    letter-spacing: 0;
    border: 1px solid #dcdcdc;
    background: #145a91;
}

.xunpanlb .table .thead p {
    text-align: center;
    padding: 0 10px;
    font-size: 16px;
    line-height: 40px;
    width: 33.3333%;
    display: inline-block;
    vertical-align: middle;
    box-sizing: border-box;
    color: #fff
}

.xunpanlb .table .thead p:nth-child(2) {
    border-right: 1px solid #dcdcdc;
    border-left: 1px solid #dcdcdc;
}

.xunpanlb .table .tbody {
    font-size: 0;
    letter-spacing: 0;
}

.xunpanlb .table .tbody .tread {
    border: 1px solid #dcdcdc;
    border-top: 0;
}

.xunpanlb .table .tbody .tread .td {
    height: 100%;
    text-align: center;
    padding: 10px 10px;
    font-size: 16px;
    line-height: 40px;
    width: 33.3333%;
    display: inline-block;
    vertical-align: middle;
    box-sizing: border-box
}

.xunpanlb .table .tbody .tread .td:nth-child(2) {
    border-right: 1px solid #dcdcdc;
    border-left: 1px solid #dcdcdc;
}

.xunpanlb .table .tbody .td img {
    max-width: 110px;
    margin-left: auto;
    margin-right: auto;
}

.xunpanlb .table .tbody .td a {
    color: #666666;
    white-space: nowrap;
    text-overflow: ellipsis;
    overflow: hidden;
    display: block;
}

.xunpanlb .table .tbody .td a:hover {
    color: #145a91;
}

@media screen and (max-width: 520px) {
    .xunpanlb .table {
        border-top: 1px solid #dcdcdc;
    }

    .xunpanlb .table .thead {
        display: none;
    }

    .xunpanlb .table .tbody .td {
        width: 100% !important;
    }

    .xunpanlb .table .tbody .tread .td:nth-child(2) {
        border: 0 !important;
    }
}

.m-kf5 .kf-item span {

    font-family: Arial, Helvetica, sans-serif;
}

.cart-list .cart-operate .cart-delate {
    color: #145a91 !important;
}

.header .h-top .logo-a {
    position: absolute;
    width: 266px;
    top: 0px;
    left: 50%;
    margin-left: -133px;
}

.tankaunga{ position:fixed; width:100%; height:100%; left:0px; top:0px; background:#000; background:rgba(0,0,0,0.5); display:none; z-index:9999999999}
.tankaunga:before{ content:"X"; position:absolute; width:30px; height:30px; line-height:30px; text-align:center; top:10px; right:10px; background:#fff; border-radius:50%; font-size:18px;}
.tankaungn2{position:fixed; left:5%; top:5%; right:5%; bottom:5%;}

.tankaungn2 iframe,.tankaungn2 video {  position: absolute; top:0; left: 0; width: 100%; height: 100%; border:none;}
.tankaungn2 iframe body{ margin:0px !important;}

@media screen and (max-width:767px) {
    .tankaungn2{position:fixed; left:5%; top:10%; right:5%; bottom:10%;}
}
.slide iframe{
    position: absolute;
    left: 0;
    top: 0;
    width: 100%;
    height: 100%;
}
.slide video {
    position: absolute;
    display: block;
    left: 50%;
    top: 50%;
    -webkit-transform: translate(-50%, -50%);
    -moz-transform: translate(-50%, -50%);
    -ms-transform: translate(-50%, -50%);
    -o-transform: translate(-50%, -50%);
    transform: translate(-50%, -50%);
    min-width: 101%;
    min-height: 100%;
    max-width: none;
    -o-object-fit: cover;
    object-fit: cover;
    -o-object-position: 50% 50%;
    object-position: 50% 50%;
    display: block;
}
@media screen and (max-width: 999px) { .slide .carousel-control { display: none; }
    .slide .slideItem {
        position: relative;
    }
    .slide video {
        object-position: inherit;
        object-fit: inherit;
        width: 100%;
        height: 100%;
        transform: translate(0, 0);
        left: 0;
        top: 0;
    }
}


.pageinfo {
	PADDING-RIGHT: 3px; PADDING-LEFT: 3px; PADDING-BOTTOM: 3px; MARGIN: 3px; PADDING-TOP: 3px; TEXT-ALIGN: center;    margin: 3px auto; /* 上下 3px，左右自动，居中 */
}
.pageinfo li{ float: left;}
.pageinfo A {
	BORDER-RIGHT: #aaaadd 1px solid; PADDING-RIGHT: 5px; BORDER-TOP: #aaaadd 1px solid; PADDING-LEFT: 5px; PADDING-BOTTOM: 2px; MARGIN: 2px; BORDER-LEFT: #aaaadd 1px solid; COLOR: #000099; PADDING-TOP: 2px; BORDER-BOTTOM: #aaaadd 1px solid; TEXT-DECORATION: none
}
.pageinfo A:hover {
	BORDER-RIGHT: #000099 1px solid; BORDER-TOP: #000099 1px solid; BORDER-LEFT: #000099 1px solid; COLOR: #000; BORDER-BOTTOM: #000099 1px solid
}
.pageinfo A:active {
	BORDER-RIGHT: #000099 1px solid; BORDER-TOP: #000099 1px solid; BORDER-LEFT: #000099 1px solid; COLOR: #000; BORDER-BOTTOM: #000099 1px solid
}
.pageinfo SPAN.thisclass {
	BORDER-RIGHT: #000099 1px solid; PADDING-RIGHT: 5px; BORDER-TOP: #000099 1px solid; PADDING-LEFT: 5px; FONT-WEIGHT: bold; PADDING-BOTTOM: 2px; MARGIN: 2px; BORDER-LEFT: #000099 1px solid; COLOR: #fff; PADDING-TOP: 2px; BORDER-BOTTOM: #000099 1px solid; BACKGROUND-COLOR: #000099
}
.pageinfo SPAN.disabled {
	BORDER-RIGHT: #929292 1px solid; PADDING-RIGHT: 5px; BORDER-TOP: #929292 1px solid; PADDING-LEFT: 5px; PADDING-BOTTOM: 2px; BORDER-LEFT: #929292 1px solid; COLOR: #929292; MARGIN-RIGHT: 2px; PADDING-TOP: 2px; BORDER-BOTTOM: #929292 1px solid
}