@charset "utf-8";


/* 共通样式 */
blockquote, body, button, caption, dd, div, dl, dt, fieldset, figure, form, h1, h2, h3, h4, h5, h6, hr, html, input, legend, li, menu, ol, p, pre, table, td, textarea, th, ul {
    margin: 0;
    padding: 0
}

body, button, dd, div, dl, dt, input, li, ol, p, ul {
    box-sizing: border-box;
    -ms-box-sizing: border-box;
    -o-box-sizing: border-box
}

body, html {
    width: 100%;
    height: 100%
}

a {
    outline: 0;
    background: 0 0;
    text-decoration: none !important;
    /*-webkit-tap-highlight-color: transparent;*/
}

div, img, a, input[type='button'], input[type='submit'], a:after {
    transition: all linear 0.3s;
}

em, i {
    font-style: normal
}

img {
    outline: 0;
    border: none;
    max-width: 100%
}

li, ol, ul {
    list-style: none outside none
}

a, button, input, textarea {
    outline: 0
}

select::-ms-expand {
    display: none
}

input[type=button], input[type=reset], input[type=submit] {
    -webkit-appearance: none
}

textarea {
    resize: none;
    -webkit-appearance: none
}

button {
    border-radius: 0
}

select {
    outline: 0;
    border: none;
    background: 0 0;
    -webkit-appearance: none;
    appearance: none;
    -moz-appearance: none
}

/*a标签动画效果增加此class*/
.common-Toast {
    position: fixed;
    top: 50%;
    left: 50%;
    max-width: 60%;
    width: auto;
    padding: 14px;
    background: rgba(0, 0, 0, .5);
    font-style: normal;
    font-size: 18px;
    text-align: center;
    color: #fff;
    z-index: 99999;
    border-radius: 5px;
    display: none
}

/*动画效果*/
@keyframes scroll-up {
    0% {
        transform: translateY(0);
    }
    50% {
        transform: translateY(-50%);
    }
    100% {
        transform: translateY(0);
    }
}

/*Nav*/
.common-nav {
    width: 100%;
    height: 152px;
    background: rgb(30, 30, 30);
}

.navArea {
    width: 100%;
    height: 31px;
    padding-left: 84px;
    padding-right: 93px;
    position: absolute;
    top: 60px;
    left: 50%;
    transform: translateX(-50%);
    z-index: 10;
    display: flex;
    align-items: center;
    justify-content: space-between;
}

/*logo*/
.navArea .logo {
    display: block;
    width: 129px;
    height: 31px;
    /*border: solid 1px blue;*/
}

/*menu*/
.navArea .menu {
    width: 702px;
    display: flex;
    align-items: center;
    justify-content: space-between;
    font-size: 20px;
    line-height: 29px;
    text-align: left;
}

.navArea .menu a {
    /*width: 100px;*/
    display: inline-block;
    height: 29px;
    font-weight: 200;
    color: rgb(255, 255, 255);
    text-rendering: optimizeLegibility;
}

.navArea .menu a:hover, .navArea .menu a.active {
    font-weight: 900;
    transition: all linear 0s;
    color: #B81E33;
}

.navArea .menu span {
    width: 146px;
    text-align: right;
    color: rgb(255, 255, 255);
}

.navArea .menu span i {
    float: left;
}

/*footer*/
.common-foot {
    background: rgb(30, 30, 30);
    width: 100%;
    height: auto;
    padding: 81px 95px;
    display: flex;
    align-items: flex-start;
    justify-content: space-between;
}

.common-foot .en{
    font-family: Poppins-Bold;
}

.common-foot .logo {
    display: inline-block;
    width: 39%;
}

.common-foot .info {
    display: inline-block;
    color: rgb(255, 255, 255);
    font-size: 20px;
    font-weight: 400;
    line-height: 40px;
    letter-spacing: 0px;
    text-align: left;
    width: 20%;
}

.common-foot .addr {
    display: inline-block;
    color: rgb(255, 255, 255);
    font-size: 20px;
    font-weight: 400;
    line-height: 40px;
    letter-spacing: 0px;
    text-align: left;
    width: 35%;
}