.top-nav {
    position: fixed;
    top: 0;
    left: 0;
    z-index: 10;
    width: 100%;
    height: 64px;
    overflow: hidden;
    background-color: rgba(0, 0, 0, 0);
    transition: 300ms;
    color: #fff;
}

.top-nav.white {
    background-color: #fff;
    color: #555;
}

.top-nav.hidden {
    height: 0;
    box-shadow: 0 0 3px 1px #eee;
}

.top-nav.actived {
    height: 600px;
    box-shadow: 0 0 3px 1px #eee;
    z-index: 100;
}

.top-nav:hover {
    background-color: #fff;
    color: #555;
}

.top-nav-wrapper {
    width: 100%;
    height: 64px;
    font-weight: 500;
}

.top-nav.actived>.top-nav-wrapper {
    border-bottom: solid 1px #eee;
}

.top-nav-list {
    width: 100%;
    height: 64px;
    max-width: 1200px;
    margin: 0 auto;
    display: flex;
    align-items: center;
}

.top-nav-item {
    width: 100px;
    height: 100%;
    position: relative;
    display: flex;
    justify-content: center;
    align-items: center;
    transition: 300ms;
    box-sizing: border-box;
    cursor: pointer;
}

.top-nav-item:hover::after {
    content: '';
    position: absolute;
    bottom: 0;
    left: 0;
    width: 100%;
    height: 2px;
    background-color: #555;
}

.top-nav-logo {
    width: 50px;
    height: 50px;
    margin-right: 40px;
}

.top-nav-logo h1 {
    width: 100%;
    height: 100%;
}

.top-nav-logo img {
    height: 100%;
}

.top-nav-end {
    text-align: right;
    flex: 1;
    font-size: 1.2em;
    font-weight: bold;
    text-decoration: none !important;
}

.top-nav-content {
    width: 100%;
    max-width: 1200px;
    margin: 0 auto;
    height: 536px;
    display: flex;
}

.top-nav-content.style1>.left {
    flex: 1;
    padding: 40px 92px;
    box-sizing: border-box;
    display: flex;
    flex-direction: column;
    justify-content: flex-start;
    align-items: center;
}

.top-nav.actived .top-nav-content.style1>.left {
    box-shadow: 10px 0 10px -5px #ededed;
}

.top-nav-content.style1>.right {
    flex: 7;
}

.top-nav-content.style1>.right>.info {
    padding: 40px 92px;
    line-height: 2;
    box-sizing: border-box;
}

.top-nav-content.style1>.right img {
    width: 100%;
    height: 328px;
    padding: 0 92px;
    box-sizing: border-box;
}

.top-nav-content.style2 {
    display: flex;
    padding: 20px 0;
    box-sizing: border-box;
}

.top-nav-content.style2>.content-col {
    flex: 1;
    box-sizing: border-box;
    display: flex;
    flex-direction: column;
    border-right: solid 1px #eee;
}

.top-nav-content.style2>.content-col:last-child {
    border-right: none;
}

.top-nav-content.style2>.content-col>.item {
    padding: 20px !important;
    /* flex: 1;
    box-sizing: border-box;
    display: flex;
    justify-content: center;
    align-items: flex-start; */
    border-bottom: solid 1px #eee;
}

.top-nav-content.style2>.content-col>.item:last-child {
    border-bottom: none;
}

.top-nav-content.style2>.content-col>.item img {
    width: 100px;
    margin-right: 20px;
    margin-top: 46px;
    flex-shrink: 0;
}

.top-nav-content.style2>.content-col>.item>.item-info {
    width: 50%;
    height: 100%;
    float: left;
}

.sub-nav-list-box {
    width: 100%;
    display: flex;
    justify-content: space-between;
}

.sub-nav-list {
    flex: 1;
    display: flex;
    flex-direction: column;
}

.sub-nav-list h5 {
    margin-bottom: 20px;
}

.sub-nav {
    width: 100%;
    padding: 6px 0;
}

.sub-nav:hover {
    text-decoration: underline;
}


/* new-add */

.newStyleOne {
    padding: 0 !important;
    padding-bottom: 15px !important;
    padding-left: 20px !important;
}

.newStyle {
    padding: 0 !important;
    padding-bottom: 15px !important;
    padding-top: 20px !important;
    padding-left: 20px !important;
}

.no-bottom p {
    margin-bottom: 0;
    cursor: pointer;
}