/**
风格配置
*/
.header-container {
    background: url('../img/top.png') no-repeat;
    background-size: 100% 100%;
}

.header-logo {
    width: 100%;
    height: 150px;
}

.header-logo .top-tit {
    width: 1200px;
    margin: 0 auto;
    display: flex;
    align-items: center;
}

.header-logo .top-title {
    width: 718px;
    height: 150px;
    background: url('../img/top-title.png') no-repeat;
    background-size: 100% 100%;
}

.header-nav {
    width: 100%;
    position: relative;
    display: flex;
    background: rgba(19, 102, 193, 0.6);
    box-shadow: 0px 2px 6px 1px rgba(0, 0, 0, 0.1);
}

.header-nav .nav {
    width: 1260px;
}

.header-nav .ul {
    width: 100%;
    display: flex;
}

.header-nav .li {
    flex: 1;
    position: relative;
    font-size: 18px;
    height: 64px;
    display: flex;
    align-items: center;
    justify-content: center;
    color: #20130a;
    user-select: none;
    cursor: pointer;
    text-align: center;
}

.header-nav .li .title {
    color: #fff;
    display: inline-block;
    line-height: 1;
}

.header-nav .li:hover .hover-active {
    display: block;
    background-image: linear-gradient(0deg, #4fb8f9, #2482e9 90%);
}

.header-nav .li-active .title {
    font-size: 20px;
    color: #1a63be;
    position: relative;
    padding: 10px 16px;
    background-color: #fff;
    border-radius: 7px;
    display: flex;
    align-items: center;
    justify-content: center;
    white-space: nowrap;
}

.header-nav .li-active .title::before {
    content: '';
    display: inline-block;
    width: 16px;
    height: 18px;
    background: url('../img/acttit.png') no-repeat;
    /*position: absolute;*/
    /*left: 20px;*/
    /*top: 50%;*/
    /*transform: translateY(-50%);*/
    margin-right: 10px;
}

.header-nav .hover-active {
    position: absolute;
    width: 100%;
    top: 100%;
    z-index: 100;
    display: none;
    padding: 10px 0;
    box-sizing: border-box;
}

.header-nav .hover-active::before {
    content: '';
    display: inline-block;
    width: 100%;
    height: 2px;
    background-color: #1a63be;
    position: absolute;
    left: 0;
    top: -1px;
}

.header-nav .hover-active::after {
    content: '';
    display: inline-block;
    width: 24px;
    height: 16px;
    background: url('../img/box-tip.png') no-repeat;
    background-size: cover;
    position: absolute;
    left: 50%;
    transform: translateX(-50%);
    top: -15px;
}

.header-nav .hover-active .text-box {
    padding: 6px 0;
    line-height: 1.5;
    color: #fff;
    transition: all 0.1s ease;
    border: 1px solid transparent;
}

.header-nav .hover-active .text-box:hover {
    border-bottom: 1px solid #fff;
}

.header-nav .hover-active .hover-two {
    border-bottom: 1px solid #fff;
}

/** 喜庆风格 */


.header-theme_joyous .header-container{
    background-image: url(../img/top2.png);
}

.header-theme_joyous .header-logo .top-title {
    background-image: url('../img/top-title2.png');
}

.header-theme_joyous .header-nav {
    background-color: rgba(195, 16, 35, 0.6);
}

.header-theme_joyous .header-nav .li:hover .hover-active {
    display: block;
    background-image: linear-gradient(0deg, #fd777e, #df3934 90%);
}

.header-theme_joyous .header-nav .li-active .title {
    color: #df3934;
}

.header-theme_joyous .header-nav .li-active .title::before {
    background-image: url('../img/acttit2.png');
}

.header-theme_joyous .header-nav .hover-active::before {
    background-color: #b10013;
}

.header-theme_joyous .header-nav .hover-active::after {
    background-image: url('../img/box-tip2.png');
}