﻿body,html {
    -webkit-tap-highlight-color: transparent;
}
html {
    -ms-text-size-adjust: 100%;
    -webkit-text-size-adjust: 100%;
}
body {
    line-height: 1.6;
    font-family: 'Microsoft YaHei',Tahoma,Arial,"Helvetica Neue","Hiragino Sans GB",Simsun,sans-self;
    font-size: 12px;
    color: #555853;
}
* {
    margin: 0;
    padding: 0;
}
a img {
    border: 0;
}
img {
    vertical-align: middle;
    width: 100%;
}
a {
    tap-highlight-color: rgba(0, 0, 0, 0.38);
    -webkit-tap-highlight-color: rgba(0, 0, 0, 0.38);
}
a,a:active,a:visited {
    color: inherit;
    text-decoration: none
}

*:not(input) {
    -webkit-user-select: none;
    user-select: none
}
article,section {
    display: block
}
.view .hide{
    display:none !important;
}

/************** animatrion ****************/

.view .menu > div{
    -webkit-transition: all 0.3s;
    transition: all 0.3s;
}
.view .menu > div.on{
   -webkit-animation-name: o;
    animation-name: o;
    
    animation-duration: .3s;
    -webkit-animation-duration: .3s;
    
    animation-fill-mode: both;
    -webkit-animation-fill-mode: both;
    
    -webkit-animation-timing-function: ease-in;
    animation-timing-function: ease-in;
}
@-webkit-keyframes o {
    0%{
        height: 0;
    }
    100% {
        height: 100%;
    }
}

@keyframes o {
    0%{
        height: 0;
    }
    100% {
        height: 100%;
    }
}

.view .menu > div.def{
   -webkit-animation-name: s;
    animation-name: s;
    
    animation-duration: .3s;
    -webkit-animation-duration: .3s;

    animation-daly:.5;
    -webkit-animation-daly:.5;
    
    animation-fill-mode: both;
    -webkit-animation-fill-mode: both;
    
    -webkit-animation-timing-function: cubic-bezier(.4,.6,.2,1);
    animation-timing-function: cubic-bezier(.4,.6,.2,1);
}

@-webkit-keyframes s {
    0%{
        height: 100%;
    }
    100% {
        height: 0;
    }
}

@keyframes s {
    0%{
        height: 100%;
    }
    100% {
        height: 0;
    }
}
/********************************/

input[type="tel"],
input[type="text"] {
    -webkit-appearance: none;
    border-radius: 0
}
:focus {
    outline: 0
}
.pagefixed {
    overflow: hidden;
    position: absolute;
    left: 0;
    top: 0;
    right: 0;
    bottom: 0;
    height: 100%;
    width: 100%;
}
.view .fix_full {
    position: fixed;
    top: 0;
    bottom: 0;
    left: 0;
    right: 0;
}
.view {
    margin: 0 auto;
    max-width: 640px;
    min-width: 320px;
}
.view .centre {
    text-align: center;
}
.view.i {
    margin: 44px auto 0 auto;
}
.view .block {
    display: block !important;
}
.view header {
    height: 44px;
    line-height: 44px;
    position: fixed;
    left: 0;
    right: 0;
    top: 0;
    z-index: 9999;
    background: rgba(48, 54, 66, 0.96);
    min-width: 320px;
}
.view header.no_s a.bbtn {
    display: none;
}
.view .tColor {
    color: #2B2B2B;
}
.view .tBgColor {
    background: #53C019;
}
.view .wbox {
    display: -webkit-box;
    display: box;
}
.view .wbox > * {
    -webkit-box-flex: 1;
    box-flex: 1;
}
.view header a {
    tap-highlight-color: rgba(0, 0, 0, 0);
    -webkit-tap-highlight-color: rgba(0, 0, 0, 0);
    position: absolute !important;
    display: block;
    top: 0;
}
.view.omneu header a.ali {
    -webkit-transform: rotate(90deg);
    transform: rotate(90deg);
    -webkit-transition: -webkit-transform 0.25s 0.2s cubic-bezier(0.4, 0.01, 0.165, 0.99);
    transition: transform 0.25s 0.2s cubic-bezier(0.4, 0.01, 0.165, 0.99);
}
.view header a.ali {
    -webkit-transform: rotate(0);
    transform: rotate(0);
    -webkit-transition: -webkit-transform 0.25s 0.2s cubic-bezier(0.4, 0.01, 0.165, 0.99);
    transition: transform 0.25s 0.2s cubic-bezier(0.4, 0.01, 0.165, 0.99);
}
.view header a:first-child {
    left: 0;
    height: 44px;
    width: 44px;
    top: 0;
}
.view header a.hlogo {
    left: 44px;
    right: 44px;
    height: 44px;
    color: #ffffff;
    text-align: center;
    font-size: 18px;
    font-weight: 800;
}
.view header a:last-child {
    right: 10px;
    color: #ffffff;
    top: 8px;
    -webkit-transition: -webkit-transform 0.25s 0.55s ease-out;
    transition: transform 0.25s 0.55s ease-out;
}

.view header a:first-child span {
    position: relative;
    display: block;
    top: 15px;
    width: 18px;
    height: 1px;
    background: #fff;
    margin: 5px auto;
    -webkit-transition: all 0.5s;
    transition: all 0.5s;
}
.view header a.on span {
    /* background: rgba(78, 78, 78, 0.83); */
}
.view header a.on:first-child span:nth-child(1) {
    -webkit-transform: rotate(44deg) translate(4px, 1px);
    transform: rotate(44deg) translate(4px, 1px);
    -webkit-transition-delay: 0.25s,0.2s;
    transition-delay: 0.25s,0.2s;
}
.view header a.on:first-child span:nth-child(2) {
    -webkit-transform: rotate(-45deg) translate(3px, 0px);
    transform: rotate(-45deg) translate(3px, 0px);
    -webkit-transition-delay: 0.25s,0.2s;
    transition-delay: 0.25s,0.2s;
}
.view footer {
    height: 44px;
    line-height: 44px;
    background: #303642;
    position: relative;
    bottom: 0;
    right: 0;
    left: 0;
}
.view footer.fix {
    position: fixed;
    bottom: 0;
}
.view footer.no_w .dl {
    display: none;
}
.view footer > div {
    display: inline-block;
    color: #ffffff;
    margin: 0 10px;
}

.view.omneu header a.bbtn {
    -webkit-transform: translateX(200%);
    transform: translateX(200%);
    -webkit-transition: -webkit-transform 0.55s 0.25s ease-out;
    transition: transform 0.55s 0.25s ease-out;
}

.view a.bbtn {
    height: 25px;
    line-height: 25px;
    border: 1px solid #B1B8C2;
    padding: 0 10px;
    border-radius: 50px;
    position: relative;
}

.view a.bbtn.w {
    width: 60px;
    text-indent: 18px;
    color: #DCDCDC;
}
.view a.bbtn.w:after {
    content: '';
    background: url(download.png) no-repeat;
    width: 20px;
    height: 20px;
    background-size: cover;
    display: block;
    position: absolute;
    left: 8px;
    top: 2px;
}
.view footer .tel {
    position: absolute;
    right: 0;
}

.view footer .tel a:after {
    content: '';
    background: url(phone.gif) no-repeat;
    width: 20px;
    height: 20px;
    background-size: cover;
    display: block;
    position: absolute;
    left: -22px;
    top: 12px;
}
.view footer a {
    display: block;
}

.view .eForm {
    margin: 15px 20px;
}
.view .eForm .p ,
.view .eForm .li {
    display: -webkit-box;
    display: box;
    box-sizing: border-box;
    -webkit-box-sizing: border-box;
    -webkit-box-flex: 1;
    box-flex: 1;
}
.view .eForm .li .p:first-child {
    margin-right: 5px;
}
.view .eForm .li .p:last-child {
    margin-left: 5px;
}
.view .eForm .box,
.view .eForm .p {
    height: 44px;
    border: 1px solid #C6C6C6;
    margin: 3px 0;
    overflow: hidden;
    border-radius: 2px;
    position: relative;
}
.view .eForm .p.chek {
    border: 0;
    margin: 5px 0 0 0;
    font-size: 14px;
    height: 20px;
    line-height: 20px;
}
.view .eForm .p.chek label {
    display: block;
    margin: 0 3px;
    height: 20px;
}
.view .eForm .chek .uagr {
    color: #1fb1fc;
    cursor: pointer;
    display: inline-block;
}
.view .eForm .p.chek input {
    width: 20px;
    height: 20px;
}
.view .eForm .box {
    border: none;
}
.view .eForm .box .vcode {
    width: 130px;
    text-align: center;
    height: 44px;
}
.view .eForm select {
    display: block;
    border: 0;
    background: transparent;
    -webkit-appearance: none;
    appearance: none;
    border-radius: 0;
    border-top-style: none;
    border-left-style: none;
    border-right-style: none;
    border: 0;
    position: relative;
    margin-right: 23px;
    text-indent: 5px;
    font-size: 14px;
}

.view .eForm select:after {
    content: '';
}
.view .eForm .p.item-btn {
    border: 0;
}
.view .eForm .p.item-btn a {
    -moz-box-flex: 1;
    -webkit-box-flex: 1;
    box-flex: 1;
}
.view .eForm .code {
    display: block;
    line-height: 44px;
    height: 44px;
    font-size: 14px;
    border-radius: 3px;
    background: #B2C7B8;
    color: #ffffff;
    width: 130px;
    text-align: center;
}
.view .eForm .code.on {
    color: #8C8C8C;
    background: #C1C1C1;
    tap-highlight-color: rgba(0, 0, 0, 0);
    -webkit-tap-highlight-color: rgba(0, 0, 0, 0);
}

.view .eForm input[type="tel"],
.view .eForm input[type="text"] {
    padding: 11px 0;
    border: 0;
    margin: 0 4px;
    height: 20px;
    line-height: 20px;
    font-size: 14px;
    background: transparent;
    display: block;
}

.view .eForm div input,
.view .eForm div select {
    -webkit-box-flex: 1;
    box-flex: 1;
}

.view .select:after {
    content: '';
    width: 0;
    height: 0;
    right: 8px;
    top: 20px;
    position: absolute;
    border-left: 4px solid transparent;
    border-right: 4px solid transparent;
    border-top: 6px solid #888888;
}

.view .btn {
    display: block;
    height: 44px;
    line-height: 44px;
    font-size: 16px;
    background: #53C019;
    text-align: center;
    color: #ffffff;
    border-radius: 3px;
}
.view .item-btn .btn {
    transition: background ease .5s
}
.view .item-btn .btn.disabled {
    background: #397B16;
    tap-highlight-color: rgba(0, 0, 0, 0);
    -webkit-tap-highlight-color: rgba(0, 0, 0, 0);
}
.view .eForm .col {
    margin: 10px 0
}
.view .eForm .col.on .error {
    display: block;
    color: #F64319;
}
.view .eForm .col.on .p {
    border-left-color: #F64319;
}
.view .eForm .error {
    font-size: 14px;
    display: none;
}
.view.s .head {
    margin: 10px 0;
}
.view.s .suc {
    display: none;
    position: absolute;
    left: 15px;
    right: 15px;
    top: 44px;
    bottom: 44px;
}

.view.s .suc .icon {
    padding: 20px 0 0 0;
}
.view.s .suc .btn {
    margin: 36px 0;
    padding: 3px 0;
    font-size: 20px;
}
.view.s .suc .icon img {
    width: 90px;
    margin: 20px auto;
    display: block;
}
.view.s .suc .tip {
    font-size: 14px;
    color: #A6A6A6;
    /*position: absolute;*/
    padding-bottom:45px;
    bottom: 10px;
}
.view.s .suc .text > div {
    margin: 6px 0;
}
.view.s .suc .text {
    text-align: center;
}
.view.s .suc .h1 {
    font-size: 22px;
}
.view.s .suc .h2 {
    font-size: 16px;
}
.view.s .suc .h3 {
    font-size: 14px;
}
@media (max-height: 480px) and (-webkit-min-device-pixel-ratio:2) {
    /* 兼容iphone4/4s */
    .view.s .suc .icon {
        padding:0;
    }
    .view.s .suc .icon img {
        width: 66px;
        margin: 15px auto;
        display: block;
    }
    .view.s .suc .btn {
        margin: 8px 0;
        padding: 0;
        font-size: 18px;
    }
    .view.s .suc .text > div {
        margin: 0;
    }
    .view.s .suc .tip {
        bottom: 3px;
    }
}

.view .logo {
    background: url(logo.png) no-repeat;
    background-size: cover;
    width: 150px;
    height: 70px;
    margin: 0 auto;
}
/************ icon *************/
.view .eForm .clear_val {
    border-radius: 50%;
    display: block;
    width: 20px;
    height: 20px;
    background: #CCCCCC;
    position: relative;
    margin: 10px 5px;
    display: none;
}
.clear_val:before,.clear_val:after {
    content: '';
    height: 2px;
    width: 12px;
    display: block;
    background: #ffffff;
    position: absolute;
    top: 9px;
    left: 4px;
    transform: rotate(-45deg);
    -webkit-transform: rotate(-45deg);
}
.clear_val:after {
    transform: rotate(45deg);
    -webkit-transform: rotate(45deg);
}
/******************* msg ******************/
.view .msg {
    position: absolute;
    top: 50px;
    display: none;
    max-width: 200px;
    line-height: 20px;
    z-index: 999;
    font-size: 12px;
}
.view .msg .top:after {
    top: -6px;
    bottom: auto;
    left: auto;
    right: 65px;
    border-width: 0 6px 6px;
}
.view .msg p {
    position: relative;
    padding: 7px 12px;
    color: #FFF;
    background: rgba(31, 27, 27, 0.9);
    -webkit-border-radius: 10px;
    border-radius: 10px;
    width: auto;
    border-radius: 4px;
    text-align: center;
}
.view .msg p:after {
    content: "";
    position: absolute;
    bottom: -13px;
    border-width: 8px 8px 0;
    border-style: solid;
    border-color: rgba(31, 27, 27, 0.9) transparent;
    display: block;
    width: 0;
}
.view .menu {
    position: fixed;
    top: 0;
    left: 0;
    right: 0;
    background: rgba(0, 0, 0, 0.47);
    bottom: 0;
    z-index: 1000;
    display: none;
}
.view .menu > div {
    background: rgba(48, 54, 66, 0.96);
    padding-top: 50px;
    overflow: hidden;
    height: 0;
}

.view .menu > div.on a {
    opacity: 1;
    pointer-events: auto;
    -webkit-transform: none;
    transform: none;
}
.view .menu a {
    opacity: 0;
    pointer-events: none;
    -webkit-transform: scale(1.1) translateY(-24px);
    transform: scale(1.1) translateY(-24px);
    -webkit-transition: opacity 0.35s ease-out, -webkit-transform 0.35s ease-out;
    transition: opacity 0.35s ease-out, transform 0.35s ease-out;
    display: block;
    color: #DEDEDE;
    height: 47px;
    line-height: 60px;
    font-size: 14px;
    border-bottom: 1px solid rgba(88, 99, 132, 0.5);
    width: 70%;
    font-family: sans-serif;
    margin: 0 auto;
    text-indent: 15px;
}
.view .menu a:last-child {
    border: none;
}
.view .menu > div.on a:nth-child(1) {
    -webkit-transition-delay: 250ms,250ms;
    transition-delay: 250ms,250ms
}
.view .menu > div.on a:nth-child(2) {
    -webkit-transition-delay: 300ms,300ms;
    transition-delay: 300ms,300ms
}
.view .menu > div.on a:nth-child(3) {
    -webkit-transition-delay: 350ms,350ms;
    transition-delay: 350ms,350ms
}
.view .menu > div.on a:nth-child(4) {
    -webkit-transition-delay: 400ms,400ms;
    transition-delay: 400ms,400ms
}
.view .menu > div.on a:nth-child(5) {
    -webkit-transition-delay: 450ms,450ms;
    transition-delay: 450ms,450ms
}
.view .menu > div.on a:nth-child(6) {
    -webkit-transition-delay: 500ms,500ms;
    transition-delay: 500ms,500ms
}
.view .menu > div.on a:nth-child(7) {
    -webkit-transition-delay: 550ms,550ms;
    transition-delay: 550ms,550ms
}

.view .menu a:active {
    font-size: 16px;
}
.view .menu a :last-child {
    border: none;
}
.view a.btn.on {
    background: #c9c9c9;
}
/******** eIndex ********/

.view .eIndex .list a:nth-child(odd) {
    background: #ffffff;
}
.view .eIndex .list a {
    margin: 0;
    display: block;
    background: #F1F1F1;
}
.view .fill {    
    padding-bottom: 30px;
}
.view .txp .h1 {
    color: #242424;
    font-size: 18px;
}
.view .txp .h3 {
    font-size: 14px;
    color: #555853;
    line-height: 26px;
}
.view .txp .txt {
    text-align: center;
    padding: 40px 0 20px 0;
    margin: 0 10px;
}
.view .txp .txt div {
    margin: 5px 0;
}
.view .video .bot a {
    margin: 15px 15px 15px 0;
    height: 36px;
    line-height: 36px;
}
.view .video .bot a:last-child{
    margin-right:0
}
.view .video {
    margin:0 15px;
}
.view .video .tit {
    margin: 20px 0;
}
.view .video .tit {
    font-size: 20px;
    text-align: center;
}
.view .video .cover {
    position: relative;
    z-index: 5;
}
.view .video .cover > div {
    z-index: 222;
    position: relative;
    display: block;
}
.view iframe {
    border: 0;
    width: 100%;
    z-index: 1;
}
.view .video .tit label {
    font-size: 28px;
}
.view .video .tit span {
    -webkit-transform: rotate(-10deg);
    transform: rotate(-10deg);
    display: inline-block;
}
.view .video .th2 {
    color: #929292;
    font-size: 20px;
    text-align: center;
}
.view .video .more {
    margin: 15px 0;
    text-align: right;
}
.view .video .more a {
    display: inline-block;
    width: 80px;
    height: 30px;
    line-height: 30px;
    font-size: 14px;
}


.xxbtn {
    display: block;
    height: 44px;
    line-height: 44px;
    font-size: 16px;
    background: #E40013;
    text-align: center;
    color: #ffffff;
    border-radius: 3px;width:100%;border:none;
}