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,
img,
ins,
kbd,
q,
s,
samp,
small,
strike,
sub,
sup,
tt,
var,
b,
u,
i,
center,
dl,
dt,
dd,
ol,
ul,
li,
fieldset,
form,
label,
legend,
caption,
tbody,
tfoot,
thead,
article,
aside,
canvas,
details,
embed,
figure,
figcaption,
footer,
header,
hgroup,
menu,
nav,
output,
ruby,
section,
summary,
time,
mark,
audio,
video {
    margin: 0;
    padding: 0;
    border: 0;
    font: inherit;
    color:#ffffff;
    box-sizing: border-box;
    vertical-align: baseline;
    font-family: 'Microsoft YaHei', 'ObjectivityBold','Objectivity', 'PingFang SC', 'Hiragino Sans GB', 'sans-serif';
}
@font-face {
    font-family: 'ObjectivityBold';
    src: url('../font/objectivity-bold-4.otf');

}
@font-face {
    font-family: 'Objectivity';
    src: url('../font/objectivity-medium-8.otf');

}
@font-face {
    font-family: 'ObjectivityLight';
    src: url('../font/objectivity-light-6.otf');

}
/* HTML5 display-role reset for older browsers */
article,
aside,
details,
figcaption,
figure,
footer,
header,
hgroup,
menu,
nav,
section {
    display: block;
}

body,
html {
    line-height: 1;
    overflow-x: hidden;
    background: #fff;
}

ol,
ul {
    list-style: none;
}

blockquote,
q {
    quotes: none;
}

blockquote:before,
blockquote:after,
q:before,
q:after {
    content: '';
    content: none;
}

table {
    border-collapse: collapse;
    border-spacing: 0;
}

a {
    text-decoration: none;
}
.menu_icon{
    display: none;
}

.header {
    width: 100%;
    height: 100px;
    background: #fff;
    position: fixed;
    top: 0;
    left: 0;
    display: flex;
    align-items: center;
    justify-content: space-between;
    padding: 0px 70px 0 160px;
    box-sizing: border-box;
    z-index: 10;
    border-bottom: 1px solid rgba(0, 0, 0, 0.1);
}

.header .menu {
    cursor: pointer;
    transition: all 0.5s ease-in-out;

}

.header .menu:hover {
    transform: scale(1.3);
}

.header .search {
    cursor: pointer;
    transition: all 0.5s ease-in-out;
}

.header .search:hover {
    transform: scale(1.3);
}

.header .logo {
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
}

.header .logo .title {
    font-size: 24px;
    color: #fff;
    margin-top: 10px;
    font-family: 'Source Han Serif';
}

.header_hide {
    display: none;

}

.header_show {
    display: block;
}

.menu_box {
    color: #fff;
    font-size: 16px;
    transition: all 0.5s linear;
    height: 100%;
}

.menu_box .title {
    font-size: 24px;
    margin-top: 20%;
    text-align: center;

}

.menu_box .close {
    position: absolute;
    top: 30px;
    right: 30px;
    cursor: pointer;
    transition: transform 0.3s ease-in-out;
    font-size: 20px;
    width: 30px;
    height: 30px;
    display: none;
}

.menu_box>ul {
    width: 100%;
    height: 100%;
    padding: 0 !important;
    display: flex;
    align-items: center;
}

.menu_box>ul>li {
    text-align: center;
    cursor: pointer;
    padding: 0 30px;
    box-sizing: border-box;
}

.menu_box>ul>li a {
    display: inline-block;
    color: #000;
    font-size: 16px;
    font-weight: bold;
    height: 100%;
    line-height: 100px;
    white-space: nowrap;

}

.menu_box>ul>.active a {
    color: #0c9e0d
}

.menu_box>ul>li:hover a {
    color: #0c9e0d
}

.header .right {
    display: flex;
    align-items: center;
    height: 100%;

}

.header .tel {
    display: flex;
    align-items: center;
    height: 100%;



}

.header .tel span {
    font-size: 20px;
    font-weight: bold;
    color: #0c9e0d;
    margin-left: 8px;
    white-space: nowrap;

}

.header .lang span {
    font-size: 16px;
    color: #666666;
    margin-left: 8px;
    white-space: nowrap;

}

.header .lang {
    display: flex;
    align-items: center;
    margin-left: 40px;
    position: relative;
    height: 100%;
    padding: 0 20px;
    box-sizing: border-box;
    z-index: 9;
    cursor: pointer;
}

.header .lang ul {
    position: absolute;
    top: 0px;
    left: 0;
    width: 100%;
    background: #fff;
    border: 1px solid #e7e9f2;
    padding: 20px;
    box-sizing: border-box;
    opacity: 0;
    transition: all 0.3s ease-in-out;
    z-index: -1;

}

.header .lang:hover ul {
    opacity: 1;
    top: 100px;
}

.header .lang ul li {
    height: 30px;
    width: 100%;
    text-align: center;
    opacity: 0;
    transition: all 0.3s ease-in-out;

}
.header .lang:hover ul li{
    opacity: 1;
}

.header .lang ul li a {
    color: #666666;
    font-size: 16px;

}
.footer {
    width: 100%;
    height: 100%;
    background: url('../images/footer_bg.png') no-repeat;
    background-size: cover;
    color: #fff;
    display: flex;
    flex-direction: column;
    justify-content: space-between;
    box-sizing: border-box;

}

.footer>a {
    margin: 0 auto;

}



.footer .top {
    display: flex;
    justify-content: space-between;
    align-items: flex-start;
    padding: 210px 160px 90px 160px;
    box-sizing: border-box;
}

.footer .top .left {
    color: #fff;
    font-size: 14px;
}

.footer .top .left .icon {
    display: flex;
    margin-top: 40px;
}

.footer .top .left .icon>div {
    margin-right: 20px;
}

.footer .top .right {
    display: flex;
    flex-direction: column;
    align-items: flex-start;
    justify-content: center;
    font-size: 12px;
    color: #fff;
}
.footer .top .right>div:nth-child(1) img{
    width:150px;
    height:150px;
}

.footer .top .left>div {
    margin-bottom: 26px;
    color: rgba(255, 255, 255, 1);


}

.footer .top .left>div span {
    color: #fff !important;


}

.footer .center {
    display: flex;

    align-items: flex-start;
    margin-left: 6%;

}

.footer .center ul {
    width: 220px;
}

.footer .center ul li {
    height: 44px;

}

.footer .center ul li a {
    color: rgba(255, 255, 255,1);
    font-size: 14px;
}

.footer .center ul li:nth-child(1) {
    height: 50px;
    position: relative;
    margin-bottom: 20px;
}

.footer .center ul li:nth-child(1)::after {
    position: absolute;
    bottom: 8px;
    content: '';
    left: 0;
    height: 1px;
    width: 30px;
    background: #fff;
}

.footer .center ul li:nth-child(1) a {
    font-size: 18px;
    font-weight: bold;
    color: #fff;
}

.footer>.top .right div span {
    font-size: 16px;
    color: #fff;
}

.footer .bottom {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 40px 160px;
    box-sizing: border-box;
    color: #fff;
    font-size: 14px;
    border-top: 1px solid rgba(255, 255, 255, 0.21)
}

.footer .bottom>div {
    display: flex;
    justify-content: space-between;
    align-items: center;
}

.footer .bottom a {
    color: #fff;
    opacity: 0.5;
}

.bgSwiper {
    height: 100%;
}

.bgSwiper img {
    height: 100%;
    width: 100%;
    object-fit: cover;
}