﻿/* -------------------------------- 

Primary style

-------------------------------- */
html, body, div, span, applet, object, iframe,
h1, h2, h3, h4, h5, h6, p, blockquote, pre,
a, abbr, acronym, address, big, cite, code,
del, dfn, em, img, ins, kbd, q, s, samp,
small, strike, strong, sub, sup, tt, var,
b, u, i, center,
dl, dt, dd, ol, ul, li,
fieldset, form, label, legend,
table, caption, tbody, tfoot, thead, tr, th, td,
article, aside, canvas, details, embed, 
figure, figcaption, footer, header, hgroup, 
menu, nav, output, ruby, section, summary,
time, mark, audio, video {
  margin: 0;
  padding: 0;
  border: 0;
  font-size: 100%;
  font: inherit;
  vertical-align: baseline;
}
body{
	z-index: 1;
}
.clear{
  clear: both;
}


/* HTML5 display-role reset for older browsers */
article, aside, details, figcaption, figure, 
footer, header, hgroup, menu, nav, section, main {
  display: block;
}
body {
  line-height: 1;
   overflow: auto;
    -webkit-overflow-scrolling: touch;
}
ol, ul {
  list-style: none;
}
blockquote, q {
  quotes: none;
}
blockquote:before, blockquote:after,
q:before, q:after {
  content: '';
  content: none;
}
table {
  border-collapse: collapse;
  border-spacing: 0;
}



html * {
  -webkit-font-smoothing: antialiased;
  -moz-osx-font-smoothing: grayscale;
}

*, *:after, *:before {
  -webkit-box-sizing: border-box;
  -moz-box-sizing: border-box;
  box-sizing: border-box;
}

html, body {
  /* you need to set this to assign to the main element a min height of 100% */
  height: 100%;
}

body {
  font-size: 100%;
  font-family: "Titillium Web", sans-serif;
  color: #4e6361;
  background-color: #f5f4e9;
}

a {
  color: #6cac70;
  text-decoration: none;
}
/* @font-face {
 font-family: 'pfzt';
 src: url('../font/PINGFANGMEDIUM.eot');
 src: url('../font/PINGFANGMEDIUM.woff'),
        url('../font/PINGFANGMEDIUM.TTF'),
        url('../font/PINGFANGMEDIUM.svg');
}  */

/* -------------------------------- 

Modules - reusable parts of our design

-------------------------------- */
.cd-img-replace {
  /* replace text with a background-image */
  display: inline-block;
  overflow: hidden;
  text-indent: 100%;
  white-space: nowrap;
}

.overflow-hidden {
  overflow: hidden;
}

/* -------------------------------- 

Main components 

-------------------------------- */
.cd-main-content {
 
  min-height: 100%;
  position: relative;
  background-color: #f5f4e9;
  z-index: 2;
  padding-bottom: 2px;
  padding-top:63px;
  -webkit-transform: translateZ(0);
  -webkit-backface-visibility: hidden;
  -webkit-transition-property: -webkit-transform;
  -moz-transition-property: -moz-transform;
  transition-property: transform;
  -webkit-transition-duration: 0.4s;
  -moz-transition-duration: 0.4s;
  transition-duration: 0.4s;
}
.cd-main-content.lateral-menu-is-open {

  -webkit-transform: translateX(-260px);
  -moz-transform: translateX(-260px);
  -ms-transform: translateX(-260px);
  -o-transform: translateX(-260px);
  transform: translateX(-260px);
}
@media only screen and (min-width: 768px) {
  .cd-main-content {
    padding-top: 69px;
  }
}

header {
  position: absolute;
  top: 0;
  left: 0;
  height: auto;
  width: 100%;
  background: #236387;
  z-index: 3;

  -webkit-transform: translateZ(0);
  -webkit-backface-visibility: hidden;
  -webkit-transition-property: -webkit-transform;
  -moz-transition-property: -moz-transform;
  transition-property: transform;
  -webkit-transition-duration: 0.4s;
  -moz-transition-duration: 0.4s;
  transition-duration: 0.4s;
}
header.lateral-menu-is-open {

  -webkit-transform: translateX(-260px);
  -moz-transform: translateX(-260px);
  -ms-transform: translateX(-260px);
  -o-transform: translateX(-260px);
  transform: translateX(-260px);
}
header.is-fixed {
  position: fixed;
}
@media only screen and (min-width: 768px) {
  header {
    height: 70px;
  }
}

#cd-logo {
  display: block;
  float: left;
  margin: 12px 0 10px 20px;
}
#cd-logo img {
  display: block;
  width: 65%;
}
@media only screen and (min-width: 768px) {
  #cd-logo {
    margin: 4px 0 0 30px;
  }
}

#cd-top-nav {
  position: absolute;
  top: 0;
  right: 120px;
  height: 100%;
  display: none;
}
#cd-top-nav ul {
  height: 100%;
  padding-top: 18px;
}
#cd-top-nav li {
  display: inline-block;
  margin-right: 1em;
}
#cd-top-nav a {
  display: inline-block;
  padding: .5em;
  color: #FFF;
  text-transform: uppercase;
  font-weight: 600;
}
#cd-top-nav a.current {
  background-color: #242e30;
}
.no-touch #cd-top-nav a:hover {
  color: rgba(255, 255, 255, 0.7);
}
@media only screen and (min-width: 768px) {
  #cd-top-nav {
    display: block;
  }
}

#cd-menu-trigger {
  position: absolute;
  right: 0;
  top: 0;
  height: 100%;
  width: 77px;
  background-color: #64807d;
}
#cd-menu-trigger .cd-menu-text {
  height: 100%;
  text-transform: uppercase;
  color: #FFF;
  font-weight: 600;
  display: inline-block;
  padding-top: 24px;
  padding-left: 4px;
}
#cd-menu-trigger .cd-menu-icon {
  /* this span is the central line in the menu menu */
  display: inline-block;
  position: absolute;
  left: 71%;
  top: 50%;
  bottom: auto;
  right: auto;
  -webkit-transform: translateX(-50%) translateY(-50%);
  -moz-transform: translateX(-50%) translateY(-50%);
  -ms-transform: translateX(-50%) translateY(-50%);
  -o-transform: translateX(-50%) translateY(-50%);
  transform: translateX(-50%) translateY(-50%);
  width: 25px;
  height: 3px;
  background-color: #FFF;
  /* these are the upper and lower lines in the menu menu */
}
#cd-menu-trigger .cd-menu-icon::before, #cd-menu-trigger .cd-menu-icon:after {
  content: '';
  width: 100%;
  height: 100%;
  position: absolute;
  background-color: inherit;
  left: 0;
  /* Force Hardware Acceleration in WebKit */
  -webkit-transform: translateZ(0);
  -webkit-backface-visibility: hidden;
}
#cd-menu-trigger .cd-menu-icon::before {
  bottom: 7px;
}
#cd-menu-trigger .cd-menu-icon::after {
  top: 7px;
}
#cd-menu-trigger.is-clicked .cd-menu-icon {
  background-color: rgba(255, 255, 255, 0);
}
#cd-menu-trigger.is-clicked .cd-menu-icon::before, #cd-menu-trigger.is-clicked .cd-menu-icon::after {
  background-color: white;
}
#cd-menu-trigger.is-clicked .cd-menu-icon::before {
  bottom: 0;
  -webkit-transform: rotate(45deg);
  -moz-transform: rotate(45deg);
  -ms-transform: rotate(45deg);
  -o-transform: rotate(45deg);
  transform: rotate(45deg);
}
#cd-menu-trigger.is-clicked .cd-menu-icon::after {
  top: 0;
  -webkit-transform: rotate(-45deg);
  -moz-transform: rotate(-45deg);
  -ms-transform: rotate(-45deg);
  -o-transform: rotate(-45deg);
  transform: rotate(-45deg);
}
@media only screen and (min-width: 768px) {
  #cd-menu-trigger {
    width: 110px;
    padding-left: 1.25em;
  }
  #cd-menu-trigger .cd-menu-text {
    display: inline-block;
    line-height: 70px;
  }
  #cd-menu-trigger .cd-menu-icon {
    left: auto;
    right: 1.25em;
    -webkit-transform: translateX(0);
    -moz-transform: translateX(0);
    -ms-transform: translateX(0);
    -o-transform: translateX(0);
    transform: translateX(0);
  }
}

#cd-lateral-nav {
  position: fixed;
  height: 100%;
  right: 0;
  top: 0;
  /* the secondary navigation is covered by the main element */
  z-index: 0;
  width: 260px;
  background-color: #242e30;
  overflow-y: auto;
  /* Force Hardware Acceleration in WebKit */
  -webkit-transform: translateZ(0);
  -webkit-backface-visibility: hidden;
  -webkit-transition-property: -webkit-transform;
  -moz-transition-property: -moz-transform;
  transition-property: transform;
  -webkit-transition-duration: 0.4s;
  -moz-transition-duration: 0.4s;
  transition-duration: 0.4s;
  /* this creates the subtle slide in animation of the navigation */
  -webkit-transform: translateX(80px);
  -moz-transform: translateX(80px);
  -ms-transform: translateX(80px);
  -o-transform: translateX(80px);
  transform: translateX(80px);
}
#cd-lateral-nav .cd-navigation {
  margin: 10px 0 13px;
}
.cd-navigation-a{
  margin: 15px 0 14px;
}
.cd-navigation-a li:nth-of-type(2){
  font-weight: bold;
}
#cd-lateral-nav .sub-menu {
  padding: 0 10px 20px 15px;
  display: none;
}
#cd-lateral-nav a {
  display: block;
  line-height: 2.3em;
  padding: 0 16px 0 32px;
  color: #efefef;

}
#cd-lateral-nav li:nth-of-type(1) a{
  font-weight: bold;
}
#cd-lateral-nav a.current {
  background-color: #3a4a4d;
  color: #FFF;
}
.no-touch #cd-lateral-nav a:hover {
  color: #FFF;
}
@media only screen and (min-width: 768px) {
  #cd-lateral-nav .cd-navigation {
    margin: 20px 0;
  }
}
#cd-lateral-nav.lateral-menu-is-open {
  -webkit-transform: translateX(0);
  -moz-transform: translateX(0);
  -ms-transform: translateX(0);
  -o-transform: translateX(0);
  transform: translateX(0);
  /* smooth the scrolling on touch devices - webkit browsers */
  -webkit-overflow-scrolling: touch;
}

/* style menu items which have a submenu  */
#cd-lateral-nav .item-has-children > a {
  position: relative;
  text-transform: uppercase;
  font-weight: 600;
  /* this is the right arrow to show that the item has a submenu  */
}
#cd-lateral-nav .item-has-children > a::after {
  content: '';
  display: block;
  height: 11px;
  width: 8px;
  position: absolute;
  top: 50%;
  bottom: auto;
  -webkit-transform: translateY(-50%);
  -moz-transform: translateY(-50%);
  -ms-transform: translateY(-50%);
  -o-transform: translateY(-50%);
  transform: translateY(-50%);
  right: 1em;
  background: url("http://www.kell-ese.com/m/img/cd-arrow.svg") no-repeat center center;
  background-size: 8px 11px;
  -webkit-transition-property: -webkit-transform;
  -moz-transition-property: -moz-transform;
  transition-property: transform;
  -webkit-transition-duration: 0.2s;
  -moz-transition-duration: 0.2s;
  transition-duration: 0.2s;
}
#cd-lateral-nav .item-has-children > a.submenu-open::after {
  -webkit-transform: translateY(-50%) rotate(90deg);
  -moz-transform: translateY(-50%) rotate(90deg);
  -ms-transform: translateY(-50%) rotate(90deg);
  -o-transform: translateY(-50%) rotate(90deg);
  transform: translateY(-50%) rotate(90deg);
}

#cd-lateral-nav .socials {
  padding: 0 32px;
}
#cd-lateral-nav .socials:after {
  content: "";
  display: table;
  clear: both;
}
#cd-lateral-nav .socials a {
  height: 32px;
  width: 32px;
  float: left;
  padding: 0;
  background-image: url("http://www.kell-ese.com/m/img/cd-socials.svg");
  background-repeat: no-repeat;
  background-size: 128px 64px;
  background-color: #FFF;
  margin-right: .5em;
  border-radius: 0.25em;
}
#cd-lateral-nav .socials a.cd-twitter {
  background-position: 0 0;
}
#cd-lateral-nav .socials a.cd-github {
  background-position: -32px 0;
}
#cd-lateral-nav .socials a.cd-facebook {
  background-position: -64px 0;
}
#cd-lateral-nav .socials a.cd-google {
  background-position: -96px 0;
}
.no-touch #cd-lateral-nav .socials a:hover {
  background-color: #4e6361;
}
.no-touch #cd-lateral-nav .socials a:hover.cd-twitter {
  background-position: 0 -32px;
}
.no-touch #cd-lateral-nav .socials a:hover.cd-github {
  background-position: -32px -32px;
}
.no-touch #cd-lateral-nav .socials a:hover.cd-facebook {
  background-position: -64px -32px;
}
.no-touch #cd-lateral-nav .socials a:hover.cd-google {
  background-position: -96px -32px;
}



/* 底部代码 */

@media screen and (min-width:320px) and (max-width:767px){


.footer-screen-1{
  height: auto;
  margin: 0px auto;
  overflow: hidden;
  background: #545454;
  border-bottom: solid 1px #ece7e7; 
  margin-bottom: 0px;
}



.footer-screen-1-wrap{
  width: 100%;
  height: auto;
  padding: 0px 0px;
  overflow: hidden;
  padding-bottom: 60px;
}

.footer-screen-1-wrap ul li{
  float: left;
  height: auto;
}
.footer-screen-1-wrap ul li:nth-of-type(1){
  width:85%;
  height: auto;
  margin-left: 2%;
}
.footer-screen-1-wrap ul li:nth-of-type(1)>h3{
	color: #fff;
	padding-top: 15px;
	padding-bottom: 13px;
	font-size: 1rem;
	line-height: 1rem;
	
}
.footer-screen-1-wrap ul li:nth-of-type(1) img{
  width: 100%;
}
.footer-screen-1-wrap ul li:nth-of-type(2){
  width: 80%;
  height: auto;
  
  margin-left: 2%;
}


.footer-screen-1-wrap ul li:nth-of-type(2) h4{
  color: #fff;
  font-size: 0.8em;
  line-height: 1.5em;
    font-family: "pfzt";

}

}
@media screen and (min-width:961px){
.footer-screen-1{
  height: auto;
  margin: 0px auto;
  overflow: hidden;
  max-width: 768px;
  background: #545454;
  border-bottom: solid 1px #ece7e7; 
}
.footer-screen-1-wrap{
  width: 100%;
  height: auto;
  padding: 40px 0px;
  overflow: hidden;
  padding-bottom: 85px;
}

.footer-screen-1-wrap ul li{
  float: left;
  height: auto;
}
.footer-screen-1-wrap ul li:nth-of-type(1){
  width: 25%;
  height: auto;
  float: left;
  text-align: center;
  margin-left: 1%;
}

.footer-screen-1-wrap ul li:nth-of-type(1) img{
  width: 45%;
}
.footer-screen-1-wrap ul li:nth-of-type(2){
  width: 74%;
  height: auto;
  float: right;
}


.footer-screen-1-wrap ul li:nth-of-type(2) h4{
  color: #fff;
  font-size: 1em;
  line-height: 1.5em;
    font-family: "pfzt";

}

}
@media screen and (min-width:768px) and (max-width:960px){

.footer-screen-1{
  height: auto;
  margin: 0px auto;
  overflow: hidden;
  max-width: 768px;
  background: #545454;
  border-bottom: solid 1px #ece7e7; 
}



.footer-screen-1-wrap{
  width: 100%;
  height: auto;
  padding: 40px 0px;
  overflow: hidden;
  padding-bottom: 40px;
}

.footer-screen-1-wrap ul li{
  float: left;
  height: auto;
}
.footer-screen-1-wrap ul li:nth-of-type(1){
  width: 25%;
  height: auto;
  float: left;
  text-align: center;
  margin-left: 1%;
}

.footer-screen-1-wrap ul li:nth-of-type(1) img{
  width: 45%;
}
.footer-screen-1-wrap ul li:nth-of-type(2){
  width: 74%;
  height: auto;
  float: right;
}


.footer-screen-1-wrap ul li:nth-of-type(2) h4{
  color: #fff;
  font-size: 1em;
  line-height: 1.5em;
    font-family: "pfzt";

}
}

/* 客服组件 */


.dhzx-screen-1{

  max-width: 768px;
  height: auto;
  min-width: 320px;
  margin:auto;
  overflow: hidden;
  background: #545454;
  border-bottom: solid 1px #ece7e7; 
   z-index: 30;
   position:fixed;
   overflow:scroll;
   left: 0px;
   bottom: -2px;
   width: 100%;
}
.dhzx-screen-1 ul{

  max-width: 768px;
  min-width: 320px;
  width: 100%;
  z-index: 30;
}
.dhzx-screen-1 ul li:nth-of-type(1){
  width: 30%;
  float: left;

  background: #f66767;
}
.dhzx-screen-1 ul li:nth-of-type(2){
  width: 30%;
  float: left;

  background: #3c3d47
}
.dhzx-screen-1 ul li:nth-of-type(3){
  width: 40%;
  float: left;

  background: #42b883;
}
.dhzx-screen-1 ul li>a{
  font-size: 0.9em;
  color: #fff;
  line-height: 2.5em;
  font-family: "pfzt";
  display: inline-block;
  width: 100%;
  height: 100%;
  padding-top: 5px;
  color: #fff;
  font-family: "pfzt";

}
.dhzx-screen-1 ul li>a h4{
  font-size: 1em;
  color: #fff;
  font-family: "pfzt";
  display: inline-block;
  color: #fff;
  float: left;
  margin-left: 5px;
  font-family: "pfzt";

}
.dhzx-screen-1 ul li>a i{
  font-size: 1.2em;
  color: #fff;
float: left;
width: 14%;
  display: inline-block;
  margin-left: 4px;
  margin-right: 3px;
}
.dhzx-screen-1 ul li:nth-of-type(1)>a i{
    margin-left: 8px;
    margin-right: 8px;
}
.dhzx-screen-1 ul li:nth-of-type(2)>a i{
    margin-left: 8px;
    margin-right: 6px;
}



