html, body {
    padding: 0;
    margin: 0;
    position: relative;
    display: block;
    border: 0;
}
body {
    /*font-family:  'Source Sans Pro', sans-serif,'Microsoft YaHei';*/
    font-family:  'Microsoft YaHei', sans-serif;
    font-size: 16px;
}

a {
    color: #000;
}

a:hover {
    color: #0c6db6;
}

.container {
    width: 1200px;
    position: relative;
    margin: 0 auto;
    padding: 0;
    box-sizing: border-box;
}

/*动画*/
.transition {
    -moz-transition: all 0.5s;
    -webkit-transition: all 0.5s;
    -o-transition: all 0.5s;
    transition: all 0.5s;
}

img {
    max-width: 100%;
}

.text-overflow {
    overflow: hidden;
    text-overflow: ellipsis;
    white-space: nowrap
}

/*清除缓存*/

/*标题*/
.i-title {
    padding: 45px 0 25px;
    text-align: center;
}

.i-title h2 {
    font-size: 40px;
    /*color: #333;*/
}

.i-title p {
    font-size: 16px;
    color: #666;
    padding-top: 8px;
    font-weight: 300;
}


/*头部*/
.header {
    width: 100%;
    min-width: 1200px;
    position: relative;
    overflow: hidden;
    display: flex;
    flex-direction: column;
    align-items: center;
    /*background: url("../images/head-bg.png") no-repeat  center bottom;*/
    /*background: url("../images/head-bg.png") repeat-x;*/
}
.header .box {

    width: 90%;
    min-width: 1200px;
    position: relative;
    height: 100px;
    display: flex;
    flex-direction: row;
    align-items: center;
    z-index: 2;
}
.header .box .search{
    margin-left: 20px;
    border:1px solid #0c6db6;
    padding: 1px;
    /*border-radius: 10px;*/

    display: flex;
    flex-direction: row;
    align-items: center;
    justify-content: center;
    font-size: 14px;
}
.header .box .search input{
    border-width: 0;
    padding: 0 10px;
    height: 26px;
    width: 160px;
    line-height: 26px;
    color: #333;

}
.header .box .search button{
    border-width: 0;
    background-color:#0c6db6;
    height: 26px;
    line-height: 26px;
    padding: 0 10px;
    color: #fff;
    cursor: pointer;
    font-size: 14px;

}

.header .box .logo img {
    height: 45px;
    width: auto;
}

/*导航*/
.top-nav-list {
    margin-left: auto;
    display: flex;
    flex-direction: row;
    font-size: 18px;
    font-weight: 400;

}
.top-nav-list .item {
    flex-grow: 1;
    text-align: center;
    padding: 10px 0;
    border-bottom: 2px solid #fff;
    margin-left: 20px;
    margin-right: 10px;

}
.top-nav-list .item:hover {

    border-bottom: 2px solid #0c6db6;
    color: #333;
}
.top-nav-list .curr
{
   /*font-weight: bold;*/
    color: #0c6db6;
    border-bottom: 2px solid #0c6db6;
}


/*底部*/
.footer {
    width: 100%;
    min-width: 1200px;
    margin: 20px auto 0;
    background: #e7e7e7;
    display: flex;
    flex-direction: row;
    justify-content: center;
    color: #333;
    line-height: 180%;
}
.footer a {
    color: #333;
    padding-right: 10px;
}
.footer a:hover {
    /*color:  #ccc;*/
}
.footer .box {
    width: 80%;
    min-width: 1200px;
    padding: 20px 0;
    display: flex;
    justify-content: space-between;
}
.footer .box span{padding-right:10px}

.footer .bottom .right img {
    width: 120px;
    height: 120px;
}



