@charset "utf-8";

/* CSS Document */
html {
    font-size: 100px;
    height: 100%;
}

li {
    list-style-type: none;
}

body {
    font-family: "微软雅黑", Lucida, Arial, Helvetica;
    font-size: 0.14rem;
    min-height: 100%;
    color: #000;
    padding: 0;
    margin: 0;
    position: relative;
}

* {
    margin: 0rem;
    padding: 0rem;
    box-sizing: border-box;
    -moz-box-sizing: border-box;
    -webkit-box-sizing: border-box;
}

a {
    text-decoration: none;
    color: #000;
}

a:hover {
    text-decoration: none;
}

img {
    border: none;
}

#container {
    width: 100%;
    margin: 0 auto;
}

.od-nav {
    display: none;
}

.banner_1 {
    position: relative;
    margin-top: 140rem;
}


/* 头部内容 */
.top_head {
    position: absolute;
    z-index: 9999;
    left: 0;
    top: 0;
    width: 100%;
    height: 1.5rem;

}

.top_head:before {
    content: "";
    display: block;
    position: absolute;
    left: 0;
    top: 1.5rem;
    right: 0;
    height: 0.75rem;
    background-size: auto 99%;
    z-index: 9;
}

.top_head .wad {
    min-height: 1.5rem;
    position: relative;
    max-width: 100%;
    width: 16rem;
    margin: 0 auto;
}

.top_head::before {
    /* background: url(../img/top_bg_2.png) repeat-x; */
    content: "";
    position: absolute;
    left: 0;
    top: 0;
    right: 0;
    height: 2.9rem;
    z-index: 0;
    background-size: contain;
}

.top_head.on::before{
    background-image: none;
    background: url(../img/top_bg_2.png) repeat-x;
    position: absolute;
    left: 0;
    top: 0;
    right: 0;
    height: 2.9rem;
    z-index: 0;
    background-size: contain;
}

.top_head a.logo {
    display: block;
    background: url(../img/logo_img_1.png) center no-repeat;
    background-size: 100%;
    width: 2.83rem;
    position: absolute;
    z-index: 1;
    left: 0;
    right: auto;
    top: 0;
    bottom: 0;
}

.top_head .right_link {
    width: 1.3rem;
    border-radius: 20px;
    background-color: #ff9827;
    position: absolute;
    z-index: 1;
    left: auto;
    right: 0;
    top: 0.3rem;
    bottom: auto;
    height: 0.35rem;
    font-size: 0.12rem;
    color: #fff;
    display: flex;
    justify-content: center;
    align-items: center;
    transition: All 0.5s ease;
    -webkit-transition: All 0.5s ease;
    -moz-transition: All 0.5s ease;
    -o-transition: All 0.5s ease;
    cursor: pointer;
}

.top_head .right_link div.link_s {
    display: flex;
}

.top_head .right_link div a {
    display: block;
}

.top_head .right_link div a span {
    color: #fff;
    font-size: 0.18rem;
}

.top_head .right_link:hover  {
    transition: all 0.3s ease-in-out;
    background-color: #40a9ff;
}

.index_search {
    height: 0.4rem;
    position: relative;
    width: 3rem;
    margin: 0 auto;
}

.index_search .form {
    height: 0.4rem;
    position: relative;
}

.index_search .form .input {
    position: absolute;
    z-index: 1;
    left: 0;
    right: 0;
    top: 0;
    bottom: auto;
}

.index_search .form .input input {
    width: 100%;
    height: 0.4rem;
    line-height: 0.4rem;
    font-size: 0.14rem;
    color: #fff;
    border: none;
    border-radius: 25px;
    text-indent: 15px;
}

.index_search .form .submit {
    position: absolute;
    z-index: 2;
    top: 0;
    right: 8px;
    bottom: 0;
    width: 0.24rem;
    background: url(../img/search24.png) center no-repeat;
    background-size: 0.14rem;
    cursor: pointer;
    opacity: 0.8;
}

.index_search .form .submit input {
    height: 0.3rem;
    border: none;
    width: 100%;
    background: none;
    cursor: pointer;
}

input {
    background: rgb(169 177 190 / 26%);
    outline: none;
}

input::placeholder {
    color: #fff;
}

/* 导航栏 */
.top_nav_bg {
    background: #104793;
    height: 0.6rem;
}

.top_nav {
    position: relative;
    left: auto;
    right: 0;
    top: 0.73rem;
    bottom: auto;
    z-index: 99;
}

.top_nav ul {
    display: flex;
    justify-content: flex-end;
}

/* .top_nav ul li:first-child {
    display: none;
} */

.top_nav li {
    position: relative;
    padding: 0 0.23rem;
}

.top_nav a.name {
    display: block;
    height: 0.6rem;
    line-height: 0.6rem;
    font-size: 0.20rem;
    color: #fff;
    position: relative;
    font-weight: bold
}

.top_nav li a.current {
    color: #e3a21c;
}

.top_nav li:hover>a {
    color: #e3a21c;
}

.top_nav a.name em {
    display: block;
    position: relative;
}

em {
    font-style: normal;
}

.top_nav .list {
    position: absolute;
    z-index: 1;
    left: 50%;
    right: auto;
    bottom: auto;
    background: #fff;
    width: 1.7rem;
    margin-left: -0.85rem;
    border-top: #e3a21c solid 0.06rem;
    padding: 0.2rem 0 0.15rem;
    opacity: 0;
    visibility: hidden;
    box-shadow: 0 0px 6px 0 rgb(0 0 0 / 20%);
}

.top_nav li:hover .list {
    opacity: 1;
    visibility: visible;
    top: 100%;
    transition: opacity 0.5s ease;
    -webkit-transition: opacity 0.5s ease;
    -moz-transition: opacity 0.5s ease;
    -o-transition: opacity 0.5s ease;
}

.top_nav .list a {
    display: block;
    text-align: center;
    font-size: 0.18rem;
    line-height: 0.4rem;
    color: #004077;
    margin-bottom: 0.1rem;
}

.top_nav .list a:hover {
    background: #ededed;
    color: #012d52;
}

/* 弹出大导航 */
.top_nav_2 {
    display: none;
}


.top_banner {
    position: relative;
    min-height: auto;
}

.top_banner img {
    width: 100%;
    height: 4.79rem;
    display: flex;
    align-items: center;
    min-height: auto;
    background-size: cover;
    background-repeat: no-repeat;
    background-position: center;
    -webkit-transition: all .5s;
    -o-transition: all .5s;
    transition: all .5s;
}

.menu_title {
    width: 16rem;
    margin: 0 auto;
    position: absolute;
    bottom: -0.7rem;
    left: 0;
    right: 0;
    border-bottom: 1px solid #041831;
}

.menu_title h3 {
    color: #000;
    height: 2rem;
    padding: 0.3rem 0.4rem;
    background: #f0f5fb82;
    font-size: 0.55rem;
    display: flex;
    align-items: flex-start;
    justify-content: center;
    float: left;
    border-bottom: 10px solid #e3a21c;
}

.current_bar {
    position: relative;
    width: 16rem;
    margin: 0 auto;
    display: flex;
    align-items: center;
    justify-content: flex-end;
    font-size: 0.20rem;
    height: 0.7rem;
}
.current_bar a {
    color: #333;
}
.current_bar span {
    margin: 0 10px;
    font-size: 0.16rem;
    color: #333;
}
.current_bar a:hover {
    color: #e3a21c;
}
footer {
    padding: 0.5rem 0 0;
    position: relative;
    width: 100%;;
}

.footer_container {
    max-width: 16rem;
    margin: 0 auto;
    display: flex;
    justify-content: space-between;
    padding-bottom: 0.8rem;
}
.footer_container a:hover{
    text-decoration: underline;
}
.footer_left {
    display: flex;
    flex-direction: column;
}
.footer_left .footer_title{
    font-size: 0.28rem;
    padding-bottom: 0.2rem;
}
.footer_left div.left_ul_box{
    display: flex;
    flex-wrap: wrap;
}
.footer_left ul li{
    padding: 0 20px 0 0;
}
.footer_left ul li a{
    text-align: left;
    color: #687486;
    font-size: 0.18rem;
    line-height: 0.35rem;
}


.footer_middle {
    display: flex;
    flex-direction: column;

}
.footer_middle .footer_title{
    font-size: 0.28rem;
    padding-bottom: 0.2rem;
}
.footer_middle div.middle_ul_box{
    display: flex;
    flex-wrap: wrap;
}
.footer_middle ul li{
    padding: 0 20px 0 0;
}
.footer_middle ul li a{
    text-align: left;
    color: #687486;
    font-size: 0.18rem;
    line-height: 0.35rem;
}


.footer_right {
    display: flex;
    flex-direction: column;
    justify-content: space-around;
}
.footer_right .footer_title{
    font-size: 0.28rem;
    padding-bottom: 0.2rem;
}
.footer_right div.right_ul_box{
    display: flex;
    flex-wrap: wrap;
}
.footer_right ul li{
    padding: 0 20px 0 0;
}
.footer_right ul li a{
    text-align: left;
    color: #687486;
    font-size: 0.18rem;
    line-height: 0.35rem;
}
.foot{
    max-width: 16rem;
    margin: 0 auto;
    display: flex;
    justify-content: space-between;
    border-top: 1px solid #afafaf;
}
.foot .f_item{
    display: flex;
    align-items: center;
    flex-direction: row;
    padding: 0.6rem 0;
}
.foot .f_item div{
    color: #687486;
    font-size: 0.18rem;
    padding-right: 0.5rem;
}
.foot .b_item{
    display: flex;
    align-items: center;
    flex-direction: row;
    padding: 0.6rem 0;
}
.foot .b_item div{
    color: #687486;
    font-size: 0.18rem;
    padding-left: 0.5rem;
}
.banner_btn2 {
    width: 2.1rem;
    height: 0.65rem;
    position: absolute;
    font-size: 0.20rem;
    background-color: #6291ff;
    color: #fff;
    border-radius: 50px;
    display: flex;
    justify-content: center;
    align-items: center;
    cursor: pointer;
    letter-spacing: 5px;
    /**margin-top: 2%;**/
}
.banner_btn2:hover {
    transition: all 0.3s ease-in-out;
    background-color: #40a9ff;
}
.banner_btn3 {
    width: 2.1rem;
    height: 0.65rem;
    font-size: 0.20rem;
    background-color: #6291ff;
    color: #fff;
    border-radius: 50px;
    display: flex;
    justify-content: center;
    align-items: center;
    cursor: pointer;
    letter-spacing: 5px;
    margin-top: 10%;
    float: right;
}
.banner_btn3:hover {
    transition: all 0.3s ease-in-out;
    background-color: #40a9ff;
}
.banner_btn4{
    width: 2.1rem;
    height: 0.65rem;
    font-size: 0.20rem;
    background-color: #6291ff;
    color: #fff;
    border-radius: 50px;
    display: flex;
    justify-content: center;
    align-items: center;
    cursor: pointer;
    letter-spacing: 5px;
    margin-top: 0.5rem;
}
.banner_btn4:hover {
    transition: all 0.3s ease-in-out;
    background-color: #40a9ff;
}
.banner_btn5{
    width: 2.1rem;
    height: 0.65rem;
    font-size: 0.20rem;
    background-color: #6291ff;
    color: #fff;
    border-radius: 50px;
    display: flex;
    justify-content: center;
    align-items: center;
    cursor: pointer;
    letter-spacing: 5px;
    margin: 0.1rem 0 0.5rem;
}
.banner_btn5:hover {
    transition: all 0.3s ease-in-out;
    background-color: #40a9ff;
}
.banner_btn6{
    width: 2.1rem;
    height: 0.65rem;
    font-size: 0.20rem;
    background-color: #6291ff;
    color: #fff;
    border-radius: 50px;
    display: flex;
    justify-content: center;
    align-items: center;
    cursor: pointer;
    letter-spacing: 5px;
    margin: 0.1rem 0 0.5rem;
}
.banner_btn6:hover {
    transition: all 0.3s ease-in-out;
    background-color: #40a9ff;
}
