/* 通用样式 */
*{
    margin: 0;
    padding: 0;
}
html, body {
    width: 100%;margin: 0;padding: 0;
}
li {
    list-style: none;
}
a {
    text-decoration: none;
}
img {
    vertical-align: top;
}
input {
    outline: none;
}


/* 头部 */
.Dbox {
    width: 100%;height: 100%;
}
.head {
    /* height: 944px; */
    /* width: 100vw;
    height: 100%; */
    /* background: url(../images/banner1.png) no-repeat; */
    background-position: center center;
    /* background-size: 100% 100%; */
    overflow: hidden;
}

/* 中英文切换 */
.language {
    width: 1170px;
    margin: auto;
    height: 40px;
}
.language .lang {
    float: right;
    color: #f1f1f1;
    font-size: 13px;
    margin: 10px 0;
}
.language .lang a{
    color: #f1f1f1;
}
.language .lang .cn {
    margin-right: 20px;
}


.nav {
    background: url(../images/navbjt.png) no-repeat;
    height: 118px;
    background-position: center center;
    /* background-size: 100% 100%; */
    overflow: hidden;
    display: flex;
    align-items: center;
}
.nav-c {
    display: flex;
    justify-content: space-between;
    align-items: center;
    width: 1300px;
    margin: auto;
}
.nav-c .ll {
    display: flex;
    align-items: center;
}
.nav-c .ll .logozi {
    margin-left: 15px;
    position: relative;
}
.nav-c .ll .logozi .p1 .l{
    font-size: 30px;
    font-weight: bold;
    color: #2eb872;
    margin-right: 33px;
}
.nav-c .ll .logozi .p1 .dian{
    font-size: 51px;
    font-weight: bold;
    position: absolute;
    top: -27px;
    left: 132px;
}
.nav-c .ll .logozi .p1 .r{
    font-size: 30px;
    font-weight: bold;
    color: #1f1f1f;
}
.nav-c .ll .logozi .p2 {
    color: #666;
}


.nav-c .navzi {
    display: flex;
    align-items: center;
}
.nav-c ul li a{
    display: block;
    color: #ffffff;
    font-size: 19px;
    padding-bottom: 12px;
    cursor: pointer;
    margin-left: 50px;
    position: relative;
    overflow: hidden;
}

.nav-c ul li a:after {
    content:"";
    width: 100%;
    height: 3px;
    background-color: #ffffff;
    position: absolute;
    bottom: 0px;
    left: -100%;
    transition: 0.5s ease-out;
}

.nav-c ul li a:hover:after{
    left: 0%;
}
.nav-c ul li a.show:after {
    left: 0%;
}
.nav-r {
    color: #ffffff;
    font-size: 18px;
    font-weight: bold;
}
.nav-r img{
    height: 24px;
}



/* 适应1200-1400的屏幕 */
@media screen and (min-width:1200px) and (max-width:1400px) {
    .nav-c {
        width: 100%;
        padding: 0 5px;
    }
}
