@charset "utf-8"; 
input::-webkit-input-placeholder {  color: rgba(204, 204, 204, 1); }
input::-moz-placeholder {  color: rgba(204, 204, 204, 1); }
input:-ms-input-placeholder {   color: rgba(204, 204, 204, 1); }
.index {
    position: relative;
    z-index: 1;
}

.flex-center {
    display: -ms-flexbox;
    display: flex;
    flex-wrap: wrap;
    justify-content: center;
}

.flex-right {
    display: -ms-flexbox;
    display: flex;
    flex-wrap: wrap;
    justify-content: flex-end;
}

.flex-between {
    display: -ms-flexbox;
    display: flex;
    flex-wrap: wrap;
    justify-content: space-between;
    align-items: flex-start;
}

.flex-middle {
    display: -ms-flexbox;
    display: flex;
    justify-content: space-between;
    align-items: center;
    width: 100%;
}

.flex-center-middle {
    display: -ms-flexbox;
    display: flex;
    flex-wrap: wrap;
    justify-content: center;
    align-items: center;
}
body{
    padding-top:181px;
}
.header {
    width: 100%;
    height: auto;
    background: #0052a4;
    -webkit-transition: all 0.3s ease-out 0s;
    -moz-transition: all 0.3s ease-out 0s;
    -ms-transition: all 0.3s ease-out 0s;
    -o-transition: all 0.3s ease-out 0s;
    transition: all 0.3s ease-out 0s;
    position: fixed;
    top: 0;
    left: 0;
    z-index: 99;
    min-width: 1400px;
}
.header .headerTop {
    position: relative;
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 26px 0;
}

.header .right-wrapper {
    display: -ms-flexbox;
    display: flex;
    align-items: flex-end;
    width: auto;
    flex-direction: column;
}

.header .right-wrapper .line {
    width: 1px;
    height: 24px;
    background: #fff;
    margin-left: 22px;
    margin-right: 10px;
}

.header.scroll {
    padding: 18px 0;
}

.header.scroll::after {
    display: none;
}

.header.scroll::before {
    height: 100%;
    opacity: 1;
    box-shadow: 0 0 14px 0 rgba(0, 0, 0, .4);
}

.logo {
    -webkit-transition: all 0.3s ease-out 0s;
    -moz-transition: all 0.3s ease-out 0s;
    -ms-transition: all 0.3s ease-out 0s;
    -o-transition: all 0.3s ease-out 0s;
    transition: all 0.3s ease-out 0s;
}

.logo img,.logo a {
    display:block;
    width:auto;
    height:auto;
}
.search>div{
    width: 260px;
    height: 40px;
    background: transparent;
    border: 1px solid #ffffff;
    overflow: hidden;
    box-sizing: border-box;
    border-radius: 20px;
}
.search .text {
    float: left;
    display: block;
    width: calc(100% - 45px);
    outline: none;
    line-height: 38px;
    height: 38px;
    padding: 0 10px 0 20px;
    font-size: 14px;
    margin: 0;
    background: transparent;
    color: #ffffff;
    box-sizing: border-box;
    border: none;
}
.search .submit {
    width: 38px;
    height: 38px;
    float: right;
    border: none;
    box-sizing: content-box;
    position:relative;
    background: url(../images/ser.png) no-repeat left center;
    background-size: 20px auto;
}
.linkTop{  
display: flex;  
justify-content: flex-end;    
align-items: center;
margin-bottom: 15px;
}
.linkTop a{
    display:block;
    font-size: 14px;
    line-height: 20px;
    color: #fff;
}
.linkTop a:hover{
    color:#FFC107;
}
.linkTop span{
    display:block;
    width:1px;
    height: 14px;
    background:#fff;
    margin: 0 10px;
}
.navFind{
    background: #095eb3;
}
.nav {
    width: 100%;
}

.nav li {
    position: relative;
}

.nav li a {
    position: relative;
    display: block;
    font-size: 20px;
    font-weight: 700;
    line-height: 52px;
    color: #fff;
    text-align: center;
}

.nav li > a {
    -webkit-transition: all 0.2s ease-out 0s;
    -moz-transition: all 0.2s ease-out 0s;
    -ms-transition: all 0.2s ease-out 0s;
    -o-transition: all 0.2s ease-out 0s;
    transition: all 0.2s ease-out 0s;
    padding-top: 4px;
}

.nav li > a::after {
    display: block;
    content: "";
    box-sizing: border-box;
    width: 0%;
    height: 4px;
    margin: 0 auto;
    border-radius: 3px;
    background: #fff;
    -webkit-transition: all 0.3s ease-out 0s;
    -moz-transition: all 0.3s ease-out 0s;
    -ms-transition: all 0.3s ease-out 0s;
    -o-transition: all 0.3s ease-out 0s;
    transition: all 0.3s ease-out 0s;
}

.nav li:hover > a::after {
    width: 100%;
}

.nav>ul>li:hover>a::before {
    display: none;
}

.nav li:hover .sub-nav {
    visibility: visible;
    opacity: 1;
    -webkit-transform: rotateX(0);
    -moz-transform: rotateX(0);
    -ms-transform: rotateX(0);
    -o-transform: rotateX(0);
    transform: rotateX(0);
}

.nav .sub-nav {
    position: absolute;
    top: calc(100% - 4px);
    right: auto;
    bottom: auto;
    left: calc(50% - 75px);
    z-index: 1;
    width: 150px;
    padding: 7px 0;
    background: #961011;
    opacity: 0;
    visibility: hidden;
    box-shadow: 0 4px 12px 0 rgba(0, 0, 0, 0.2);
    background: white;
    border-radius: 3px;
    border-top: 02px solid #fff;
    -webkit-transition: all 0.42s ease-out 0s;
    -moz-transition: all 0.42s ease-out 0s;
    -ms-transition: all 0.42s ease-out 0s;
    -o-transition: all 0.42s ease-out 0s;
    transition: all 0.42s ease-out 0s;
    -webkit-transform: rotateX(90deg);
    -moz-transform: rotateX(90deg);
    -ms-transform: rotateX(90deg);
    -o-transform: rotateX(90deg);
    transform: rotateX(90deg);
    transform-origin: 50% 0%;
    z-index: 99;
}

.nav .sub-nav dd {
    position: relative;
    padding: 0 15px;
}

.nav .sub-nav dd::before {
    position: absolute;
    top: 0;
    right: 15px;
    bottom: auto;
    left: auto;
    z-index: 1;
    width: calc(100% - 30px);
    height: 100%;
    content: "";
    background: #0052a4;
    opacity: 0;
    -webkit-transition: all 0.2s ease-out 0s;
    -moz-transition: all 0.2s ease-out 0s;
    -ms-transition: all 0.2s ease-out 0s;
    -o-transition: all 0.2s ease-out 0s;
    transition: all 0.2s ease-out 0s;
}

.nav .sub-nav dd:last-child a {
    border: none;
}

.nav .sub-nav dd:hover::before {
    right: 0;
    width: 100%;
    opacity: 1;
}

.nav .sub-nav dd:hover a {
    color: #fff;
    border-color: transparent;
}

.nav .sub-nav a {
    z-index: 2;
    width: 100%;
    padding: 10px 0;
    font-size: 15px;
    font-weight: 500;
    line-height: 20px;
    color: #333;
    border-bottom: 1px dashed #eee;
    -webkit-transition: all 0.15s ease-out 0s;
    -moz-transition: all 0.15s ease-out 0s;
    -ms-transition: all 0.15s ease-out 0s;
    -o-transition: all 0.15s ease-out 0s;
    transition: all 0.15s ease-out 0s;
}

.nav .sub-nav .tri {
    position: absolute;
    top: auto;
    right: auto;
    bottom: 100%;
    left: 0%;
    z-index: 1;
    width: 100%;
    height: 10px;
    overflow: hidden;
}

.nav .sub-nav .tri::before {
    display: none;
}

.nav .sub-nav .tri::after {
    display: block;
    content: "";
    box-sizing: border-box;
    width: 12px;
    height: 12px;
    margin: 0 auto;
    background: #fff;
    -webkit-transform: translate(0px, 3px) rotate(45deg);
    -moz-transform: translate(0px, 3px) rotate(45deg);
    -ms-transform: translate(0px, 3px) rotate(45deg);
    -o-transform: translate(0px, 3px) rotate(45deg);
    transform: translate(0px, 3px) rotate(45deg);
    box-shadow: 0 0 3px 0 rgba(0, 0, 0, 0.3);
}

.pad-btn {
    position: relative;
    display: flex;
    align-items: center;
}

.pad-btn .search-btn {
    position: relative;
    z-index: 5;
    width: 50px;
    height: 50px;
    border-radius: 50%;
    cursor: pointer;
}

.pad-btn .search-btn::after {
    position: absolute;
    top: 0;
    right: 0;
    bottom: auto;
    left: auto;
    z-index: 1;
    content: "";
    width: 100%;
    height: 100%;
    background-image: url("../images/ser.png");
    background-repeat: no-repeat; background-position: 50% 55%; background-color: transparent; }

.pad-btn .nav-btn {
    display: none;
    position: relative;
    z-index: 5;
    width: 28px;
    margin: 0 0 0 16px;
    vertical-align: middle;
    cursor: pointer;
}

.pad-btn .nav-btn i {
    display: block;
    height: 2px;
    margin: 7px 0;
    background: #fff;
    -webkit-transition: all 0.3s cubic-bezier(0.99, 0.01, 0.01, 1) 0s;
    -moz-transition: all 0.3s cubic-bezier(0.99, 0.01, 0.01, 1) 0s;
    -ms-transition: all 0.3s cubic-bezier(0.99, 0.01, 0.01, 1) 0s;
    -o-transition: all 0.3s cubic-bezier(0.99, 0.01, 0.01, 1) 0s;
    transition: all 0.3s cubic-bezier(0.99, 0.01, 0.01, 1) 0s;
}

.pad-btn .nav-btn i:nth-child(2) {
    width: 75%;
}

.pad-btn .nav-btn.close i:nth-child(1) {
    -webkit-transform: translate(0px, 9px) rotate(45deg);
    -moz-transform: translate(0px, 9px) rotate(45deg);
    -ms-transform: translate(0px, 9px) rotate(45deg);
    -o-transform: translate(0px, 9px) rotate(45deg);
    transform: translate(0px, 9px) rotate(45deg);
}

.pad-btn .nav-btn.close i:nth-child(2) {
    opacity: 0;
}

.pad-btn .nav-btn.close i:nth-child(3) {
    -webkit-transform: translate(0px, -9px) rotate(-45deg);
    -moz-transform: translate(0px, -9px) rotate(-45deg);
    -ms-transform: translate(0px, -9px) rotate(-45deg);
    -o-transform: translate(0px, -9px) rotate(-45deg);
    transform: translate(0px, -9px) rotate(-45deg);
}

#mask {
    position: fixed;
    top: 0;
    right: 0;
    bottom: 0;
    left: 0;
    z-index: 100;
    background: rgba(0, 0, 0, 0.25);
    opacity: 0;
    visibility: hidden;
    -webkit-transition: all 0.3s ease-out 0.4s;
    -moz-transition: all 0.3s ease-out 0.4s;
    -ms-transition: all 0.3s ease-out 0.4s;
    -o-transition: all 0.3s ease-out 0.4s;
    transition: all 0.3s ease-out 0.4s;
}

#mask::after {
    position: absolute;
    top: 0;
    right: 0;
    bottom: auto;
    left: auto;
    z-index: 1;
    width: 100%;
    height: 30%;
    opacity: 0;
    background: rgba(0, 0, 0, 0.5);
    content: "";
    -webkit-transition: all 0.3s ease-out 0.2s;
    -moz-transition: all 0.3s ease-out 0.2s;
    -ms-transition: all 0.3s ease-out 0.2s;
    -o-transition: all 0.3s ease-out 0.2s;
    transition: all 0.3s ease-out 0.2s;
}

#mask .search-box {
    position: absolute;
    top: 40%;
    right: auto;
    bottom: auto;
    left: 0;
    z-index: 10;
    width: 100%;
    padding: 15px 0;
    overflow: hidden;
}

#mask .search-box .form {
    position: relative;
    background: #fff;
    white-space: nowrap;
    padding: 12px 16px;
    width: 80%;
    max-width: 750px;
    margin: 0 auto;
    opacity: 0;
    -webkit-transition: all 0.42s ease-out 0s;
    -moz-transition: all 0.42s ease-out 0s;
    -ms-transition: all 0.42s ease-out 0s;
    -o-transition: all 0.42s ease-out 0s;
    transition: all 0.42s ease-out 0s;
    box-shadow: 0 0 2px 0 #ccc;
    border-radius: 4px;
    -webkit-transform: translateY(150%);
    -moz-transform: translateY(150%);
    -ms-transform: translateY(150%);
    -o-transform: translateY(150%);
    transform: translateY(150%);
}

#mask .search-box .input {
    width: calc(100% - 55px);
    height: 55px;
    padding: 0 10px 0 20px;
    vertical-align: top;
    font-size: 16px;
    font-weight: 500;
    line-height: 55px;
    color: #333;
    text-align: left;
    border: 1px solid #bcd6ef;
    border-radius: 4px;
}

#mask .search-box .submit {
    width: 50px;
    height: 55px;
    vertical-align: top;
    background-image: url(${v_link("/images/ser2.png")
}

); background-repeat: no-repeat; background-position: 50% 50%; background-color: transparent; border: none; outline: none; cursor: pointer; }

#mask .search-box .close {
    width: 60px;
    height: 60px;
    position: absolute;
    top: 50%;
    right: auto;
    bottom: auto;
    left: calc(100% + 30px);
    z-index: 1;
    cursor: pointer;
    -webkit-transform: translateY(-50%) rotate(90deg);
    -moz-transform: translateY(-50%) rotate(90deg);
    -ms-transform: translateY(-50%) rotate(90deg);
    -o-transform: translateY(-50%) rotate(90deg);
    transform: translateY(-50%) rotate(90deg);
}

#mask .search-box .close .line {
    display: block;
    width: 100%;
    height: 2px;
}

#mask .search-box .close .line i {
    display: block;
    width: 100%;
    height: 2px;
    background: #fff;
}

#mask .search-box .close .line.l1 {
    -webkit-transform: translate(0, 25px) rotate(45deg);
    -moz-transform: translate(0, 25px) rotate(45deg);
    -ms-transform: translate(0, 25px) rotate(45deg);
    -o-transform: translate(0, 25px) rotate(45deg);
    transform: translate(0, 25px) rotate(45deg);
}

#mask .search-box .close .line.l2 {
    -webkit-transform: translate(0, 23px) rotate(-45deg);
    -moz-transform: translate(0, 23px) rotate(-45deg);
    -ms-transform: translate(0, 23px) rotate(-45deg);
    -o-transform: translate(0, 23px) rotate(-45deg);
    transform: translate(0, 23px) rotate(-45deg);
}

#mask .search-box .close:hover .line.l1 i {
    animation: line-ani1 .5s ease-in-out .3s;
}

#mask .search-box .close:hover .line.l2 i {
    animation: line-ani1 ease-in-out .5s;
}

#mask.show {
    opacity: 1;
    visibility: visible;
    -webkit-transition: all 0.3s ease-out 0s;
    -moz-transition: all 0.3s ease-out 0s;
    -ms-transition: all 0.3s ease-out 0s;
    -o-transition: all 0.3s ease-out 0s;
    transition: all 0.3s ease-out 0s;
}

#mask.show::after {
    opacity: 1;
    height: 100%;
    -webkit-transition: all 0.45s ease-out 0s;
    -moz-transition: all 0.45s ease-out 0s;
    -ms-transition: all 0.45s ease-out 0s;
    -o-transition: all 0.45s ease-out 0s;
    transition: all 0.45s ease-out 0s;
}

#mask.show .search-box .form {
    opacity: 1;
    -webkit-transform: translateY(0);
    -moz-transform: translateY(0);
    -ms-transform: translateY(0);
    -o-transform: translateY(0);
    transform: translateY(0);
    transition-delay: .2s;
    -ms-transition-delay: .2s;
}

@keyframes line-ani1 {
    0% {
        width: 0%;
    }

    100% {
        width: 100%;
    }
}