* {
    margin: 0;
    padding: 0;
}

a {
    text-decoration: none;
}

.header {
    position: fixed;
    top: 0;
    left: 0;
    right: 0;
    z-index: 999;
    display: flex;
    align-items: center;
    width: 100%;
    height: 1.2rem;
    background: #4492C0;
}

.header .logo {
    width: 2.67rem;
    margin-left: 2.6rem;
}

.header .headerNav {
    display: flex;
    margin-left: 0.72rem;
    height: 100%;
    font-family: Microsoft YaHei, Microsoft YaHei;
    font-size: 0.16rem;
    color: #FFFFFF;
}

.header .headerNav .headerItem {
    margin-right: 0.25rem;
    width: 1rem;
    height: 100%;
    box-sizing: border-box;
}

.headerNav .headerItem .ItemOne {
    display: flex;
    align-items: center;
    justify-content: center;
    height: 100%;
    width: 100%;
    color: #fff;
    font-size: 0.18rem;
    box-sizing: border-box;
}

.header-active {
    border-top: 0.08rem solid #29C0CC;
    padding-bottom: 0.08rem;
    background: #31779F;
    font-weight: bold;
}

.header .headerNav .headerItem:hover {
    border-top: 0.08rem solid #29C0CC;
    padding-bottom: 0.08rem;
    background: #31779F;
    font-weight: bold;
}

.headerNav .headerItem .ItemTwo {
    display: none;
    width: 2.03rem;
    position: fixed;
    top: 1.2rem;
    padding-bottom: 0.18rem;
    padding-left: 0.18rem;
    border-bottom: 0.08rem solid #29C0CC;
    background: #FFFFFF;
    font-weight: 400;
    box-sizing: border-box;
}

.header .headerNav .headerItem:nth-child(2) .ItemTwo {
    left: 7.24rem;
}

.header .headerNav .headerItem:nth-child(3) .ItemTwo {
    left: 8.49rem;
}

.header .headerNav .headerItem:nth-child(4) .ItemTwo {
    left: 9.74rem;
}

.header .headerNav .headerItem:nth-child(5) .ItemTwo {
    left: 10.99rem;
}

.header .headerNav .headerItem:nth-child(6){
    display: none !important;
}

.header .headerNav .headerItem:nth-child(6) .ItemTwo {
    display: none !important;
    /*left: 10.24rem;*/
}

.header .headerNav .headerItem:nth-child(7) .ItemTwo {
    /*left: 11.49rem;*/
     left: 12.24rem;
}

.headerItem .ItemTwo a {
    display: block;
    width: 100%;
    height: 0.44rem;
    line-height: 0.44rem;
    font-size: 0.18rem;
    color: #333333;
}

.header .header-search {
    display: flex;
    align-items: center;
    width: 1.64rem;
    height: 100%;
    margin-left: 1.06rem;
}

.header .header-search input {
    width: 1.64rem;
    height: 0.44rem;
    padding-left: 0.21rem;
    border-radius: 0.24rem;
    border: 0.01rem solid #FFFFFF;
    background-color: transparent;
    outline: none;
    color: #fff;
    font-size: 0.18rem;
}

.header .header-search input::placeholder {
    color: #fff;
}

.header .header-search a {
    display: flex;
    position: relative;
    z-index: 1;
    width: 0.22rem;
    height: 0.22rem;
    margin-left: -0.38rem;
}

.common-phone-header,
.side-wrap{
    display: none;
}

@media only screen and (max-width: 1024px) {
    .header-wrap {
        display: none;
    }
    .common-phone-header {
        display: block !important;
    }
    .side-wrap {
        display: block !important;
    }
    .common-phone-header {
        position: fixed;
        z-index: 10000;
        top: 0;
        left: 0;
        width: 100%;
        /*background: #fff;*/
        background: #4492C0;
    }
    .common-phone-header-inner {
        display: flex;
        height: 50px;
        border-bottom: 1px solid #eee;
        padding: 0 15px;
        justify-content: space-between;
        align-items: center;
    }
    .common-phone-header-inner div:nth-child(1){
        display: flex;
    }
    .common-phone-header-inner a:nth-child(2){
        display: flex;
    }
    .common-phone-header-inner div:nth-child(4){
        display: flex;
    }
    .header-menu-phone{
        height: 30px;
        width: auto;
    }
    .header-logo-phone {
        height: 50px;
        width: auto;
    }
    .header-search-phone {
        height: 30px;
        width: auto;
    }
    .header-search-box-phone {
        display: none;
    }
    .header-search-input-phone {
        display: block;
        border-radius: 20px;
        height: 35px;
        border-width: 1px;
        border: 1px solid #333;
        padding: 0 10px;
        font-size: 14px;
    }
    .side-modal {
        display: none;
        position: fixed;
        z-index: 99999;
        left: 0;
        top: 0;
        height: 100vh;
        width: 100vw;
        background:rgba(0, 0, 0, .5);
    }
    .side-container {
        display: none;
        position: fixed;
        z-index: 100000;
        left: 0;
        top: 0;
        height: 100vh;
        width: 6.4rem;
        background-color: #fff;
        color: #000;
        border-left: 1px solid #eee;
        animation: ani_side 1s;
    }
    .side-container.shown {
        display: block;
    }
    @keyframes ani_side{
        from {
            display: none;
            width: 3rem;
        }
        to {
            display: block;
            width: 6.4rem;
        }
    }
    .side-wrap {
        width: 100%;
    }
    .side-top {
        display: flex;
        height: 60px;
        padding: 0 20px 0 30px;
        justify-content: space-between;
        align-items: center;
        border-bottom: 1px solid #eee;
        background: #4492C0;
    }
    .side-top div{
        display: flex;
    }
    .side-logo {
        height: 40px;
        width: auto;
    }
    .side-close {
        width:.48rem;
    }
    .side-bottom {
        padding:  0 .48rem 0 .72rem;
    }
    .nav-item-inner {
        display: flex;
        justify-content: space-between;
        align-items: center;
        padding: .27rem 0 .27rem 0;
        border-bottom: 1px solid #eee;
    }
    .nav-item-inner span{
        display: flex;
        align-items: center;
        font-size: 14px;
    }
    .nav-item-inner img{
        width: .4rem;
    }
    .side-nav-list .nav-item a{
        color: #000;
        font-size: .26rem;
        width: 100%;
        display: inline-block !important;
    }
    .side-nav-list .side-local-img {
        width: .3rem;
        margin-right: .2rem;
        vertical-align: text-bottom;
    }   
    .side-nav-list-sub {
        display: none;
    }
    .side-nav-list-sub  .side-back-img {
        width: .3rem;
        margin-right: .2rem;
        vertical-align: text-bottom;
    }
}




/*.header{*/
/*        display: none;*/
/*    }*/
@media screen and (max-width: 1024px) {
    .header{
        display: none;
    }
}