/**css reset start*/
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, font, img, ins, kbd, q, s, samp,
small, strike, strong, sub, sup, tt, var, dl, dt, dd, ol, ul, li,
fieldset, form, label, legend, table, caption, tbody, tfoot,
thead, tr, th, td {
    margin: 0;
    padding: 0;
    border: 0;
    outline: 0;
    font-weight: inherit;
    font-style: inherit;
    font-size: 100%;
    font-family: inherit;
    vertical-align: baseline;
    box-sizing:border-box;
}
:focus {
    outline: 0;
}
table {
    border-collapse: separate;
    border-spacing: 0;
}
caption, th, td {
    text-align: left;
    font-weight: normal;
}
a {text-decoration: none;}
a img, iframe {
    border: none;
}
ol, ul {
    list-style: none;
}
input, textarea, select, button {
    font-size: 100%;
    font-family: inherit;
}
select {
    margin: inherit;
    align-items: center;
}
/* Fixes incorrect placement of numbers in ol’s in IE6/7 */
ol { margin-left:2em; }

.clearfix {display: block;clear: both;line-height: 0;height: 0; border:0;width: 0;}

/**css reset end*/

/**app css start*/
html {
    width: 100%;
    height: auto;
    overflow: auto;
}
body {
    width: 100%;
    height: auto;
    min-width: 1280px;
    position: relative;
    overflow: auto;
    font: 12px/150% "Helvetica Neue",Helvetica,Arial,"Microsoft Yahei","Hiragino Sans GB","Heiti SC","WenQuanYi Micro Hei",sans-serif;
    color: #333;
    background-color: #FDFDFD;
    -webkit-font-smoothing: antialiased;
}

/**布局样式*/

.transition {
    -webkit-transition: all 0.3s;
    -moz-transition: all 0.3s;
    -ms-transition: all 0.3s;
    -o-transition: all 0.3s;
    transition: all 0.3s;
}

/**按钮样式**/
.btn {
    display: inline-block;
    text-decoration: none;
    line-height:2.4em;
    height: 2.4em;
    padding: 0 1.2em;
    border:0;
    color: #ffffff;
    background-color: #e5e5e5;
    position: relative;
    border-radius: 5px;
    cursor: pointer;
    opacity: 0.6;
    filter:alpha(opacity=60);
    -webkit-transition: all 0.1s;
    -moz-transition: all 0.1s;
    -ms-transition: all 0.1s;
    -o-transition: all 0.1s;
    transition: all 0.1s;
}
.btn:hover {
    background-color: #ccc;
    text-decoration: none;
    opacity: 1;
    filter:alpha(opacity=100);
}
.btn.btn-yellow-box{
    background: transparent;
    border:1px solid #eec522;
    color: #eec522;
}
.btn.btn-white-box{
    background: transparent;
    border:1px solid #fff;
    color: #fff;
}
.btn.btn-orange-box{
    background: transparent;
    border:1px solid #ee8222;
    color: #ee8222;
}
.btn.btn-orange {
    background-color:#EFC468 ;
}
.btn.btn-orange:hover {
    background-color: #ee8222;
}
.btn.btn-blue {
    background-color: #9DC3DB;
}
.btn.btn-blue:hover {
    background-color: #5c9cc3;
}
.btn.btn-green {
    background-color: #81C124;
}
.btn.disabled,.btn[disabled]
{
    background-color: #e5e5e5;
    -webkit-transform: scale(1);
    -moz-transform: scale(1);
    -ms-transform: scale(1);
    -o-transform: scale(1);
    transform: scale(1);
    cursor: not-allowed;
}
.btn.disabled:hover,.btn[disabled]:hover {
    background-color: #e5e5e5;
}
/**form start**/
input {vertical-align: middle;}

.form-ctrl { border-radius: 5px;color: #aaa;font-size: 14px;line-height: 2em;height: 2em;padding: 0 5px;border:1px solid #aaa;}
.form-ctrl:hover,
.form-ctrl:focus {
    border-color: #ee8222;
    box-shadow: 0 0 4px #ee8222;
    color: #333;
}

.form-ctrl[disabled] {cursor: not-allowed;background-color: #F5F5F5;text-shadow: none;}
.form-ctrl[disabled]:hover {box-shadow:0 0 4px #e5e5e5 ;border-color: #aaa;}
textarea.form-ctrl {height: auto;line-height: 1.5em;resize: none;padding: 5px;word-break: break-all;border-style: solid;}
/**工具类*/

.animated {
    -webkit-animation-duration: 1s;
    -moz-animation-duration: 1s;
    -o-animation-duration: 1s;
    -ms-animation-duration: 1s;
    animation-duration: 1s;
    -webkit-animation-fill-mode: both;
    -moz-animation-fill-mode: both;
    -o-animation-fill-mode: both;
    -ms-animation-fill-mode: both;
    animation-fill-mode: both;
}
@-webkit-keyframes fadeInUp {
    from {
        opacity: 0;
        -webkit-transform: translate3d(0, 30%, 0);
        transform: translate3d(0, 30%, 0);
    }

    to {
        opacity: 1;
        -webkit-transform: none;
        transform: none;
    }
}
@-moz-keyframes fadeInUp {
    from {
        opacity: 0;
        -moz-transform: translate3d(0, 30%, 0);
        transform: translate3d(0, 30%, 0);
    }
    to {
        opacity: 1;
        -moz-transform: none;
        transform: none;
    }
}
@-o-keyframes fadeInUp {
    from {
        opacity: 0;
        -o-transform: translate3d(0, 30%, 0);
        transform: translate3d(0, 30%, 0);
    }
    to {
        opacity: 1;
        -o-transform: none;
        transform: none;
    }
}
@keyframes fadeInUp {
    from {
        opacity: 0;
        -webkit-transform: translate3d(0, 30%, 0);
        -moz-transform: translate3d(0, 30%, 0);
        -o-transform: translate3d(0, 30%, 0);
        -ms-transform: translate3d(0, 30%, 0);
        transform: translate3d(0, 30%, 0);
    }
    to {
        opacity: 1;
        -webkit-transform: none;
        -moz-transform: none;
        -o-transform: none;
        -ms-transform: none;
        transform: none;
    }
}
.fadeInUp {
    -webkit-animation-name: fadeInUp;
    -moz-animation-name: fadeInUp;
    -o-animation-name: fadeInUp;
    animation-name: fadeInUp;
}
.pie {
    position: relative;
    behavior: url("PIE/PIE.htc");
}


.logo {display: inline-block;vertical-align: middle;}
.logo img {height: 60px;display: block;}
.layout {width: 100%;position: relative;min-width: 1280px;}
.layout-header {
    width: 100%;
    text-align: center;
    height:95px;
    line-height: 95px;
    background-color: #fff;
    background-color: rgba(255,255,255,0.5);
    box-shadow: 0 0 5px #ddd;
    position: relative;
    z-index: 99;
}
.layout-header .layout-center-container {
    height:100%;
    line-height: inherit;
    width: 1280px;

}
.site-nav-bar {
    display: block;
    position: relative;
    line-height: inherit;
    float: right;
    height: 100%;
}

.site-nav-bar .nav-item {
    display: inline-block;
    float: left;
    line-height: inherit;
    height: 100%;
    position: relative;
}
.site-nav-bar .nav-item .nav-link {
    color: #666;
    text-decoration: none;
    font-size: 16px;
    padding: 1em 0.8em;
    margin: 0 0.5em;
    display: inline-block;
    line-height: 100%;
    border-bottom: 1px solid transparent;
}
.site-nav-bar .nav-item:hover .nav-link,
.site-nav-bar .nav-item.selected .nav-link {
    color: #ee8222;
    border-bottom: 3px solid #ee8222;
}
.site-nav-bar .nav-item.dorp-item:hover .nav-link {
    border-bottom: 0px solid transparent;
}
.nav-item>.sub-wrap {
    display: block;
    visibility: hidden;
    position: absolute;
    width: 110%;
    top:70.5%;
    left: -5%;
    line-height: 3em;
    text-align: center;
    background-color: #f7f7f7;
    border-radius: 6px;
    opacity: 0;
    filter: ;
    margin-top: -20%;
    overflow:hidden;
    border: 1px solid #e3e3e3;

}
.nav-item:hover>.sub-wrap {
    visibility: visible;
    opacity: 1;
    margin-top: 0;
}
.layout-header.fixed .nav-item>.sub-wrap {
    top: 84.5%;
}
.site-nav-bar .btn-apply {
    margin-left: 20px;
    background-color: transparent;
    border:1px solid #ee8222;
    color: #ee8222;
    font-size: 16px;
}
.site-nav-bar .btn-apply:hover {
    color: white;
    background-color: #ee8222;
}
.sub-nav-bar {
    display: block;
}
.sub-nav-bar .sub-nav-item {
    display: block;
}
.sub-nav-bar .sub-nav-item:hover {
    background-color: white;
}
.sub-nav-bar .sub-nav-item .sub-nav-link {
    display: block;
    color: #666;
}
.sub-nav-bar .sub-nav-item .sub-nav-link:hover {
    color: #ee8222;
}

.layout-footer {
    text-align: center;
    color: #d7d4d4;
    background-color:#626161;
    width: 100%;
}
.layout-footer .layout-center-container {
    width: 1280px;
    text-align: center;
}
.layout-footer .colum-wrap {
    display: block;
    height: 265px;
}
.colum-wrap>.colum {
    display: block;
    float: left;
    margin: 40px 0;
    width: 19.5%;
    text-align: left;
}
.colum>h4 {
    font-size: 18px;
    line-height: 1em;
    margin-bottom: 1em;
    color: #fff;
}
.colum>ul>li {
    font-size: 14px;
    line-height: 2.2em;
}
.colum>ul>li.weixin {
    display: block;
    position: relative;
}
.colum>ul>li.weixin .code-wrap {
    position: absolute;
    left: -155px;
    top: -60px;
    display: none;
}
.colum>ul>li.weixin:hover .code-wrap{
    display: block;
}
.colum .btn-green {
    font-size: 18px;
    margin-bottom: 1em;
    color: white;
}
.colum .btn-green:hover {
    text-decoration: none;
}
.colum .tel {
    font-size: 24px;
    color: white;
}
.layout-copy {
    background-color: #3d3d3d;
    height: 35px;
    line-height: 35px;
    font-size: 12px;
    color: #fff;
}
.layout-footer a {
    color: #d7d4d4;
}
.layout-footer a:hover {
    text-decoration: underline;

}
.layout-content {text-align: center;width: 100%;}

.layout-center-container {
    display: block;margin: 0 auto;text-align: left;
    width: 1280px;
}
.layout-middle-container {
    display: block;
    width: 50%;
    height: 50%;
    position: absolute;
    left: 50%;
    top: 50%;
}
.layout-full-screen {
    width: 100%;
    height: 100%;
    min-width: 1280px;
    min-height: 550px;
}

@media screen and (max-width: 1024px){
    body{
        min-width: 0;
    }
    .layout {
        min-width: 0;
        width: 100%;
    }
    .layout-header .layout-center-container,
    .layout-footer .layout-center-container,
    .layout-center-container
    {
        width: 100%;
        min-width: 1024px;
    }
    .layout-full-screen {
        min-width: 0;
        min-height:0;
    }
}

@media screen and (max-width: 1366px){
    body{
        min-width: 960px;
    }
    .layout {
        min-width: 960px;
        width: 100%;
    }
    .layout-header .layout-center-container,
    .layout-footer .layout-center-container,
    .layout-center-container
    {
        width: 960px;
        min-width: 0;
    }

    .layout-full-screen {
        min-width: 960px;
    }
}
.ebsgovicon-wrap {display: inline-block;}
.ebsgovicon-wrap a{display: inline-block;margin: 0 5px;}
.ebsgovicon-wrap a>img{display: inline-block;vertical-align: middle;}
/**app css end*/
