@charset "utf-8";

.header {
    background: url(../../images/images_2021/head.jpg) 50% 0px no-repeat;
    background-size: cover;
}
.header h1 {
    width: 550px;
    height: 193px;
    background: url(../../images/images_2021/logo.png) 0 50% no-repeat;
}

.header h1 a {
    display: block;
    height: 193px;
}

.nav {
    height: 60px;
    background: #4470e7;
    background: -webkit-linear-gradient(60deg, #0ba6e3, #4470e7);
    background: linear-gradient(60deg, #0ba6e3, #4470e7);
}

.nav li {
    float: left;
    position: relative;
    width: 16.66%;
}

.nav li a {
    display: block;
    height: 60px;
    padding: 15px 0px;
    line-height: 30px;
    font-size: 22px;
    color: #fff;
    font-weight: bold;
    text-align: center;
}

.nav li a:hover,
.nav li.current {
    background-color: #135a9c;
}

/* 搜索 */

.header .search{
    width: 340px;
    margin: 6% auto 0;
}

.search input {
    box-sizing: border-box;
    width: 240px;
    height: 40px;
    line-height: 20px;
    font-size: 16px;
    margin-right: 0px;
    padding: 10px 20px 10px 40px;
    border: none;
    color: #b4b3b3;
    box-shadow: none;
    border-radius: 3px 0px 0px 3px;
    outline: none;
    margin-top: -3px;
    background: #fff url(../../images/images_2021/q.png) 10px 50% no-repeat;
}

.search button {
    box-sizing: border-box;
    width: 80px;
    height: 40px;
    border: none;
    background: #ff9d08;
    color: #fff;
    cursor: pointer;
    text-align: center;
    line-height: 40px;
    font-size: 18px;
    margin-left: -5px;
    border-radius: 0px 3px 3px 0px;
}

.inner,
.content,
.links,
.copyright {
    position: relative;
    width: 1200px;
    margin-left: auto;
    margin-right: auto;
}

/* 移动端菜单开始 */

.mask {
    display: none;
    position: fixed;
    z-index: 597;
    top: 0;
    right: 0;
    left: 0;
    bottom: 0;
    background: rgba(0, 0, 0, 0.75);
    opacity: 0;
    transition: opacity .2s;
}

.mask.on {
    display: block;
    opacity: 1;
}

body.modal-open {
    position: fixed;
    width: 100%;
}

.menu {
    display: none\9;
    position: fixed;
    z-index: 598;
    top: 0;
    right: 0;
    bottom: 0;
    width: 65%;
    background-color: #f5f5f5;
    -webkit-transform: translate3d(100%, 0, 0);
    transform: translate3d(100%, 0, 0);
    -webkit-transition: transform .3s;
    transition: transform .3s;
}

.menu.on {
    -webkit-transform: translate3d(0, 0, 0);
    transform: translate3d(0, 0, 0);
}

.menu img {
    display: block;
    width: 70%;
    margin: 60px 20px;
}

.menu li a {
    position: relative;
    display: block;
    margin: 0 15px;
    padding: 0 15px;
    line-height: 50px;
    font-size: 16px;
    color: #048;
}

.menu li a:after {
    content: " ";
    display: inline-block;
    height: 6px;
    width: 6px;
    border-width: 2px 2px 0 0;
    border-color: #ccc;
    border-style: solid;
    -webkit-transform: matrix(0.71, 0.71, -0.71, 0.71, 0, 0);
    transform: matrix(0.71, 0.71, -0.71, 0.71, 0, 0);
    position: absolute;
    top: 50%;
    margin-top: -4px;
    right: 10px;
}

.menu li+li a {
    box-shadow: inset 0 1px 0 rgba(0, 0, 0, .2);
}

.menu>ul>li:nth-child(1) {
    animation-delay: .1s;
}

.menu>ul>li:nth-child(2) {
    animation-delay: .2s;
}

.menu>ul>li:nth-child(3) {
    animation-delay: .3s;
}

.menu>ul>li:nth-child(4) {
    animation-delay: .4s;
}

.menu>ul>li:nth-child(5) {
    animation-delay: .5s;
}

.menu>ul>li:nth-child(6) {
    animation-delay: .6s;
}

.menu-btn {
    display: none;
    position: absolute;
    top: 20px;
    right: 0;
    z-index: 599;
    width: 50px;
    height: 50px;
}

.menu-btn.on,
.menu-btn.fixed {
    position: fixed;
    top: 50px;
}

.menu-btn>span {
    position: absolute;
    left: 0;
    right: 0;
    width: 22px;
    height: 2px;
    margin: 0 auto;
    background: #048;
    border-radius: 2px;
    transition: .25s;
}

.menu-btn>span:nth-child(1) {
    top: 18px;
}

.menu-btn>span:nth-child(2) {
    top: 24px;
}

.menu-btn>span:nth-child(3) {
    top: 30px;
}

.menu-btn.on span,
.hd+.menu-btn>span {
    background: #048;
}

.menu-btn.on span:nth-child(1) {
    top: 21px;
    transform: rotate(45deg);
}

.menu-btn.on span:nth-child(2) {
    opacity: 0;
    transform: rotate(90deg);
}

.menu-btn.on span:nth-child(3) {
    top: 21px;
    transform: rotate(135deg);
}

/* 移动端菜单结束 */