/**
    头部
 */
.header {
    /*width: 1200px;*/
    background-color: #FFFFFF;
    /*margin: 0 auto;*/
}

.header_contain {
   /* padding-top: 40px;
    padding-left: 15px;
    padding-right: 15px;*/
    /*height: 171px*/
}

.logo_left {
    display: flex;
    justify-content: space-between;
    align-items: center;
    width: 235px;
}

.logo_left img {
    width: 60px;
}

.logo_name {
    display: flex;
    flex-direction: column;
}

.logo_name .top {
    font-size: 18px;
    color: #242C33;
}

.logo_name .bottom {
    font-size: 10px;
    color: #242C33;
}

.nav_right {
    float: right;
    font-size: 18px;
}

.nav_right ul {
    padding-left: 0;
}

.nav_box1 {
    width: 100%;
}

.nav_box2 {
    display: inline-block;
    float: right;
    margin: 30px 0;
}

.nav_inline li {
    display: inline-block;
    vertical-align: top;
}

.nav_inline li a {
    /*padding: 0.25rem 2.2rem;*/
    box-sizing: border-box;
    /*line-height: 20px;*/
    display: block;
    font-family:"microsoft Yahei";
    font-size: 0.9rem;
    line-height: 3.2rem;
     display: inline-block;
  white-space: nowrap; 
  /*width: 100%; */
  overflow: hidden;
  text-overflow:ellipsis;
  margin-left: 1rem;
    text-align: center;
}

.search_box {
    display: inline-block;
    border: 1px solid #4F4E54;
    width: 55%;
    height: 40px;
    margin: 30px 0 30px 76px;
    float: left;
}

.search_box input {
    width: 90%;
    height: 100%;
    border-width: 0;
    padding: 10px;
    background-color: unset;
}

.search_btn {
    float: right;
    border: 0px;
    background: url(/Public/home/images/search.png) no-repeat;
    background-position: center;
    background-size: 50%;
    width: 10%;
    height: 100%;
}

/**
    主体内容
 */
.content {
    /*保证footer是相对于container位置绝对定位*/
    position: relative;
    width: 100%;
    /*min-height: 100%;*/
    /*设置padding-bottom值大于等于footer的height值，以保证main的内容能够全部显示出来而不被footer遮盖；*/
    box-sizing: border-box;
}

/**
    尾部
 */
.footer {
    width: 100%;
    min-width: 1200px;
    height: 47px;
    background-color: #333333;
    position: fixed;
    bottom: 0;
    z-index: 1;
}

.footer span {
    color: #FFFFFF;
    text-align: center;
    display: block;
    position: relative;
    top: 50%;
    transform: translateY(-50%);
}