header {
    width: 100%;
    padding: 10px 0;
    height: 80px;
    position: fixed;
    top: 0;
    left: 0;
    z-index: 99;
    background-color: #ffffff;
}
.height-height{
    height: 80px;
}

.header {
    height: 60px;
    line-height: 60px;
    background-color: #ffffff;
    display: flex;
    flex-direction: row;
    justify-content: space-between;
    align-items: center;
    position: relative;
}

.header .header-logo {
    display: flex;
    flex-direction: row;
    justify-content: flex-start;
    align-items: center;
    padding: 0 20px;
}
.header-list{
    width: 60%;
    max-width: 68%;
    padding: 0 20px;
    display: flex;
    justify-content: flex-end;
}

/* .header-logo img {
    max-width: 60px;
    max-height: 60px;
} */
.img1 {
    max-width: 300px;
}
.img2 {
    width: 37px;
}

.header .header-logo .icon {
    margin-right: 10px;
}

.header .header-logo .desc {
    line-height: normal;
}

/* .header .header-logo .desc .tit {
    font-size: 20px;
    font-weight: 600;
} */
.header .header-logo .desc .tit {
    font-size: 14px;
    font-weight: 600;
}
.header .header-logo .desc .txt {
    font-size: 12px;
}

.header .header-logo .desc .txt {
    font-size: 18px;
}

.nav {
    width:90%;
    /* float: left; */
    /* margin: 0 70px; */
    display: flex;
    justify-content: space-between;
    align-items: center;
}

.nav li {
	/* margin-right: 15px; */
    /* float: left; */
    /* width: 104px; */
    text-align: center;
    position: relative;
}
.nav li:last-child{
	margin-right: 0;
}

.nav li::after {
    content: "";
    display: block;
    position: absolute;
    bottom: -10px;
    left: 50%;
    transform: translate(-50%, 0);
    width: 30px;
    height: 2px;
    background: #fff;
}

.nav li.choice::after {
    background: #1086e5;
}

.nav li .v1 {
    display: block;
    font-size: 18px;
    text-transform: uppercase;
}

.nav li .sub {
    display: none;
    position: absolute; 
    top: 70px;
    left:50%;
	transform: translateX(-50%);
    border-radius: 0 0 12px 12px;
    overflow: hidden;
    z-index: 99;
    background: #fff;
	height: auto !important;
	width: 140px;
}

.nav li .sub a {
    display: block;
    font-size: 16px;
    color: #333;
    line-height: 38px;
    text-align: center;
    border-bottom: solid 1px #e4e4e4;
}

.nav li .sub a:last-child {
    border: none;
}

.nav li.on .v1,
.nav li:hover .v1 {
    color: #1086e5;
}

.nav li.choice .v1 {
    color: #1086e5;
}

.nav li .sub a:hover {
    color: #0d6fb8;
}

.header .menuBtn {
    display: none;
    position: absolute;
    top: 50%;
    left: 20px;
    transform: translate(0, -50%);
    width: 30px;
    height: 30px;
    cursor: pointer;
    transition: .3s;
    -ms-transition: .3s;
    -moz-transition: .3s;
    -webkit-transition: .3s;
    -o-transition: .3s
}

.header .menuBtn b::before {
    content: "";
    display: inline-block;
    position: absolute;
    left: -7px;
    top: 50%;
    transform: translate(0, -50%);
    width: 5px;
    height: 5px;
    border-radius: 50%;
    /* background-color: #0d6fb8; */
    background-color: #333;
}

.header .menuBtn b {
    display: block;
    height: 4px;
    /* background-color: #0d6fb8; */
    background-color: #333;
    margin: 4px;
    transition: .3s;
    -ms-transition: .3s;
    -moz-transition: .3s;
    -webkit-transition: .3s;
    -o-transition: .3s;
    position: relative;
}

.header .menuBtn.open b {
    display: none;
    margin: -5px 0 0;
    position: absolute;
    left: 0;
    top: 50%;
    width: 30px
}


.header .menuBtn.open b:first-child {
    display: block;
    -moz-transform: rotate(45deg);
    transform: rotate(45deg);
    -webkit-transform: rotate(45deg);
    -o-transform: rotate(45deg);
    -ms-transform: rotate(45deg)
}

.header .menuBtn.open b:last-child {
    display: block;
    -moz-transform: rotate(-45deg);
    transform: rotate(-45deg);
    -webkit-transform: rotate(-45deg);
    -o-transform: rotate(-45deg);
    -ms-transform: rotate(-45deg)
}

.header .menuBtn.open b::before {
    display: none;
}

main {
    width: 100%;
    overflow: hidden;
}

footer {
    background-color: #f2f3f5;
}

.footer {
    display: flex;
    flex-direction: column;
}

.footer .con {
    padding-top: 30px;
    display: flex;
    flex-direction: row;
    justify-content: space-between;
    align-items: flex-start;
}

.footer .con .footer-list {
    width: 55%;
    display: flex;
    flex-direction: row;
    justify-content: space-between;
    align-items: flex-start;
}

.footer .con .footer-list .link h3 {
    font-weight: 600;
    line-height: 45px;
    font-size: 14px;
}

.footer .con .footer-list .link a {
    display: block;
    font-size: 12px;
    line-height: 30px;
}

.footer .con .footer-contact {
    display: flex;
    flex-direction: column;
    justify-content: flex-start;
}

.footer .con .footer-contact .tit {
    font-weight: 600;
    line-height: 45px;
    font-size: 14px;
}

.footer .con .footer-contact .list {
    display: flex;
    flex-direction: column;
}

.footer .con .footer-contact .list .li {
    line-height: 30px;
}

.footer .con .footer-contact .list .li img {
    margin-right: 5px;
}

.footer .end {
    display: flex;
    flex-direction: row;
    justify-content: space-between;
    align-items: center;
    line-height: 60px;
}

.footer .end .brand {
    display: flex;
    flex-direction: row;
    justify-content: flex-start;
    align-items: center;
    font-size: 12px;
}

.footer .end .brand .desc {
    margin-right: 30px;
}

.footer .end .icons {
    display: flex;
    flex-direction: row;
    justify-content: flex-end;
    align-items: center;
}

.footer .end .icons img {
    margin-left: 10px;
}