html,
body {
    font-family: 'REGULAR';
}

a {
    color: #fff;
    display: block;
}

a:hover {
    color: #fff;
    text-decoration: none;
}

* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
    list-style: none;
    text-decoration: none;
}

.header {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    z-index: 2000;
}

.header-bg {
    background-color: #000;
    opacity: 0.5;
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 90px;
    width: 100%;
}

.header_container {
    width: 1200px;
    height: 90px;
    line-height: 90px;
    display: flex;
    justify-content: right;
    margin: 0 auto;
    font-size: 18px;
    background-color: transparent;
}

.header-logo-box {
    width: 1200px;
    height: 90px;
    line-height: 90px;
    margin: 0 auto;
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
}

.header_logo {
    width: 500px;
    height: 90px;
    line-height: 80px;
    text-align: center;
}

.header_nav {
    width: 400px;
    display: flex;
    justify-content: space-between;
    color: #fff;
    text-align: center;
    margin-left: 400px;
}

.header_nav>div>div {
    display: inline-block;
    height: 45px;
    line-height: 45px;
    text-align: center;
    cursor: pointer;
    border-bottom: 3px solid transparent;
    position: relative;
    color: #fff;
}

.header_nav>div>div>span {
    height: 100%;
    display: inline-block;
    position: relative;
    z-index: 1;
}

.header_nav>div>div>i {
    display: inline-block;
    width: 8px;
    height: 8px;
    font-size: 20px;
    background: url('./../../image/triangle_index.png') no-repeat 0 -30px;
}

.header_nav>div>div:hover {
    /* border-bottom-color:  #465C31; */
    border-bottom: 4px solid #465C31;
}

.header_nav>div>div:hover i {
    background: url('./../../image/triangle_index.png') no-repeat 0 0px;
}

.header_nav>div>div>.list {
    display: none;
    box-sizing: border-box;
    width: 150%;
    padding: 15px 0;
    position: absolute;
    top: 50px;
    left: -25%;
    margin-left: 0;
    background: rgba(0, 0, 0, 0.3);
    border-radius: 20px;
    cursor: pointer;
    z-index: 2;
}

.header_nav>div>div>.list>span {
    display: inline-block;
    width: 100%;
    height: 50px;
    position: absolute;
    top: -50px;
    left: 0;
}

.header_nav>div>div>.list>div {
    height: 30px;
    line-height: 30px;
    color: #fff;
    /* text-align: left; */
    /* padding-left: 26px; */
}

.header_nav>div>div>.list>div:hover {
    background: rgba(0, 0, 0, 0.6);
}

.header_language {
    width: 118px;
    text-align: center;
    float: left;
    position: relative;
    font-size: 14px;
    /* display: none;  */
    /* 暂时隐藏语言 */

}

.header_language>.sho {
    width: 70px;
    border: 2px solid #fff;
    border-radius: 6px;
    height: 30px;
    line-height: 27px;
    font-size: 18px;
    text-align: center;
    cursor: pointer;
    top: 3px;
    color: #fff;
    /*以下下是要添加的PIE.htc代码*/
    position: relative;
    /*一定要加，否则不显示。注意：父类也要添加相同属性，否则会错位，下面会详细介绍*/
    border-radius: 6px;
    /*这个不能删，虽然IE8不支持这个属性，但是PIE.htc会用到*/
    -webkit-border-radius: 6px;
    /*以下这两个是PIE.htc设置圆角的属性*/
    -moz-border-radius: 6px;
    behavior: url("../../js/PIE-1.0.0/PIE.htc");
}

.header_language>div>i {
    display: inline-block;
    width: 8px;
    height: 8px;
    background: url(./../../img/triangle_index.png) no-repeat 0 -30px;
}

.header_language>.list {
    display: none;
    box-sizing: border-box;
    width: 122px;
    padding: 15px 0;
    position: absolute;
    top: 30px;
    left: -22px;
    margin-left: 0;
    background: rgba(0, 0, 0, 0.1);
    border-radius: 20px;
    cursor: pointer;
    z-index: 9;
    /*以下下是要添加的PIE.htc代码*/
    border-radius: 20px;
    /*这个不能删，虽然IE8不支持这个属性，但是PIE.htc会用到*/
    -webkit-border-radius: 20px;
    /*以下这两个是PIE.htc设置圆角的属性*/
    -moz-border-radius: 20px;
    behavior: url("../js/PIE-1.0.0/PIE.htc");
}

.header_language>div>.list>span {
    display: inline-block;
    width: 100%;
    height: 45px;
    position: absolute;
    top: -45px;
    left: 0;
}

.header_language>div>.list>div {
    height: 30px;
    line-height: 30px;
}

.header_language>div>.list>div:hover {
    background: rgba(0, 0, 0, 0.3);
}

.header_language>div>.list>div span {
    margin-right: 16px;
    color: #fff;
}

.a-link {
    color: #fff !important;
    text-decoration: none;
}

.a-link>span {
    display: inline-block;
    height: 45px;
    line-height: 45px;
}

.a-link:hover {
    color: #fff !important;
    text-decoration: none
}