html,
body {
    position: relative;
    margin: 0;
    padding: 0;
    font-size: 16px;
    font-family: 'FiraSans-Regular', 'open sans', 'Pingfang', 'Microsoft YaHei', 'WenQuanYi Micro Hei', 'sans-serif';
    background-color: #ffffff;
}

@font-face {
    font-family: 'FiraSans-Heavy';
    src: url("/static/font/FiraSans-Heavy.otf") format('truetype');
}

@font-face {
    font-family: 'FiraSans-Bold';
    src: url("/static/font/FiraSans-Bold.otf") format('truetype');
}

@font-face {
    font-family: 'FiraSans-Medium';
    src: url("/static/font/FiraSans-Medium.otf") format('truetype');
}

@font-face {
    font-family: 'FiraSans-Regular';
    src: url("/static/font/FiraSans-Regular.otf") format('truetype');
}

@font-face {
    font-family: 'FiraSans-Light';
    src: url("/static/font/FiraSans-Light.otf") format('truetype');
}

@font-face {
    font-family: 'FiraSans-Thin';
    src: url("/static/font/FiraSans-Thin.otf") format('truetype');
}

@font-face {
    font-family: 'Lato-Bold';
    src: url("/static/font/Lato-Bold.ttf") format('truetype');
}

/**
通用样式定义区
 */
img {
    max-width: 100%;
}

a:focus {
    outline: none;
}

.text-left {
    text-align: left;
}

.text-center {
    text-align: center;
}

.text-right {
    text-align: right;
}

/**
主要内容的容器
 */
.content-container {
    position: relative;
    width: 1200px;
    margin: 0 auto;
}

/**
英文版的头部
*/
.header {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 80px;
    /*line-height: 60px;*/
    /*padding: 10px 60px;*/
    -webkit-box-sizing: border-box;
    -moz-box-sizing: border-box;
    box-sizing: border-box;
    background-color: #ffffff;
    border-bottom: 1px solid #EBEBEB;
    z-index: 100;
}

.sm-menu-toggle {
    display: none;
}

.sm-menu-header {
    display: none;
}
.header-menu {
    text-align: right;
}
.header-container {
    position: relative;
    width: 1200px;
    margin: 0 auto;
}

.header-nav-logo {
    margin-top: 13px;
    height: 54px;
}

.header-nav-link {
    position: relative;
    display: inline-block;

}

.header-nav-link > a {
    position: relative;
    display: inline-block;
    line-height: 80px;
    margin: 0 15px;
    color: #282B31;
    text-decoration: none;
    font-family: FiraSans-Regular;

    font-size: 16px;
    text-shadow: 0 2px 4px rgba(245, 245, 245, 0.17);
}

.header-nav-link .header-border {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 4px;
    background-color: #58975F;
    opacity: 0;

    -webkit-transition: opacity .2s;
    -moz-transition: opacity .2s;
    -ms-transition: opacity .2s;
    -o-transition: opacity .2s;
    transition: opacity .2s;
}

.header-nav-link:hover > .header-border {
    opacity: 1;
}

.sub-nav {
    height: 0;
    position: absolute;
    top: 80px;
    left: 0;
    font-family: FiraSans-Regular;

    -webkit-border-radius: 3px;
    -moz-border-radius: 3px;
    border-radius: 3px;
    text-align: left;
    overflow: hidden;

    background-color: rgba(255, 255, 255, 1);
    -webkit-box-shadow: 0 0 3px 0 #aaa;
    -moz-box-shadow: 0 0 3px 0 #aaa;
    box-shadow: 0 0 3px 0 #aaa;

    -webkit-transform: translateY(-10px);
    -moz-transform: translateY(-10px);
    -ms-transform: translateY(-10px);
    -o-transform: translateY(-10px);
    transform: translateY(-10px);

    -webkit-transition: all .2s ease;
    -moz-transition: all .2s ease;
    -ms-transition: all .2s ease;
    -o-transition: all .2s ease;
    transition: all .2s ease;
}

.sub-nav-link {
    position: relative;
    display: block;
    width: 180px;
    padding: 0 30px;
    line-height: 60px;
    color: #666;
    text-decoration: none;
    font-family: FiraSans-Regular;
    font-size: 16px;
    text-shadow: 0 2px 4px rgba(245, 245, 245, 0.17);

    -webkit-transition: all .2s ease;
    -moz-transition: all .2s ease;
    -ms-transition: all .2s ease;
    -o-transition: all .2s ease;
    transition: all .2s ease;
}

.sub-nav-link:after {
    content: '';
    position: absolute;
    bottom: 0;
    left: 0;
    width: 100%;
    height: 0;
    border-bottom: 1px solid #ccc;

    -webkit-transform: scaleY(0.5);
    -moz-transform: scaleY(0.5);
    -ms-transform: scaleY(0.5);
    -o-transform: scaleY(0.5);
    transform: scaleY(0.5);
}

.sub-nav-link:hover {
    opacity: 1;
    color: #000;
}

.header-nav-link:hover .sub-nav {
    height: auto;
    -webkit-transform: translateY(0);
    -moz-transform: translateY(0);
    -ms-transform: translateY(0);
    -o-transform: translateY(0);
    transform: translateY(0);
}

.header-placeholder {
    height: 80px;
}

/**
通用的footer
 */
.footer {
    padding: 50px 60px 20px 60px;
    background-color: #F4F5FA;;
}

.footer-container {
    position: relative;
    width: 1200px;
    margin: 0 auto;
}

.footer-bottom {
    position: relative;

    padding: 10px;
    width: 1200px;
    margin: 10px auto 0 auto;
    font-size: 12px;
    color: #B9BDC3;
    letter-spacing: 0;
    line-height: 18px;
}

.footer-bottom:before {
    content: '';
    position: absolute;
    left: 0;
    top: 0;
    width: 100%;
    height: 0;
    border-top: 1px solid #aaa;

    -webkit-transform: scaleY(0.5);
    -moz-transform: scaleY(0.5);
    -ms-transform: scaleY(0.5);
    -o-transform: scaleY(0.5);
    transform: scaleY(0.5);
}

.footer-logo {
    width: 260px;
}

.footer-txt1 {
    padding-left: 102px;
    font-size: 14px;
    color: #676C75;
    letter-spacing: 0;
    line-height: 26px;
}

.footer-title {
    display: block;
    font-size: 14px;
    font-weight: bold;
    color: #6B6F81;
    letter-spacing: 0.8px;
    line-height: 42px;
    text-decoration: none;
}

.footer-link {
    display: block;

    text-decoration: none;
    font-size: 14px;
    color: #6B6F81;
    letter-spacing: 0.8px;
    line-height: 33px;

    -webkit-transition: color .2s ease;
    -moz-transition: color .2s ease;
    -ms-transition: color .2s ease;
    -o-transition: color .2s ease;
    transition: color .2s ease;
}

.footer-link:hover {
    color: #565656;
}

@media screen and (max-width: 768px) {
    .header-nav-logo {
        margin: 13px 0 0 15px;
    }

    .header-menu {
        position: fixed;
        top: 0;
        right: 0;
        height: 100%;
        width: 60%;
        text-align: left;
        background-color: #fff;
        box-shadow: -4px 0px 20px 0px rgba(0, 0, 0, 0.1);

        -webkit-transition: transform .36s;
        -moz-transition: transform .36s;
        -ms-transition: transform .36s;
        -o-transition: transform .36s;
        transition: transform .36s;

        -webkit-transform: translate3d(100%, 0, 0);
        -moz-transform: translate3d(100%, 0, 0);
        -ms-transform: translate3d(100%, 0, 0);
        -o-transform: translate3d(100%, 0, 0);
        transform: translate3d(100%, 0, 0);
    }

    .sm-menu-header {
        display: block;
        padding: 15px;
        border-bottom: 1px solid #ccc;
    }

    .header-menu.active {
        -webkit-transform: translate3d(0, 0, 0);
        -moz-transform: translate3d(0, 0, 0);
        -ms-transform: translate3d(0, 0, 0);
        -o-transform: translate3d(0, 0, 0);
        transform: translate3d(0, 0, 0);
    }

    .header-nav-link > a {
        display: block;
        margin: 0;
        padding: 0 15px;
        line-height: 40px;
        font-weight: bold;
        color: rgba(88, 151, 95, 1);
        -webkit-box-shadow: 0 0 0;
        -moz-box-shadow: 0 0 0;
        box-shadow: 0 0 0;
    }

    .header-nav-link > a.active {
        color: #fff;
        background-color: rgba(88, 151, 95, 1);
    }

    .header-border {
        display: none;
        height: 0;
    }

    .sub-nav {
        height: 0;
        -webkit-border-radius: 0;
        -moz-border-radius: 0;
        border-radius: 0;
        background-color: rgba(244, 245, 250, 1);
        -webkit-box-shadow: 0 0 0;
        -moz-box-shadow: 0 0 0;
        box-shadow: 0 0 0;
        top: 0;
        overflow: hidden;
    }

    .sub-nav-link {
        height: 0;
        color: rgba(153, 158, 168, 1);
    }

    .sub-nav-link.active {
        color: rgba(88, 151, 95, 1);
    }

    .sub-nav.active {
        display: block;
        height: auto;
        position: relative;
    }

    .sub-nav.active > .sub-nav-link {
        height: auto;
    }

    .header-nav-link {
        display: block;
    }

    .sm-menu-toggle {
        display: block;
        position: fixed;
        top: 0;
        right: 0;
        line-height: 90px;
        padding-right: 15px;
    }

    .sm-menu-toggle > img {
        width: 24px;
    }

    .mobile-menu-icon {
        width: 24px;
    }

    .footer {
        display: none;
    }
}

/* end of media screen max width 768px */
