/* 公共部分 */
* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

body,
div,
span,
object,
iframe,
h1,
h2,
h3,
h4,
blockquote,
pre,
a,
address,
code,
b,
em,
img,
dl,
dt,
dd,
ol,
ul,
li,
fieldset,
form,
label,
footer,
header,
hgroup,
nav,
section {
    margin: 0;
    padding: 0;
    border: 0;
}

a {
    text-decoration: none;
    outline: none;
}

a:hover,
a:active,
a:focus {
    text-decoration: none;
    outline: none;
}

input {
    padding: 0;
    margin: 0;
    font-family: Arial, Helvetica, sans-serif;
}

img {
    border: none;
    background: none;
    vertical-align: middle;
}

ul,
ol,
li {
    list-style-type: none;
}

select,
input,
img,
select {
    vertical-align: middle;
}

table {
    border-collapse: collapse;
    border-spacing: 0
}

em,
i {
    font-style: normal;
}

table,
th,
td {
    vertical-align: middle
}

hr {
    margin: 1rem 0;
    color: #212529;
    border: 0;
    border-top: 1px solid;
    opacity: .25;
}

body,
body * {
    font-family: Arial, Helvetica, sans-serif;
}

.clearfix::after {
    content: '';
    display: block;
    height: 0;
    clear: both;
    overflow: hidden;
    visibility: hidden;
}

/* 滚动条 */
::-webkit-scrollbar-track {
    -webkit-box-shadow: inset 0 0 6px rgba(0, 0, 0, 0.3);
    background-color: #F1F1F1;
}

::-webkit-scrollbar {
    width: 6px;
    background-color: #F1F1F1;
}

::-webkit-scrollbar-thumb {
    background-color: #A8A8A8;
}

::-webkit-scrollbar-thumb:hover {
    background-color: #002777;
}

.wrap {
    padding: 0 7.29vw;
}

.container {
    width: 1600px;
    max-width: 94%;
    margin: 0 auto;
}

/* 首页头部 */
.pchead {
    width: 100%;
    position: fixed;
    left: 0;
    right: 0;
    z-index: 9999;
    height: 80px;
    background: #fff;
    border-bottom: 1px solid rgba(0, 0, 0, .05);
    transition: all .5s ease;
    -webkit-transition: all .5s ease;
}

.pchead {
    top: 0;
}

.pchead.down {
    top: 0 !important
}

.xymob-head {
    display: none;
}

.headbox {
    display: flex;
    justify-content: space-between;
    width: 95.3%;
    height: 100%;
    margin: 0 auto;
}

.pchead .row {
    align-items: center;
    justify-content: space-between;
}

.pchead .logo {
    display: flex;
    align-items: center;
}

.pchead .logo img {
    max-width: 100%;
}

.pchead .pcnav {
    display: flex;
    width: 70%;
}

.pchead .pcnav>.firUl {
    display: flex;
    height: 100%;
    width: 100%;
    justify-content: flex-end;
}

.pchead .pcnav>.firUl .p_navItem1 {
    padding: 0 2%;
    position: relative;
}

.pchead .pcnav>.firUl .p_navItem1:first-child {
    padding-left: 0;
}

.pchead .pcnav>.firUl>.p_navItem1 .firA {
    display: block;
    height: 100%;
    line-height: 80px;
    color: #333;
    font-size: 18px;
    position: relative;
}

.pchead .pcnav>.firUl>.p_navItem1 .firA::after {
    position: absolute;
    left: 0;
    right: 0;
    bottom: 0;
    width: 0;
    height: 3px;
    background: #0a509f;
    content: "";
    transition: all 0.6s;
}

.pchead .pcnav>.firUl>.p_navItem1:hover .firA::after,
.pchead .pcnav>.firUl>.p_navItem1.act .firA::after {
    width: 100%;
}

.pchead .pcnav>.firUl>.p_navItem1:first-child .firA {
    margin-left: 0;
}

.pchead .pcnav>.firUl>.p_navItem1:last-child .firA {
    margin-right: 0;
}

.pchead .pcnav>.firUl .p_navItem1 .drop {
    position: absolute;
    left: 50%;
    transform: translateX(-50%);
    min-width: 200px;
    display: none;
    white-space: nowrap;
    z-index: 55;
    padding: 14px 0;
    font-size: 18px;
    text-align: center;
    background: #fff;
    box-shadow: 0 10px 10px rgba(0, 0, 0, 0.1);
}

.pchead .pcnav>.firUl .p_navItem1 .drop a {
    color: #333;
    overflow: hidden;
    display: flex;
    justify-content: center;
    align-items: center;
    line-height: 2.5;
    padding: 0 24px;
}

.pchead .pcnav>.firUl .p_navItem1 .drop a:hover {
    color: #0a509f;
}

.pchead .pcnav>.firUl .p_navItem1 .drop a b {
    margin-left: 5px;
    position: absolute;
    right: 15%;
    top: 50%;
    -moz-transform: translateY(-50%);
    -webkit-transform: translateY(-50%);
    -o-transform: translateY(-50%);
    -ms-transform: translateY(-50%);
    transform: translateY(-50%);
    -webkit-transform: translateY(-50%) rotate(-90deg);
    transform: translateY(-50%) rotate(-90deg);
    -ms-transform: translateY(-50%) rotate(-90deg);
}

.pchead .pcnav>.firUl .p_navItem1 .drop .p_navItem2 {
    position: relative;
}

.pchead .pcnav>.firUl .p_navItem1 .drop .p_navItem2 .drop2 {
    position: absolute;
    left: 100%;
    top: 0;
    min-width: 200px;
    display: none;
    white-space: nowrap;
    z-index: 55;
    padding: 14px 0;
    font-size: 18px;
    text-align: center;
    background: #fff;
    box-shadow: 0 10px 10px rgba(0, 0, 0, 0.1);
}

.txt_re {
    display: flex;
}

.txt_re .re1 {
    display: flex;
    align-items: center;
    padding: 0 35px;
    position: relative;
}

.txt_re .re1::before {
    content: "";
    width: 1px;
    height: 15px;
    background: rgba(0, 0, 0, 0.3);
    position: absolute;
    right: 0;
    top: 50%;
    transform: translateY(-50%);
}

.txt_re .re1::after {
    content: "";
    width: 1px;
    height: 15px;
    background: rgba(20, 0, 0, 0.3);
    position: absolute;
    left: 0;
    top: 50%;
    transform: translateY(-50%);
}

.txt_re .re1 a {
    display: block;
    color: #333;
}

/* 首页底部 */
footer {
    background: #0a509f;
}

.fbox {
    display: flex;
}

.fbox .left {
    width: 30%;
    border-right: 1px solid rgba(255, 255, 255, .2);
}

.fbox .left h3,
.fbox .right h3 {
    border-bottom: 1px solid rgba(255, 255, 255, .2);
    padding: 3vw 0 3vw 7.29vw;
    color: #fff;
    font-size: 1.3vw;
    font-weight: bold;
    line-height: 1;
}

.fbox .left .fcon {
    padding: 3vw 0 3vw 7.29vw;
}

.fbox .left .fcon dl {
    margin-bottom: 2vw;
}

.fbox .left .fcon dl:last-child {
    margin-bottom: 0;
}

.fbox .left .fcon dl dt {
    color: #fff;
    font-weight: 500;
    font-size: 1vw;
    margin-bottom: 10px;
}

.fbox .left .fcon dl dd {
    color: #fff;
    line-height: 2;
    font-size: 0.84vw;
}

.fbox .right {
    width: 70%;
}

.fbox .right .flink {
    padding: 3vw 15vw 3vw 7.29vw;
    display: flex;
    justify-content: space-between;
}

.fbox .right .flink dl dt {
    color: #fff;
    font-weight: 500;
    font-size: 1vw;
    margin-bottom: 30px;
}

.fbox .right .flink dl dd a {
    display: block;
    color: #fff;
    margin-bottom: 20px;
    font-size: 0.84vw;
    transition: all .3s ease;
}

.copy {
    border-top: 1px solid rgba(255, 255, 255, .2);
    color: #fff;
    padding: 15px 7.29vw;
    display: flex;
    align-self: center;
    font-size: 0.84vw;
}

.copy a {
    color: #fff;
    display: flex;
    align-items: center;
    margin-left: 15px;
    font-size: 0.84vw;
}

/* 当前位置 */
.position {
    height: 60px;
    line-height: 60px;
    background-color: #fff;
    font-size: 14px;
}

.position a {
    color: #333;
    margin: 0 5px;
}

.position a:first-child {
    margin-left: 0;
}

.position a:last-child {
    margin-right: 0;
}

.position a:hover {
    color: #0A509F;
}

/* 内页主体 */
.innerbanner {
    position: relative;
    margin-top: 80px;
}

.innerbanner::after {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    background-color: rgba(17, 23, 29, 0.3);
    width: 100%;
    height: 100%;
}

.innerbanner img {
    width: 100%;
    height: 100%;
    object-fit: cover;
}

.innerbanner .bantext {
    position: absolute;
    top: 50%;
    left: 8%;
    transform: translate(0, -50%);
    z-index: 2;
}

.innerbanner .bantext h2 {
    font-size: 42px;
    color: #fff;
}

.innerbanner .bantext h5 {
    color: #fff;
    line-height: 2;
    font-size: 28px;
}

.bgmain {
    background: rgba(245, 245, 245, 1);
}

.innerbox {
    display: flex;
    justify-content: space-between;
    padding: 60px 0;
}

.innerbox .nyleft {
    width: 20%;
}

.nyleft {
    width: 20%;
}

.nyleftList {
    background: #fff;
    border-bottom: 3px solid #0A509F;
    padding: 30px 20px;
}

.nyleftList h3 {
    font-weight: bold;
    line-height: 1.5;
    font-size: 22px;
    color: #333;
}

.nyleftList>li {
    border-bottom: 1px solid #e5e5e5;
}

.nyleftList>li>p {
    margin-bottom: 0;
    display: flex;
    justify-content: space-between;
    position: relative;
    line-height: 50px;
    font-size: 15px;
    transition: allease .3s;
    width: 100%;
    color: #1b242b;
    align-items: center;
}

.nyleftList>li>p a {
    color: #333;
    display: block;
    width: 74%;
    margin-left: 5px;
}

.nyleftList>li>p span {
    display: block;
    width: 20%;
    height: 100%;
    background: url(/html/template/default/images/mulu1.png) center center no-repeat;
    cursor: pointer;
    height: 20px;
}

/* .nyleftList>li:hover>p span {
    background: url(/html/template/default/images/mulu2.png) center center no-repeat;
} */

.nyleftList>li.on>p span {
    background: url(/html/template/default/images/mulu3.png) center center no-repeat;
}

.nyleftList>li>p a {
    color: #333;
    display: block;
    width: 74%;
    margin-left: 5px;
}

.nyleftList>li:hover,
.nyleftList>li.on {
    color: #0A509F;
    -webkit-transition: all .3s;
    -moz-transition: all .3s;
    -o-transition: all .3s;
    transition: all .3s;
}

.nyleftList>li:hover>p>a,
.nyleftList>li.on>p>a {
    color: #0A509F;
}

.nyleftList>li .nytwoul {
    background-color: #efefef;
    display: none;
}

.nyleftList>li .nytwoul>li {
    position: relative;
}

.nyleftList>li .nytwoul>li>p {
    margin-bottom: 0;
    display: flex;
    align-items: center;
}

.nyleftList>li .nytwoul>li>p .em1 {
    display: block;
    width: 10%;
    height: 10px;
    background: url(/html/template/default/images/icon2.png) 6% no-repeat;
    background-position: center center;
}

.nyleftList>li .nytwoul>li>p .em2 {
    display: block;
    width: 10%;
    height: 10px;
}

.nyleftList>li .nytwoul>li>p>a {
    display: block;
    width: 100%;
    height: 55px;
    line-height: 55px;
    color: #666;
    font-size: 15px;
    border-top: 1px solid #e7e5e5;
    overflow: hidden;
    text-overflow: ellipsis;
    white-space: nowrap;
    position: relative;
}

.nyleftList>li .nytwoul>li.on>p em {
    transform: rotate(90deg);
}

.nyleftList li .nytwoul>li:hover>p>a,
.nyleftList li .nytwoul>li.on>p>a {
    color: #0A509F;
}

.nyleftList li .nytwoul>li .nythreeul {
    background-color: #e2e2e2;
    display: none;
}

.nyleftList li .nytwoul>li .nythreeul li a {
    display: block;
    height: 50px;
    line-height: 50px;
    color: #666;
    font-size: 15px;
    border-top: 1px solid #e7e5e5;
    padding: 0 0 0 15%;
    overflow: hidden;
    text-overflow: ellipsis;
    white-space: nowrap;
    position: relative;
}

.nyleftList li .nytwoul>li .nythreeul li:hover a,
.nyleftList li .nytwoul>li .nythreeul li.on a {
    color: #0A509F;
}

.product-catelog {
    margin-top: 30px;
    background: #fff;
    padding: 30px 20px;
}

.product-catelog h2 {
    font-weight: bold;
    line-height: 1.5;
    font-size: 22px;
    color: #333;
}

.product-catelog h2 a {
    color: #274d7c;
}

.product-catelog ul {
    margin: 20px 0 0 0;
    padding: 0
}

.product-catelog ul li a {
    padding: 7px 0;
    display: inline-block;
    color: #333;
}

.product-catelog ul li .con {
    color: #1b242b;
    font-size: 15px;
    margin-bottom: 10px;
}

.product-catelog ul li .con a {
    padding: 0;
}

.innerbox .nyleft .stick {
    position: sticky;
    top: 110px;
}

.innerbox .nyleft .nyLeftList {
    background: #fff;
    border-bottom: 3px solid #0A509F;
    padding: 30px 20px;
}

.innerbox .nyleft .nyLeftList h3 {
    font-weight: bold;
    line-height: 1.5;
    font-size: 22px;
    color: #333;
}

.innerbox .nyleft .nyLeftList ul li {
    position: relative;
}

.innerbox .nyleft .nyLeftList ul li p {
    margin-bottom: 0;
    display: flex;
    justify-content: space-between;
    position: relative;
    line-height: 50px;
    border-bottom: 1px solid #ebebeb;
    font-size: 15px;
    transition: all ease .3s;
    width: 100%;
    color: #1b242b;
    background: #ffffff;
}

.innerbox .nyleft .nyLeftList ul li p span {
    display: flex;
    align-items: center;
}

.innerbox .nyleft .nyLeftList ul li p i {
    display: flex;
}

.innerbox .nyleft .nyLeftList ul li p svg {
    fill: #999;
    width: 15px;
    height: 20px;
    overflow: hidden;
    margin-right: 10px;
    margin-top: 0;
}

.innerbox .nyleft .nyLeftList ul li p a {
    color: #1b242b;
    width: 100%;
    display: flex;
    justify-content: flex-start;
}

.innerbox .nyleft .nyLeftList ul li p:hover svg,
.innerbox .nyleft .nyLeftList ul li p.active svg {
    fill: #0A509F;
}

.innerbox .nyleft .nyLeftList ul li p:hover a,
.innerbox .nyleft .nyLeftList ul li p.active a {
    color: #0A509F;
}

.innerbox .nyleft .nyContact {
    margin-top: 30px;
    background: #fff;
    padding: 30px 20px;
}

.innerbox .nyleft .nyContact h3 {
    font-weight: bold;
    line-height: 1.5;
    font-size: 22px;
    color: #333;
}

.innerbox .nyleft .nyContact .nycontactList .nycontactitem {
    color: #1b242b;
    font-size: 15px;
    margin-bottom: 10px;
}

.innerbox .nyleft .nyContact .nycontactList .nycontactitem:last-child {
    margin-bottom: 0;
}

.innerbox .m_nyleft {
    display: none;
    background: #fff;
    width: 100%;
    margin-bottom: 15px;
}

.innerbox .m_nyleft button {
    display: block;
    background: #0A509F;
    color: rgba(255, 255, 255, .8);
    width: 100%;
    padding: 14px 15px;
    text-align: center;
    cursor: pointer;
    outline: none;
    border: 0;
}

.innerbox .m_nyleft .m-nav {
    display: block;
    position: fixed;
    top: 0px;
    left: 0px;
    width: 0px;
    height: 0px;
    overflow: hidden;
    z-index: 9999999;
}

.innerbox .m_nyleft .m-nav .closecover {
    position: absolute;
    width: 100%;
    height: 100%;
    background: #000;
    left: 0px;
    top: 0px;
    z-index: 1;
    filter: alpha(opacity=0);
    opacity: 0;
}

.innerbox .m_nyleft .m-nav .menu-close {
    color: #fff;
}

.innerbox .m_nyleft .m-nav .closeicon {
    position: absolute;
    width: 10%;
    left: 15%;
    top: 1%;
    z-index: 100;
    text-align: center;
    filter: alpha(opacity=0);
    opacity: 0;
}

.innerbox .m_nyleft .m-nav .m-navList {
    position: absolute;
    width: 70%;
    right: 0px;
    top: 0px;
    background: #fff;
    height: 100%;
    z-index: 100;
    right: -80%;
    overflow-y: scroll;
}

.innerbox .m_nyleft .m-nav .m-navList .proone {
    list-style: none;
}

.innerbox .m_nyleft .m-nav .m-navList .proone>li .m-nav-f {
    display: flex;
    align-items: center;
    justify-content: space-between;
    width: 100%;
}

.innerbox .m_nyleft .m-nav .m-navList .proone>li .m-nav-f a {
    display: block;
    height: 50px;
    color: #666;
    line-height: 50px;
    padding-left: 5%;
    font-size: 17px;
    font-weight: bold;
}

.innerbox .m_nyleft .m-nav .m-navList .proone>li .m-nav-f.active a {
    color: #0A509F;
}

.innerbox .m_nyleft .m-nav .m-navList .proone>li .m-nav-f a {
    flex: 1;
}

.innerbox .m_nyleft .m-nav .m-navList .proone>li .protwo>li>a {
    display: block;
    height: 45px;
    color: #666;
    line-height: 45px;
    padding-left: 5%;
    font-size: 15px;
    border-bottom: 1px solid #ddd;
    text-indent: 2em;
}

.innerbox .m_nyleft .m-nav .m-navList .proone>li .protwo>li.active>a {
    color: #0A509F;
}

.innerbox .m_nyleft .m-nav .m-navList .proone>li .protwo>li .prothree>li>a {
    display: block;
    height: 40px;
    color: #666;
    line-height: 40px;
    padding-left: 5%;
    font-size: 15px;
    border-bottom: 1px dotted #ddd;
    text-indent: 4em;
}

.innerbox .m_nyleft .m-nav .m-navList .proone>li .protwo>li .prothree>li.active>a {
    color: #0A509F;
}

.innerbox .nyright {
    width: 77%;
    margin-left: 3%;
    background: #fff;
}

.innerbox .nyright .nybox {
    padding: 25px;
}

.innerbox .nyright .nybox .pBoxTitle {
    margin-bottom: 35px;
    padding-left: 15px;
    position: relative;
}

.innerbox .nyright .nybox .pBoxTitle::before {
    content: '';
    position: absolute;
    width: 5px;
    height: 25px;
    left: 0px;
    top: 50%;
    transform: translateY(-50%);
    background-color: #0A509F;
}

.innerbox .nyright .nybox .pBoxTitle::after {
    content: '';
    position: absolute;
    background: #ddd;
    height: 1px;
    left: 0;
    width: 100%;
    margin-top: 10px;
}

.innerbox .nyright .nybox .pBoxTitle h3 {
    line-height: 1.5;
    font-size: 24px;
    font-weight: bold;
}

.content_text * {
    transition: unset;
}

.content_text p {
    line-height: 22px;
    padding: 10px;
    border: 1px solid #eeeeee;
    display: flex;
    margin-bottom: 1rem;
}

.content_text p:last-child {
    margin-bottom: 0;
}

.content_text p b {
    color: #616062;
    font-weight: normal;
    white-space: nowrap;
}

.content_text p a {
    color: #666;
    white-space: nowrap;
    text-overflow: ellipsis;
    overflow: hidden;
    width: 100%;
}

.pagination {
    display: flex;
    justify-content: center;
    margin-top: 3vw;
}

.pagenum {
    display: flex;
    align-items: center;
}

.pagination span {
    margin-left: 5px;
}

.pagination a {
    position: relative;
    display: block;
    padding: 0.5rem 0.75rem;
    margin-left: 0.5rem;
    line-height: 1.25;
    color: #333;
    background-color: #fff;
    border: 1px solid #0A509F;
    text-decoration: none;
    transition: all 0.2s ease-in-out;
    border-radius: 4px;
}

.pagination a:first-child {
    margin-left: 0;
}

.pagination a:hover {
    color: #0A509F;
    background-color: rgba(10, 80, 159, 0.05);
    border-color: #0A509F;
    box-shadow: 0 2px 5px rgba(10, 80, 159, 0.25);
}

.pagination a.page-num-current {
    z-index: 1;
    color: #fff;
    background-color: #0A509F;
    border-color: #0A509F;
    font-weight: bold;
    box-shadow: 0 2px 8px rgba(10, 80, 159, 0.3);
}

.pagination a:focus {
    outline: 0;
    box-shadow: 0 0 0 3px rgba(10, 80, 159, 0.25);
}

.pagination .hide {
    display: none;
}

.sj {
    text-align: center;
}

.pagination select {
    padding: 0.5rem 0.45rem;
    margin-left: 0.5rem;
    line-height: 1.25;
    color: #333;
    background-color: #fff;
    border: 1px solid #0A509F;
    text-decoration: none;
    transition: all 0.2s ease-in-out;
    border-radius: 4px;
    font-size: 16px;
    outline: none;
}