@charset "UTF-8";

html {
    font-size: 14px;
}

:root {
    --theme-color: #002fa7;
    --text-color: #333;
    --light-color: #e6e6e6;
    --center-width: 1200px;
    --animate-delay: 0.5s;
}

* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

body {
    min-width: 1710px;
    background-color: #fff;
    font-family:
        PingFang SC,
        Arial,
        Microsoft YaHei,
        sans-serif;
    color: var(--text-color);
    overflow-x: hidden;
}

a {
    color: var(--text-color);
    text-decoration: none;
}

a:hover {
    color: var(--theme-color);
}

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

em,
i {
    font-style: normal;
    vertical-align: middle;
}

textarea,
input {
    border: 1px solid var(--light-color);
    outline: none;
}

span,
img {
    vertical-align: middle;
}

button {
    background-color: transparent;
    outline: none;
    border: 0;
}

.primary-btn {
    background-color: #f54f4f;
    color: #fff;
    cursor: pointer;
    height: 44px;
    line-height: 44px;
    overflow: hidden;
    text-overflow: ellipsis;
    white-space: nowrap;
    width: 240px;
}

.img-auto {
    width: 100%;
}

.img-resize-cover {
    width: 100%;
    height: 100%;
    object-fit: cover;
}

.container {
    width: 1200px;
    min-width: 1200px;
    margin: 0 auto;
    position: relative;
}

.header {
    width: 100%;
    height: 120px;
    background-color: #000;
    color: #fff;
}

.header a {
    color: #fff;
}

.header .container {
    display: flex;
}

.header .logo {
    position: absolute;
    left: -200px;
    width: 122px;
    height: 120px;
    line-height: 120px;
}

.header .logo img {
    width: 100%;
    max-height: 100%;
}

.nav-list {
    display: flex;
}

.nav-list>li {
    width: 110px;
    height: 120px;
    margin-left: 2px;
    position: relative;
    z-index: 2;
}

.nav-list>li>a {
    width: 100%;
    height: 100%;
    display: inline-block;
    line-height: 120px;
    text-align: center;
    border-radius: 10px;
}

.nav-list>li.active>a,
.nav-list>li>a:hover {
    background-color: var(--theme-color);
}

.sub-menu {
    position: absolute;
    bottom: -50px;
    left: 0;
    background-color: var(--theme-color);
    width: 120px;
    display: none;
}

.sub-menu li a {
    display: block;
    height: 40px;
    text-align: center;
    line-height: 40px;
    position: relative;
    transition: all 0.3s ease;
}

.sub-menu li:nth-child(1) a::before {
    position: absolute;
    content: "";
    top: -20px;
    left: 50px;
    border-width: 10px;
    border-style: solid;
    border-color: transparent transparent var(--theme-color) transparent;
}

.sub-menu li:nth-child(1) a:hover::before {
    border-color: transparent transparent #fff transparent;
}

.sub-menu li a:hover {
    color: var(--theme-color);
    background-color: #fff;
}

.header-search {
    width: 342px;
    margin-left: 50px;
}

.web-name {
    font-size: 24px;
    line-height: 120px;
    position: absolute;
    right: -200px;
}

.header-search {
    margin-top: 43px;
}

.header-search input {
    width: 188px;
    background: #fff;
    height: 34px;
    vertical-align: middle;
    padding: 0 5px;
}

.header-search .search-btn {
    display: inline-block;
    width: 75px;
    height: 34px;
    background: var(--theme-color);
    color: #fff;
    vertical-align: middle;
    text-align: center;
    margin-left: -4px;
    line-height: 34px;
}

.icon-search {
    display: inline-block;
    width: 30px;
    height: 30px;
    line-height: 30px;
    margin-top: 5px;
    background: url("../images/vbg01.png") -1988px -270px;
}

.footer {
    background-color: #141414;
    padding: 20px 0;
    color: #666;
    text-align: center;
}

.footer a {
    color: #666;
}

.footer-info {
    text-align: left;
    display: flex;
    margin-top: 40px;
    justify-content: space-between;
}

.footer-contact b {
    font-size: 20px;
    display: block;
    margin-bottom: 14px;
}

.footer-contact p {
    line-height: 2;
    font-size: 20px;
}

.footer-links {
    font-size: 16px;
    padding-top: 12px;
    border-top: 1px solid #666;
}

.footer-links a:hover {
    color: var(--theme-color);
}

.footer-links a {
    padding: 0 5px;
}

.copry-no {
    font-size: 16px;
    margin-top: 14px;
}


.footer-r {
    width: 434px;
    height: 288px;
    background-color: #fff;
}

.footer-r h5 {
    height: 46px;
    color: var(--theme-color);
    border-bottom: 1px solid #ddd;
    line-height: 46px;
    position: relative;
    font-size: 16px;
    padding-left: 20px;
}

.footer-r h5::before {
    content: "";
    position: absolute;
    left: 7px;
    top: 12px;
    width: 5px;
    height: 20px;
    background-color: #002fa7;
}

#bdMap {
    padding: 5px;
    height: 242px;
}

.top {
    position: fixed;
    width: 26px;
    height: 48px;
    right: 57px;
    bottom: 50px;
    cursor: pointer;
    z-index: 98;
    background: url('../images/top.png');
}

.top:hover {
    background: url('../images/top_hover.png');
}

.imageEffetc_magnifier {
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    opacity: 0;
    transition: all .3s ease;
}

.popup {
    position: fixed;
    top: 0;
    left: 0;
    bottom: 0;
    right: 0;
    z-index: 99;
}

.popup .mask {
    position: absolute;
    top: 0;
    left: 0;
    bottom: 0;
    right: 0;
    z-index: 1;
    background-color: rgba(0, 0, 0, .5);
}

.popup .popup-box {
    position: absolute;
    left: 50%;
    top: 50%;
    transform: translate(-50%, -50%);
    width: 893px;
    /* height: 588px; */
    background-color: #fff;
    overflow-y: auto;
    z-index: 2;
}

.popup .icon-close {
    position: absolute;
    right: 20px;
    top: 10px;
    font-size: 30px;
    cursor: pointer;
    font-family: sans-serif;
}

.required {
    padding-left: 15px;
    color: #ff0000;
    font-size: 24px;
    font-weight: normal;
}

.aside {
    position: fixed;
    right: 0;
    bottom: 50%;
    z-index: 98;
    transform: translateY(-50%);
}

.aside .aside-item {
    width: 146px;
    height: 48px;
    background-color: var(--theme-color);
    color: #fff;
    padding-left: 10px;
    position: absolute;
    top: 0;
    right: -104px;
    border-radius: 5px;
    cursor: pointer;
    display: flex;
    align-items: center;
    transition: all .3s ease;
}

.aside .aside-item:hover {
    right: 0;
}

.aside .aside-item:nth-child(1) {
    top: 0;
}

.aside .aside-item:nth-child(2) {
    top: 50px;
}

.support-box {
    width: 117px;
    position: absolute;
    left: -130px;
    top: -15px;
    padding: 15px;
    border-radius: 8px;
    background-color: #fff;
    text-align: center;
    cursor: pointer;
    display: none;
}

.support-box::before {
    position: absolute;
    content: "";
    top: 50%;
    right: -20px;
    border-width: 10px;
    border-style: solid;
    border-color: transparent transparent transparent #fff;
    transform: translateY(-50%);
}

.aside .aside-item:hover .support-box {
    display: block;
}

.support-box span {
    color: #333;
}

.support-box div {
    padding-top: 2px;
    color: #666;
}