.wow {
    opacity: 0;
}

.mobile {
    width: 100%;
}

.mobile-inner {
    margin-right: auto;
    margin-left: auto;
    background-color: ;
    position: relative;
}

.mobile-inner img {}

.mobile-inner p {
    color: #676767;
    line-height: 25px;
    font-size: 16px;
    padding-bottom: 30px;
    padding-right: 30px;
    padding-left: 30px;
    margin: 0px;
}

.mobile-inner-header {
    background-color: rgb(255, 255, 255);
    width: 100%;
    height: 50px;
    position: relative;
    top: 0px;
    z-index: 33;
    left: 0px;
}

.mobile-inner-header-icon {
    color: #ffffff;
    height: 50px;
    font-size: 25px;
    text-align: center;
    float: right;
    width: 50px;
    position: relative;
    -webkit-transition: background 0.5s;
    -moz-transition: background 0.5s;
    -o-transition: background 0.5s;
    transition: background 0.5s;
}

.mobile-inner-header-icon:hover {
    background-color: rgba(255, 255, 255, 0.2);
    cursor: pointer;
}

.mobile-inner-header-icon span {
    position: absolute;
    left: calc((100% - 25px) / 2);
    top: calc((100% - 1px) / 2);
    width: 25px;
    height: 1px;
    background-color: rgb(199, 34, 27);
}

.mobile-inner-header-icon span:nth-child(1) {
    transform: translateY(4px) rotate(0deg);
}

.mobile-inner-header-icon span:nth-child(2) {
    transform: translateY(-4px) rotate(0deg);
}

.mobile-inner-header-icon-click span:nth-child(1) {
    animation-duration: 0.5s;
    animation-fill-mode: both;
    animation-name: clickfirst;
}

.mobile-inner-header-icon-click span:nth-child(2) {
    animation-duration: 0.5s;
    animation-fill-mode: both;
    animation-name: clicksecond;
}

@keyframes clickfirst {
    0% {
        transform: translateY(4px) rotate(0deg);
    }

    100% {
        transform: translateY(0) rotate(45deg);
    }
}

@keyframes clicksecond {
    0% {
        transform: translateY(-4px) rotate(0deg);
    }

    100% {
        transform: translateY(0) rotate(-45deg);
    }
}

.mobile-inner-header-icon-out span:nth-child(1) {
    animation-duration: 0.5s;
    animation-fill-mode: both;
    animation-name: outfirst;
}

.mobile-inner-header-icon-out span:nth-child(2) {
    animation-duration: 0.5s;
    animation-fill-mode: both;
    animation-name: outsecond;
}

@keyframes outfirst {
    0% {
        transform: translateY(0) rotate(-45deg);
    }

    100% {
        transform: translateY(-4px) rotate(0deg);
    }
}

@keyframes outsecond {
    0% {
        transform: translateY(0) rotate(45deg);
    }

    100% {
        transform: translateY(4px) rotate(0deg);
    }
}

.mobile-inner-nav {
    overflow: auto;
    max-height: calc(100vh - 50px);
}

.mobile-inner-nav {
    background-color: hsla(224, 27%, 35%, .6);
    width: 100%;
    position: absolute;
    top: 50px;
    padding-bottom: 0%;
    display: none;
    z-index: 444;
}

.mobile-inner-nav a {
    border-bottom: solid 1px rgba(255, 255, 255, 0.3);
    -webkit-transition: all 0.5s;
    -moz-transition: all 0.5s;
    -o-transition: all 0.5s;
    color: #fff;
    transition: all 0.5s;
}

.mobile-inner-nav dl {
    display: none;
}

.mobile-inner-nav dl dd {
    line-height: 33px;
    text-decoration: none;
    text-indent: 3em;
    font-size: 16px;
    color: #FFFFFF;
    border-bottom: solid 1px rgba(255, 255, 255, 0.3);
    -webkit-transition: all 0.5s;
    -moz-transition: all 0.5s;
    -o-transition: all 0.5s;
    transition: all 0.5s;
    font-weight: 300;
    font-size: 14px;
}

.mobile-inner-nav li {
    border-bottom: solid 1px rgba(255, 255, 255, 0.3);
    -webkit-transition: all 0.5s;
    -moz-transition: all 0.5s;
    -o-transition: all 0.5s;
    transition: all 0.5s;
    line-height: 53px;
    text-indent: 20px;
}

.mobile-inner-nav h2.h2tit {
    line-height: 50px;
    text-decoration: none;
    text-indent: 2em;
    font-size: 16px;
    color: #FFFFFF;
    border-bottom: solid 1px rgba(255, 255, 255, 0.3);
    -webkit-transition: all 0.5s;
    -moz-transition: all 0.5s;
    -o-transition: all 0.5s;
    transition: all 0.5s;
    font-weight: 300;
}

.mobile-inner-nav h2.h2tit a {
    color: #FFFFFF;
}

.mobile-inner-nav a {
    border-bottom: none;
}

.mobile-inner-nav li {
    -webkit-animation-duration: 0.5s;
    animation-duration: 0.5s;
    -webkit-animation-fill-mode: both;
    animation-fill-mode: both;
    -webkit-animation-name: returnToNormal;
    animation-name: returnToNormal;
}

@-webkit-keyframes resize {

    from,
    60%,
    75%,
    90%,
    to {
        -webkit-animation-timing-function: cubic-bezier(0.215, 0.610, 0.355, 1.000);
        animation-timing-function: cubic-bezier(0.215, 0.610, 0.355, 1.000);
    }

    0% {
        opacity: 0;
        -webkit-transform: scale(5, 5);
        transform: scale(5, 5);
    }

    100% {
        opacity: 1;
        -webkit-transform: scale(1, 1);
        transform: scale(1, 1);
    }
}

@keyframes resize {

    from,
    60%,
    75%,
    90%,
    to {
        -webkit-animation-timing-function: cubic-bezier(0.215, 0.610, 0.355, 1.000);
        animation-timing-function: cubic-bezier(0.215, 0.610, 0.355, 1.000);
    }

    0% {
        opacity: 0;
        -webkit-transform: scale(5, 5);
        transform: scale(5, 5);
    }

    100% {
        opacity: 1;
        -webkit-transform: scale(1, 1);
        transform: scale(1, 1);
    }
}

@-webkit-keyframes returnToNormal {
    from {
        opacity: 0;
        -webkit-transform: translate3d(0, 100%, 0);
        transform: translate3d(0, 100%, 0);
    }

    to {
        opacity: 1;
        -webkit-transform: none;
        transform: none;
    }
}

@keyframes returnToNormal {
    from {
        opacity: 0;
        -webkit-transform: translate3d(0, 100%, 0);
        transform: translate3d(0, 100%, 0);
    }

    to {
        opacity: 1;
        -webkit-transform: none;
        transform: none;
    }
}

.mobile-inner-nav li:last-child h2.h2tit {
    border-bottom: none;
}

.mobile-inner-nav li .h3tit {
    height: 50px;
    position: relative;
    background: url(/static/images/51_icon_search@2x.png) no-repeat 30px center;
    background-size: 17px;
}

.mobile-inner-nav li .words {
    display: block;
    width: 100%;
    height: 100%;
    border: none;
    background: none;
    text-indent: 60px;
    font-size: 15px;
    color: #fff;
    background: url(../image/search2.png) no-repeat 30px center;
    background-size: 20px;
}

.mobile-inner-nav li:last-child {
    border-bottom: none;
}

.mobile-inner-nav li form {
    display: block;
    width: 100%;
    height: 100%;
}

.animated {
    animation-duration: 1s;
    animation-fill-mode: both;
}

.animated.infinite {
    animation-iteration-count: infinite;
}

.animated.hinge {
    animation-duration: 2s;
}

.fadeInUp {
    animation-duration: 1.76s;
    animation-name: fadeInUp;
}

@keyframes fadeInUp {
    from {
        opacity: 0;
        transform: translate3d(0, 40px, 0);
    }

    to {
        opacity: 1;
        transform: none;
    }
}

body,
h1,
h2,
h3,
h4,
h5,
h6,
dl,
dt,
dd,
ul,
ol,
li,
th,
td,
p,
blockquote,
pre,
form,
fieldset,
legend,
input,
button,
textarea,
hr,
span {
    margin: 0;
    padding: 0;
}

html {
    font-size: 62.5%;
}

body {
    font-size: 1.4rem;
}

html,
body {
    -moz-user-select: none;
    -khtml-user-select: none;
    user-select: none;
}

body {

    color: #000000;
    background: #fff;
    margin: 0 auto;
    padding: 0px;
}

body {
    -webkit-tap-highlight-color: rgba(0, 0, 0, 0);
}

input[type="button"],
input[type="submit"],
input[type="reset"],
input[type="text"] {
    -webkit-appearance: none;
}

input {
    -webkit-appearance: none;
}

textarea {
    -webkit-appearance: none;
}

a {
    text-decoration: none;
    color: #235aa7;
    outline: none;
}

a:active {
    star: expression(this.onFocus=this.blur());
}

img {
    border: 0px;
    vertical-align: middle;
    max-width: 98%;
}

li {
    list-style: none;
}

* {
    outline: none;
    -webkit-box-sizing: border-box;
    -moz-box-sizing: border-box;
    box-sizing: border-box;
}

a:link {
    text-decoration: none;
}

a:visited {
    text-decoration: none;
}

a:hover {
    text-decoration: none;
}

a:active {
    text-decoration: none;
}


.loading {
    position: fixed;
    left: 0px;
    top: 0px;
    width: 100%;
    height: 100%;
    background: #fff;
    z-index: 99999;
}

.loadingfa {
    width: 50px;
    height: 50px;
    line-height: 50px;
    text-align: center;
    font-size: 29px;
    color: #1f8adf;
    position: absolute;
    left: 50%;
    margin-top: -25px;
    margin-left: -25px;
    top: 50%;
}

html {
    -webkit-overflow-scrolling: touch;
    -webkit-tap-highlight-color: none;
}

html {
    -webkit-tap-highlight-color: transparent;
}

body {
    -webkit-overflow-scrolling: touch;
}

* {
    padding: 0;
    margin: 0;
    -webkit-font-smoothing: antialiased;
    -webkit-tap-highlight-color: transparent;
    -webkit-tap-highlight-color: rgba(0, 0, 0, 0);
    user-select: none;
}

@keyframes rotate {
    from {
        -webkit-transform: rotate(0deg)
    }

    to {
        -webkit-transform: rotate(360deg)
    }
}

@-webkit-keyframes rotate {
    from {
        -webkit-transform: rotate(0deg)
    }

    to {
        -webkit-transform: rotate(360deg)
    }
}

@-moz-keyframes rotate {
    from {
        -moz-transform: rotate(0deg)
    }

    to {
        -moz-transform: rotate(360deg)
    }
}

@-ms-keyframes rotate {
    from {
        -ms-transform: rotate(0deg)
    }

    to {
        -ms-transform: rotate(360deg)
    }
}

@-o-keyframes rotate {
    from {
        -o-transform: rotate(0deg)
    }

    to {
        -o-transform: rotate(360deg)
    }
}

.xuanzhuan {
    animation: 2s linear 0s normal forwards infinite rotate;
    -webkit-animation: 2s linear 0s normal forwards infinite rotate;
    -moz-animation: 2s linear 0s normal forwards infinite rotate;
    -o-animation: 2s linear 0s normal forwards infinite rotate;
}

.xuanzhuan img {
    display: block;
    width: 100%;
}

.pc {
    display: block;
}

.wap {
    display: none;
}

.clearflex:after {
    content: "";
    display: table;
    clear: both;
}

.top {
    color: #fff;
    height: 40px;
    line-height: 40px;
    background: #026a94;
    font-size: 16px;
}

.w1440 {
    /*width: 1470px;*/
    width: 1200px;
    padding: 0px 15px;
    margin: auto;
    max-width: 100%;
}

.w1440:after {
    content: "";
    display: table;
    clear: both;
}

.top .tel {
    float: left;
}

.top a {
    color: #fff;
}

.top .tel span {
    color: #fff;
}

.top .tel i {
    color: #3FB7E9;
    margin-right: 5px;
}

.top .email {
    float: left;
    margin-left: 2%;
}

.top .email a {}

.top .email i {
    color: #3FB7E9;
    margin-right: 5px;
}

.top .right {
    float: right;
    height: 40px;
}

.top .search {
    float: left;
    position: relative;
    margin-top: 6px;
}

.top .search form {
    zoom: 1;
    overflow: hidden;
    width: 240px;
    height: 28px;
    border: 1px solid #fff;
}

.top .search form .words {
    float: left;
    width: calc(100% - 28px);
    height: 100%;
    background: none;
    border: none;
    color: #fff;
    font-size: 15px;
    padding: 0px 10px;
}

.top .search form .send {

    float: left;

    height: 100%;

    width: 28px;

    cursor: pointer;

    border: none;

    background: url(../image/search.png) no-repeat center center;

    background-size: 20px;
}

.top .search .slide {

    position: absolute;

    padding: 10px 15px;

    position: absolute;

    top: 60px;

    background: #fff;

    border: 1px solid #dfdfdf;

    left: 0;

    -webkit-box-shadow: #ccc 0px 0px 4px;

    -moz-box-shadow: #ccc 0px 0px 4px;

    box-shadow: #ccc 0px 0px 4px;

    border-radius: 4px;

    width: 73%;

    display: none;
}

.top .search .slide a {

    display: block;

    color: #006a93;

    line-height: 2;
}

.top .search .slide:after {
    content: "";
    background: url(../image/sanjiao.png) no-repeat;
    width: 19px;
    height: 11px;
    position: absolute;
    top: -10px;
    left: 25px;
}

.top .link {
    float: left;
    margin-left: 2vw;
    font-size: 0;
}

.top .link a {

    font-size: 17px;

    margin-left: 15px;
}

.head {

    background: #fff;

    height: 92px;
}

.head .logo {
    float: left;
    padding-top: 6px;
}

.head .logo img {}

.head .navs {

    float: right;
}

.head .navs li {

    float: left;

    position: relative;
}

.head .navs li .h2tit {

    font-size: 0;

    margin: 0px;
}

.head .navs li.current .h2tit a,
.head .navs li:hover .h2tit a {
    color: #026a94;
}

.head .navs li .h2tit a {

    display: block;

    line-height: 92px;

    font-size: 16px;

    color: #333;

    padding: 0px 15px;
}

.head .navs li:hover dl {
    top: 86px;


    visibility: visible;
    opacity: 1;
    z-index: 5;
}

.head .navs li dl {

    position: absolute;

    width: 100%;

    border-top: 3px solid #3fb7e9;

    width: 220px;

    background: #fff;

    left: 0;

    top: 86px;

    padding: 10px 0px;

    visibility: hidden;

    opacity: 0;

    z-index: -1;

    top: 97px;
}

.head .navs li dl dd a {

    display: block;

    letter-spacing: 0;

    line-height: 38px;

    text-align: left;

    font-size: 16px;

    color: #3fb7e9;

    font-weight: 0;

    text-transform: capitalize;

    padding-left: 20px;
}

.head .navs li dl dd a:hover {
    background-color: #f0f7fa;
    color: #006a93;
}

.banner {}

.banner .content {
    position: relative;
    overflow: hidden;
}

.banner img {
    width: 100%;
    display: block;
}

.banner .center {
    text-align: center;

    position: absolute;
    top: 50%;
    left: 50%;
    -o-transform: translate(-50%, -50%);
    -webkit-transform: translate(-50%, -50%);
    -moz-transform: translate(-50%, -50%);
    -ms-transform: translate(-50%, -50%);
    transform: translate(-50%, -50%);
    width: 100%;
    color: #fff;
}

.banner .text {
    width: 58%;
    margin: auto;
    font-size: 2vw;
    -webkit-transition: all 1.4s;
    -o-transition: all 1.4s;
    -moz-transition: all 1.4s;
    -ms-transition: all 1.4s;
    transition: all 1.4s;
    transition-delay: 1s;
    -o-transform: translate(10%, 0%);
    -webkit-transform: translate(10%, 0%);
    -moz-transform: translate(10%, 0%);
    -ms-transform: translate(10%, 0%);
    transform: translate(10%, 0%);
    opacity: 0;
    color: #00435e;
    background-color: rgba(255, 255, 255, 0.7);
    font-weight: bold;
    font-family: Arial;
}

.top *,
.head * {
    -webkit-transition: all 0.4s;
    -o-transition: all 0.4s;
    -moz-transition: all 0.4s;
    -ms-transition: all 0.4s;
    transition: all 0.4s;
}

.banner .swiper-slide-active .text {
    opacity: 1;
    -o-transform: translate(0%, 0%);
    -webkit-transform: translate(0%, 0%);
    -moz-transform: translate(0%, 0%);
    -ms-transform: translate(0%, 0%);
    transform: translate(0%, 0%);
}


.w1200 {
    width: 1200px;
    padding: 0px 15px;
    max-width: 100%;
    margin: auto;
}

.w1200:after {
    content: "";
    display: table;
    clear: both;
}

.index {}

.index .section1 {

    padding-top: 80px;

    padding-bottom: 120px;
}

.index .section1 .left {

    float: left;

    width: 30%;
}

.index .section1 .left .en {

    font-size: 30px;

    color: #006a93;
}

.index .section1 .left .line {

    background: #006a93;

    height: 1px;

    margin-top: 15px;

    width: 50px;
}

.index .section1 .left .dec {

    margin-top: 5px;

    line-height: 1.5;

    font-weight: 400;

    color: rgb(14, 14, 14);

    margin-bottom: 11px;

    letter-spacing: 1px;
    font-family: Arial
}

.index .section1 .left .morebase {}

.morebase {

    color: inherit;

    white-space: nowrap;

    overflow: hidden;

    padding: 12px;

    display: block;

    max-width: calc(100% - 50px);

    background: #006a93;

    font-size: 14px;

    color: #fff;

    width: 130px;

    text-align: center;

    text-indent: 0;

}

.index .section1 .right {

    float: right;

    width: 68%;

    padding-left: 4%;
}

.index .section1 .right .item {

    float: left;

    width: 46%;

    margin-right: 8%;

    box-shadow: 0 0 20px rgb(0, 0, 0, 0.1);

    background: #fff;
}

.index .section1 .right .img {

    overflow: hidden;
}

.index .section1 .right .ims {

    height: 208px;
}

.index .section1 .right .content {

    padding: 28px 40px;

    text-align: center;
}

.index .section1 .right .title {

    font-size: 18px;

    line-height: 1.4444;

    font-weight: 600;

    margin-bottom: 10px;

    text-align: center;
}

.index .section1 .right .dec {}

.index .section1 .right .morebase {

    margin: auto;

    margin-top: 31px;
}

.index .section1 .right .item:last-child {

    margin-right: 0;
}

.index .section2 {
    text-align: center;
    color: #fff;
    /*background: url(http://tem.sjzsmks.com/static/images/bg.jpg) no-repeat center center;*/
    background: url(../image/bg.jpg) no-repeat center center;
    -webkit-transform：translateZ（0）;
    padding: 100px 0px;
    /* background-attachment: fixed;*/
}

.index .section5 {
    text-align: center;
    color: #fff;
    /*background: url(http://tem.sjzsmks.com/static/images/bg.jpg) no-repeat center center;*/
    background: url(../image/bg2.jpg) no-repeat center center;
    padding: 40px 0px;
    /* background-attachment: fixed;*/
}


.index .section2 .title {
    font-size: 30px;
    padding-bottom: 20px;
}

.index .section2 .dec {

    font-size: 18px;

    line-height: 1.7;

    letter-spacing: 0;
    margin-bootom: 20px;
}

.index .section3 {
    background-color: rgb(240, 247, 250);
    padding-top: 60px;
}

.index .section3 .hd {
    zoom: 1;
    overflow: hidden;
}

.index .section3 .hd .title {
    float: left;
    font-size: 30px;
    color: #006A93;
    line-height: 42px;
}

.index .section3 .hd .link {
    float: right;
    padding-top: 6px;

}

.index .section3 .hd .link a {
    float: left;
    line-height: 30px;
    margin-left: 4px;
    padding: 0 20px;
    font-size: 13px;
    border-radius: 50px;
    color: rgba(113, 113, 113, .64);
    -webkit-transition: all 0.4s;
    -o-transition: all 0.4s;
    -moz-transition: all 0.4s;
    -ms-transition: all 0.4s;
    transition: all 0.4s;


}

.index .section3 .hd .link a:hover,
.index .section3 .hd .link a.current {
    background: #006a93;
    color: #fff;
}

.index .section3 .bd {
    padding-top: 30px;
}

.index .section3 .bd .listType1 {}

.listType1 {
    zoom: 1;
    overflow: hidden;
}

.listType1 li:nth-child(3n) {
    margin-right: 0px;
}

.listType1 li {
    float: left;
    margin-right: 20px;
    width: calc((100% - 40px)/3);
    margin-bottom: 20px;
    height: 400px;
}

.listType1 li a * {

    -webkit-transition: all 0.4s;
    -o-transition: all 0.4s;
    -moz-transition: all 0.4s;
    -ms-transition: all 0.4s;
    transition: all 0.4s;


}

.listType1 li a {
    display: block;
    position: relative;
    overflow: hidden;
    border-radius: 5px;
}

.listType1 li a * {
    display: block;
}

.listType1 li a .img {

    height: 300px;
}

.listType1 li a .num:after {
    content: "";
    left: 0px;
    position: absolute;
    height: 1px;
    width: calc(100% - 80px);
    background: #fff;
    position: absolute;
    top: 50%;

    -o-transform: translate(0%, -50%);
    -webkit-transform: translate(0%, -50%);
    -moz-transform: translate(0%, -50%);
    -ms-transform: translate(0%, -50%);
    transform: translate(0%, -50%);
}

.listType1 li a .num {

    position: absolute;

    top: 50%;

    left: 0;

    -o-transform: translate(0%, -50%);

    -webkit-transform: translate(0%, -50%);

    -moz-transform: translate(0%, -50%);

    -ms-transform: translate(0%, -50%);

    transform: translate(0%, -50%);

    z-index: 5;

    color: #fff;

    font-size: 60px;

    padding-left: 111px;

    left: -180px;
}

.listType1 li a .dec {

    position: absolute;

    z-index: 4;

    width: 60%;

    left: 0px;

    top: 69%;

    color: #ccc;

    overflow: hidden;

    text-overflow: ellipsis;

    display: -webkit-box;

    -webkit-line-clamp: 2;

    -webkit-box-orient: vertical;

    left: 28%;

    font-size: 12px;

    opacity: 0;
}

.listType1 li a .shadow {

    position: absolute;

    z-index: 1;

    left: 0px;

    bottom: 0;

    width: 100%;

    background: #006a93;

    opacity: .6;

    height: 0;
}

.listType1 li a:hover .dec {
    top: 62%;
    opacity: 1;
}

.listType1 li a:hover .num {
    left: 0px;
}

.listType1 li a:hover .shadow {
    height: 100%;
}

.listType1 li a.tit {

    text-align: center;

    color: #181818;

    font-size: 18px;

    text-align: center;

    transition: all .36s ease;

    padding: 24px 20px;
}

.index .section3 .more {
    display: block;
    margin: auto;
    border: 1px solid rgba(170, 170, 170, .2);
    color: rgba(170, 170, 170, 1);
    width: 200px;
    line-height: 46px;
    border-radius: 4px;
    padding-left: 11px;
    transition: all .4s;
    display: block;
    text-align: center;
    margin: 0 auto 0;
    font-size: 14px;
    background-color: #fff;
    cursor: pointer;
}

.index .section3 .more:hover {
    background-color: #006a93;
    color: #fff;
}

.index .section3 {
    padding-bottom: 60px;
}

.index .section4 {
    padding-top: 90px;
    zoom: 1;
    overflow: hidden;
    padding-bottom: 60px;
    width: 75%;
    margin: 0 auto;

}

.index .section4 .item {
    float: left;
    width: 25%;
    position: relative;
    overflow: hidden;
    height: 0;
    position: relative;
    padding-bottom: 22.3%;
}

.index .section4 .item .img a {
    display: block;
    height: 100%;
}

.index .section4 .item .img {
    /* height: 320px; */
    transition: transform .4s;
    height: 100%;
    left: 0;
    position: absolute;
    top: 0;
    width: 100%;
}

.index .section4 .item:hover .img {
    transform: translateX(25%);
}

.index .section4 .item .content {
    position: relative;
    width: 200px;
    height: 320px;
    background-color: #2a2a2a;
    transform-origin: 0 50%;
    transform: rotateY(-90deg);
    transition: all .4s;
    position: absolute;
    top: 0;
    padding: 25px;
    opacity: 0;
    z-index: 1;
    max-width: 100%;
    height: 100%;
    display: -webkit-box;
    display: -moz-box;
    display: -webkit-flex;
    display: -moz-flex;
    display: -ms-flexbox;
    display: flex;
    flex-direction: column;
    justify-content: center;
}

.index .section4 .item:hover .content {
    transform: rotateY(0deg);
    opacity: 1;
}

.index .section4 .item .tit {
    width: 100%;
    /* margin-top: 60px; */
    font-size: 18px;
    color: #fff;
    overflow: hidden;
    text-overflow: ellipsis;
    white-space: nowrap;
}

.index .section4 .item .dec {
    width: 100%;
    text-overflow: ellipsis;
    display: -webkit-box;
    -webkit-line-clamp: 4;
    -webkit-box-orient: vertical;
    word-break: break-all;
    color: #9b9b9b;
    font-size: 12px;
    line-height: 23px;
    height: 90px;
    overflow: hidden;
    margin-top: 20px;
}

.index .section4 .item .more {
    text-decoration: none;
    display: inline-block;
    background-color: #404040;
    transition: background .4s;
    color: #fff;
    font-size: 14px;
    font-family: "open sans";
    font-weight: 700;
    text-align: center;
    /* position: absolute; */
    padding: 10px 20px;
    z-index: 0;
    transition: background .6s, color 1s;
    margin-top: 15px;
    position: relative;
}

.index .section4 .item .more:after {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    z-index: -1;
    opacity: 0;
    transform: scale3d(.7, 1, 1);
    transition: transform 1s, opacity .4s;
    transition-timing-function: cubic-bezier(.2, 1, .3, 1);
}

.index .section4 .item .more:hover {
    background-color: #e9bd4b;
    transition: all .5s ease;
    background-color: #e9bd4b;
}

.index .section4 .item .more:hover:after {
    opacity: 1;
    transform: translate3d(0, 0, 0) scale3d(1, 1, 1);
    background-color: #e9bd4b;
}

.footer {}

.footer .block1 {
    background-color: #0087bd;
    border-left: 0 solid #000;
    border-right: 0 solid #000;
    border-top: 0 solid #000;
    border-bottom: 0 solid #000;
    border-top-right-radius: 0;
    border-top-left-radius: 0;
    border-bottom-right-radius: 0;
    border-bottom-left-radius: 0;
    margin-top: 0;
    margin-bottom: 0;
    padding-top: 40px;
    padding-bottom: 20px;
    box-shadow: 0;
}

.footer .block1 .left {

    float: left;

    width: 280px;
}

.footer .block1 .left img {}

.footer .block1 .left .dec {

    padding-top: 10px;

    padding-right: 0;

    padding-bottom: 10px;

    font-size: 14px;

    color: #ffffff;

    font-weight: 400;

    line-height: 1.7;
}

.footer .block1 .item:last-child {
    margin-right: 0px;

}

.footer .block1 .right {

    float: right;

    width: calc(100% - 280px);

    padding-left: 40px;
}

.footer .block1 .item {

    float: left;

    width: calc((100% - 80px)/3);

    margin-right: 40px;
    margin-top: 60px;
}

.footer .block1 .tit {

    font-size: 20px;

    color: #fff;

    font-weight: 700;

    letter-spacing: 0;

    line-height: 1.8em;

    text-align: left;
}

.footer .block1 .right .dec p i {
    color: #ffffff;
    font-size: 16px;
}

.footer .block1 .slide {}

.footer .block1 .slide a {

    font-size: 16px;

    color: #ffffff;

    font-weight: 400;

    letter-spacing: 0;

    line-height: 1.7em;

    text-align: left;

    display: block;
}

.footer .block1 .right .dec {

    padding-top: 12px;
}

.footer .block1 .right .dec p a {
    color: #fff;
}

.footer .block1 .right .dec p {

    letter-spacing: 0;

    line-height: 1.9em;

    text-align: left;

    color: #fff;

    font-size: 16px;
}

.footer .block1 .right form {

    padding-top: 12px;

    zoom: 1;

    overflow: hidden;
}

.footer .block1 .right form .words {

    float: left;

    width: calc(100% - 36px);

    height: 36px;

    border: none;

    background: none;

    border: 1px solid #fff;

    padding: 0px 16px;

    color: #fff;
}

.footer .block1 .right form .send {

    float: left;

    width: 36px;

    height: 36px;

    cursor: pointer;

    background: none;

    border: none;

    background: url(../image/search2.png) no-repeat center center #fff;

    background-size: 28px;
}

.footer .block1 .right form .words::-webkit-input-placeholder {
    color: #fff;
}

.footer .block1 .right form .words::-moz-placeholder {
    /* Mozilla Firefox 19+ */
    color: #fff;
}

.footer .block1 .right form .words:-moz-placeholder {
    /* Mozilla Firefox 4 to 18 */
    color: #fff;
}

.footer .block1 .right form .words:-ms-input-placeholder {
    /* Internet Explorer 10-11 */
    color: #fff;
}

.footer .block2 {
    padding-top: 30px;
    padding-bottom: 20px;
    background-color: #0096d1;
    color: #fff;
}

.footer .block2 .left {
    float: left;
}

.footer .block2 .link {
    float: right;
}

.footer .block2 .link a {
    color: #fff;
    font-size: 17px;
    margin-left: 10px;
}

.sideMenu {
    position: fixed;
    right: 0px;
    top: 40%;
    z-index: 55;
}

.sideMenu li {

    position: relative;

    background: #026a94;

    width: 60px;

    height: 60px;

    margin-bottom: 2px;
}

.sideMenu li .h2tit {

    position: relative;

    height: 100%;
}

.sideMenu li .h2tit div img {

    position: absolute;

    top: 50%;

    left: 50%;

    -o-transform: translate(-50%, -50%);

    -webkit-transform: translate(-50%, -50%);

    -moz-transform: translate(-50%, -50%);

    -ms-transform: translate(-50%, -50%);

    transform: translate(-50%, -50%);

    width: 33px;
}

.sideMenu li .h2tit div {
    position: absolute;
    left: 0px;
    top: 0px;
    width: 100%;
    height: 100%;
}

.sideMenu li:hover .h2tit div.default {
    left: -60px;
}

.sideMenu li:hover .h2tit div.current {
    left: 0px;
}

.sideMenu li .h2tit div.current {

    left: 60px;
    background: #fff;
}

.sideMenu li .slide {

    position: absolute;

    right: 60px;

    top: 0px;

    /*width: 147px;*/
    width: 190px;

    text-align: center;

    line-height: 60px;

    background: #026a94;
    display: none;
}

.sideMenu li .slide a {

    color: #fff;
}

.sideMenu li .slide:after {
    content: "";
    width: 0;
    height: 0;
    border-style: solid;
    border-width: 5px 10px 5px 0;
    border-color: transparent #fff transparent transparent;
    position: absolute;
    right: 0px;
    top: 26px;
}

.sideMenu * {
    -webkit-transition: all 0.4s;
    -o-transition: all 0.4s;
    -moz-transition: all 0.4s;
    -ms-transition: all 0.4s;
    transition: all 0.4s;
}

.sideMenu li:hover .slide {
    display: block;
}

.upBtn {
    position: fixed;
    bottom: 56px;
    right: 12px;
    height: 38px;
    width: 38px;
    overflow: hidden;
    line-height: 38px;
    background: url(../image/up.png) no-repeat center center;
    text-align: center;
    text-indent: -99em;
    text-decoration: none;
    z-index: 19;
    cursor: pointer;
}

.banner .swiper-button-next {
    width: 50px;
    height: 50px;
    background: url(../image/right.png) no-repeat center center;
    background-size: 100%;
}

.banner .swiper-button-prev {
    width: 50px;
    height: 50px;
    background: url(../image/left.png) no-repeat center center;
    background-size: 100%;
}


.banner2 .swiper-button-next {
    width: 50px;
    height: 50px;
    background: url(../image/right.png) no-repeat center center;
    background-size: 100%;
}

.banner2 .swiper-button-prev {
    width: 50px;
    height: 50px;
    background: url(../image/left.png) no-repeat center center;
    background-size: 100%;
}



a:focus,
a:hover {
    color: #fff;
}

.top .search .slide.current {
    display: block;
    z-index: 55;
}

.positionName {
    background-color: #f0f7fa;
    border-left: 0 solid #000;
    border-right: 0 solid #000;
    border-top: 0 solid #000;
    border-bottom: 0 solid #000;
    border-top-right-radius: 0;
    border-top-left-radius: 0;
    border-bottom-right-radius: 0;
    border-bottom-left-radius: 0;
    margin-top: 0;
    margin-right: 0;
    margin-bottom: 0;
    margin-left: 0;
    padding-top: 20px;
    padding-right: 0;
    padding-bottom: 20px;
    padding-left: 0;
    text-align: center;
}

.positionName .typename {
    color: #006a93;
    font-size: 20px;
    line-height: 2em;
}

.positionName .position {

    color: #006a93;
}

.positionName .position a {

    color: #3fb7e9 !important;
}

.clear {
    clear: both;
}

.aboutmain {

    padding-top: 90px;

}

.aboutmain .section1 {

    padding-bottom: 90px;
}

.aboutmain .section1 .imgbox {

    float: left;

    width: 41%;
}

.aboutmain .section1 .imgbox img {

    width: 100%;
}

.aboutmain .section1 .con {

    float: left;

    width: 59%;

    margin-bottom: 5%;

    padding-left: 2%;
}

.aboutmain .section1 .con .tit {

    font-size: 30px;

    color: #006a93;

    font-weight: 700;

    letter-spacing: 0;

    line-height: 1.3em;

    text-align: left;
}

.aboutmain .section1 .dec {

    font-size: 17px;

    color: #91c4de;

    font-weight: 400;

    line-height: 1.5em;
}

.aboutmain .section2 {

    background: url(../image/bg2.jpg) no-repeat center center;

    background-attachment: fixed;
}

.aboutmain .section2 .item {

    text-align: center;

    float: left;

    width: 25%;

    padding: 60px 0 60px 0;

    text-align: center;
}

.aboutmain .section2 .icon {

    position: relative;
}

.aboutmain .section2 .icon img {}

.aboutmain .section2 .val {

    font-size: 56px;

    color: #ffffff;
}

.aboutmain .section2 .tit {

    position: relative;

    width: 100%;

    color: rgba(255, 255, 255, 0.98);

    font-size: 18px;

    overflow: hidden;

    text-overflow: ellipsis;

    white-space: nowrap;
}

.aboutmain .section2 .icon:after {
    content: "";
    display: block;
    margin: auto;
    width: 27px;
    height: 1px;
    background: #fff;
    margin-top: 20px;
}

.aboutmain .section3 {
    text-align: center;
    padding: 120px 0px;
}

.aboutmain .section3 .dec {

    font-size: 30px;

    color: #3fb7e9;

    line-height: 1.6em;

    padding: 40px 0px;
}

.aboutmain .section3 img {

    width: 44px;
}

.aboutmain .section3 b {

    font-weight: normal;

    color: #026A94;

    font-size: 24px;

    font-style: italic;

    display: block;

    /* padding-bottom: 120px; */
}

.listType2 {

    padding: 90px 0px;
}

.listType2 li {
    float: left;
    width: calc((100% - 20px)/3);
    margin-right: 10px;
    margin-bottom: 10px;
    height: 0;
    position: relative;
    padding-bottom: 21%;
    overflow: hidden;
}

.listType2 li img {

    width: 100%;
    -webkit-transition: all 0.4s;
    -o-transition: all 0.4s;
    -moz-transition: all 0.4s;
    -ms-transition: all 0.4s;
    transition: all 0.4s;
    height: 100%;
    left: 0;
    position: absolute;
    top: 0;
    width: 100%;
    cursor: pointer;
}

.listType2 li:nth-child(3n) {
    margin-right: 0px;
}

.listType2 li img:hover {
    -webkit-transform: scale(1.05, 1.05);
    -o-transform: scale(1.05, 1.05);
    -moz-transform: scale(1.05, 1.05);
    -ms-transform: scale(1.05, 1.05);
    transform: scale(1.05, 1.05);
}


.listType4 {

    padding: 90px 0px;
}

.listType4 li {
    float: left;
    width: calc((100% - 40px)/5);
    margin-right: 10px;
    margin-bottom: 10px;
    height: 0;
    position: relative;
    padding-bottom: 27%;
    overflow: hidden;
}

.listType4 li img {

    width: 100%;
    -webkit-transition: all 0.4s;
    -o-transition: all 0.4s;
    -moz-transition: all 0.4s;
    -ms-transition: all 0.4s;
    transition: all 0.4s;
    height: 100%;
    left: 0;
    position: absolute;
    top: 0;
    width: 100%;
    cursor: pointer;
}

.listType4 li:nth-child(5n) {
    margin-right: 0px;
}

.listType4 li img:hover {
    -webkit-transform: scale(1.05, 1.05);
    -o-transform: scale(1.05, 1.05);
    -moz-transform: scale(1.05, 1.05);
    -ms-transform: scale(1.05, 1.05);
    transform: scale(1.05, 1.05);
}

.proMain {

    padding-top: 60px;

    padding-bottom: 200px;
}

.proMain .left {

    width: 280px;

    float: left;
}

.proMain .left .typename {

    display: block;

    background-color: #006a93;

    border-left: 0 solid #000;

    border-right: 0 solid #000;

    border-top: 0 solid #000;

    border-bottom: 0 solid #000;

    border-top-right-radius: 0;

    border-top-left-radius: 0;

    border-bottom-right-radius: 0;

    border-bottom-left-radius: 0;

    margin-top: 0;

    margin-right: 0;

    margin-bottom: 0;

    margin-left: 0;

    padding-top: 0;

    padding-right: 0;

    padding-bottom: 0;

    padding-left: 15px;

    line-height: 63px;

    padding-left: 30px;

    font-size: 26px;

    color: #fff;
}



.proMain .left ul {

    border: 1px solid #ccc;

    border-bottom: none;
}

.proMain .left ul li {

    border-bottom: 1px solid #ccc;
}

.proMain .left ul li .h2tit {}

.proMain .left ul li .h2tit a:after {}

.proMain .left ul li .h2tit a {

    display: block;

    font-size: 16px;

    line-height: 50px;

    color: #333;

    padding-left: 20px;

    position: relative;

    -webkit-transition: all 0.4s;

    -o-transition: all 0.4s;

    -moz-transition: all 0.4s;

    -ms-transition: all 0.4s;

    transition: all 0.4s;
}

.proMain .left ul li:hover .h2tit a {
    background: #ececec
}

.proMain .left ul li.current .h2tit a:after {}

.proMain .left ul li.current .h2tit a,
.proMain .left ul li:hover .h2tit a {

    color: #006a93 !important;
}

.proMain .left ul li dl {
    padding-left: 27px;
    border-top: 1px solid #ccc;
    display: none;
}

.proMain .left ul li.current dl {}

.proMain .left ul li dl dd a {

    padding-left: 10px;

    padding-right: 22px;

    display: block;

    font-size: 16px;

    color: #333;

    font-weight: 400;

    line-height: 30px;

    position: relative;
}

.proMain .left ul li dl dd a:after {
    content: "";
    position: absolute;
    left: 0px;
    width: 2px;
    height: 2px;
    background: #333;
    border-radius: 3px;
    top: 14px;
}


.proMain .left ul li .h2tit a i {
    position: absolute;
    width: 23px;
    height: 100%;
    background: url(../image/down.png) no-repeat center center;
    right: 20px;
    top: 0px;
    background-size: 100%;
    cursor: pointer;
    -webkit-transition: all 0.4s;
    -o-transition: all 0.4s;
    -moz-transition: all 0.4s;
    -ms-transition: all 0.4s;
    transition: all 0.4s;
}

.proMain .left ul li.current .h2tit a i {
    transform: rotate(180deg);
}

.proMain .left ul li dl dd a:hover {
    color: #006a93 !important;
}


.proMain {}

.proMain .right {

    float: left;

    width: calc(100% - 280px);

    padding-left: 4%;
}

.proMain .right .listType3 {}

.proMain .right .listType3 li:nth-child(3n) {
    margin-right: 0px;
}

.proMain .right .listType3 li {

    float: left;

    margin-right: 10px;

    width: calc((100% - 20px)/3);

    border: 1px solid #ccc;

    padding: 5px;

    margin-bottom: 10px;
}

.proMain .right .listType3 li .imgbox {

    overflow: hidden;

    height: 0;

    position: relative;

    padding-bottom: 100%;
}

.proMain .right .listType3 li .imgbox img {

    width: 100%;

    height: 100%;

    left: 0;

    position: absolute;

    top: 0;

    width: 100%;
}

.proMain .right .listType3 li .title {

    text-align: center;

    font-size: 17px;

    padding-bottom: 18px;
    width: 100%;
    height: 100px;
    overflow: hidden;
}

.proMain .right .listType3 li .title a:hover {
    color: #3fb7e9;
    text-decoration: underline;
}

.proMain .right .listType3 li .title a {

    color: #333;
}

.proMain .right .listType3 li .in {

    text-align: center;

    line-height: 40px;

    background-color: rgb(0, 106, 147);

    color: rgb(255, 255, 255);

    border-color: rgb(0, 106, 147);

    display: block;

    line-height: 40px;

    border-radius: 4px;
}

.pagesize {

    padding-top: 20px;

    clear: both;
}

.pagesize a {

    float: left;

    width: 60px;

    line-height: 28px;

    border: 1px solid #c9caca;

    text-align: center;

    color: #898989;

    font-size: 14px;

    margin-right: 5px;
}

.pagesize a.current,
.pagesize a:hover {

    color: #fff;

    border: 1px solid #006a93;

    background: #006a93;
}

.proMain .right .listType3 li .in i {
    margin-right: 5px;
}

.proMain2 {

    padding-top: 40px;
}

.proMain2 .block1 {

    zoom: 1;

    overflow: hidden;

    padding-bottom: 20px;

    border-bottom: 1px solid #ccc;
}

.proMain2 .block1 .left {
    float: left;
    width: 400px;
}

.proMain2 .block1 .left .topImg {

    position: relative;

    overflow: hidden;

    border: 1px solid #ccc;

    cursor: pointer;
}

.proMain2 .block1 .left .vi:after {
    content: "";
    width: 0;
    height: 0;
    border-style: solid;
    border-width: 0 5px 5px 5px;
    border-color: transparent transparent #b91a1a transparent;
    position: absolute;
    left: 50%;
    margin-left: -5px;
    opacity: 0;
    top: -7px;
}

.proMain2 .block1 .left .topImg img {

    width: 100%;
}

.proMain2 .block1 .left .bd {

    padding-top: 20px;

    zoom: 1;

    overflow: hidden;
}

.proMain2 .block1 .left .bd img {

    width: 100%;
}

.proMain2 .block1 .left .vi.current:after {

    opacity: 1;
}

.proMain2 .block1 .left .vi.current {
    border-color: #b91a1a
}

.proMain2 .block1 .left .vi {

    width: 60px;

    border: 2px solid #ccc;

    position: relative;

    cursor: pointer;

    float: left;

    margin-right: 10px;
}

.proMain2 .block1 .left .share {

    padding-top: 15px;

    font-size: 17px;

    color: #929292;
}

.proMain2 .block1 .right {

    width: calc(100% - 400px);

    float: right;

    padding-left: 2%;
}

.proMain2 .block1 .right .name {

    font-size: 20px;

    line-height: 27px;

    letter-spacing: 0;

    text-align: left;

    color: #006a93;

    font-weight: bold;

    padding-top: 10px;
}

.proMain2 .block1 .right .dec {

    margin-bottom: 5px;

    line-height: 1.4em;

    word-break: break-word;

    font-size: 18px;

    color: #868585;

    padding-top: 6px;

    padding-bottom: 35px;
}

.proMain2 .block1 .right .link {}

.proMain2 .block1 .right .link a {

    background-color: #fff;

    border: 1px solid #ec7331;

    color: #ec7331;

    height: 40px;

    line-height: 38px;

    letter-spacing: normal;

    border-radius: 45px;

    text-align: center;

    padding: 0;

    display: block;

    background: 0;

    max-width: 280px;

    width: 100%;

    min-width: 130px;

    margin-top: 10px;

    display: block;

    border: 1px solid #12b5ea;

    color: #12b5ea;
}

.proMain2 .block1 .right .link a:hover {
    color: #fff;
    background: #12b5ea
}

.proMain2 .block2 {
    border: 1px solid #ccc;
    zoom: 1;
    overflow: hidden;
}

.proMain2 .block2 .title {

    background-color: #eee;

    line-height: 48px;

    font-size: 20px;

    color: #fff;

    border-bottom: 1px solid #ccc;
}

.proMain2 .block2 .title span {

    display: inline-block;

    padding: 0px 20px;

    background: #2e6da4;
}

.proMain2 .block2 .dec {

    font-size: 18px;

    color: #545454;

    font-weight: 0;

    letter-spacing: 0;

    line-height: 1.7em;
}

.proMain2 .block2 .tablelist {}

.proMain2 .block2 .tablelist table {

    width: 100%;

    font-size: 18px;

    color: #545454;

    font-weight: 0;

    letter-spacing: 0;

    line-height: 1.7em;
}

.proMain2 .block2 .tablelist td {

    padding: 5px 10px;

    border: 1px solid #DDD;
}

.proMain2 .block2 .title2 {

    font-size: 18px;

    color: #545454;

    font-weight: 0;

    letter-spacing: 0;

    line-height: 1.7em;

    font-weight: bold;

    padding-top: 40px;
}

.proMain2 .block2 .padding {
    padding: 10px;
    padding-bottom: 50px;
}

.proMain2 .block3 {}

.proMain2 .block3 .prevnext {
    zoom: 1;
    overflow: hidden;
    padding-top: 25px;
    padding-bottom: 20px;
    border-bottom: 1px solid #ccc;
}

.proMain2 .block3 .prevnext p {
    float: left;
    max-width: 40%;
    background-color: #efefef;
    line-height: 22px;
    padding: 10px;
    text-align: center;
    border-radius: 10px;
    overflow: hidden;
    border: 1px solid #ddd;
    text-overflow: ellipsis;
    white-space: nowrap;
    font-size: 17px;
}

.proMain2 .block3 .prevnext p:nth-child(2) {

    float: right;
}

.proMain2 .block3 .prevnext p a {

    font-size: 16px;

    color: #545454;
}

.proMain2 .block3 .btn {

    font-size: 16px;

    color: #545454;

    font-weight: 0;

    letter-spacing: 0;

    line-height: 1.7em;

    text-align: left;

    display: inline-block;

    border: 1px solid #ccc;

    border-radius: 30px;

    padding: 0px 14px;

    margin-top: 20px;

    margin-bottom: 60px;
}

.proMain2 .block4 {

    background: #f0f7fa;

    padding-top: 60px;

    padding-bottom: 30px;
}

.proMain2 .block4 .titles {

    font-size: 30px;

    color: #006a93;

    font-weight: 400;

    letter-spacing: 0;

    line-height: 1.8em;

    text-align: left;
}

.proMain2 .block4 .list li:last-child {
    margin-right: 0px;
}

.proMain2 .block4 .list {}

.proMain2 .block4 .list li {

    margin-right: 20px;

    width: calc((100% - 80px)/5);

    float: left;
}

.proMain2 .block4 .imgbox {}

.proMain2 .block4 .imgbox img {

    width: 100%;
}

.proMain2 .block4 .title {

    display: block;

    color: #333;

    text-align: center;

    padding: 20px 0px;
}

.proMain2 .block5 {

    padding-top: 80px;
}

.proMain2 .block5 .titles {

    font-size: 30px;

    color: #006a93;

    font-weight: 400;

    letter-spacing: 0;

    line-height: 1.8em;

    text-align: left;
}

.proMain2 .block5 .fortable {}

.proMain2 .block5 .items {}

.proMain2 .block5 .item {

    border: 1px solid #ddd;

    border-radius: 2px;

    margin-bottom: 10px;

    padding: 7px 12px 12px 4px;
}

.proMain2 .block5 .title {

    padding-top: 5px;

    padding-left: 6px;

    overflow: hidden;

    font-size: 18px;

    color: #545454;

    line-height: 1.7em;
}

.proMain2 .block5 .words {

    width: 100%;

    padding: 4px 0;

    text-indent: 6px;

    box-sizing: content-box;

    margin-left: -1px;

    border: none;
}

.proMain2 .block5 textarea {

    width: 100%;

    padding: 4px 0;

    text-indent: 6px;

    box-sizing: content-box;

    margin-left: -1px;

    border: none;

    height: 70px;
}

.proMain2 .block5 .send {
    font-family: inherit;
    margin: 0;
    border: 1px solid transparent;
    background-image: none;
    height: 32px;
    padding: 0 30px;
    display: inline-block;
    font-size: 14px;
    text-shadow: none;
    text-align: center;
    white-space: nowrap;
    vertical-align: middle;
    -ms-touch-action: manipulation;
    touch-action: manipulation;
    cursor: pointer;
    -webkit-user-select: none;
    -moz-user-select: none;
    -ms-user-select: none;
    user-select: none;
    background-image: none;
    border: 1px solid transparent;
    border-radius: 4px;
    -moz-transition: all .3s ease-out;
    -webkit-transition: all .3s ease-out;
    -o-transition: all .3s ease-out;
    -ms-transition: all .3s ease-out;
    transition: all .3s ease-out;
    box-shadow: none;
    border: 1px solid #006a93;
    border-radius: 4px;
    background: #006a93;
    color: #fff;
    font-size: 14px;
    width: 130px;
    height: 45px;
    margin-bottom: 50px;
}

.contact {

    padding-top: 90px;

    padding-bottom: 70px;
}

.contact .model:nth-child(2) {
    float: right;
}

.contact .model {

    float: left;

    width: 48%;
}

.contact .model .title {

    font-size: 30px;

    color: #006a93;

    letter-spacing: 0;

    line-height: 1.3em;
}

.contact .model .dec {

    font-size: 16px;

    color: #91c4de;

    margin: 10px 0px;
}

.contact .model .item:nth-child(2n) {
    float: right;
}

.contact .model .items {

    zoom: 1;

    overflow: hidden;
}

.contact .model .item {

    float: left;

    width: calc((100% - 20px)/2);

    margin-bottom: 20px;
}

.contact .model .words {

    background-color: rgb(240, 247, 250);

    color: rgb(0, 0, 0);

    width: 100%;

    display: block;

    padding: 0px 10px;

    height: 40px;

    border: none;

    border: 1px solid #ccc;

    box-shadow: 1px 1px 2px rgba(0, 0, 0, 0.1) inset;
}

.contact .model textarea {

    background-color: rgb(240, 247, 250);

    color: rgb(0, 0, 0);

    width: 100%;

    display: block;

    padding: 0px 10px;

    height: 40px;

    border: none;

    border: 1px solid #ccc;

    box-shadow: 1px 1px 2px rgba(0, 0, 0, 0.1) inset;

    height: 90px;

    padding-top: 8px;
}

.contact .model .send {

    font-family: inherit;

    margin: 0;

    border: 1px solid transparent;

    background-image: none;

    height: 32px;

    display: inline-block;

    font-size: 14px;

    text-shadow: none;

    text-align: center;

    white-space: nowrap;

    vertical-align: middle;

    -ms-touch-action: manipulation;

    touch-action: manipulation;

    cursor: pointer;

    -webkit-user-select: none;

    -moz-user-select: none;

    -ms-user-select: none;

    user-select: none;

    background-image: none;

    border: 1px solid transparent;

    border-radius: 4px;

    -moz-transition: all .3s ease-out;

    -webkit-transition: all .3s ease-out;

    -o-transition: all .3s ease-out;

    -ms-transition: all .3s ease-out;

    transition: all .3s ease-out;

    box-shadow: none;

    border: 1px solid #3fb7e9;

    border-radius: 4px;

    background: #3fb7e9;

    color: #fff;

    font-size: 14px;

    width: 102px;

    height: 38px;
}

.contact .model .item:last-child {
    width: 100%;
}

.contact .model .list {}

.contact .model .list li {

    background-color: #f0f7fa;

    border-left: 0 solid #000;

    border-right: 0 solid #000;

    border-top: 0 solid #000;

    border-bottom: 0 solid #000;

    border-top-right-radius: 10px;

    border-top-left-radius: 10px;

    border-bottom-right-radius: 10px;

    border-bottom-left-radius: 10px;

    margin-top: 5px;

    margin-right: 0;

    margin-bottom: 5px;

    margin-left: 0;

    padding-top: 10px;

    padding-right: 0;

    padding-bottom: 10px;

    padding-left: 10px;

    box-shadow: 0 0 5px 2px rgba(0, 106, 147, 0.61);

    float: left;

    width: calc((100% - 30px)/2);

    height: 190px;
}

.contact .model .list li .titles {

    padding-top: 10px;

    padding-right: 0;

    padding-bottom: 10px;

    font-size: 20px;

    color: #006a93;

    font-weight: 700;

    letter-spacing: 0;

    line-height: 1.3em;

    text-align: left;
}

.contact .model .list li dl {

    color: #006A93;

    font-size: 16px;

    line-height: 1.8;
}

.contact .model .list li dd {
    line-height: 1.8;
    position: relative;
    padding-left: 31px;
    min-height: 30px;
    line-height: 30px;
}

.contact .model .list li dd a {}

.contact .model .list li:nth-child(2) {
    float: right;
}

.contact .model .list li dd:after {
    content: "";
    position: absolute;
    left: 10px;
    top: 10px;
    width: 5px;
    height: 5px;
    border-radius: 40px;
    background: #006A93;
    opacity: .5
}

.caseMain {

    padding-top: 80px;

    padding-bottom: 40px;
}

.caseMain li:nth-child(2n) {
    float: right;
}

.caseMain li {

    float: left;

    width: calc((100% - 30px)/2);

    margin-bottom: 60px;
}

.caseMain li .imgbox {

    height: 0;

    position: relative;

    padding-bottom: 83%;

    overflow: hidden;
}

.caseMain li .imgbox img {

    width: 100%;

    height: 100%;

    left: 0;

    position: absolute;

    top: 0;

    width: 100%;
}

.caseMain li .content {

    float: right;

    width: 90%;

    padding: 30px;

    box-sizing: border-box;

    background: white;

    margin-top: -30px;

    box-shadow: 0 7px 22px rgba(19, 19, 19, .08);

    margin-top: -30px;

    z-index: 5;

    position: relative;

    height: 180px;
}

.caseMain li .tit {

    font-size: 18px;

    color: #006a93;

    font-weight: 700;

    margin-bottom: 9px;
}

.caseMain li .dec {

    font-size: 14px;

    overflow: hidden;

    text-overflow: ellipsis;

    display: -webkit-box;

    -webkit-line-clamp: 3;

    -webkit-box-orient: vertical;

    color: #727272;
}

.caseMain li .more {

    float: right;

    width: 36px;

    height: 36px;

    text-align: center;

    line-height: 34px;

    border: 1px solid #000;

    color: #000;

    font-size: 19px;

    background: #fff;
}

.caseMain li .more i {}

.caseMain li .imgbox:hover img {

    -webkit-transform: scale(1.05, 1.05);
    -o-transform: scale(1.05, 1.05);
    -moz-transform: scale(1.05, 1.05);
    -ms-transform: scale(1.05, 1.05);
    transform: scale(1.05, 1.05);
}

.caseMain * {
    -webkit-transition: all 0.4s;
    -o-transition: all 0.4s;
    -moz-transition: all 0.4s;
    -ms-transition: all 0.4s;
    transition: all 0.4s;
}

.caseMain li .more:hover {
    color: #fff;
    background: #006a93;
    border-color: #006a93
}

.caseMain li .more:hover i {
    color: #fff
}

.proMain2 .block4 .title:hover {
    color: #12b5ea
}

/* optional icon style */
.zoomIcon {
    width: 33px;
    height: 33px;
    position: absolute;
    top: 0;
    right: 0;
    background: url(/static/css/icon.png);
}

/* these styles are for the demo, and are not required for the plugin */
.zoom {
    display: inline-block;
    position: relative;
}

.zoom img {
    display: block;
}

.zoom img::selection {
    background-color: transparent;
}

#ex2 img:hover {
    cursor: url(/static/css/grab.cur), default;
}

#ex2 img:active {
    cursor: url(/static/css/grabbed.cur), default;
}

@-webkit-keyframes zoomIn {
    from {
        opacity: 0;
        -webkit-transform: scale3d(.3, .3, .3);
        transform: scale3d(.3, .3, .3);
    }

    50% {
        opacity: 1;
    }
}

@keyframes zoomIn {
    from {
        opacity: 0;
        -webkit-transform: scale3d(.3, .3, .3);
        transform: scale3d(.3, .3, .3);
    }

    50% {
        opacity: 1;
    }
}

.zoomIn {
    -webkit-animation-name: zoomIn;
    animation-name: zoomIn;
}
.container-fluid {
    padding-right: 15px;
    padding-left: 15px;
    margin-right: auto;
    margin-left: auto;
}
.container-fluid:before,
.container-fluid:after{
        display: table;
        content: " ";
    }
.container-fluid:after{
        clear: both;
    }

.col-md-12 {
    position: relative;
    min-height: 1px;
    padding-right: 15px;
    padding-left: 15px;
}
@media (min-width: 992px) {

    .col-md-12 {
            float: left;
        }
    .col-md-12 {
        width: 100%;
    }
    }

.animated {
    -webkit-animation-duration: 1s;
    animation-duration: 1s;
    -webkit-animation-fill-mode: both;
    animation-fill-mode: both;
}

.animated.infinite {
    -webkit-animation-iteration-count: infinite;
    animation-iteration-count: infinite;
}

.animated.hinge {
    -webkit-animation-duration: 2s;
    animation-duration: 2s;
}

.animated.flipOutX,
.animated.flipOutY,
.animated.bounceIn,
.animated.bounceOut {
    -webkit-animation-duration: .75s;
    animation-duration: .75s;
}
.text_title {
    width: 100%;
    text-align: center;
    font-size: 3em;
    font-weight: bold;
    padding: 1.2em 0 0.8em 0;
    color: #000;
}

.text_content {
    font-size: 1.5em;
    color: #000;
    text-indent: 1.5em;
}

.text_desc {
    font-size: 1.6em;
    color: #000;
    font-weight: bold;
    padding: 1.5em 0;
}