/* 网站全局样式 */

* {
    padding: 0;
    margin: 0;
    color: inherit;
    list-style: none;
    text-decoration: none;
}
body {
    font-family: "微软雅黑","Helvetica Neue",Helvetica,Arial,"Microsoft Yahei","Hiragino Sans GB","Heiti SC","WenQuanYi Micro Hei";
    font-size: 14px;
}
img {
    display: block;
    width: 100%;
}
.con {
    max-width: 1350px;
    margin: 0 auto;
    padding: 0 30px;

}

@media screen and (max-width:1301px) {
    .con {
        box-sizing: border-box;
        padding: 0 20px;
    }
}
@media screen and (max-width:640px){
    body {
        padding-top: 50px;
        padding-bottom: 57px;
    }
    .con {
        box-sizing: border-box;
        padding: 0 10px;
    }
}

/* 头部样式 */
@media screen and (min-width:680px) {
    header {
        background: white;
    }
    .hd-top-out {
        background: black;
        color: rgb(230, 227, 227);
        padding: 10px 0;
        font-size: 13px;
    }
    .hd-top {
        display: flex;
        justify-content: space-between;
        width: 100%;
        align-items: center;
    }
    .hd-top-left span {
        margin-right: 20px;
        letter-spacing: 2px;
        font-weight: bold;
    }
    .hd-top-right {
        display: flex;
        justify-content: space-between;
        align-items: center;
    }
    .hd-top-phone{
        margin-right: 30px;
        font-weight: bold;
    }
    .hd-top-phone i{
        margin-right: 4px;
    }
    .hd-top-search {
        background: white;
        box-sizing: border-box;
        padding: 4px 10px;
        border-radius: 3px;
    }
    .hd-top-search input {
        outline:none;  
        border:none;
        font-size: 12px;
        color: #333;
    }
    .hd-top-search input:focus {
        background: white;
    }
    .hd-top-search input::-webkit-input-placeholder {
        color: #333;
        font-size: 12px;
    }
    .hd-top-search button {
        outline:none;  
        border:none;
        background: white;
        color: #333;
        cursor: pointer;
        color: #0459AA;
    }
    .hd-top-search button:hover {
        color: #0459AA;
    }
    .hd-out {
        background: #171717;
        height: 60px;
        display: flex;
        align-items: center;
    }
    .hd-out-active {
        position: fixed;
        top: 0;
        left: 0;
        z-index: 999;
        width: 100%;
    }
    
    .hd {
        display: flex;
        justify-content: space-between;
        align-items: center;
        width: 100%;
    }
    .logo {
        height: 50px;
    }
    .logo img {
        height: 100%;
    }
    .hd-nav {
        width: 60%;
        display: flex;
        justify-content: space-between;
    }
    .hd-nav-li {
        width: 100%;
        text-align: center;
    }
    
    .hd-nav-a {
        color: white;
        display: block;
        line-height: 60px;
    }
    .hd-nav-a-active {
        background: #0459AA;
        color: white; 
    }
    .hd-nav-a:hover {
        background: #0459AA;
        color: white;
        transition: all 0.3s;
    }
    
    .hd-box {
        position: absolute;
        background: white;
        width: 100%;
        left: 0;
        line-height: 100px;
        height: 0;
        box-sizing: border-box;
        text-align: center;
        overflow: hidden;
        transition: all 0.6s;
        z-index: 999;
        border-bottom: 1px solid #a3a3a3;
    }
    .hd-nav-li:hover .hd-box {
        height: 100px;
    }
    .hd-box li {
        display: inline;
        line-height: normal;
    }
    .hd-box li a {
        font-size: 16px;
        margin: 0 20px;
        font-weight: bold;
        padding: 3px 8px;
        line-height: normal;    
    }
    .hd-box li a:hover {
        color: white;
        transition: all 0.3s;
        background: #0459AA;
        display: inline-block;
       
    }
    .hd-box-li-a-active {
        color: #0459AA;
        background: #0459AA;
        color: white;
    }
    .menu {
        display: none;
    }
    
}
@media screen and (max-width:681px) {
    header {
        position: fixed;
        top: 0;
        left: 0;
        width: 100%;
        background: white;
        z-index: 999;
    }
    .hd-top-out {
        display: none;
    }
    .hd {
        padding: 0;
    }
    .logo {
        background: #181723;
        display: flex;
        justify-content: space-between;
        align-items: center;
        padding: 5px 15px;
        box-sizing: border-box;
    }
    .logo img {
        height: 40px;
        width: auto;
    }
    .menu {
        color: white;
        font-size: 20px;
        position: relative;
        width: 22px;
        height: 22px;
    }
    .menu-o {
        position: absolute;
        top: 0;
        left: 0;
        opacity: 0;
        transition: all 0.2s;
    }
    .menu-c {
        position: absolute;
        top: 0;
        left: 0;
        opacity: 0;
        transition: all 0.2s;
    }
    .menu-active {
        opacity: 1;
    }

    .hd-nav {
        position: fixed;
        top: 0;
        left: -100%;
        width: 85%;
        height: 100%;
        background: #181723;
        color: white;
        box-sizing: border-box;
        padding: 20px;
        transition: all 0.5s;
    }
    .hd-nav-active {
        left: 0;
    }
    .hd-nav-li {
        position: relative;
        box-sizing: border-box;
        padding-right: 30px;
    }
    .hd-nav-a {
        border-bottom: 1px solid #2C2B36;
        display: block;
        line-height: 50px;
        font-size: 18px;
    }
    .hd-box-menu {
        position: absolute;
        right: 0;
        top: 24px;
        height: 15px;
        width: 15px;
    }
    .hd-box-menu div {
        width: 15px;
        height: 1px;
        background: white;
    }
    .hd-box-menu-c {
        transform:translateY(-50%) rotate(90deg);
    }
    .hd-box {
        overflow: hidden;
        height: 0;
        /* transform: all 0.3s; */
    }
    .hd-box-active {
        height: auto;
    }
    .hd-box li {
        box-sizing: border-box;
        padding-left: 15px;
    }
    .hd-box li a {
        display: block;
        padding: 6px;
        border-bottom: 1px solid #2C2B36;
    }
}


/* 顶部样式结束 */




/* 页面底部样式开始 */
.ft-out {
    padding: 40px 0 25px;
    background: #222222;
    color: white;
}
.ft {
    display: flex;
    justify-content: space-between;
    padding-bottom: 20px;
}
.ft-left {
    width: 25%;
}
.ft-logo {
    width: 60%;
    margin-bottom: 40px;
}
.ft-wx {
    display: flex;
    justify-content: space-around;
}
.ft-wx-item {
    width: 40%;
    color: #777;
    text-align: center;
}
.ft-wx-item p {
    margin-top: 8px;
}
.ft-right {
    width: 70%;
    display: flex;
    justify-content: space-between;
}
.ft-right-item i {
    margin-right: 8px;
}
.ft-right-item dd {
    color: #777;
    margin-top: 12px;
}

.ft-right-item dd:nth-child(6) a{
    display: flex;
    justify-content: flex-start;
    align-items: center;
}

.ft-right-item dd:nth-child(6) a img {
    width: 60px;
}
.ft-right-item dd:nth-child(6) a span {
    font-size: 30px;
    margin-left: 20px;
    color: white;
    letter-spacing: 3px;
}
.yl-out {
    padding: 40px 0 30px;
    color: #777;
    font-size: 13px;
    color: #181723;
}
.yl {
    margin: auto;
    max-width: 1500px;
}
.ftxx-out {
    border-top: 1px solid #4D4D4D;
    text-align: center;
    padding-top: 25px;
    color: #777;
}
@media screen and (max-width:680px) {
   .ft-out {
       display: none;
   }
}

/* 页面底部样式结束 */


/* 手机端底部导航开始 */
.m-ft-out {
    background: black;
    position: fixed;
    left: 0;
    bottom: 0;
    width: 100%;
    z-index: 999;
    display: none;
}
.m-ft {
    box-sizing: border-box;
    padding: 6px 10px;
    color: white;
    display: flex;
    justify-content: space-between;
}
.m-ft-item {
    text-align: center;
    width: 55%;
    border-left: 1px solid rgb(49, 48, 48);
}
.m-ft-item:first-child {
    border-left: none;
}
.m-ft-item div i{
    font-size: 16px;
}
.m-ft-item p {
    font-size: 10px;
    margin-top: 2px;
    color: rgb(204, 198, 198);
}
@media screen and (max-width:680px) {
    .m-ft-out {
        display: block;
    }
 }
 


/* 手机端底部导航结束 */