﻿/* 
    * @description: 布局、版面 
    * @author: hobe 
    * @update: hobe (2016-09-8 17:32) 
*/

/*基础样式*/
html,body,h1,h2,h3,h4,h5,h6,div,dl,dt,dd,ul,ol,li,p,blockquote,pre,hr,figure,table,caption,th,td,form,fieldset,legend,input,button,textarea,menu{margin:0;padding:0;}
header,footer,section,article,aside,nav,hgroup,address,figure,figcaption,menu,details{display:block;}
table{border-collapse:collapse;border-spacing:0;}
caption,th{text-align:left;font-weight:normal;}
html,body,fieldset,img,iframe,abbr{border:none;}
i,cite,em,var,address,dfn{font-style:normal;}
[hidefocus],summary{outline:0;}
li{list-style:none;}
h1,h2,h3,h4,h5,h6,small{font-size:100%;}
sup,sub{font-size:83%;}
pre,code,kbd,samp{font-family:inherit;}
q:before,q:after{content:none;}
textarea{overflow:auto;resize:none;}
label,summary{cursor:default;}
a,button{cursor:pointer;}
h1,h2,h3,h4,h5,h6,em,strong,b{font-weight:bold;}
del,ins,u,s,a,a:hover{text-decoration:none;}
body,textarea,input,button,select,keygen,legend{font:12px/1.14 arial,\5b8b\4f53;color:#333;outline:0;border:none;
    overflow:hidden;}
body{background:#fff;overflow:auto;}
a,a:hover{color:#333;} 

body {
    font-family:Microsoft YaHei,宋体,Verdana,sans-serif;
    list-style: outside none none;
}
/*响应宽度*/
html{
    font-size: calc(100vw/3.75);
}
a {
text-decoration: none;
color:#333;
-webkit-tap-highlight-color:rgba(0, 0, 0, 0);  
-moz-tap-highlight-color:rgba(0, 0, 0, 0);  
-ms-tap-highlight-color:rgba(0, 0, 0, 0);  
-o-tap-highlight-color:rgba(0, 0, 0, 0);  
tap-highlight-color:rgba(0, 0, 0, 0);
}
a:link, a:visited {
}
a:hover, a:active {
}
img{
    display:block;
}
.clearfix:after{
    content:".";
    display:block;
    height:0;
    clear:both;
    visibility:hidden;
}
.clearfix{
    *+height:1%;
}

/*基础样式 END*/


/*基础布局 END*/
#header {
    background-size: auto 28px;
    background-color: #fff;
    box-shadow: 0 1px 12px rgba(0,0,0,.3);
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    -webkit-box-sizing: border-box;
    z-index: 10;
}
#content{
    min-width:320px;
    max-width:640px;
    margin: 0 auto;
    overflow:hidden;

}
@media screen and (max-width:320px) {
    body {
        font-size: 14px;
    }
}
@media screen and (min-width:321px) and (max-width:413px) {
    body {
        font-size: 16px;
    }
}
@media screen and (min-width:414px) and (max-width:639px) {
    body {
        font-size: 18px;
    }
}
@media screen and (min-width:640px){
    body {
        font-size: 20px;
    }
}

/*基础布局 END*/


header{
    height:54px;
}
#header{
    height:54px;
    text-align:center;
}
#header .title-wrap{
    display:inline-block;
    line-height:54px;
    position:relative;
    padding-left:100px;
    height:100%;
}
#header .logo{
    position:absolute;
    top:0;
    left:0;
    width:100px;
    height:100%;
    display:block;
    background:url(../images/LOGO.png) no-repeat center/100px auto;
}

footer{
    height:60px;
    width:100%;
    padding:0;
    margin:0;
}
#footer{
    height:60px;
    background:#1a202d;
    position: fixed;
    bottom: 0;
    left: 0;
    width: 100%;
    z-index: 6;
}
#footer>.wrap{
    position:absolute;
    
    background:#1a202d;
    width:100%;
    display: -webkit-box;
    display: -webkit-flex;
    display: -ms-flexbox;
    display: flex;
}
#footer .item{
    position:relative;
    padding-top:40px;
    width:100%;
    text-align:center;
    -webkit-box-flex: 1;
    -webkit-flex: 1;
    -ms-flex: 1;
    box-flex: 1;
    flex: 1;
    color:#9da3b3;
    font-size:10px;
}
#footer .item:before{
    content:'';
    position:absolute;
    width:30px;
    height:30px;
    top:5px;
    left:50%;
    transform:translate(-50%,0);
    -webkit-transform:translate(-50%,0);
    background:url(../images/base_icons.png) no-repeat 0px 0px/auto 80px;
}
#footer .tel:before{
    background-position:-40px 0px;
}
#footer .addr:before{
    background-position:-75px 0px;
}
#footer .service:before{
    background-position:-112px 0px;
}

/*菜单*/
.h-manu i {
    position: absolute;
    width: 30px;
    height: 1px;
    top: 30%;
    left: 13px;
    border-bottom: 2.5px solid #999;
}
.h-manu i:nth-child(1) {
    top: 30%;
}
.h-manu i:nth-child(2) {
    top: 50%;
}
.h-manu i:nth-child(3) {
    top: 70%;
}
.manu-wrap{
    position:fixed;
    width:100%;
    top:0;
    left:0;
    height:100%;
    z-index:9;
    box-sizing:border-box;
    display:none;
}
.manu-wrap .bg{
    position:absolute;
    top:0;
    left:0;
    width:100%;
    height:100%;
    background:#000;
    opacity:.5;
    box-sizing:border-box;
    z-index:11;
}
.manu-wrap .manu{
    position:absolute;
    padding-top:54px;
    box-sizing:border-box;
    top:0;
    left:0;
    width:100px;
    height:100%;
    background:#f4f4f4;
    border-right:1px solid #dedbdb;
    z-index:12;
    overflow: scroll;
}
.manu-wrap .nli{
    height:40px;
    background:#f4f4f4;
    border-top:1px solid #fff;
    border-bottom:1px solid #dedbdb;
    padding-left:20px;
    box-sizing:border-box;
    position:relative;
}
.manu-wrap .manu_icon{
    position:absolute;
    top:50%;
    left:44px;
    width:20px;
    height:20px;
    background:url(../images/base_icons.png) no-repeat 0px 0px/auto 80px;
    -webkit-transform:translate(-50%,-50%);
    transform:translate(-50%,-50%);
}
.manu-wrap .manu_icon.user{
    background-position:2px -60px;
}
.manu-wrap .manu_icon.about{
    background-position:-22px -60px;
}
.manu-wrap .manu_icon.field{
    background-position:-47px -60px;
}
.manu-wrap .manu_icon.team{
    background-position:-71px -60px;
}
.manu-wrap .manu_icon.news{
    background-position:-96px -60px;
}
.manu-wrap .manu_icon.case{
    background-position:-119px -60px;
}
.manu-wrap .manu_icon.investor{
    background-position:-147px -60px;
}
.manu-wrap .manu_icon.contact{
    background-position:-169px -60px;
}

.manu-wrap .on .manu_icon{
    background-position-y:-32px;
}
.manu-wrap .nli a{
    color:#6e6d6d;
    line-height:40px;
    font-size:12px;
}
.manu-wrap .more{
    display:block;
    position:absolute;
    width:6px;
    height:6px;
    top:50%;
    right:5px;
    margin-top:-3px;
    background:none;
    border-top: 1.5px solid #999;
    border-right: 1.5px solid #999;
    -webkit-transform:rotate(45deg);
    transform:rotate(45deg);
}
.manu-wrap .on .more{
    border-color:#fff;
}
.manu-wrap .nli.on{
    background:#de020a;
}
.manu-wrap .nli.on a{
    color:#fff;
}
.manu-wrap .manu-nav{
    padding-top:54px;
    position:absolute;
    left:100px;
    width:90px;
    z-index:12;
    border-right:1px solid #dedbdb;
}
.manu-wrap .nav{
    display:none;
    background:#f4f4f4;
}
.manu-wrap .nav.show{
    display:block;
}
.manu-wrap .nav .nli{
    height:30px;
    padding:0;
    text-align:center;
}
.manu-wrap .nav .nav_list{
    padding:20px 0;
}
.manu-wrap .nav .nli:first-child{
    border-top:0;
}
.manu-wrap .nav .nli:last-child{
    border-bottom:0;
}
.manu-wrap .nav .nli a{
    line-height:30px;
    text-align:center;
}
/*菜单 END*/
/*中英文*/
.h-language{
	position: absolute;
    right: 0;
    padding: 20px;
}

/*搜索*/
.h-search {
    position: absolute;
    top: 0;
    right: 0;
    width: 54px;
    height: 54px;
    background:url(../images/base_icons.png) no-repeat 14px 14px /auto 80px;
}
.search-wrap{
    width:100%;
    background:#fff;
    padding:8px 20px;
    box-sizing:border-box;
    display:none;
    z-index:22;
}
.search-wrap .input{
    line-height:1.6em;
    background:#e5e5e5;
    border:1px solid #808080;
    border-radius:.8em;
    width:100%;
    padding:0 10px;
    overflow:hidden;
    box-sizing:border-box;
}


/*搜索 END*/

/*页脚*/
#content{
    box-sizing:border-box;
    padding-bottom:100px;
    position:relative;
	background: url(../images/header_bg.jpg) repeat top center/100% auto;
}
.copyright-wrap{
    width:100%;
    background:#efefef;
    height:100px;
    position:absolute;
    bottom:0;
    left:0;
}
#return_top{
    width:100%;
    padding:10px 0;
    display:block;
    text-align:center;
    font-size:12px;
    background:#1a202d;
    color:#fff;
}
#return_top:after{
    content:'';
    display:inline-block;
    border-left: 6px solid transparent;
    border-bottom: 6px solid #fff;
    border-right: 6px solid transparent;
    height: 0;
    margin: 4px 0 0 3px;
    width: 0;
    vertical-align: top;
}
.copyright{
    font-size:12px;
    color:#282828;
    margin:10px;
    text-align:center;
}
.link_wrap{
    text-align:center;
}
.link_wrap a{
    font-size:12px;
    color:#282828;
    margin:0 8px;
}
/*页脚 END*/


.list-wrap:after{
    content:".";
    display:block;
    height:0;
    clear:both;
    visibility:hidden;
}
.list-wrap{
    *+height:1%;
}
.list-wrap .item{
    display:block;
}

#weixin{ /*bottom:261px;*/background-position-x:-66px;}
#tel{ /*bottom:212px;*/background-position-x:6px;}
#user{/*bottom:106px;*/background-position-x:-32px;}
#return_top{/*bottom:57px;*/background-position-x:-99px;}

#content .title-wrap{
    padding:10px;
}
.crumbs{
    color: #272727;
    font-size: 12px;
    padding:4px 0;
    padding-left: 20px;
    position:relative;

    border-bottom: 3px solid #E8E8E8;
}
.crumbs:before{
    content:'';
    display:block;
    position:absolute;
    left:6px;
    top:50%;
    width:12px;
    height:12px;
    background:url("../images/base_icons.png") no-repeat scroll 0px -48px/auto 60px;
    
    -webkit-transform:translate(0,-50%);
    transform:translate(0,-50%);

}
.crumbs a {
    color: #272727;
}
.crumbs .red {
    color: #de0700;
}


/*图片列表页*/
.photo .list_page .list-wrap {
    padding:20px 0;
}
.photo .list_page .list-wrap .item{
    float:left;
    width:50%;
    padding:4px;
    box-sizing:border-box;
}
.photo .list_page .list-wrap .img_box{
    width:100%;
    height:1.6rem;
    min-height:136px;
    max-height:273px;
    overflow:hidden;
    position:relative;
    background:#eee;
}
.photo .list_page .list-wrap img{
    position:absolute;
    top:50%;
    left:50%;
    width:100%;
    height:auto;
    transform:translate(-50%,-50%);
    -webkit-transform:translate(-50%,-50%);
}

.news .list_page .list-wrap {
    padding:0 10px;
}
.news .list_page .list-wrap .item {
    position: relative;
    display: block;
    padding: 10px 6px;
    padding-right: 20px;
    font-size: 12px;
    border-bottom: 1px solid #ced6e7;
    color: #4d4d4f;
    
    min-height:2.8em;
    line-height:2.8em;
}
.news .list_page .list-wrap .item_box{
    display:inline-block;
    line-height:1.4;
}
.list_page .none{
    padding:0 10px;
}


#getmore_wrap{
    padding:10px 0;
    text-align:center;
}
#getmore_wrap span{
    padding-left:30px;
    font-size:14px;
    color:#1a202d;
    position:relative;
}
    #getmore_wrap span:before {
        content: '';
        display: none;
        position: absolute;
        left: 0;
        top: 50%;
        width:30px;
        height:30px;
        margin-top:-15px;
        background-image: url('../images/loading.svg');
        text-align: center;
        font-size: 14px;
        color: #1a202d;
    }
    #getmore_wrap.loading span:before {
        display: block;
    }

/*图片详情页*/
.show_page .img_wrap{
    padding:4px;
}
.show_page img{
    height: auto;
    text-align:center;
    display: inline-block;
    max-width: 100%;
    margin-bottom:4px;
}
#content.show_page .title-wrap{
    padding:10px;
    padding-bottom:0;
}
.show_page .title-wrap .title{
    font-size:1.6em;
    margin-bottom:4px;
}
.show_page .title-wrap .info{
    color:#746969;
    font-size:.8em;
}
.show_page .text-wrap{
    padding:10px 16px 16px;
}
.container {
    background: url(../images/header_bg.jpg) repeat top center/100% auto;
    padding:0 30px;
}
.container img{
    margin:0 0 30px 0;
}
.wrap{
    padding:20px 0;
    border-bottom: 1px solid;
}
.text {
    padding: 30px 0;
    font-size: 18px;
    line-height: 34px;
}
.more {
        float: right;
    display: block;
    width: 88px;
    height: 36px;
    background: url(../images/more.png) no-repeat center /100% auto;
    margin-top: 24px;
}
#header{
    background: url(../images/header_bg.jpg) repeat top center/100% auto;
}

.wrap_3 .title,.wrap_4 .title{
    width: 200px;
    height: 84px;
    background: url(../images/page2_title.png) no-repeat center/100% auto;
    margin: 0 auto;
    text-align: center;
    line-height: 84px;
    font-size: 28px;
}
.wrap_3 .item{
	float: left;
    width: 50%;
    padding: 0;
    box-sizing: border-box;
    position: relative;
    display: block;
    padding: 0 5px;
    /* padding-right: 20px; */
    font-size: 12px;
    color: #4d4d4f;
}
.wrap_3 .item img{margin:0;
}
.wrap_3 .item .text{
    position: relative;
    display: block;
    padding: 10px 6px;
    padding-right: 20px;
    font-size: 16px;
    color: #4d4d4f;
    text-align:center;
}
.wrap_4 .item{
    float:left;
    width:50%;
    padding:4px;
    box-sizing:border-box;
    
    position: relative;
    display: block;
    padding: 10px 6px;
    padding-right: 20px;
    font-size: 12px;
    color: #4d4d4f;
}
.wrap_4 .item img{margin:0;
}
.wrap_4 .item .text{
    position: relative;
    display: block;
    padding: 10px 6px;
    padding-right: 20px;
    font-size: 12px;
    color: #4d4d4f;
    text-align:center;
}

