/* 头部 */
.header {
    background: #FFFFFF;
}

.header-box {
    height: 90px;
    box-sizing: border-box;
    padding: 10px 0;
}

.header-box-logo {
    float: left;
}

.header-box-right {
    float: right;
    display: flex;
    height: 100%;
    align-items: center;
}

.header-box-logo-title {
    max-width: 600px;
    height: 70px;
    font-size: 30px;
    font-weight: bold;
    color: #06A4ED;
    line-height: 35px;
    overflow: hidden;
}

.header-box-logo-title img{
    width: auto;
    height: 70px;
    max-width: 600px;
    cursor: pointer;
}

.header-box-right .search-box {
    width: 194px;
    height: 34px;
    border-radius: 2px 2px 2px 2px;
    opacity: 1;
    border: 1px solid #C4C4C4;
    float: left;

}

.header-box-right .search-box .search {
    width: calc(100% - 32px);
    border: none;
    height: 100%;
    font-size: 14px;
    font-weight: 400;
    line-height: 16px;
    padding-left: 16px;
    box-sizing: border-box;
    float: left;
}

.header-box-right .searchBtn {
    float: left;
    width: 32px;
    height: 32px;
    background: #F2F2F2;
    padding: 7px;
    box-sizing: border-box;
}

.LoginRegistrationBox {
    float: left;
    margin-left: 40px;
    display: none;
}

.LoginRegistrationBox>a {
    display: block;
    float: left;
    width: 60px;
    height: 34px;
    background: #F2F2F2;
    border-radius: 2px 2px 2px 2px;
    opacity: 1;
    border: 1px solid #C4C4C4;
    text-align: center;
    line-height: 34px;
    font-weight: 400;
    color: #333333;

}

.register {
    margin-right: 20px;
}

/* 导航 */
.nav-box {
    box-sizing: border-box;
    padding: 4px 0;
    height: 48px;
    background:var(--theme1-bg-color);

}

.nav-list>li {
    float: left;
    width: 120px;
    height: 40px;
    line-height: 40px;
    text-align: center;
    margin-left: 10px;
}

.nav-list li {
    cursor: pointer;
}

.nav-list>li.active,
.nav-list>li:hover {
    background: #FFFFFF;
    border-radius: 2px 2px 2px 2px;
}

.nav-list>li:hover .nav-subList {
    display: block;
}

.nav-list>li>a {
    font-weight: 400;
    color: #FFFFFF;
    font-size: 18px;
    display: inline-block;
    width: 100%;
    height: 100%;
}

.nav-list>li.active>a,
.nav-list>li:hover>a,
.nav-list .nav-subList li:hover>a {
    font-weight: 400;
    color: #06A4ED;
}

.nav-list .nav-subList {
    display: none;
    position: relative;
    z-index: 2;
    background-color: #fff;
    box-shadow: 0 2px 2px 0px rgb(230, 230, 230);
}

.nav-list .nav-subList li {
    width: 120px;
    height: 40px;
    line-height: 40px;
    text-align: center;
}

.nav-list .nav-subList li a {
    font-weight: 400;
    font-size: 18px;
    display: block;
}

.nav-list .nav-subList li:hover a {
    font-weight: 400;
    color: #06A4ED;
}

/* 底部 */
.footer {
    height: 283px;
    background: #434343;
    padding: 60px 0;
}

.footerList {
    text-align: center;
}

.footerItem {
    display: inline-block;
    width: 130px;
    box-sizing: border-box;
    text-align: center;
    font-size: 18px;
    font-weight: 400;
    color: #FFFFFF;
    line-height: 21px;
    position: relative;
}

.footerItem:not(:first-child):before {
    content: '';
    position: absolute;
    width: 1px;
    height: 15px;
    background-color: rgb(175, 175, 175);
    top: 50%;
    left: 0;
    transform: translate(0, -50%);
}

.footerItem a {
    font-size: 18px;
    font-weight: 400;
    color: #FFFFFF;
}

.footer-line {
    background-color: #555555 !important;
    margin-top: 40px;
}

.footerContentBox {
    text-align: center;
}

.footerContent {
    margin-top: 30px;
    margin-bottom: 30px;
}

.footerContent span {
    margin-right: 30px;
    font-size: 14px;
    font-weight: 400;
    color: #FFFFFF;
    line-height: 16px;
}

.footerContent span:last-child {
    margin-right: 0;
}