﻿/*
    头部
*/
.header {
    position: fixed;
    left: 0;
    top: 0;
    width: 100%;
    height: 60px;
    background: #fff;
    z-index: 9;
}

.header .header_container {
    display: flex;
    justify-content: space-between;
    align-items: center;
}

.header .header_left {
    display: flex;
    align-items: center;
}

.header .header_left .pic_box {
    display: flex;
    align-items: center;
    padding-left: 20px;
}

.header .header_left .pic_box .logo {
    width: 142px;
    height: 47px;
    display: block;
}

.header .header_left .pic_box .logo img {
    width: 100%;
    height: 100%;
    display: block;
}

.header .header_left .pic_box .image {
    width: 40px;
    height: 60px;
    background: url(../images/header_img.png) no-repeat center;
    background-size: cover;
}

.header .header_left .pic_box .search {
    width: 200px;
    height: 60px;
    padding: 0 10px;
    background: #F7F7F7;
    display: flex;
    align-items: center;
}

.header .header_left .pic_box .search .icon {
    width: 24px;
    height: 24px;
    background: url(../images/header_search.png) no-repeat center;
    background-size: cover;
    margin-right: 7px;
}

.header .header_left .pic_box .search .title {
    font-size: 18px;
    color: #CACACA;
}

.header .header_left .text_box {
    margin-left: 15px;
    width: 100px;
}

.header .header_left .text_box .title {
    font-size: 18px;
    color: #999999;
    line-height: 25px;
    display: inline-block;
    width: 80px;
}

.header .header_left .text_box .title:hover {
    color: #1A1A1A;
}

.header .header_left .text_box .title.active {
    color: #1A1A1A;
}


.header .header_right {
    display: flex;
    align-items: center;
}

.header .header_right .menu {
    display: flex;
    align-items: center;
}


.header .header_right .menu .item {
    position: relative;
    margin-left: 30px;
}

.header .header_right .menu .item .title {
    font-size: 18px;
    color: #999999;
    line-height: 24px;
    padding: 18px 0;
    display: inline-block;
    width: 90px;
}

.header .header_right .menu .item:hover .title {
    color: #1A1A1A;
    font-weight: bold;
}

.header .header_right .menu .item.active .title {
    color: #1A1A1A;
    font-weight: bold;
}

.header .header_right .menu .item .subNav {
    position: absolute;
    left: -20px;
    top: 42px;
    box-shadow: 0px 0px 20px 0px rgba(0, 0, 0, 0.16);
    width: 235px;
    height: auto;
    background: #FFFFFF;
    border-radius: 16px;
    transition: all 0.8s;
    display: none;
}

.header .header_right .menu .item:hover .subNav {
    display: block;
}

.header .header_right .menu .item .subNav .subNav_icon {
    position: absolute;
    left: 64px;
    top: -28px;
    width: 0;
    height: 0;
    border-top: 14px solid transparent;
    border-left: 14px solid transparent;
    border-right: 14px solid transparent;
    border-bottom: 14px solid #fff;
}


.header .header_right .menu .item .subNav_con {
    padding: 22px 32px 0;
    position: relative;
    z-index: 1;
    box-sizing: border-box;
    display: flex;
    flex-wrap: wrap;
    justify-content: space-between;
    align-items: center;
}

.header .header_right .menu .item .subNav .subNav_con .m_link {
    display: inline-block;
    padding: 0 0 20px;
    font-size: 14px;
    color: #999999;
}

.header .header_right .menu .item .subNav .subNav_con .m_link:nth-child(odd) {
    margin-right: 30px;
}

.header .header_right .menu .item .subNav .subNav_con .m_link:hover {
    color: #653091;
}

.header .header_right .phone_box {
    display: flex;
    align-items: center;
    background: #653091;
    height: 60px;
    padding: 0 28px;
    margin-left: 10px;
}

.header .header_right .phone_box .phone {
    font-size: 16px;
    color: #FFFFFF;
    line-height: 22px;
}

.header .header_right .phone_box .line {
    width: 1px;
    height: 9px;
    background: #FFFFFF;
    margin: 0 6px;
}

/*
    底部
*/

.footer {
    width: 100%;
    height: auto;
    background: #242424;
}

.footer .footer_container_con {
    max-width: 1660px;
    width: 100%;
    height: auto;
    margin: 0 auto;
}

.footer .footer_top {
    display: flex;
    justify-content: center;
    align-items: center;
    padding: 70px 0px;
    border-bottom: 1px solid #848484;
}

.footer .footer_top .pic_box {}

.footer .footer_top .pic_box .box {
    display: flex;
    align-items: center;
    padding: 16px 0;
}

.footer .footer_top .pic_box .box .icon {
    width: 36px;
    height: 36px;
    margin-right: 10px;
}

.footer .footer_top .pic_box .box .icon1 {
    background: url("../images/footer_icon1.png") no-repeat center;
    background-size: cover;
}

.footer .footer_top .pic_box .box .icon2 {
    background: url("../images/footer_icon2.png") no-repeat center;
    background-size: cover;
}

.footer .footer_top .pic_box .box .icon3 {
    background: url("../images/footer_icon3.png") no-repeat center;
    background-size: cover;
}

.footer .footer_top .pic_box .box .title {
    font-size: 14px;
    color: #FFFFFF;
}

.footer .footer_top .list {
    display: flex;
    align-items: flex-start;
    margin-left: 500px;
}

.footer .footer_top .list li {
    margin-bottom: 15px;
    margin-left: 80px;
}

.footer .footer_top .list li .title {
    font-size: 14px;
    color: #FFFFFF;
    line-height: 40px;
}

.footer .footer_top .list li p {
    display: flex;
    flex-direction: column;
    justify-content: flex-start;
    align-items: flex-start;
}

.footer .footer_top .list li div {
    display: flex;
    align-items: flex-start;
}

.footer .footer_top .list li div p {
    margin-right: 30px;
}

.footer .footer_top .list li p a {
    font-size: 14px;
    color: #696969;
    margin-top: 20px;
}

.footer .footer_top .list li p a:hover {
    color: #fff;
}

.footer .footer_bottom {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 50px 128px 50px;
}

.footer .footer_bottom .prev {
    font-size: 16px;
    color: rgba(255, 255, 255, 0.5);
}

.footer .footer_bottom .prev a {
    color: rgba(255, 255, 255, 0.5);
}

.footer .footer_bottom .prev a:hover {
    color: #fff;
}

.footer .footer_bottom .xx {
    display: flex;
    align-items: center;
}

.footer .footer_bottom .xx:hover .title {
    color: #fff;
}

.footer .footer_bottom .xx img {
    width: 20px;
    height: 20px;
    display: block;
    margin-right: 6px;
}

.footer .footer_bottom .xx .title {
    font-size: 16px;
    color: rgba(255, 255, 255, 0.5);
}

/* 1500 */
@media screen and (max-width: 1500px) {
    /*
    头部
*/

    .header .header_left .pic_box {
        padding-left: 0;
    }

    .header .header_left .pic_box .logo {
        width: 120px;
        height: 36px;
        display: block;
    }

    .header .header_left .pic_box .image {
        width: 35px;
        height: 60px;
    }

    .header .header_left .pic_box .search {
        width: 180px;
        height: 60px;
        padding: 0 10px;
    }

    .header .header_left .pic_box .search .icon {
        width: 22px;
        height: 22px;
    }

    .header .header_left .pic_box .search .title {
        font-size: 16px;
    }

    .header .header_left .text_box {
        margin-left: 10px;
    }

    .header .header_left .text_box .title {
        font-size: 16px;
        line-height: 25px;
    }

    .header .header_right .menu .item {
        margin-left: 10px;
    }

    .header .header_right .menu .item .title {
        font-size: 16px;
        line-height: 24px;
        padding: 18px 0;
        display: inline-block;
        width: 64px;
    }
    .header .header_right li:first-child{
        width: 32px;
    }

    .header .header_right .menu .item .subNav {
        left: -20px;
        top: 42px;
        box-shadow: 0px 0px 20px 0px rgba(0, 0, 0, 0.16);
        width: 200px;
        height: auto;
        border-radius: 16px;
    }

    .header .header_right .menu .item .subNav .subNav_icon {
        left: 56px;
        top: -20px;
        width: 0;
        height: 0;
        border-top: 10px solid transparent;
        border-left: 10px solid transparent;
        border-right: 10px solid transparent;
        border-bottom: 10px solid #fff;
    }

    .header .header_right .menu .item .subNav_con {
        padding: 16px 22px 0;
    }

    .header .header_right .menu .item .subNav .subNav_con .m_link {
        padding: 0 0 16px;
        font-size: 13px;
    }

    .header .header_right .menu .item .subNav .subNav_con .m_link:nth-child(odd) {
        margin-right: 20px;
    }

    .header .header_right .phone_box {
        padding: 0 20px;
        margin-left: 10px;
    }

    .header .header_right .phone_box .phone {
        font-size: 16px;
        line-height: 22px;
    }

    /*
    底部
*/

    .footer .footer_container_con {
        max-width: 1200px;
    }

    .footer .footer_top {
        padding: 40px 0px;
    }

    .footer .footer_top .pic_box .box {
        display: flex;
        align-items: center;
        padding: 12px 0;
    }

    .footer .footer_top .pic_box .box .icon {
        width: 30px;
        height: 30px;
        margin-right: 10px;
    }

    .footer .footer_top .list {
        display: flex;
        align-items: flex-start;
        margin-left: 400px;
    }

    .footer .footer_top .list li {
        margin-bottom: 12px;
        margin-left: 60px;
    }

    .footer .footer_top .list li .title {
        font-size: 14px;
        color: #FFFFFF;
        line-height: 32px;
    }

    .footer .footer_top .list li div p {
        margin-right: 30px;
    }

    .footer .footer_top .list li p a {
        font-size: 14px;
        margin-top: 16px;
    }

    .footer .footer_bottom {
        padding: 30px 68px 30px;
    }

    .footer .footer_bottom .prev {
        font-size: 14px;
    }

    .footer .footer_bottom .xx .title {
        font-size: 14px;
    }
}