/**
 * fullPage 2.6.6
 * https://github.com/alvarotrigo/fullPage.js
 * MIT licensed
 *
 * Copyright (C) 2013 alvarotrigo.com - A project by Alvaro Trigo
 */
html.fp-enabled,
.fp-enabled body {
    margin: 0;
    padding: 0;
    overflow:hidden;

    /*Avoid flicker on slides transitions for mobile phones #336 */
    -webkit-tap-highlight-color: rgba(0,0,0,0);
}
#superContainer {
    height: 100%;
    position: relative;

    /* Touch detection for Windows 8 */
    -ms-touch-action: none;

    /* IE 11 on Windows Phone 8.1*/
    touch-action: none;
}
.fp-section {
    position: relative;
    -webkit-box-sizing: border-box; /* Safari<=5 Android<=3 */
    -moz-box-sizing: border-box; /* <=28 */
    box-sizing: border-box;
}
.fp-slide {
    float: left;
}
.fp-slide, .fp-slidesContainer {
    height: 100%;
    display: block;
}
.fp-slides {
    z-index:1;
    height: 100%;
    overflow: hidden;
    position: relative;
    -webkit-transition: all 0.3s ease-out; /* Safari<=6 Android<=4.3 */
    transition: all 0.3s ease-out;
}
.fp-section.fp-table, .fp-slide.fp-table {
    display: table;
    table-layout:fixed;
    width: 100%;
}
.fp-tableCell {
    display: table-cell;
    vertical-align: middle;
    width: 100%;
    height: 100%;
}
.fp-slidesContainer {
    float: left;
    position: relative;
}
.fp-controlArrow {
    position: absolute;
    z-index: 4;
    top: 50%;
    cursor: pointer;
    width: 0;
    height: 0;
    border-style: solid;
    margin-top: -38px;
    -webkit-transform: translate3d(0,0,0);
    -ms-transform: translate3d(0,0,0);
    transform: translate3d(0,0,0);
}
.fp-controlArrow.fp-prev {
    left: 15px;
    width: 0;
    border-width: 38.5px 34px 38.5px 0;
    border-color: transparent #fff transparent transparent;
}
.fp-controlArrow.fp-next {
    right: 15px;
    border-width: 38.5px 0 38.5px 34px;
    border-color: transparent transparent transparent #fff;
}
.fp-scrollable {
    overflow: scroll;
}
.fp-notransition {
    -webkit-transition: none !important;
    transition: none !important;
}
#fp-nav {
    position: fixed;
    z-index: 100;
    margin-top: -32px;
    top: 50%;
    opacity: 1;
    -webkit-transform: translate3d(0,0,0);
}
#fp-nav.right {
    right: 17px;
}
#fp-nav.left {
    left: 17px;
}
.fp-slidesNav{
    position: absolute;
    z-index: 4;
    left: 50%;
    opacity: 1;
}
.fp-slidesNav.bottom {
    bottom: 17px;
}
.fp-slidesNav.top {
    top: 17px;
}
#fp-nav ul,
.fp-slidesNav ul {
    margin: 0;
    padding: 0;
}
#fp-nav ul li,
.fp-slidesNav ul li {
    display: block;
    width: 14px;
    height: 13px;
    margin: 7px;
    position:relative;
}
.fp-slidesNav ul li {
    display: inline-block;
}
#fp-nav ul li a,
.fp-slidesNav ul li a {
    display: block;
    position: relative;
    z-index: 1;
    width: 100%;
    height: 100%;
    cursor: pointer;
    text-decoration: none;
}
#fp-nav ul li a.active span,
.fp-slidesNav ul li a.active span,
#fp-nav ul li:hover a.active span,
.fp-slidesNav ul li:hover a.active span{
    height: 12px;
    width: 12px;
    margin: -6px 0 0 -6px;
    border-radius: 100%;
}
#fp-nav ul li a span,
.fp-slidesNav ul li a span {
    border-radius: 50%;
    position: absolute;
    z-index: 1;
    height: 4px;
    width: 4px;
    border: 0;
    background: #333;
    left: 50%;
    top: 50%;
    margin: -2px 0 0 -2px;
    -webkit-transition: all 0.1s ease-in-out;
    -moz-transition: all 0.1s ease-in-out;
    -o-transition: all 0.1s ease-in-out;
    transition: all 0.1s ease-in-out;
}
#fp-nav ul li:hover a span,
.fp-slidesNav ul li:hover a span{
    width: 10px;
    height: 10px;
    margin: -5px 0px 0px -5px;
}
#fp-nav ul li .fp-tooltip {
    position: absolute;
    top: -2px;
    color: #fff;
    font-size: 14px;
    font-family: arial, helvetica, sans-serif;
    white-space: nowrap;
    max-width: 220px;
    overflow: hidden;
    display: block;
    opacity: 0;
    width: 0;
}
#fp-nav ul li:hover .fp-tooltip,
#fp-nav.fp-show-active a.active + .fp-tooltip {
    -webkit-transition: opacity 0.2s ease-in;
    transition: opacity 0.2s ease-in;
    width: auto;
    opacity: 1;
}
#fp-nav ul li .fp-tooltip.right {
    right: 20px;
}
#fp-nav ul li .fp-tooltip.left {
    left: 20px;
}
.fp-auto-height.fp-section,
.fp-auto-height .fp-slide,
.fp-auto-height .fp-tableCell{
    height: auto !important;
}

#fp-nav ul li:first-child, #fp-nav ul li:last-child{display: none}
/*  my common style
=======================================================
*/
/*! normalize.css v3.0.2 | MIT License | git.io/normalize */
html {
    font-family: sans-serif;
    -ms-text-size-adjust: 100%;
    -webkit-text-size-adjust: 100%
}

body {
    margin: 0
}

article,aside,details,figcaption,figure,footer,header,hgroup,main,menu,nav,section,summary {
    display: block
}

audio,canvas,progress,video {
    display: inline-block;
    vertical-align: baseline
}

audio:not([controls]) {
    display: none;
    height: 0
}

[hidden],template {
    display: none
}

a {
    background-color: transparent
}

a:active,a:hover {
    outline: 0
}

abbr[title] {
    border-bottom: 1px dotted
}

b,strong {
    font-weight: 700
}

dfn {
    font-style: italic
}

h1 {
    font-size: 2em;
    margin: .67em 0
}

mark {
    background: #ff0;
    color: #000
}

small {
    font-size: 80%
}

sub,sup {
    font-size: 75%;
    line-height: 0;
    position: relative;
    vertical-align: baseline
}

sup {
    top: -.5em
}

sub {
    bottom: -.25em
}

img {
    border: 0
}

svg:not(:root) {
    overflow: hidden
}

figure {
    margin: 1em 40px
}

hr {
    -moz-box-sizing: content-box;
    box-sizing: content-box;
    height: 0
}

pre {
    overflow: auto
}

code,kbd,pre,samp {
    font-family: monospace,monospace;
    font-size: 1em
}

button,input,optgroup,select,textarea {
    color: inherit;
    font: inherit;
    margin: 0
}

button {
    overflow: visible
}

button,select {
    text-transform: none
}

button,html input[type=button],input[type=reset],input[type=submit] {
    -webkit-appearance: button;
    cursor: pointer
}

button[disabled],html input[disabled] {
    cursor: default
}

button::-moz-focus-inner,input::-moz-focus-inner {
    border: 0;
    padding: 0
}

input {
    line-height: normal
}

input[type=checkbox],input[type=radio] {
    box-sizing: border-box;
    padding: 0
}

input[type=number]::-webkit-inner-spin-button,input[type=number]::-webkit-outer-spin-button {
    height: auto
}

input[type=search] {
    -webkit-appearance: textfield;
    -moz-box-sizing: content-box;
    -webkit-box-sizing: content-box;
    box-sizing: content-box
}

input[type=search]::-webkit-search-cancel-button,input[type=search]::-webkit-search-decoration {
    -webkit-appearance: none
}

fieldset {
    border: 1px solid silver;
    margin: 0 2px;
    padding: .35em .625em .75em
}

legend {
    border: 0;
    padding: 0
}

textarea {
    overflow: auto
}

optgroup {
    font-weight: 700
}

table {
    border-collapse: collapse;
    border-spacing: 0
}

td,th {
    padding: 0
}

a,body,li,ul {
    margin: 0;
    padding: 0;
    font-family: "Microsoft Yahei",Arial,Helvetica,sans-serif,"����"
}

#fullpage .head {
    min-width: 1050px;
    width: 100%;
    height: 80px !important;
    position: relative;
    z-index: 99;
    background: #fff;
    /*margin-top: -16px;*/
}
.head ul{padding-left: 0}
.head li{padding: 0; margin: 0}
.head_wrap {
    height: 80px
}

/*.logo {
    margin-top: 23px;
    width: 86px;
    height: 35px;
    background-image: url(http://www.res.flyme.cn/resources/flymeos/v2/images/flyme.png);
    display: block;
    float: left
}*/

.head_nav {
    line-height: 80px;
    text-align: right;
    font-family: "Microsoft Yahei",Arial,Helvetica,sans-serif,simsun;
}

.head_nav li {
    padding-left: 55px;
    font-size: 18px;
    display: inline
}

.head_nav li a {
    color: #2b2b2b
}

.head_nav li a.checked {
    color: #32a5e7
}

.head_nav li a:hover {
    color: #32a5e7
}
.wrap {
    margin: 0 auto;
    padding: 0 25px;
    width: 1000px
}
a {
    text-decoration: none;
    outline: 0;
}
ul {
    font-size: 0;
    list-style: none
}

.foot {
    min-width: 1050px;
    width: 100%;
    height: 99px;
    border-top: 1px solid #e5e5e5;
}

.foot_wrap {
    padding-top: 19px;
    height: 80px
}

.foot_nav {
    height: 32px;
    line-height: 32px;
    font-size: 14px
}

.foot_bar {
    width: 430px;
    height: 32px;
    float: left
}

.foot_bar li {
    padding-right: 25px;
    font-size: 14px;
    display: inline
}

.foot_bar li a {
    color: #999
}

.foot_cn {
    background-image: url(http://www.res.flyme.cn/resources/flymeos/v2/images/flyme.png);
    background-repeat: no-repeat;
    background-position: -86px -6px
}

.foot_srv {
    width: 189px;
    color: #999;
    float: left
}

.foot_btn {
    margin: 6px 0;
    width: 64px;
    height: 20px;
    line-height: 19px;
    color: #fff;
    background-color: #00a7ea;
    border-radius: 2px;
    text-align: center;
    float: left
}

.foot_link {
    height: 32px;
    font-size: 0;
    float: right
}

.foot_link i {
    margin-left: 10px;
    width: 32px;
    height: 32px;
    background-image: url(http://www.res.flyme.cn/resources/flymeos/v2/images/flyme.png);
    display: inline-block
}

.i_weibo {
    background-position: 0 -35px
}

.i_weibo:hover {
    background-position: 0 -67px
}

.i_tenwb {
    background-position: -32px -35px
}

.i_tenwb:hover {
    background-position: -32px -67px
}

.i_weixin {
    background-position: -64px -35px
}

.i_weixin:hover {
    background-position: -64px -67px
}

.i_qzone {
    background-position: -96px -35px
}

.i_qzone:hover {
    background-position: -96px -67px
}

.foot_copy {
    height: 42px;
    line-height: 42px;
    font-size: 12px;
    color: #ccc;
    clear: both
}

.foot_copy a {
    color: #ccc
}

.foot_lang {
    width: 140px;
    height: 204px;
    line-height: 40px;
    border: 1px solid #d9d9d9;
    border-radius: 2px;
    box-shadow: 0 0 10px #d9d9d9;
    background-color: #fff;
    position: absolute;
    display: none
}

.foot_lang li {
    padding: 0 5px;
    font-size: 14px;
    border-bottom: 1px solid #d9d9d9
}

.foot_lang li:hover {
    background-color: #f2f2f2
}

.foot_lang li a {
    color: #111
}

.foot_lang li a.checked {
    color: #32a5e7
}

.foot_lang i {
    margin: 9px;
    width: 21px;
    height: 21px;
    vertical-align: top;
    background-image: url(http://www.res.flyme.cn/resources/flymeos/v2/images/flyme.png);
    display: inline-block
}

.i_cn {
    background-position: -84px -99px
}

.i_hk {
    background-position: 0 -99px
}

.i_tw {
    background-position: -105px -99px
}

.i_en {
    background-position: -21px -99px
}

.i_in {
    background-position: -126px -99px
}

.flyme_wx {
    display: none;
    position: absolute
}

html,body{min-width: 1600px;-webkit-font-smoothing:antialiased}
/*@font-face {
    font-family: 'SYHT';
    src: url('http://www.res.flyme.cn/resources/flymeos/v2/flyme5/font/HYHT-Light.eot');
    src:url("http://www.res.flyme.cn/resources/flymeos/v2/flyme5/font/HYHT-Light.eot?#iefix") format("embedded-opentype"),
    url("http://www.res.flyme.cn/resources/flymeos/v2/flyme5/font/HYHT-Light.woff") format('woff'),
    url("http://www.res.flyme.cn/resources/flymeos/v2/flyme5/font/HYHT-Light.ttf") format('truetype'),
    url("http://www.res.flyme.cn/resources/flymeos/v2/flyme5/font/HYHT-Light.svg") format('svg');
    font-weight: normal;
    font-style: normal;
}*/
.sec_inner .txt,.slide .txt{font-family: SYHT, 'Microsoft Yahei', simsun, "sans serif", tahoma, verdana, helvetica;}
.sec_inner .txt h2,.slide .txt h2{font-size: 48px; font-weight: 400; line-height: 55px; margin-bottom: 29px}
.slide .txt h2{margin: 29px auto}
.sec_inner .txt p, .slide .txt p{font-family: 'Microsoft Yahei', simsun, "sans serif", tahoma, verdana, helvetica; font-size: 16px; line-height: 20px;}

#nav_l2{width: 100%; height: 54px; line-height: 54px; font-size: 14px; background: rgba(255,255,255,.8); position: fixed; top: 80px; left: 0; z-index:9999}
#nav_l2 a{font-size: 14px; color: #000; outline: none}
#nav_l2 ul{width: 1000px; margin: 0 auto; padding: 0 25px; height: 54px; line-height: 54px;}
#nav_l2 ul li{display: block; float: right; padding: 0 29px; line-height: 54px; height: 54px;}
@media \0screen\,screen\9 {
    #nav_l2{background: url("../../images/hk2/white0.8.png") 0 0 repeat-x;}
}
