

/* CSS Document */
* {
    -webkit-tap-highlight-color: transparent;
}

/*===========================header=============================*/
.headerbox {
    position: fixed;
    top: 0;
    z-index: 998;
    z-index: 999;
    height: 6.875rem;
    width: 100%;
}

#header {
    width: 100%;
    transition: .6s;
}

#header>.m {
    display: flex;
    height: 100%;
    max-width: 1760px;
    justify-content: space-between;
    align-items: center;
    position: static;
}

#header .fr {
    display: flex;
    justify-content: space-between;
    width: calc(50% + 2rem);
}

#header .line01 {
    position: absolute;
    left: 0;
    bottom: 0;
    width: 0;
    height: 1px;
    background: rgb(245 245 245 / 30%);
    z-index: -1;
    animation: longer 4s 1.5s linear forwards;
}

#header .line02 {
    position: absolute;
    width: 1px;
    height: 100%;
    background: rgb(245 245 245 / 30%);
    right: 6.25rem;
    top: 0;
    z-index: 1;
}

#header.xg .line02 {
    background: rgb(177 171 171 / 30%);
}

@-webkit-keyframes longer {
    from {
        width: 0;
    }

    to {
        width: 100%;
    }
}

@keyframes longer {
    from {
        width: 0;
    }

    to {
        width: 100%;
    }
}

#logo {
    flex-shrink: 0;
}

#logo a {
    display: flex;
    height: 100%;
    align-items: center;
}

#logo img {
    height: 48px;
    transition: .5s;
    -webkit-transition: .5s;
    -moz-transition: .5s;
    -ms-transition: .5s;
    -o-transition: .5s;
}

#logo .img01 {
    display: none;
}

#logo .img02 {
    display: block;
}

#nav {
    flex-grow: 1;
}

#nav ul {
    display: flex;
    flex-grow: 1;
    gap: 4.5rem;
    justify-content: flex-end;
}

#nav ul li {
    float: left;
    position: relative;
    z-index: 0;
    text-align: center;

}

#nav ul li>a {
    display: flex;
    text-transform: uppercase;
    font-size: 0;
    gap: .625rem;
    align-items: center;
}

#nav ul li h3 {
    font-size: 1.0625rem;
    color: #fff;
    transition: .5s;
    -webkit-transition: .5s;
    -moz-transition: .5s;
    -ms-transition: .5s;
    -o-transition: .5s;
    line-height: 6.875rem;
    overflow: hidden;
    text-align: center;
    position: relative;
    z-index: 1;
    display: inline-block;
}


#nav ul li:before {
    content: "";
    width: 100%;
    height: 3px;
    position: absolute;
    bottom: 0;
    left: 0;
    background: #fff;
    transition: 0.3s ease-in-out;
    transform: scaleX(0);
    transform-origin: center;
}

#nav ul li.on:before,
#nav ul li:hover:before {
    transform: scaleX(1);
}

#nav li .sub {
    position: absolute;
    padding-top: .5rem;
    left: 50%;
    width: 6rem;
    top: 100%;
    z-index: 999;
    transform-origin: 0 0 0;
    transform: translateY(10px) translateX(-50%);
    -webkit-transition: all 0.3s ease 0s;
    -moz-transition: all 0.3s ease 0s;
    transition: all 0.3s ease 0s;
    opacity: 0;
    visibility: hidden;
}

#nav li .sub .box {
    padding: 0;
    text-align: left;
    background: rgba(255, 255, 255, 0.9);
    padding: 1rem;
    border-radius: 5px;
    -webkit-box-shadow: 0px 3px 5px rgba(0, 0, 0, 0.2);
    -moz-box-shadow: 0px 3px 5px rgba(0, 0, 0, 0.2);
    box-shadow: 0px 3px 5px #3333334d;
}

#nav li .sub a {
    padding: 0;
    line-height: 2rem;
    transition: .3s;
    font-size: .875rem;
    color: #505050;
    text-align: center;
    display: flex;
    width: 100%;
    align-items: center;
    justify-content: center;
    white-space: nowrap;
    position: relative;
}

/* #nav li .sub a:before{ content: ""; display: block; width: 4px; height: 14px; position: absolute; left: -.5rem; top: 50%; margin-top: -8px; background: #003a8e; transform: scaleY(0); transition: .5s;} */
#nav li .sub a:hover {
    color: #003a8e;
}

/* #nav li .sub a:hover:before{transform: scaleY(1); } */
#nav li:hover .sub {
    filter: alpha(opacity=100);
    -moz-opacity: 1;
    -khtml-opacity: 1;
    opacity: 1;
    visibility: visible;
    transform: translateY(0px) translateX(-50%);
}


.top_menu_box {
    display: flex;
    align-items: center;
    height: 100%;
}

.menumap {
    position: absolute;
    top: 50%;
    right: 0;
    transform: translate(0, -50%);
    cursor: pointer;
    transition: all .5s;
    height: 100%;
}

#header.xg .menumap img {
    content: url(../image/nav1.png);
}

.top_menu_box .top_menu {
    display: flex;
    min-width: 6.25rem;
    padding: 0 2.25rem;
    align-items: center;
    position: relative;
    z-index: 1;
    border-radius: 50%;
}

.top_menu_box .top_menu a {
    display: flex;
    align-items: center;
    justify-content: center;
    width: 100%;
    height: 100%;
}

.top_menu_box .top_menu svg {
    width: 1.5rem;
    height: 1.5rem;
}

.top_menu_box .top_menu.btn_language svg path {
    fill: #fff;
}

.top_menu_box .top_menu svg:nth-child(3) {
    width: 1rem;
    height: 1rem;
}

.top_menu_box .top_menu span {
    margin-left: .75rem;
    margin-right: .375rem;
    font-size: 1rem;
    color: #fff;
    transition: .5s;
}

.top_menu_box .top_menu.btn_search svg {
    width: 1.5rem;
    height: 1.5rem;
}



#header.xg .fr svg path {
    fill: #333;
}

body.on .after {
    visibility: visible;
    opacity: 1;
}

body .after {
    content: "";
    position: fixed;
    top: 0;
    right: 0;
    bottom: 0;
    left: 0;
    background: rgba(0, 0, 0, 0.8);
    z-index: 1000;
    visibility: hidden;
    transition: 0.6s;
    opacity: 0;
}

video {
    
}

#header.xg {
    background: rgba(255, 255, 255, 1);
    box-shadow: 0 1px 2px rgba(0, 0, 0, 0.15);
}

#header.xg #nav ul li h3 {
    color: #333;
}

#header.xg #nav ul li:before {
    background: #003a8e;
}

#header.xg #logo .img01 {
    display: block;
}

#header.xg #logo .img02 {
    display: none;
}

#header.xg .top_menu_box .top_menu svg path {
    fill: #003a8e !important;
}

#header.xg .top_menu_box .top_menu span {
    color: #333;
}

#header.xg .top_menu_box .top_menu:before {
    background: rgba(0, 0, 0, 0.2);
}

/* #header:hover{ background: rgba(255, 255, 255, 1); box-shadow: 0 1px 2px rgba(0, 0, 0, 0.15);}
#header:hover #nav ul li h3{ color: #333; }
#header:hover #nav ul li h3:before{ background: #003a8e;}
#header:hover #logo .img01{ display: block;}
#header:hover #logo .img02{ display: none;}
#header:hover .top_menu_box .top_menu svg path{ fill: #003a8e !important;}
#header:hover .top_menu_box .top_menu span{ color: #333;}
#header:hover .top_menu_box .top_menu:before{ background: rgba(0, 0, 0, 0.2);} */
/***********************/

/*手机导航开始*/
#m_header {
    display: none;
    height: 4.5rem;
    position: fixed;
    top: 0;
    width: 100%;
    z-index: 997;
    transition: .5s;
}

#m_header.xg {
    background: #003a8e;
}

/* #m_header.xg #logo .img01{ display: block;}
#m_header.xg #logo .img02{ display: none;} */
/* .xg .menubtn span:after,
.xg .menubtn span:before{ background: #333; } */
#m_header .m {
    position: relative;
    height: 100%;
    display: flex;
    align-items: center;
}

#m_header #logo img {
    height: 32px;
}

.m_nav_list {
    /* flex-direction:column; */
    /* justify-content: flex-start; */
    width: 100%;
    /* overflow: auto; */
}

.m_nav_list::-webkit-scrollbar {
    display: none
}

#m_nav .top_search {
    display: flex;
    justify-content: center;
    margin-right: 0;
    margin-top: 1rem;
    margin-bottom: 1rem;
}

/*搜索*/
.top_search {
    display: flex;
    justify-content: center;
    margin-top: 1rem;
    margin-bottom: 1rem;
    opacity: 0;
    transition: all 0.5s cubic-bezier(0.445, 0.145, 0.355, 1);
    transform: translateY(30px);
}

#m_nav.act .top_search {
    opacity: 1;
    transition: all 0.5s .5s cubic-bezier(0.445, 0.145, 0.355, 1);
    transform: translateY(0);
}

.top_search form {
    width: 304px;
    height: 46px;
    background: none;
    border-radius: 26px;
    border: 1px solid rgb(191 195 200 / 63%);
    display: flex;
    align-items: center;
    justify-content: space-between;
}

.top_search form .input {
    width: 100px;
    height: 100%;
    background: none;
    border: 0;
    flex-grow: 1;
    color: #fff;
    padding-left: 20px;
}

.top_search form .button {
    width: 46px;
    height: 100%;
    cursor: pointer;
    background: url(../image/search-btn.svg) center no-repeat;
    background-size: 23px !important;
    border: 0;
    outline: 0;
    color: #fff;
}

.top_search form .button:active {
    background: url(../image/search-btn.svg) center no-repeat;
}

.top_search form .input::-webkit-input-placeholder {
    color: #fff;
}

.top_search form .input::-moz-placeholder {
    /* Mozilla Firefox 19+ */
    color: #fff;
}

.top_search form .input::-moz-placeholder {
    /* Mozilla Firefox 4 to 18 */
    color: #fff;
}

.top_search form .input::-ms-input-placeholder {
    /* Internet Explorer 10-11 */
    color: #fff;
}

.top_search form .input:focus::-webkit-input-placeholder {
    color: transparent;
}

.top_search form .input:focus:-moz-placeholder {
    color: transparent;
}

.top_search form .input:focus::-moz-placeholder {
    color: transparent;
}

.top_search form .input:focus:-ms-input-placeholder {
    color: transparent;
}

#m_nav {
    z-index: -1;
    position: fixed;
    background: #013281;
    width: 100%;
    height: 100vh;
    right: 0;
    top: 0;
    display: none;
    padding: 50px 0;
    overflow: hidden;
    pointer-events: none;
    transition: all 0.5s .5s cubic-bezier(0.445, 0.145, 0.355, 1);
    display: block;
    overflow: auto;
    visibility: hidden;
    opacity: 0;
    transform-origin: left;
}

#m_nav::-webkit-scrollbar {
    display: none;
}

#m_nav.act {
    pointer-events: auto;
    top: 0;
    visibility: visible;
    opacity: 1;
    z-index: 998;
    transition: all 0.5s cubic-bezier(0.445, 0.145, 0.355, 1);
}

#m_nav>ul>li {
    width: 80%;
    overflow: hidden;
    padding: 0 1rem;
    margin: 0 auto;
}

#m_nav>ul>li+li {
    border-top: 1px solid rgb(111 111 111 / 10%);
}

#m_nav li .a {
    display: block;
    transform: translateY(100%);
    overflow: hidden;
    transition: all 0.5s cubic-bezier(0.445, 0.145, 0.355, 1);
    opacity: 0;
}

#m_nav.act li .a {
    transform: translateY(0);
    transition: all 0.5s .6s cubic-bezier(0.445, 0.145, 0.355, 1);
    opacity: 1;
}

#m_nav li .a h3 {
    line-height: 4.5rem;
    height: 4.5rem;
    color: #ffffff;
    padding: 0;
    font-size: 1.25rem;
    float: left;
    font-weight: bold;
}

#m_nav li .a span {
    display: block;
    position: absolute;
    top: 0;
    right: 10px;
    width: 20px;
    height: 50px;
    text-align: center;
}

#m_nav li .a span i {
    font-size: 0;
}

#m_nav .title .a i {
    opacity: 1;
    filter: alpha(opacity=100);
    display: inline-block;
    width: 12px;
    height: 4.5rem;
    opacity: .8;
    float: right;
    display: inline-block;
    background: url(../image/arrow_down.svg) center no-repeat;
    background-size: contain;
}

#m_nav li.on.title .a i {
    transform: rotate(-90deg);
    -webkit-transform: rotate(-90deg);
    -moz-transform: rotate(-90deg);
}

#m_nav .on.title .a i {
    transform: rotate(-90deg);
    -webkit-transform: rotate(-90deg);
    -moz-transform: rotate(-90deg);
}

#m_nav li {
    display: block;
    width: 100%;
}

.slide_nav {
    position: absolute;
    left: 0;
    height: 70px;
    z-index: 998;
    padding: 15px;
    top: 0;
    width: 100%;
}

#m_nav .title .list {
    display: none;
    position: relative;
    width: 100%;
    z-index: 9;
    left: 0;
    margin-left: 0;
    background: none;
    border: 0;
    clear: both;
    padding-bottom: 10px;
}

#m_nav .title .list span {
    background: none;
}

#m_nav .title .list span a:hover {
    color: #014085;
}

#m_nav .title .list a {
    display: block;
    font-size: 1.125rem;
    color: rgb(255 255 255 / 53%);
    text-align: left;
    line-height: 35px;
    height: 35px;
    border: 0;
}

/*三级导航 开始*/
#m_nav .title .list .void>a {
    background-size: 10px;
    position: relative;
}

#m_nav .title .list .void>a:before {
    content: "·";
    position: absolute;
    left: -1em;
    font-size: 12px;
    font-weight: bold;
}

#m_nav .title .list span {
    position: relative;
    display: block;
}

#m_nav .title .list span .sub {
    position: static;
    width: 100%;
    display: block !important;
    overflow: hidden;
}

#m_nav .title .sub a {
    background: none;
    font-size: .875rem;
    opacity: .8;
    min-width: 50%;
    float: left;
    display: inline-block;
    color: #999;
}

.nav_mask {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    z-index: 1000;
    background-color: rgba(0, 0, 0, 0.4);
    display: none;
}



.search-dialog-box {
    position: fixed;
    left: 0;
    top: 0;
    width: 100%;
    height: 100%;
    z-index: 1000000;
    opacity: 0;
    visibility: hidden;
    transition: .6s;
}

.search-dialog-box .bubbles-bg {
    opacity: 0;
    visibility: hidden;
}

.search-dialog-box .search-bg {
    position: absolute;
    left: 50%;
    top: 50%;
    width: 120vw;
    height: 120vw;
    margin: -60vw 0 0 -60vw;
    background: #003a8e;
    background-size: cover;
    background-repeat: no-repeat;
    border-radius: 100%;
    /* z-index: 1; */
    transform: scale(0);
    transform-origin: center center;
    transition: transform .8s cubic-bezier(.77, 0, .175, 1);
}

.search-dialog-box .wrap-inner {
    transform: translateY(100%);
    transition: .6s;
}

.header-right .bubbles-bg {
    opacity: 0;
    visibility: hidden;
    transition: all .5s .8s;
}

.search-dialog-box .bubbles-bg .bubble {
    position: absolute;
}

.search-dialog-box .bubbles-bg .bubble .circle {
    border-radius: 100%;
    position: absolute;
    left: 0;
    top: 0;
    width: 100%;
    height: 100%;
}

.search-dialog-box .bubbles-bg .bubble1 {
    width: 6%;
    padding-top: 6%;
    left: 26.875%;
    top: -6.67%;
}

.search-dialog-box .bubbles-bg .bubble1 .circle {
    border: 1px solid #fff;
}

.search-dialog-box .bubbles-bg .bubble2 {
    width: 12px;
    padding-top: 12px;
    left: 13.54%;
    top: 18%;
}

.search-dialog-box .bubbles-bg .bubble2 .circle {
    background-color: #0054ae;
    opacity: .2;
}

.search-dialog-box .bubbles-bg .bubble3 {
    width: 36px;
    padding-top: 36px;
    left: 8.854%;
    top: 30.55%;
}

.search-dialog-box .bubbles-bg .bubble3 .circle {
    background-color: #fff;
}

.search-dialog-box .bubbles-bg .bubble4 {
    width: 56.875%;
    padding-top: 56.875%;
    left: -28.6458%;
    top: 51.85%;
}

.search-dialog-box .bubbles-bg .bubble4 .circle {
    background: -webkit-linear-gradient(45deg, rgba(255, 255, 255, 0), rgba(255, 255, 255, .05) 100%);
    background: -ms-linear-gradient(45deg, rgba(255, 255, 255, 0), rgba(255, 255, 255, .05) 100%);
    background: linear-gradient(45deg, rgba(255, 255, 255, 0), rgba(255, 255, 255, .05) 100%);
}

.search-dialog-box .bubbles-bg .bubble5 {
    width: 54px;
    padding-top: 54px;
    left: 26.3%;
    top: 70.83%;
}

.search-dialog-box .bubbles-bg .bubble5 .circle {
    background-color: #fff;
    opacity: .1;
}

.search-dialog-box .bubbles-bg .bubble6 {
    width: 56.875%;
    padding-top: 56.875%;
    left: 73.4375%;
    top: -52.77%;
}

.search-dialog-box .bubbles-bg .bubble6 .circle {
    background: -webkit-linear-gradient(135deg, rgba(255, 255, 255, .05), rgba(255, 255, 255, .1) 100%);
    background: -ms-linear-gradient(135deg, rgba(255, 255, 255, .05), rgba(255, 255, 255, .1) 100%);
    background: linear-gradient(135deg, rgba(255, 255, 255, .05), rgba(255, 255, 255, .1) 100%);
}

.search-dialog-box .bubbles-bg .bubble7 {
    width: 2rem;
    padding-top: 2rem;
    left: 60.9375%;
    top: 18.5%;
}

.search-dialog-box .bubbles-bg .bubble7 .circle {
    background-color: #0054ae;
    opacity: .2;
}

.search-dialog-box .bubbles-bg .bubble8 {
    width: 1.35rem;
    padding-top: 1.35rem;
    left: 95.83%;
    top: 70.83%;
}

.search-dialog-box .bubbles-bg .bubble8 .circle {
    border: 1px solid #fff;
}

.search-dialog-box .bubbles-bg .bubble9 {
    width: 16px;
    padding-top: 16px;
    left: 76.5625%;
    top: 96.296%;
}

.search-dialog-box .bubbles-bg .bubble9 .circle {
    background-color: #fff;
}

.search-dialog-box .bubbles-bg .bubble10 {
    width: 56.875%;
    padding-top: 56.875%;
    left: 71.354%;
    top: 87%;
}

.search-dialog-box .bubbles-bg .bubble10 .circle {
    background: -webkit-linear-gradient(135deg, rgba(255, 255, 255, .05), rgba(255, 255, 255, .3) 100%);
    background: -ms-linear-gradient(135deg, rgba(255, 255, 255, .05), rgba(255, 255, 255, .3) 100%);
    background: linear-gradient(135deg, rgba(255, 255, 255, .05), rgba(255, 255, 255, .3) 100%);
}

.search-dialog-box .bubbles-bg .bubble {
    animation: spin 8s infinite linear;
    transform-origin: 50% 45%;
}

.search-dialog-box .bubbles-bg .bubble:nth-child(2n) {
    animation: spin2 8s infinite linear;
}

.search-dialog-box .bubbles-bg .bubble .circle {
    animation: spin-reverse 8s infinite linear;
}

.search-dialog-box .bubbles-bg .bubble:nth-child(2n) .circle {
    animation: spin-reverse2 8s infinite linear;
}

.search-dialog-box .bubbles-bg .sm-bubble {
    transform-origin: 30% 30px;
}

.search-dialog {
    position: absolute;
    left: 0;
    top: 50%;
    transform: translateY(-50%);
    width: 100%;

}

.search-dialog .search-tit {
    font-size: 2.25rem;
    line-height: 3.5rem;
    color: #fff;
    text-align: center;
    overflow: hidden;
}

.search-dialog .search-inner {
    overflow: hidden;
    margin-top: 3.35rem;
}

.search-dialog .search-input {
    width: 50rem;
    margin: 0 auto;
    padding: 0 0.5rem 0 1.5rem;
    background-color: rgba(0, 0, 0, .1);
    border-radius: .5rem;
    box-sizing: border-box;
    transition: all .3s;
    max-width: 94%;
}

.search-dialog .search-input input[type=text] {
    float: left;
    height: 4rem;
    width: calc(100% - 3.5rem);
    background-color: transparent;
    font-size: 1.125rem;
    line-height: .5rem;
    color: #fff;
    transition: all .3s;
}

.search-dialog .search-input input[type=text]::-webkit-input-placeholder {
    color: rgba(255, 255, 255, 0.5);
}

.search-dialog .search-input input[type=text]:-moz-placeholder {
    color: rgba(255, 255, 255, 0.5);
}

.search-dialog .search-input input[type=text]::-moz-placeholder {
    color: rgba(255, 255, 255, 0.5);
}

.search-dialog .search-input input[type=text]:-ms-input-placeholder {
    color: rgba(255, 255, 255, 0.5);
}

.search-dialog .search-input input[type=submit],
.search-dialog .search-input .clear-btn {
    float: right;
    height: 3.5rem;
    width: 3.5rem;
}

.search-dialog .search-input .input_submit {
    background: none;
    border: 0;
    outline: 0;
    height: 4rem;
}

.search-dialog .search-input .input_submit svg {
    width: 1.875rem;
    height: 1.875rem;
}

.search-dialog .search-input .clear-btn {
    background-color: rgba(0, 0, 0, .2);
    background-repeat: no-repeat;
    background-position: center;
    background-image: url('../image/close-btn.svg');
    background-size: 3.5rem;
    border-radius: 100%;
    margin-right: 1rem;
    display: none;
}

.search-dialog .search-input.on {
    background-color: #fff;
}

.search-dialog .search-input.on input[type=submit] {
    background-image: url('http://www.xapyyj.com/static/style/pc/images/search-btn2.svg')
}

.search-dialog .hot-search {
    font-size: 0;
    width: 19.5rem;
    margin: .6rem auto 0;
    box-sizing: border-box;
    padding: 0 .6rem;
    overflow: hidden;
}

.search-dialog .hot-search .hot-tit,
.search-dialog .hot-search .hot-link {
    display: inline-block;
    *display: inline;
    zoom: 1;
    vertical-align: top;
}

.search-dialog .hot-search .hot-tit {
    font-size: .375rem;
    line-height: .5rem;
    color: #fff;
    font-weight: bold;
    padding-left: .6rem;
    background-repeat: no-repeat;
    background-position: left center;
    background-size: .5rem;
    background-image: url(http://www.xapyyj.com/static/style/pc/images/hot-icon.png);
}

.search-dialog .hot-link {
    margin-left: 1rem;
}

.search-dialog .hot-link a {
    display: inline-block;
    *display: inline;
    zoom: 1;
    font-size: .375rem;
    line-height: .5rem;
    margin-right: .75rem;
    color: #fff;
    padding-bottom: 5px;
    position: relative;
}

.search-dialog .hot-link a:before {
    content: "";
    position: absolute;
    left: 0%;
    bottom: 0;
    width: 100%;
    height: 2px;
    background-color: #fff;
    transform: scaleX(0);
    transform-origin: left center;
    transition: transform .3s;
}

.search-dialog-box .bottom-box {
    position: absolute;
    left: 0;
    bottom: 5.1%;
    width: 100%;
}

.search-dialog-box .bottom-box .share-box {
    overflow: hidden;
}

.search-dialog-box .bottom-box .copy {
    font-size: .35rem;
    line-height: .5rem;
    color: #fff;
    font-family: "gilroy-regular";
    margin-top: .5rem;
    overflow: hidden;
}

.header-right.is-open .bubbles-bg {
    visibility: visible;
    opacity: 1;
}

.header-right.is-open .search-btn .con-box {
    display: none;
}




.header-right.is-open .close-btn {
    display: block;
}

.header-right.is-open .item .search-bg {
    transform: scale(1);
}

.search-dialog-box.on {
    opacity: 1;
    visibility: visible;
}

.search-dialog-box.on .search-bg {
    transform: scale(1);
}

.search-dialog-box.on .bubbles-bg {
    opacity: 1;
    visibility: visible;
}

.search-dialog-box.on .wrap-inner {
    transform: translateY(0)
}

.pub-close {
    position: absolute;
    width: 2.5rem;
    height: 2.5rem;
    z-index: 10;
    right: 3.125%;
    top: 1.35rem;
    background-color: rgba(0, 0, 0, .1);
    border-radius: 100%;
}

.pub-close .bg {
    position: absolute;
    left: 0;
    top: 0;
    width: 100%;
    height: 100%;
    background-color: #1c5ab7;
    transform: scale(0);
    border-radius: 100%;
    transition: transform .3s;
}

.pub-close i {
    position: absolute;
    left: 0;
    top: 0;
    width: 100%;
    height: 100%;
    background-position: center;
    background-size: 0.75rem;
    background-repeat: no-repeat;
    background-image: url(../image/close-btn.svg);
    transition: .6s
}

.pub-close i:hover {
    transform: rotate(180deg)
}

@keyframes spin {
    to {
        transform: rotate(1turn);
    }
}

@keyframes spin2 {
    to {
        transform: rotate(-1turn);
    }
}

@keyframes spin-reverse {
    from {
        transform: rotate(1turn);
    }
}

@keyframes spin-reverse2 {
    from {
        transform: rotate(-1turn);
    }
}

/*首页banner*/
#banner {
    position: relative;
    z-index: 0;
    overflow: hidden;
}

#banner .swiper {
    height: 100vh;
}

#banner .swiper-slide {
    overflow: hidden;
}

#banner .slide-inner {
    position: absolute;
    width: 100%;
    height: 100%;
    left: 0;
    top: 0;
    background-size: cover;
    background-position: center;
    background-repeat: no-repeat !important;
}

#banner .txt {
    color: #fff;
    height: 100%;
    display: flex;
    flex-direction: column;
    align-items: flex-start;
    justify-content: center;
}

#banner .txt h3 {
    font-size: 4.625rem;
    font-weight: bold;
    font-family: Arial;
    text-transform: uppercase;
}

#banner .txt h4 {
    font-size: 4rem;
    margin: 0 0 2rem;
    font-weight: bold;
    font-family: "微软雅黑", arial;
}

#banner .txt span {
    display: block;
    font-size: 1.375rem;
    line-height: 2rem;
}

#banner .txt a {
    width: 11.875rem;
    height: 3.4375rem;
    display: flex;
    align-items: center;
    justify-content: center;
    color: #fff;
    font-size: 1rem;
    line-height: 2.125rem;
    border-radius: 1.875rem;
    background: #1c509c;
    margin-top: 3.75rem;
    gap: 5px;
}

#swiper1 .swiper-button-white {
    background: transparent;
    display: flex;
    align-items: center;
    justify-content: center;
    width: 4.375rem;
    height: 4.375rem;
    top: 50%;
    transform: translate(0, -50%);
    transition: all .5s;
    border-radius: .375rem;
    border: 2px solid rgb(255 255 255 / 50%);
    transition: all .5s;
}

#swiper1 .swiper-button-white:hover {
    background: #1c509c;
    border: 2px solid #1c509c;
}

#swiper1 .s_next {
    left: auto;
    right: 5.5rem;
}

#swiper1 .s_prev {
    right: auto;
    left: 5.5rem;
}

#banner .txtanim01 {
    opacity: 0;
}

#banner .txtanim02 {
    opacity: 0;
}

#banner .txtanim03 {
    opacity: 0;
}

#banner .txtanim04 {
    opacity: 0;
}

#banner .swiper-slide.swiper-slide-active .txtanim01 {
    animation: enter 1.2s forwards .2s;
}

#banner .swiper-slide.swiper-slide-active .txtanim02 {
    animation: enter 1.2s forwards .3s;
}

#banner .swiper-slide.swiper-slide-active span {
    animation: enter 1.2s forwards .4s;
}

#banner .swiper-slide.swiper-slide-active a {
    animation: enter 1.2s forwards .4s;
}

#banner .swiper-slide.swiper-slide-active .slide-inner {
    animation: scaleUpDown 7s linear forwards;
    -webkit-animation: scaleUpDown 7s linear forwards;
}

@-webkit-keyframes svgrotate {
    0% {
        stroke: rgba(255, 255, 255, 1);
        stroke-dasharray: 0, 62.8;
        stroke-dashoffset: 62.8;
    }

    100% {
        stroke: rgba(255, 255, 255, 1);
        stroke-dasharray: 62.8, 0;
        stroke-dashoffset: 62.8;
    }
}

@keyframes enter {}

@-webkit-keyframes enter {
    0% {
        opacity: 0;
        transform: translateY(100px);
        -webkit-transform: translateY(100px);
        -moz-transform: translateY(100px);
        -ms-transform: translateY(100px);
        -o-transform: translateY(100px);
    }

    20% {
        opacity: 0;
        transform: translateY(100px);
        -webkit-transform: translateY(100px);
        -moz-transform: translateY(100px);
        -ms-transform: translateY(100px);
        -o-transform: translateY(100px);
    }

    100% {
        opacity: 1;
        transform: translateY(0px);
        -webkit-transform: translateY(0px);
        -moz-transform: translateY(0px);
        -ms-transform: translateY(0px);
        -o-transform: translateY(0px);
    }
}

@keyframes enter {
    0% {
        opacity: 0;
        transform: translateY(100px);
        -webkit-transform: translateY(100px);
        -moz-transform: translateY(100px);
        -ms-transform: translateY(100px);
        -o-transform: translateY(100px);
    }

    20% {
        opacity: 0;
        transform: translateY(100px);
        -webkit-transform: translateY(100px);
        -moz-transform: translateY(100px);
        -ms-transform: translateY(100px);
        -o-transform: translateY(100px);
    }

    100% {
        opacity: 1;
        transform: translateY(0px);
        -webkit-transform: translateY(0px);
        -moz-transform: translateY(0px);
        -ms-transform: translateY(0px);
        -o-transform: translateY(0px);
    }
}

@-webkit-keyframes scaleUpDown {
    from {
        -webkit-transform: scale(1.5);
        transform: scale(1.5);
    }

    to {
        -webkit-transform: scale(1);
        transform: scale(1);
    }
}

@keyframes scaleUpDown {
    from {
        -webkit-transform: scale(1.5);
        transform: scale(1.5);
    }

    to {
        transform: scale(1);
        transform: scale(1);
    }
}


.index-header {
    position: absolute !important;
    z-index: 99 !important;
    background: none !important;
    opacity: .5;
    pointer-events: none;
    height: 100%;
    width: 100%;
    left: 0;
    top: 0;
    mix-blend-mode: lighten;
}

.index-stars {
    position: absolute;
    z-index: 99;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    z-index: 1;
}

#n_main {
								}

.n_banner {
    height: 36.25rem;
    width: 100%;
    overflow: hidden;
    position: relative;
    z-index: 9;
    background-size: cover !important;
}

.n_banner .m {
    display: flex;
    height: 100%;
    align-items: center;
    justify-content: flex-start;
    text-align: left;
    font-family: "微软雅黑", arial;
}


.n_banner .m h4 {
    color: #fff;
    font-weight: bold;
    font-size: 3rem;
    line-height: 4rem;
}


.n_title {
    padding: 0;
    position: relative;
    z-index: 2;
}

.n_title:after {
    content: "";
    display: block;
    width: 100%;
    height: 1px;
    position: absolute;
    left: 0;
    bottom: 0;
    background: rgba(255, 255, 255, .2);
}

.n_title .m {
    position: relative;
    display: flex;
    justify-content: center;
    align-items: center;
}

.n_nav {
    position: relative;
}

.n_nav ul {
    display: flex;
    justify-content: center;
    gap: 3.75rem;
}

.n_nav li {
    display: block;
    font-size: 1.125rem;
    color: #fff;
    line-height: 5.625rem;
    z-index: 1;
    position: relative;
}

.n_nav li a {
    display: block;
    transition: .5s;
}

.n_nav li:before {
    content: "";
    width: 100%;
    height: 3px;
    position: absolute;
    background: #2478e2;
    bottom: 0;
    left: 0;
    margin-left: -1px;
    transform: scaleX(0);
    transform-origin: top;
    transition: 0.3s ease-in-out;
    opacity: 0;
    z-index: -1;
}

.n_nav li.on:before,
.n_nav li:hover:before {
    opacity: 1;
    transform: scaleX(1);
}

.position {
    left: 0;
    bottom: 0;
    font-size: .9375rem;
    color: #747679;
    display: flex;
    align-items: center;
}

.position>svg {
    margin-right: 5px;
}

.position a {
    margin: 0 4px;
}

.position span,
.position a,
.position i {
    font-size: .875rem;
    color: #838486;
    flex-shrink: 0;
    -moz-transition: all 0.36s ease-in-out;
    -webkit-transition: all 0.36s ease-in-out;
    -o-transition: all 0.36s ease-in-out;
    -ms-transition: all 0.36s ease-in-out;
    transition: all 0.36s ease-in-out;
}

.position i {
    margin: 0px .25rem;
    font-style: normal;

}

.position .ems {
    color: #164b94;
}

.position span {
    color: #164b94;
    font-style: normal;
}

.position em {
    color: #164b94;
    font-style: normal;
}

.position a:hover {
    color: #164b94;
}

#certify .img:before {
    content: "";
    display: block;
    width: 100%;
    height: 100%;
    position: absolute;
    left: 0;
    top: 0;
    z-index: 9;
    background: rgba(0, 0, 0, 0.4);
}

#certify .swiper-slide-active .img:before {
    background: rgba(0, 0, 0, 0);
}

/*====移动端导航====*/
#m_n_nav {
    display: none;
    line-height: 50px;
    position: relative;
    z-index: 9;
    width: 100%;
    background: #013281;
}

#m_n_nav .m {
    display: flex;
    align-items: center;
    justify-content: center;
}

#bnt_back {}

#bnt_back svg {
    fill: #fff;
    height: 50px;
    vertical-align: middle;
    width: 26px;
}

#m_n_nav i {}

#m_n_nav h1 {
    font-size: 14px;
    color: #fff;
    text-align: center;
    margin: 0;
    line-height: 50px;
}

#bnt_back {
    position: absolute;
    left: 1rem;
    top: 0;
}

#bnt_sub_nav {
    position: absolute;
    right: 1rem;
    top: 0;
    cursor: pointer;
    color: #fff;
    font-size: 18px;
}

#bnt_sub_nav svg {
    fill: #fff;
    height: 50px;
    vertical-align: middle;
    width: 20px;
}

#bnt_sub_nav img {
    display: block;
    height: 15px;
}

#bnt_sub_nav.on img {
    -webkit-transform: rotate(-180deg);
    transform: rotate(-180deg);
}

#sub_nav_content {
    background: #fff;
    display: none;
    box-shadow: 0 0 5px #999;
    z-index: 9;
    border-bottom: 1px solid #999;
}

#sub_nav_content ul {
    padding: 10px;
}

#sub_nav_content ul li {
    display: block;
    line-height: 28px;
    margin: 1rem 0;
}

#sub_nav_content ul li a {
    display: block;
    border-left: 2px solid #013281;
    height: 30px;
    line-height: 30px;
    font-size: 14px;
    padding-left: 10px;
    color: #535455;
}

#sub_nav_content ul li.on a {
    color: #013281;
}

#sub_nav_content dl {
    font-size: 0;
    overflow: hidden;
    background: #fff;
    padding: 10px 0;
    border-top: 1px solid #e7e7e7;
}

#sub_nav_content dt {
    position: relative;
    background: #fff;
    z-index: 999;
    width: 33.333333%;
    display: inline-block;
    margin-bottom: 0;
    float: left;
    text-align: center;
}

#sub_nav_content dt a {
    margin: 0 10px;
    display: block;
    color: #5b5349;
    line-height: 30px;
    font-size: 15px;
    font-weight: 400;
    vertical-align: top;
    font-family: Alibaba-PuHuiTi-Regular;
}

#sub_nav_content dt a i {
    position: absolute;
    right: 15px;
    top: 0;
    opacity: 0;
    filter: alpha(opacity=0);
    display: none;
}

#sub_nav_content dt a {}

#sub_nav_content dt.title {
    background: #fafafb;
}

#sub_nav_content dt.title i {
    opacity: 1;
    filter: alpha(opacity=100);
}

#sub_nav_content dt.title_on {
    background: #fafafb;
}

#sub_nav_content dt.title_on a {
    color: #e50019;
    border-top: 1px solid #fff;
}

#sub_nav_content dt.title_on a i {
    color: #013281;
}

#sub_nav_content dt.last a {
    border-top: 1px solid #f8f8f8;
}

#sub_nav_content dt.on a,
#sub_nav_content dt.title_on a {
    color: #013281;
}

#sub_nav_content dd {}

#sub_nav_content dd .box {
    padding: 0px 0px 0px 0px;
}

#sub_nav_content dd a {
    padding: 0 25px;
    line-height: 30px;
    font-size: 13px;
    color: #5b5349;
    display: block;
    height: 30px;
}

#sub_nav_content dd a.on {
    color: #e50019;
}

@-webkit-keyframes roll {
    from {
        -webkit-transform: rotate(0);
        transform: rotate(0);
    }

    to {
        -webkit-transform: rotate(360deg);
        transform: rotate(360deg);
    }
}

@keyframes roll {
    from {
        -webkit-transform: rotate(0);
        transform: rotate(0);
    }

    to {
        -webkit-transform: rotate(360deg);
        transform: rotate(360deg);
    }
}

.s_pro.pad_top {
    width: 100%;
    overflow: hidden;
    padding-bottom: 10rem !important;
    background: url(http://www.xapyyj.com/static/style/pc/images/s_pro_bg.png) center top no-repeat;
    background-size: cover;
    color: #fff;
    position: relative;
    z-index: 1;
}

.s_pro .bg {
    position: absolute;
    left: 0;
    top: 0;
    width: 100%;
    height: 100%;
    mix-blend-mode: screen;
}

.s_pro .bg .m {
    display: grid;
    grid-template-columns: 1fr 1fr;
    grid-auto-rows: 45rem;
}

.s_pro .bg img {
    max-width: none;
    align-self: center;
    justify-self: center;
    animation: spin-reverse3 10s infinite linear;
}

@-webkit-keyframes spin-reverse3 {
    0% {
        transform: translateX(0) translateY(0);
    }

    50% {
        transform: translateX(20px) translateY(30px);
    }

    100% {
        transform: translateX(0) translateY(0);
    }
}

.s_pro .m {
    max-width: 1440px;
}

.s_pro .txtbox {
    position: relative;
    width: 100%;
    direction: ltr;
    max-width: 390px;
    justify-self: center;
}

.s_pro .txt h4 {
    opacity: 0;
    font-size: 1.25rem;
    color: #fff;
    font-weight: bold;
    margin-bottom: .9375rem;
}

.s_pro .txt h3 {
    opacity: 0;
    font-size: 2.625rem;
    color: #fff;
    margin-bottom: 1.75rem;
}

.s_pro .txt .con {
    opacity: 0;
    font-size: 1rem;
    line-height: 2.25rem;
    margin-bottom: 9.625rem;
}

.s_pro .pic {
    opacity: 0;
    display: flex;
    align-items: center;
    justify-content: center;
    transition: .5s;
}

.s_pro .bd .swiper-slide.swiper-slide-active .txt h4 {
    animation: enter 1.2s forwards .2s;
}

.s_pro .bd .swiper-slide.swiper-slide-active .txt h3 {
    animation: enter 1.2s forwards .3s;
}

.s_pro .bd .swiper-slide.swiper-slide-active .txt .con {
    animation: enter 1.2s forwards .4s;
}

.s_pro .bd .swiper-slide.swiper-slide-active .pic {
    animation: scaleUpDown2 1.5s forwards .2s;
}


.s_pro .bd {
    display: grid;
    gap: 5rem;
}

.s_pro .item {
    display: grid;
    grid-template-columns: 1fr 1fr;
    align-items: center;
}

.s_pro .item:nth-child(2) {
    direction: rtl;
}

.s_pro .swiper-pagination {
    height: 14px;
    position: absolute;
    left: 0;
    text-align: left;
    top: 16rem;
}

.s_pro .swiper-pagination .swiper-pagination-bullet {
    width: 14px;
    height: 14px;
    margin: auto !important;
    margin-right: 10px !important;
    border-radius: 50%;
    border-radius: 50%;
    border: 1px solid rgba(255, 255, 255, .4);
    background: none;
    opacity: 1;
}

.s_pro .swiper-pagination .swiper-pagination-bullet.swiper-pagination-bullet-active {
    border: 1px solid #fff;
}

.swiper-slide-active {
    opacity: 1 !important;
}


@-webkit-keyframes scaleUpDown2 {
    from {
        -webkit-transform: scale(.8);
        opacity: 0;
        transform: scale(.8);
    }

    to {
        -webkit-transform: scale(1);
        transform: scale(1);
        opacity: 1;
    }
}

@keyframes scaleUpDown2 {
    from {
        -webkit-transform: scale(.8);
        opacity: 0;
        transform: scale(.8);
    }

    to {
        transform: scale(1);
        transform: scale(1);
        opacity: 1;
    }
}

.s_about {
    position: relative;
    z-index: 9;
    margin-top: -20rem;
}

.s_about .outbox {
    width: 100%;
    height: 62rem;
    overflow: hidden;
    background: url(http://www.xapyyj.com/static/style/pc/images/s_about_bg.png) center top no-repeat;
    background-size: 100% 100%;
    padding-top: 20.25rem;
    color: #fff;
}

.s_about .m {
    display: grid;
    grid-template-columns: 1fr 1fr;
}

.s_about .tt {
    font-size: 3.625rem;
    line-height: 4.5rem;
}

.s_about .diqiu {
    margin-left: 10%;
    margin-top: -1.25rem;
    width: 16rem;
}

.s_about .txt {}

.s_about .txt h3 {
    font-size: 1.875rem;
    color: #fff;
}

.s_about .txt .con {
    font-size: 1rem;
    line-height: 2.125rem;
    margin: 1.75rem 0 3.25rem;
}

.s_about .txt .btn_style01 {}

.s_buju {
    width: 100%;
    overflow: hidden;
    /* background: url(../images/s_buju_bg.png) center top no-repeat; background-size: 100% 100%; */
    margin-top: -11rem;
    position: relative;
    z-index: 7;
    height: 65.5rem;
}

.s_buju .m {
    display: flex;
    justify-content: center;
    align-items: center;
}

.s_buju .bd {
    display: grid;
    grid-template-columns: 28rem 1fr;
}

.s_buju .tt {
    color: #fff;
}

.s_buju .tt h3 {
    font-size: 1.625rem;
    font-weight: bold;
    margin-top: 6rem;
}

.s_buju .tt h4 {
    font-size: 3.125rem;
    margin: 1.75rem 0 3.625rem;
}

/* .s_buju .tt .yueqiu2{ animation: spin-reverse3 10s infinite linear;} */
.yueqiu2 {
    width: 8.75rem;
    margin-top: 3rem !important;
}

.map_buju {
    position: relative;
    display: inline-block;
}

.map_buju img {
    display: block;
}

.map_buju ul li {
    position: absolute;
    cursor: pointer;
    font-size: 13px;
    color: #5c5c5c;
}

.map_buju ul li p {
    position: absolute;
    z-index: 1;
    top: 100%;
    line-height: 24px;
    color: #003a8e;
    font-size: 12px;
    white-space: nowrap;
    left: 50%;
    transform: translateX(-50%);
    transition: .5s;
    margin-top: 1.5rem;
}

.map_buju ul li p:before {
    content: "";
    position: absolute;
    left: -52px;
    width: 45px;
    height: 1px;
    background: #babcbe;
    z-index: -1;
    top: 50%;
    display: none;
}

.map_buju ul li.li_0 {
    top: 54%;
    left: 51%;
}

.map_buju ul li.li_1 {
    top: 69%;
    left: 57.5%;
}

.map_buju ul li.li_2 {
    top: 94%;
    left: 55%;
}

.map_buju ul li.li_2 p {
    color: #fff;
}

.map_buju .circle {
    width: 0;
    height: 0;
    position: relative;
    z-index: 2;
}

.map_buju .circle.red span {
    background: #0e45a9;
}

.map_buju .circle.purple span {
    background: #0e45a9;
}

.map_buju .circle:before {
    content: "";
    width: 6px;
    height: 6px;
    position: absolute;
    top: 50%;
    margin-top: -3px;
    margin-left: -3px;
    left: 50%;
    border-radius: 50%;
    background: #fff;
    display: block;
    box-sizing: border-box;
    z-index: 99;
}

.map_buju .circle:after {
    content: "";
    width: 20px;
    height: 20px;
    position: absolute;
    top: 50%;
    margin-top: -10px;
    margin-left: -10px;
    left: 50%;
    border-radius: 50%;
    background: #003a8e;
    display: block;
    box-sizing: border-box;
    z-index: 98;
}

.map_buju .circle span {
    width: 2.5rem;
    height: 2.5rem;
    position: absolute;
    top: 50%;
    margin-top: -1.25rem;
    margin-left: -1.25rem;
    left: 50%;
    border-radius: 50%;
    background-color: #0e45a9;
    -webkit-transform: scale(0);
    -moz-transform: scale(0);
    -ms-transform: scale(0);
    transform: scale(0);
    -webkit-animation: circleScale 3s linear infinite;
    -moz-animation: circleScale 3s linear infinite;
    -ms-animation: circleScale 3s linear infinite;
    animation: circleScale 3s linear infinite;
    z-index: 0;
}

.map_buju .circle span:nth-of-type(2) {
    animation-delay: 1s;
}

.map_buju .circle span:nth-of-type(3) {
    animation-delay: 2s;
}

@keyframes circleScale {
    0% {
        opacity: .5;
        -webkit-transform: scale(.5);
        -moz-transform: scale(.5);
        -ms-transform: scale(.5);
        transform: scale(.5);
    }

    100% {
        opacity: 0;
        -webkit-transform: scale(2);
        -moz-transform: scale(2);
        -ms-transform: scale(2);
        transform: scale(2);
    }
}

@keyframes circleScale1 {
    0% {
        opacity: 1;
        -webkit-transform: scale(0);
        -moz-transform: scale(0);
        -ms-transform: scale(0);
        transform: scale(0);
    }

    60% {
        opacity: 1;
    }

    100% {
        opacity: 0;
        -webkit-transform: scale(3);
        -moz-transform: scale(3);
        -ms-transform: scale(3);
        transform: scale(3);
    }
}



.s_tt {
    text-align: center;
    margin-bottom: 3.75rem;
}

.s_tt h3 {
    font-size: 1.5rem;
    color: #fff;
    font-weight: bold;
    margin-bottom: 1.5rem;
}

.s_tt h4 {
    font-size: 2.5rem;
    color: #ffffff;
}

.s_coop {
    width: 100%;
    overflow: hidden;
    background: url(http://www.xapyyj.com/static/style/pc/images/s_coop_bg.png) center top no-repeat;
    background-size: cover;
    height: 69.25rem;
    margin-top: -9.625rem;
    position: relative;
    z-index: 9;
    padding-top: 12rem;
    color: #fff;
    display: none;
}

.s_coop .s_tt {
    margin-bottom: 2.5rem;
}

.s_coop ul {
    background: none !important;
}

.s_coop li {
    width: 220px;
    height: 220px;
    margin: 1rem 2rem;
    display: inline-block;
}

.s_coop li .box,
.s_coop li .img {
    height: 100%;
}

.s_coop li .img {
    background: url(http://www.xapyyj.com/static/style/pc/images/coop_border.png) center no-repeat;
    background-size: contain;
}

.s_coop .btn_style01 {
    margin: 3rem auto 0;
}

.playbtn {
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 1.5rem;
    transition: .5s;
    cursor: pointer;
}

.playbtn .ico {
    display: flex;
    align-items: center;
    z-index: 1;
    justify-content: center;
    width: 5.25rem;
    height: 5.25rem;
    position: relative;
    float: left;
}

.playbtn .ico svg {}

.playbtn .ico:after,
.playbtn .ico:before {
    width: 100%;
    height: 100%;
    content: '';
    display: block;
    -webkit-box-sizing: border-box;
    box-sizing: border-box;
    position: absolute;
    top: 0;
    left: 0;
    border-style: solid;
    border-color: #fff;
    border-radius: 50%;
    border-width: 1px;
    -webkit-transition-timing-function: cubic-bezier(.215, .61, .355, 1);
    transition-timing-function: cubic-bezier(.215, .61, .355, 1);
    -webkit-transition-property: opacity, -webkit-transform;
    transition-property: opacity, -webkit-transform;
    transition-property: transform, opacity;
    transition-property: transform, opacity, -webkit-transform;
}

.playbtn .ico:after {
    opacity: 0;
    -webkit-transform: scale(.8);
    transform: scale(.8);
}

.playbtn:hover .ico:after,
.playbtn:hover .ico:before {
    -webkit-transition-duration: 1.2s;
    transition-duration: 1.2s
}

.playbtn:hover .ico:before {
    opacity: 0;
    -webkit-transform: scale(1.4);
    transform: scale(1.4);
}

.playbtn:hover .ico:after {
    opacity: 1;
    -webkit-transform: scale(1);
    transform: scale(1);
}

.playbtn p {
    display: block;
    line-height: 1;
    color: #fff;
    font-size: 1.625rem;
}

.s_bg {
    width: 100%;
    height: calc(100% - 100vh);
    min-height: 100vh;
    position: absolute;
    left: 0;
    bottom: 0;
    background: url(http://www.xapyyj.com/static/style/pc/images/index_bg.jpg) center bottom no-repeat;
    background-size: cover;
    z-index: -1;
}

.s_hd {
    display: flex;
    justify-content: space-between;
    align-items: flex-end;
   
}

.s_hd .s_tt {
    margin-bottom: 0;
}

.s_news {
    padding-top: 0rem;
}

.s_news .m {
    max-width: 1560px;
}

.s_news .bd {
    display: grid;
    grid-template-columns: 3.5fr 3fr;
    gap: 4rem;
}

.s_news .left .img {
    height: 28.75rem;
}

.s_news .left .box {
    position: relative;
    z-index: 1;
    border-radius: .9375rem;
    overflow: hidden;
}

.s_news .left .box .mask {
    position: absolute;
    left: 0;
    top: 0;
    width: 100%;
    height: 100%;
    display: flex;
    align-items: center;
    justify-content: center;
    background: rgba(0, 0, 0, 0.2);
}

.s_news .right {}

.s_news .right ul {}

.s_news .right ul li {}

.s_news .right ul li .box {
    display: grid;
    grid-template-columns: 50px 1fr;
    align-items: center;
    padding: 1.75rem 0;
    gap: 1.25rem;
    border-bottom: 1px dashed rgba(255, 255, 255, .2);
}

.s_news .right ul li .time {
    color: rgba(255, 255, 255, .5);
    font-size: 1rem;
    text-align: center;
    font-family: BarlowCondensed-Regular;
}

.s_news .right ul li .time span {
    font-size: 2.75rem;
    font-family: BarlowCondensed-Medium;
    display: block;
}

.s_news .right ul li .txt {}

.s_news .right ul li .txt h5 {
    font-size: 1.25rem;
    color: #ffffff;
    margin-bottom: .75rem;
}

.s_news .right ul li .txt p {
    font-size: .8125rem;
    color: rgba(255, 255, 255, .6);
    white-space: nowrap;
    overflow: hidden;
    text-overflow: ellipsis;
}

.s_news .right ul li:nth-child(1) .box {
    padding-top: 0;
}

#foot {
    width: 100%;
    background: url(../image/footerbg.jpg) no-repeat;
    background-size: cover;
    position: relative;
    z-index: 10;
    color: #fff;
}

.foot_logo {
    margin-bottom: 3rem;
    width: 21.875rem;
    margin-top: -2.25rem;
}

#foot .box1 {
    display: flex;
    justify-content: space-between;
    padding-bottom: 3rem;
    border-bottom: 1px solid rgb(255 255 255 / 15%);
    position: relative;
}



#foot .box1 {
    display: flex;
    justify-content: space-between;
    gap: 5rem;
}

#foot .box1 .foot_lx h5 {
    color: #fff;
    font-size: 1.125rem;
    line-height: 2.125rem;
    font-weight: bold;
    margin-bottom: 1rem;
}

#foot .box1 .lianxius {
    display: flex;
    align-items: center;
    gap: 4rem;
}

#foot .box1 .lianxius ul {
    display: flex;
    flex-direction: column;
}

#foot .box1 .lianxius ul li {
    color: #fff;
    font-size: 1rem;
    line-height: 2.25rem;
}

.foot_ewm {
    display: flex;
    padding: .625rem;
    align-items: center;
    justify-content: center;
    border: 1px solid rgb(255 255 255 / 20%);
    max-width: 9.375rem;
    max-height: 9.375rem;
}



.foot_nav {
    display: flex;
    justify-content: space-between;
    flex-grow: 1;
    max-width: 385px;
}

.foot_nav dt {
    font-size: 1.125rem;
    color: #fff;
    line-height: 2.125rem;
    margin-bottom: 1.5rem;
    font-weight: bold;
}

.foot_nav dd {
    font-size: .9375rem;
    line-height: 2.125rem;
    color: rgba(255, 255, 255, 0.6);
    transition: .5s;
}

.foot_share {
    display: flex;
    align-items: center;
    position: relative;
    z-index: 8;
}

.foot_share ul {
    display: flex;
    gap: 8px;
}

.foot_share ul li {
    position: relative;
}

.foot_share ul li .ico {
    width: 2.25rem;
    height: 2.25rem;
    border-radius: 50%;
    border: 1px solid rgba(255, 255, 255, 0.4);
    display: flex;
    align-items: center;
    justify-content: center;
    cursor: pointer;
    transition: .5s;
    -webkit-transition: .5s;
    -moz-transition: .5s;
    -ms-transition: .5s;
    -o-transition: .5s;
}

.foot_share ul li .ico a {
    display: flex;
    align-items: center;
    justify-content: center;
}

.foot_share ul li .ico svg {
    max-height: 20px;
}

.foot_share ul li .ico svg path {
    fill: rgba(255, 255, 255, 0.4);
}

.foot_share ul li .ewmbox {
    position: absolute;
    opacity: 0;
    visibility: hidden;
    width: 9rem;
    left: 0;
    bottom: calc(100% + 1rem);
}

.foot_share ul li:hover .ewmbox {
    opacity: 1;
    visibility: visible;
}

.foot_share ul li .ewm {
    position: relative;
    background: #f8f8f8;
    padding: 5px;
    border: 1px solid #ddd;
    padding-bottom: .25rem;
    border-radius: 2px;
    -webkit-border-radius: 2px;
    -moz-border-radius: 2px;
    -ms-border-radius: 2px;
    -o-border-radius: 2px;
}

.foot_share ul li .ewm img {
    width: 100%;
    mix-blend-mode: multiply;
}

.foot_share ul li .ewm p {
    font-size: .8125rem;
    text-align: center;
    color: #666;
    line-height: 1.25;
    padding-bottom: .5rem;
}

.foot_share ul li .ewm:before {
    content: "";
    display: block;
    width: 10px;
    height: 10px;
    border-right: 1px solid #ddd;
    border-bottom: 1px solid #ddd;
    transform: rotate(45deg);
    position: absolute;
    z-index: 1;
    background: #f8f8f8;
    left: .75rem;
    top: 100%;
    margin-top: -5px;
}

.foot_share ul li:hover .ico svg path {
    fill: #fff
}

.foot_share ul li:hover .ico {
    border: 1px solid #fff;
}

#foot .box2 {
    display: flex;
    justify-content: space-between;
    margin-top: 2rem;
}

#foot .box2 .fwi {
    display: flex;
    gap: 1.0625rem;
    align-items: center;
}

#foot .box2 .fwi svg path {
    opacity: .8;
    fill: #fff;
    transition: all .5s;
}

#foot .box2 .fwi a,
#foot .box2 .fwi .wx {
    width: 2.5rem;
    height: 2.5rem;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    border: 1px solid rgba(255, 255, 255, .3);
    transition: all .5s;
}

#foot .box2 .fwi a:hover svg path,
#foot .box2 .fwi .wx:hover svg path {
    opacity: 1;
}

#foot .box2 .fwi a:hover,
#foot .box2 .fwi .wx:hover {
    border: 1px solid rgba(255, 255, 255, 1);
}

#foot .box2 .fwi p {
    color: #fff;
    font-size: 1rem;
}



.copyright {
    font-size: .875rem;
    color: rgba(255, 255, 255, .3);
    line-height: 1.5rem;
    text-align: center;
}

.copyright a {
    transition: .3s;
    display: inline-block;
}

.fwi div {
    cursor: pointer;
    position: relative;
}

.fwi div .ewmqrcode {
    display: none;
    border: 1px solid #eee;
    position: absolute;
    z-index: 10;
    top: -110px;
    left: -32px;
    width: 100px;
    height: 100px;
    color: #666;
    font-size: 12px;
    text-align: center;
    background-color: #fff;
    box-shadow: 0 2px 10px #aaa;
    transition: all 200ms;
    -webkit-tansition: all 350ms;
    -moz-transition: all 350ms;
}

.fwi .wx:hover .ewmqrcode,
.fwi .qq:hover .ewmqrcode {
    display: block;
}

.online_q {
    position: fixed;
    right: 2rem;
    bottom: 10%;
    z-index: 999;
    transition: .5s;
    -webkit-transition: .5s;
    border-radius: 2.5rem;
    padding: 1.25rem 0;
}

.online_q .close {
    position: absolute;
    right: -1rem;
    font-size: 1rem;
    color: #969797;
    opacity: 1;
    font-weight: normal;
    cursor: pointer;
}

.online_q .btn2 {
    width: 3.375rem;
    height: 3.375rem;
    margin-bottom: 4px;
    background: #164b94;
    transition: .5s;
    border-radius: .375rem;
    cursor: pointer;
    position: relative;
}

.online_q .btn-top {
    padding: 0;
    transition: .5s;
    overflow: hidden;
}

.online_q .btn2 a {
    font-size: 12px;
    color: #fff;
}

.online_q .btn2 span {
    display: flex;
    float: left;
    color: #fff;
    flex-direction: column;
    font-size: .75rem;
    text-align: center;
    width: 3.375rem;
    height: 3.375rem;
    justify-content: center;
    align-items: center;
    position: relative;
    z-index: 999;
    overflow: hidden;
    transition: .3s;
    -webkit-transition: .3s;
    overflow: hidden;
    flex-shrink: 0;
}

.online_q .open.pic {
    position: absolute;
    background: #eef2f6;
    border-radius: 3px;
    width: 100px;
    height: 100px;
    right: 60px;
    top: 50%;
    margin-top: -50px;
    text-align: right;
    opacity: 0;
    transition: .6s;
    -webkit-transition: .6s;
    visibility: hidden;
}

.online_q .open.pic img {
    width: 80px;
    height: 80px;
    margin-top: 10px;
    margin-right: 10px;
}

.online_q .btn2:hover .open.pic {
    opacity: 1;
    right: 60px;
    visibility: visible;
}

.online_q .open.phone {
    position: absolute;
    background: #eef2f6;
    width: 150px;
    height: 3.125rem;
    border-radius: 3px;
    right: 60px;
    display: flex;
    align-items: center;
    justify-content: center;
    color: #529de1;
    top: 0;
    transition: .6s;
    -webkit-transition: .6s;
    opacity: 0;
    visibility: hidden;
}

.online_q .open.phone p {
    color: #003a8e;
    font-family: BarlowCondensed-Regular;
    font-size: 1.5rem;
}

.online_q .btn2:hover .open.phone {
    transition: .5s;
    -webkit-transition: .5s;
    opacity: 1;
    visibility: visible;
}

.online_q .open.pic:before {
    content: "";
    display: block;
    width: 0;
    height: 0;
    border: 10px solid transparent;
    border-left: 10px solid #eef2f6;
    position: absolute;
    right: -15px;
    top: 50%;
    margin-top: -10px;
}

.online_q .open.phone:before {
    content: "";
    display: block;
    width: 0;
    height: 0;
    border: 10px solid transparent;
    border-left: 10px solid #eef2f6;
    position: absolute;
    right: -15px;
    top: 50%;
    margin-top: -10px;
}

.online_q .btn2:hover {
    background: #003a8e;
}

#gotop {
    background: #0d2f5e;
}

#gotop.hide {
    height: 0;
    overflow: hidden;
    display: block !important;
}

.foot_nav dd:hover {
    color: #fff;
}


.n_buju {
    width: 100%;
    overflow: hidden;
    position: relative;
    z-index: 7;
}

.n_buju .m {
    max-width: 1480px;
}

.n_buju .tt {
    color: #fff;
    display: flex;
    justify-content: space-between;
}

.n_buju .tt h3 {
    font-size: 1.875rem;
}

.n_buju .tt h4 {
    font-size: 3rem;
    margin: 1.75rem 0 5.625rem;
}

.n_buju .bd {
    display: flex;
    align-items: center;
    justify-content: center;
}

.buju_add {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    color: #fff;
    gap: 8.75rem;
    margin: 0 auto 2.375rem;
}

.buju_add dl {}

.buju_add dl dt {
    font-size: 1.375rem;
    margin-bottom: 1.25rem;
}

.buju_add dl dt svg {
    margin-bottom: .75rem;
    width: 1.625rem;
    height: 1.625rem;
}

.buju_add dl dd {
    font-size: 1rem;
    line-height: 1.875rem;
}

.n_leader {
    width: 100%;
    overflow: hidden;
    color: #fff;
}

.n_leader .m {
    max-width: 1480px;
}

.n_leader .box1 {
    display: flex;
    justify-content: space-between;
    align-items: center;
}

.n_leader .box1 .txt {}

.n_leader .box1 .txt h3 {
    font-size: 3.625rem;
    margin-bottom: 1.875rem;
}

.n_leader .box1 .txt h4 {
    font-size: 1.5rem;
    line-height: 2.875rem;
}

.n_leader .box1 .txt .star {
    width: 151px;
    height: 151px;
    margin-top: 2.25rem;
    position: relative;
    z-index: 1;
    display: flex;
    align-items: center;
    justify-content: center;
}

.n_leader .box1 .txt .star:before {
    content: "";
    width: 100%;
    height: 100%;
    position: absolute;
    left: 0;
    top: 0;
    background: url(http://www.xapyyj.com/static/style/pc/images/n_leader_star_border.png) center no-repeat;
    background-size: contain;
    animation: roll 15s infinite;
}

.n_leader .box1 .img {
    width: 26.5rem;
    border-radius: 50%;
    overflow: visible;
}

.n_leader .box1 .img:before {
    content: "";
    display: block;
    width: 100%;
    height: 100%;
    position: absolute;
    left: 0;
    top: 0;
    transform: scale(1.1);
    border-radius: 50%;
    border: 1px solid rgba(36, 117, 221, 0.2);
}

.n_leader .box1 .img:after {
    padding-top: 100%;
}

.n_leader .box1 .img .pic {
    width: 100%;
    height: 100%;
    max-width: inherit;
    border-radius: 50%;
    overflow: hidden;
}

.n_leader .box1 .img .pic img {
    width: 100%;
    height: 100%;
    max-width: inherit;
}

.n_leader .box2 {
    margin-top: 5.625rem;
}

.n_leader .box2 .con {
    font-size: 1.1rem;
    line-height: 1.75;
}

.n_leader .box2 .con h4 {
    font-size: 1.375rem;
}

.n_news {
    width: 100%;
    overflow: hidden;
}

.n_news ul {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    column-gap: 1.5rem;
    row-gap: 1.875rem;
}

.n_news ul li {}

.n_news ul li a {
    display: block;
    overflow: hidden;
    height: 100%;
    background: #edeff0;
}

.n_news ul li a .img {}

.n_news ul li a .img img {}

.n_news ul li a .img:after {
    padding-top: 61.7%;
}

.n_news ul li a .txt {
    background: #edeff0;
    padding: 2.625rem 2.875rem;
}

.n_news ul li .txt span {
    font-size: 1.125rem;
    color: #858585;
    font-family: BarlowCondensed-Regular;
}

.n_news ul li .txt h4 {
    font-size: 1.375rem;
    line-height: 1.875rem;
    color: #000000;
    margin-top: 1.25rem;
    margin-bottom: .75rem;
}

.n_news ul li .txt p {
    font-size: .875rem;
    color: #7b7e7f;
    line-height: 1.375rem;
    height: 2.75rem;
    overflow: hidden;
}

.n_news ul li .txt .btn_more {
    margin-top: 1.875rem;
    font-size: .875rem;
    color: #373737;
    transition: .5s;
}

.n_news ul li:hover .txt .btn_more {
    color: #2478e2;
}

.btn_loadmore {
    display: flex;
    align-items: center;
    justify-content: center;
    margin-top: 3.25rem;
}

.btn_loadmore .btn_style01 {
    color: #262626;
    width: 167px;
    height: 57px;
}

.btn_loadmore .btn_style01 svg path {
    stroke: #2478e2;
}

.btn_loadmore .btn_style01:after {
    border: 1px solid #e2e2e2;
}

.n_case {
    width: 100%;
    overflow: hidden;
}

.n_case ul {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    column-gap: 1.5rem;
    row-gap: 1.875rem;
    gap: 1.875rem 1.5rem;
}

.n_case ul li {
    background: #edf0f3;
}

.n_case ul li .box {
    padding: 3.5rem 3rem;
    display: block;
    display: flex;
    flex-direction: column;
    align-items: center;
}

.n_case ul li .img {
    width: 12.125rem;
    border-radius: 50%;
    background: #fff;
}

.n_case ul li .img img {
    width: 65%;
}

.n_case ul li .img:after {
    padding-top: 100%;
}

.n_case ul li .txt {
    text-align: center;
    padding-top: 2.25rem;
}

.n_case ul li .txt h4 {
    font-size: 1.5rem;
    color: #000000;
    font-weight: bold;
}

.n_case ul li .txt p {
    font-size: .9375rem;
    color: #646464;
    line-height: 1.5rem;
    height: 3rem;
    margin: 1.5rem 0 2.5rem;
}

.n_case ul li .txt svg {
    display: block;
    margin: 0 auto;
}


.tc_case {
    width: 1280px;
    max-width: 90%;
    background: #fff;
    padding: 7.25rem 6rem;
    position: relative;
}

.tc_case .box {
    display: flex;
    gap: 3.75rem;
    align-items: flex-start;
}

.tc_case .box .img {
    max-width: 10.75rem;
    border: 1px solid #e3e3e3;
    margin: 0 auto;
    border-radius: 50%;
    transition: .5s;
    flex-shrink: 0;
}

.tc_case .box .img:after {
    padding-top: 100%;
}

.tc_case .box .txt {
    flex-grow: 1;
}

.tc_case .box .txt .tt {
    margin-bottom: 1.875rem;
}

.tc_case .box .txt .tt h3 {
    font-size: 1.5rem;
    color: #000000;
    margin-bottom: .5rem;
}

.tc_case .box .txt .tt span {
    font-size: 1rem;
    color: #878684;
}

.tc_case .box .txt .con {
    font-size: .9375rem;
    color: #5e5e5e;
    line-height: 1.875rem;
}


#list_slide .content {
    overflow: hidden;
}

#list_slide .content .left {
    width: 62%;
    padding-right: 3.25rem;
}

#list_slide .content .right {
    width: 38%;
}

#list_slide .content .right .flex {
    display: flex;
}

#list_slide .content .right .pic {
    flex-shrink: 0;
    width: 7.4375rem;
    margin-right: 2rem;
}

#list_slide .content .right .applybox {
    display: flex;
    color: #404044;
    flex-direction: column;
    justify-content: space-between;
    align-items: flex-start;
}

#list_slide .content .right .tt {
    font-size: 1rem;
}

#list_slide .content .scrollbox {
    height: 28.5rem;
    overflow: auto;
    padding-right: 2.5rem;
}

.scrollbox::-webkit-scrollbar {
    width: 2px;
    height: 8px;
    background-color: #d9dce0;
}

.scrollbox::-webkit-scrollbar-track {
    border-radius: 10px;
    background-color: #d9dce0;
}

.scrollbox::-webkit-scrollbar-thumb {
    border-radius: 10px;
    background-color: #003a8e;
    box-shadow: 0;
    -webkit-box-shadow: inset 0 0 0px rgba(0, 0, 0, 0);
}

#list_slide .content .right .li+.li {
    margin-top: 1rem;
}




.btn_play {
    width: 4rem;
    height: 4rem;
    display: flex;
    align-items: center;
    justify-content: center;
    position: relative;
}

.btn_play .arr {
    width: 13px;
    height: 15px;
}

.btn_play .border {
    width: 100%;
    height: 100%;
    position: absolute;
    left: 0;
    top: 0;
    z-index: 1;
    transition: 0s;
}

.btn_play:hover .border {
    transform: rotate(360deg);
    transition: 2s;
}







.n_news_xq {
    margin-top: -8.375rem;
    position: relative;
    z-index: 3;
    display: flex;
    align-items: flex-start;
}

.n_news_xq .left_con {
    padding-right: 3rem;
    flex-grow: 1;
}

.n_news_xq .right_con {
    width: 24.375rem;
    flex-shrink: 0;
}

.right_con {
    position: sticky;
    top: 6rem;
    padding-top: .5rem;
}

.right_con .tt {
    font-size: 1.375rem;
    color: #303030;
    padding-bottom: 1.0625rem;
    border-bottom: 2px solid #d5d6d9;
    margin-bottom: 1.5rem;
    display: flex;
    align-items: center;
}

.right_con .ico {
    width: 2.375rem;
    height: 2.375rem;
    background: #003a8e;
    display: flex;
    align-items: center;
    justify-content: center;
    margin-right: 1rem;
}


.n_news_xq {
    background: #fff;
    padding: 4.5rem 3.375rem;
}

.n_lianxi .n_subnav {
    justify-content: center;
}

#mymap,
iframe {
    width: 100%;
    height: 100%;
}

.amap-info-content {
    padding: 15px 20px;
}

.amap-info-content h5 {
    font-size: 15px;
    color: #333;
    margin-bottom: 3px;
}

.amap-info-content p {
    font-size: 14px;
    color: #999;
}

.n_lianxi {}

.n_lianxi .bd {
    display: grid;
    grid-template-columns: 28.875rem 1fr;
    margin-top: 3.75rem;
    gap: 10px;
}

.n_lianxi .bd .left {
    background: #032e7c;
    color: #fff;
    padding: 3.75rem;
}

.n_lianxi .txt {}

.n_lianxi .txt h3 {
    font-size: 1.875rem;
    color: #fff;
    margin-bottom: 1.75rem;
}

.n_lianxi .txt p {
    font-size: 1rem;
    line-height: 2.375rem;
}

.n_lianxi .ewm {
    margin: .375rem;
    display: inline-block;
    margin-top: 3.75rem;
}

.n_lianxi .ewm .pic {
    width: 8.875rem;
    height: 8.875rem;
    position: relative;
    z-index: 1;
    display: flex;
    align-items: center;
    justify-content: center;
}

.n_lianxi .ewm .pic:before {
    content: "";
    display: block;
    width: 100%;
    height: 100%;
    right: -.375rem;
    top: .375rem;
    z-index: -1;
    border: 1px solid rgba(255, 255, 255, .2);
    position: absolute;
}

.n_lianxi .ewm .pic:after {
    content: "";
    display: block;
    width: 100%;
    height: 100%;
    right: .375rem;
    top: -.375rem;
    z-index: -1;
    border: 1px solid rgba(255, 255, 255, .2);
    position: absolute;
}

.n_lianxi .ewm .pic img {
    width: 7rem;
    height: 7rem;
}

.n_lianxi .ewm p {
    font-size: .875rem;
    color: #fff;
    text-align: center;
    margin-top: .25rem;
    line-height: 3.125rem;
}

.n_team {
    position: relative;
    color: #fff;
    width: 100%;
    overflow: hidden;
}

.n_team .m {
    max-width: 1480px;
}

.n_team .con {
    font-size: 1.375rem;
    color: #ffffff;
    text-align: center;
    margin-bottom: 3.875rem;
}

.n_team .con span {
    font-size: 4.375rem;
    font-family: BarlowCondensed-SemiBold;
}

.n_team ul {
    display: flex;
    justify-content: space-between;
    gap: 1.5rem;
}

.n_team ul li {
    position: relative;
    width: 210px;
    border-radius: 50%;
    border: 1px solid rgba(255, 255, 255, .3);
}

.n_team ul li:after {
    content: "";
    display: block;
    width: 100%;
    height: 0;
    padding-top: 100%;
}

.n_team ul li .box {
    position: absolute;
    width: 100%;
    height: 100%;
    left: 0;
    top: 0;
    display: flex;
    align-items: center;
    justify-content: center;
    flex-direction: column;
}

.n_team ul li .box div {}

.n_team ul li .box div span {
    font-size: 5rem;
    font-family: BarlowCondensed-Bold;
}

.n_team ul li .box div i {
    font-size: 1rem;
}

.n_team ul li .box p {
    font-size: 1.125rem;
    margin: .75rem 0;
}

.team_earth {
    display: flex;
    justify-content: center;
    overflow: hidden;
    margin-top: 3.25rem;
}

.team_earth img {
    display: block;
    width: 35.125rem;
}

#n_zhuanli {
    overflow: hidden;
    border: 0;
    height: 39rem;
}

.n_xuanchuan {
    position: relative;
}

.n_xuanchuan .n_hd {
    display: flex;
    flex-direction: column;
    position: absolute;
    left: 0;
    top: 0;
}

.n_xuanchuan .n_hd .yueqiu3 {
    position: static;
    margin-top: 4rem;
}

.n_xuanchuan .bd {}

.n_xuanchuan .bd ul {
    display: grid;
    grid-template-columns: 1fr 1fr;
    row-gap: 7.625rem;
    padding-top: 19.3125rem;
    ;
}

.n_xuanchuan .bd ul li {}

.n_xuanchuan .bd ul li .box {}

.n_xuanchuan .bd ul li .img {}

.n_xuanchuan .bd ul li .img:after {
    padding-top: 65.4%;
}

.n_xuanchuan .bd ul li .txt {
    padding: 2.375rem 3.625rem;
}

.n_xuanchuan .bd ul li .txt span {
    font-size: .875rem;
    color: #747474;
}

.n_xuanchuan .bd ul li .txt h5 {
    font-size: 1.5rem;
    color: #000000;
    margin-bottom: 1.25rem;
    margin-top: 1rem;
}

.n_xuanchuan .bd ul li .txt svg {}

.n_xuanchuan .bd ul li:nth-child(even) {
    margin-top: -19.3125rem;
}


.n_ys {
    height: 64.5rem;
    color: #fff;
    background: url(http://www.xapyyj.com/static/style/pc/images/n_ys_bg.png) center no-repeat;
    background-size: 100% 100%;
    width: 100%;
    left: 0;
    top: 0;
    position: relative;
    z-index: 3;
}

.n_ys .m {
    display: flex;
    align-items: center;
    padding-bottom: 5rem;
}

.n_ys .box {
    display: flex;
    justify-content: space-between;
    gap: 3rem;
}

.n_ys .txt {
    padding-top: 4.875rem;
    position: relative;
    z-index: 3;
}

.n_ys .txt h3 {
    font-size: 3rem;
    line-height: 3.75rem;
    margin-bottom: 3.75rem;
}

.n_ys .txt h6 {
    font-size: 1.875rem;
    font-weight: bold;
    margin-bottom: 1.25rem;
}

.n_ys .txt p {
    font-size: 1.125rem;
    line-height: 2.125rem;
    margin-bottom: 3.25rem;
}

.n_ys .txt span {
    font-size: 1.5rem;
    font-family: BarlowCondensed-Regular;
}

.n_ys .imgbox {
    position: relative;
    flex-shrink: 0;
}

.n_ys .img {
    width: 32.8125rem !important;
    height: auto !important;
    overflow: hidden;
    position: relative;
    z-index: 2;
}

.n_ys .img:after {
    padding-top: 100%;
}

.n_ys .imgbox i {
    position: absolute;
    left: -8.4375rem;
    top: -4rem;
    z-index: 1;
    font-size: 17.5rem;
    font-family: BarlowCondensed-Bold;
    text-shadow: 0 1px #4d75b0, 1px 0 #4d75b0, -1px 0 #4d75b0, 0 -1px #4d75b0;
    color: #003a8e;
}

.n_ys .txtanim01 {
    opacity: 0;
}

.n_ys .txtanim02 {
    opacity: 0;
}

.n_ys .txtanim03 {
    opacity: 0;
}

.n_ys .imgbox img {
    opacity: 0;
}

.n_ys .swiper-slide.swiper-slide-active .imgbox img {
    animation: fadeIn 1s forwards .2s;
}

.n_ys .swiper-slide.swiper-slide-active .txtanim01 {
    animation: enter 1.2s forwards .2s;
}

.n_ys .swiper-slide.swiper-slide-active .txtanim02 {
    animation: enter 1.2s forwards .3s;
}

.n_ys .swiper-slide.swiper-slide-active .txtanim03 {
    animation: enter 1.2s forwards .4s;
}

.n_ys .swiper {
    position: relative;
}

.n_ys .arrbox {
    position: absolute;
    left: -5px;
    bottom: 1rem;
    display: flex;
    gap: 1rem;
    height: 2rem;
    z-index: 990;
}

.n_ys .arrbox .arr {
    width: 2rem;
    height: 2rem;
    cursor: pointer;
    opacity: .6;
}

.n_ys .arrbox .arr:hover {
    opacity: 1;
}

.n_ys .img svg.drawcircle circle {
    fill: none;
    box-sizing: border-box;
    stroke-width: 1.5;
    stroke-dasharray: 0, 1649.33;
    stroke-dashoffset: 1649.33;
}

.n_ys .swiper-slide.swiper-slide-active .img svg.drawcircle circle {
    animation: svgrotate2 7s forwards;
}

@-webkit-keyframes fadeIn {
    0% {
        opacity: 0;
    }

    100% {
        opacity: 1;
    }
}

@-webkit-keyframes svgrotate2 {
    0% {
        stroke: rgba(255, 255, 255, 1);
        stroke-dasharray: 0, 1649.33;
        stroke-dashoffset: 1649.33;
    }

    100% {
        stroke: rgba(255, 255, 255, 1);
        stroke-dasharray: 1649.33, 0;
        stroke-dashoffset: 1649.33;
    }
}


.hvr-sweep-to-bottom {
    display: inline-block;
    vertical-align: middle;
    -webkit-transform: perspective(1px) translateZ(0);
    transform: perspective(1px) translateZ(0);
    position: relative;
    -webkit-transition-property: color;
    transition-property: color;
    -webkit-transition-duration: 0.3s;
    transition-duration: 0.3s;
}

[class^="hvr-"] {
    cursor: pointer;
}

.hvr-sweep-to-bottom:before {
    content: "";
    position: absolute;
    z-index: -1;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: rgba(0, 20, 243, 0.1);
    mix-blend-mode: multiply;
    -webkit-transform: scaleY(0);
    transform: scaleY(0);
    -webkit-transform-origin: 50% 0;
    transform-origin: 50% 0;
    -webkit-transition-property: transform;
    transition-property: transform;
    -webkit-transition-duration: 0.3s;
    transition-duration: 0.3s;
    -webkit-transition-timing-function: ease-out;
    transition-timing-function: ease-out;
}

.hvr-sweep-to-bottom:hover:before,
.hvr-sweep-to-bottom:focus:before,
.hvr-sweep-to-bottom:active:before {
    -webkit-transform: scaleY(1);
    transform: scaleY(1);
}


#banner .swiper-pagination {
    position: relative;
    display: inline-block;
    width: auto;
}

#banner .swiper-pagination span {
    width: 4.5rem;
    height: 3px;
    background: transparent;
    transition: .5s;
    border-radius: 50%;
    padding: 0;
    position: relative;
}

#banner .swiper-pagination span:before {
    content: "";
    display: block;
    width: 100%;
    height: 3px;
    position: absolute;
    left: 0;
    top: 0;
    transition: .3s;
    -webkit-transition: .3s;
    -moz-transition: .3s;
    -ms-transition: .3s;
    -o-transition: .3s;
    background: rgba(255, 255, 255, .25);
}

#banner .swiper-pagination span:after {
    content: "";
    display: block;
    width: 0;
    height: 3px;
    left: 0;
    margin-left: 0;
    position: absolute;
    top: 0;
    background: #fff;
}

#banner .swiper-pagination span.swiper-pagination-bullet-active:after {
    animation: anim-h 4s linear forwards;
    -webkit-animation: anim-h 4s linear forwards;
}

@-webkit-keyframes anim-h {
    0% {
        width: 0;
    }

    100% {
        width: 100%;
    }
}

@keyframes anim-h {
    0% {
        width: 0;
    }

    100% {
        width: 100%;
    }
}

#banner .bottom {
    position: relative;
    bottom: 4.375rem;
    height: 2rem;
    width: auto;
    padding: 0 2rem;
    text-align: center;
    display: flex;
    align-items: center;
    justify-content: center;

}




.s_container01 {
    padding: .9375rem 0;
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: .9375rem;
}

.s_container01>div {
    position: relative;
    z-index: 5;
}

.s_container01 .swiper .img_db:after {
    padding-top: 75.71%;
}

.s_container01 .guding {
    display: inline-flex;
    position: absolute;
    flex-direction: column;
    top: 0;
    right: 0;
    left: 0;
    padding: 6% 1rem 0;
    text-align: center;
    z-index: 1;
}

.s_container01 .guding h5 {
    font-size: 2rem;
    color: #fff;
    font-weight: bold;
    line-height: 1.5;
    margin-bottom: 1rem;
}

.s_container01 .guding p {
    color: rgb(255 255 255 / 80%);
    font-size: 1rem;
    line-height: 1.75rem;
}

.s_container01 .guding h6 {
    font-size: 1rem;
    color: rgb(255 255 255 / 80%);
    line-height: 1.75rem;
    display: flex;
    align-items: center;
    justify-content: center;
    margin: 1.375rem 0 0;
    transition: all .5s;
}

.s_container01 .guding a:hover h6 {
    color: #fff;
}

.s_container01 .left {
    border-radius: 0 .625rem .625rem 0;
    overflow: hidden;
}
.s_container01 .swiper-slide::before {
    content: '';
    position: absolute;
    width: 100%;
    height: 100%;
    left: 0;
    top: 0;
    background: rgba(0, 0, 0, .3);
    z-index: 1;
}
.s_container01 .right {
    border-radius: .625rem 0 0 .625rem;
    overflow: hidden;
}


.s_container01 .swiper-button-white {
    width: auto;
    height: auto;
}

.s_container01 .swiper-button-white svg path {
    transition: all .5s;
    fill: #98979f;
}

.s_container01 .swiper-button-white:hover svg path {
    fill: #fff;
}

.s_container01 .sz_next {
    left: auto;
    right: 2rem;
}

.s_container01 .sz_prev {
    left: 2rem;
    right: auto;
}

.s_container01 .right .tupian {
    position: relative;
}
.s_container01 .right .tupian  .img_db:after {
    padding-top: 75.8%;
}
.s_container01 .right .fuxian {
    position: absolute;
    top: 0;
}

/* .s_container01 .right .swiper-slide-active .fuxian {
    transform: translateY(0);
    opacity: 1;
} */

.s_container02 {
    background: url(../image/videobg.jpg) center no-repeat;
    position: relative;
    height: 40.625rem;
    overflow: hidden;
    background-attachment: fixed;
    background-size: cover;
}

.s_container02::before {
    content: '';
    position: absolute;
    width: 100%;
    height: 100%;
    background: rgb(3 23 51 / 45%);
}

.s_container02 .m>div {
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    height: 100%;
}

.s_container02 .m>div h5 {
    color: #fff;
    font-weight: bold;
    font-size: 3rem;
    line-height: 1.25;
}

.s_container02 .m>div p {
    color: #fff;
    font-size: 1.625rem;
    line-height: 1.25;
    margin: 1.25rem auto;
}


.btn_video2 {
    width: 6.875rem;
    height: 6.875rem;
    position: relative;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
}


.btn_video2 .mask3 {
    position: absolute;
    left: 0;
    top: 0;
    width: 100%;
    height: 100%;
    display: flex;
    align-items: center;
    justify-content: center;
}

.btn_video2 .mask3 img {
    animation: roll 3s infinite linear;
}

@-webkit-keyframes roll {
    0% {
        transform: rotate(0);
    }

    100% {
        transform: rotate(360deg);
    }
}

@keyframes roll {
    0% {
        transform: rotate(0);
    }

    100% {
        transform: rotate(360deg);
    }
}

.s_container03 {
    width: 100%;
    background: url(../image/meitibg.jpg)no-repeat;
    background-size: cover;
    position: relative;
}

.s_tit {
    text-align: center;
}

.s_tit h4 {
    color: #fff;
    font-size: 2.625rem;
    font-weight: bold;
}

.s_tit p {
    color: #fff;
    font-size: 1rem;
    margin-top: 1.25rem;
    line-height: 1.5;
}

.meiti {
    position: relative;
}

#meit .img_db:after {
    padding-top: 65.9%;
}

#meit .img {
    border-radius: 1rem;
    overflow: hidden;
}


#meit .mtcon {
    padding: 1.5rem .625rem;
}

#meit .mtcon p ,
#lanew .lacon  p {
    color: #ab2225;
    font-size: 1.25rem;
    line-height: 1.875rem;text-align: center;
}

#meit .mtcon h5 ,
#lanew .lacon h5 {
    color: #000;
    font-size: 1rem;
    line-height: 1.875rem;
    white-space: normal;
    margin: .875rem 0 1rem;
    transition: all .5s;
    height: 7rem;
}

#meit .mtcon .time ,
#lanew .lacon .time {
    font-size: 1rem;
    font-family: BARLOWCONDENSED-REGULAR;
}

#meit .mtcon ul ,
#lanew .lacon ul {
    display: flex;
    gap: .625rem;
    align-items: center;
    margin-top: 1.5rem;
}

#meit .mtcon ul li ,
#lanew .lacon ul li {
    display: flex;
    align-items: center;
    justify-content: center;
    color: #616161;
    font-size: .875rem;
    line-height: 1.875rem;
    border: 1px solid #c2c2c2;
    border-radius: 1rem;
    width: auto;
    padding: 0 1rem;
    height: 2rem;
}

#meit .swiper-slide:hover h5 ,
#lanew .swiper-slide:hover h5 {
    color: #ab2225;
}

.meiti .swiper-button-white,
.gcbz .swiper-button-white,
.factsb .swiper-button-white ,
.latnew .swiper-button-white {
    background: transparent;
    display: flex;
    align-items: center;
    justify-content: center;
    width: 3.5625rem;
    height: 3.5625rem;
    top: 50%;
    transition: all .5s;
    border-radius: .375rem;
    border: 2px solid #fff;
    transition: all .5s;
}

.meiti .swiper-button-white:hover,
.gcbz .swiper-button-white:hover,
.factsb .swiper-button-white:hover ,
.latnew .swiper-button-white:hover{
    background: #ab2225;
    border: 2px solid #ab2225;
}

.meiti .swiper-button-white svg path,
.gcbz .swiper-button-white svg path,
.factsb .swiper-button-white svg path ,
.latnew .swiper-button-white svg path {
    fill: #fff;
    transition: all .5s;
}

.meiti .swiper-button-white:hover svg path,
.gcbz .swiper-button-white:hover svg path,
.factsb .swiper-button-white:hover svg path ,
.latnew .swiper-button-white:hover svg path  {
    fill: #fff;
}



.meiti .mt_next,
.gcbz .bz_next,
.factsb .sb_next ,
.latnew .la_next {
    left: auto;
    right: -6rem;
}


.meiti .mt_prev,
.gcbz .bz_prev,
.factsb .sb_prev ,
.latnew .la_prev{
    left: -6rem;
    right: auto;
}

.tiao1 {
    background: url(../image/tiao1bg.png)0 4.0625rem no-repeat;
    background-size: cover;
    width: 100%;
    position: relative;
}

.tiao2 {
    background: url(../image/tiao2bg.png)0 4.0625rem no-repeat;
    background-size: cover;
    width: 100%;
    position: relative;
}

.n_tit {
    text-align: center;
    color: #060606;
    margin-bottom: 3rem;
}

.n_tit h5 {
    font-family: BARLOW-BOLD;
    font-size: 2.75rem;
    line-height: 1.5;
    text-transform: uppercase;
}

.n_tit p {
    font-size: 2rem;
    line-height: 1.375;
}

/* 产品中心 */

.n_container .cpcenter {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 1.25rem;
}

.n_container .cpcenter li {
    border-radius: .625rem;
    overflow: hidden;
    position: relative;
}

.n_container .cpcenter li .img_db:after {
    padding-top: 75.21%;
}

.n_container .cpcenter li .cptit {
    position: absolute;
    left: 0;
    bottom: 0;
    color: #fff;
    font-size: 1.5rem;
    width: 100%;
    padding: 4rem 3.125rem 2rem;
    background: -webkit-linear-gradient(270deg, transparent 0%, rgba(0, 0, 0, .9) 100%);
}

/* 技术研发 */
.n_container .yanfa {
    display: grid;
    gap: 6.25rem;
}

.n_container .yanfa>div {
    display: flex;
    align-items: center;
    gap: 5rem;
}

.n_container .yanfa>div .yfimg {
    max-width: 45rem;
    width: 100%;
    flex-shrink: 0;
    border-radius: 1.25rem;
    overflow: hidden;
    position: relative;

}

.n_container .yanfa .swiper-pagination-bullet {
    background: #fff;
    opacity: 1;
}
.n_container .yanfa .swiper-pagination-bullet-active {
    background: #66a7ff;
}

.n_container .yanfa>div .yfimg img {
    display: block;
}

.n_container .yfcon {
    display: flex;
    flex-direction: column;
    align-items: flex-start;
    gap: 2rem;
}

.n_container .yfcon h5,
.n_container .factbuzhi h5 {
    color: #060606;
    font-size: 2rem;
    line-height: 1.5;
}

.n_container .yfcon h5 {
    margin-bottom: 1.5rem;
}

.n_container .yfcon p {
    color: #313131;
    font-size: 1rem;
    line-height: 1.875rem;
}

.n_container .factbuzhi h5 {
    text-align: center;
    margin-bottom: 2.5rem;
}

.n_container #buzhi .swiper-slide .img {
    height: 28.75rem;
    padding: 4rem;
    width: 100%;
    border: 1px solid #dadbde;
    border-radius: 1rem;
    background: #fff;
    display: flex;
    align-items: center;
    justify-content: center;
    transition: all .5s;
}

.n_container #buzhi .swiper-slide img {

    height: 100%;
    width: 100%;

}

.n_container #buzhi .swiper-slide p {
    text-align: center;
    color: #313131;
    font-size: 1.125rem;
    line-height: 1.1875rem;
    margin: 1.125rem auto;
}

.n_container #buzhi .swiper-slide:hover .img {
    border: 1px solid #164b94;
}

.gcbz {
    position: relative;
}

.gcbz .swiper-button-white {
    top: 40%;
}


/* 客户案例 */

.albg {
    background: url(../image/anlibg.jpg)0 4.0625rem no-repeat;
    background-size: cover;
    width: 100%;
    position: relative;
}

.n_container .anli {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 2.5rem 2.3125rem;
}

.n_container .anli li {
    border-radius: .75rem .75rem 0 0;
    overflow: hidden;
}

.n_container .anli li .img_db:after {
    padding-top: 69.2%;
}

.n_container .anli li .alcon {
    background: #fff;
    padding: 2rem 2.5rem 2.5rem;
}

.n_container .anli li .alcon ul {
    display: flex;
    align-items: center;
    gap: .5625rem;
    margin: 1.375rem 0 2.75rem;
}

.n_container .anli li .alcon ul li {
    border-radius: 1rem;
    border: 1px solid #c2c2c2;
    display: flex;
    align-items: center;
    justify-content: center;
    color: #616161;
    font-size: .875rem;
    line-height: 1.875rem;
    width: auto;
    padding: 0 1rem;
    height: 2rem;
}

.n_container .anli li .alcon h5 {
    color: #060606;
    font-size: 1.375rem;
    line-height: 2rem;
}

.n_container .anli li .alcon .alico {
    width: 2.75rem;
    height: 2.75rem;
    display: flex;
    align-items: center;
    justify-content: center;
    border: 2px solid #c4c6c9;
    border-radius: 50%;
    background: #fff;
    transition: all .5s;
}

.n_container .anli li .alcon .alico svg path {
    fill: #666666;
    transition: all .5s;
}

.n_container .anli li:hover .alico {
    background: #164b94;
    border: 2px solid #164b94;
    transform: rotate(-45deg);
}

.n_container .anli li:hover .alico svg path {
    fill: #fff;
}


/* 客户详情 */

.khxq {
    background: url(../image/kehuxqbg.jpg)no-repeat;
    background-size: cover;
    width: 100%;
    position: relative;
}

.khxq #dh,
.cpxq #dh,
.earth #dh {
    border-bottom: none;
    background: transparent;
}

.khxq #dh .m,
.cpxq #dh .m,
.earth #dh .m {
    justify-content: flex-end;
}

.khxm .xiangmu {
    display: grid;
    grid-template-columns: 1fr 48.125rem;
    gap: 8.125rem;
    align-items: center;
}

.khxm  .xmcon h5 {
    font-weight: bold;
    font-size: 2.375rem;
    line-height: 1.5;
    color: #060606;
    margin-bottom: 1.875rem;
}

.khxm  .xmcon p {
    color: #616161;
    font-size: 1rem;
    line-height: 1.875rem;
}

.khxm  .xmimg {
    border-radius: .75rem;
    overflow: hidden;
}

.khxm .xmbox a {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: .625rem;
    width: 4.125rem;
    height: 4.125rem;
    border-radius: 50%;
    border: 1px solid #b8babc;
    transition: all .5s;
    position: relative;
    top: 0;
    margin-top: 0;
}

.khxm .xmbox a p {
    opacity: 0;
    visibility: hidden;
    position: relative;
    transition: all .5s;
    color: #fff;
    font-size: 0;
    line-height: 2.25rem;

}

.khxm .xm_next p {
    margin-right: -.5rem;
}

.khxm .xm_prev p {
    margin-left: -.5rem;
}

.khxm .xmbox a svg path {
    fill: #72767c;
    transition: all .5s;
}

.khxm .xmbox a:hover {
    background: #164b94;
    border: 1px solid #164b94;
    width: 9.6875rem;
    border-radius: 2rem;
}

.khxm .xmbox a:hover p {
    opacity: 1;
    visibility: visible;
    font-size: 1rem;
    position: relative;
}

.khxm .xmbox a:hover svg path {
    fill: #fff;
}

.khxm .xmbox {
    display: flex;
    align-items: center;
    gap: 1.25rem;
    width: 100%;
}




.khsb {
    background: url(../image/shebeibg.jpg)no-repeat;
    background-size: cover;
    width: 100%;
    position: relative;
}


#shebei a {
    display: grid;
    gap: .625rem;
}

#shebei a>div {
    border-radius: .75rem;
    overflow: hidden;
}


#shebei a .img_db:after {
    padding-top: 75.22%;
}

#shebei a .sbwz {
    padding: 2px;
}

#shebei a .sbwz p {
    border: 1px solid #c5c6c8;
    width: 100%;
    height: 100%;
    display: flex;
    align-items: center;
    justify-content: center;
    color: #060606;
    font-size: 1.25rem;
    line-height: 1.75rem;
    transition: all .5s;
    height: 3.75rem;
    border-radius: .75rem;
}

#shebei li:hover .sbwz p {
    background: #164b94;
    border: 1px solid #164b94;
    color: #fff;
}

.factsb {
    position: relative;
}

.factsb .swiper-button-white {
    top: 40%;
}

/* 产品详情 */

.cpxq {
    background: url(../image/chanpinxqbg.jpg)0 4.0625rem no-repeat;
    background-size: cover;
    width: 100%;
    position: relative;
}

.cpxq .dychanp {
    display: flex;
    align-items: center;
    gap: 7.5rem;
}

.cpxq .dychanp .img {
    border-radius: 50%;
    width: 29.6875rem;
    flex-shrink: 0;
}

.cpxq .dychanp .img_db:after {
    padding-top: 100%;
}

.cpxq .dychanp .dycpcon h5 {
    color: #313131;
    font-size: 2rem;
    line-height: 1.5;
    font-weight: bold;
    margin-bottom: 2rem;
}

.cpxq .dychanp .dycpcon p {
    color: rgb(49 49 49 / 80%);
    font-size: 1rem;
    line-height: 1.875rem;
}

.shiying {
    position: relative;
}

#cpsy .swiper-slide {
    width: auto;
    position: relative;
    overflow: hidden;
    border-radius: 1rem;
}

#cpsy .swiper-slide .img {
    width: 100%;
    height: 29.0625rem;
}

#cpsy .syp {
    position: absolute;
    left: 0;
    bottom: 0;
    color: #fff;
    font-size: 1.125rem;
    width: 100%;
    text-align: center;
    padding: 4rem 2.125rem 1.5rem;
    background: -webkit-linear-gradient(270deg, transparent 0%, rgba(0, 0, 0, .8) 100%);
}


.shiying .swiper-scrollbar {
    left: 50% !important;
    transform: translate(-50%, 0);
    height: 2px !important;
    background: #dddde1;
}

.shiying .swiper-scrollbar-drag {
    background: #164b94 !important;
    height: 2px !important;
    border-radius: 0;
}

/* 产业布局 */

.earth .map>img {
    width: 100%;
    height: 100%;

}


.earth .map .zuobiao {
    position: absolute;
    cursor: pointer;
}

.earth .map .bowen {
    position: absolute;
    left: 50%;
    top: 50%;
    transform: translate(-50%, -50%);
    opacity: 0;
    transition: all .5s;
}

.earth .map .bowen .pulse {
    background: #7aa6f8;
    height: 1.25rem;
    width: 1.25rem;
    border-radius: 50%;
    position: relative;
    opacity: .7;
}

.ring {
    position: absolute;
    background-color: inherit;
    height: 100%;
    width: 100%;
    border-radius: 50%;
    opacity: .8;
    -webkit-animation: pulsing 2s ease-out infinite;
    animation: pulsing 2s ease-out infinite;
}

.ring:nth-of-type(1) {
    -webkit-animation-delay: -0.5s;
    animation-delay: -0.5s;
}

.ring:nth-of-type(2) {
    -webkit-animation-delay: -1s;
    animation-delay: -1s;
}

@-webkit-keyframes pulsing {
    100% {
        transform: scale(2.5);
        opacity: 0
    }
}

@keyframes pulsing {
    100% {
        transform: scale(2.5);
        opacity: 0
    }
}



.earth .map .zb1 {
    right: 28%;
    top: 40%;
}

.earth .map .zb2 {
    right: 19%;
    top: 67%;
}

.earth .map .zb3 {
    right: 27%;
    top: 19%;
}
.earth .map .zb4 {
    right: 40%;
    top: 50%;
}
.earth .map .zb5 {
    right: 23%;
    top: 60%;
}
.earth .map .zb6 {
    right: 16.5%;
    top: 40%;
}

.earth .map .zbkuang {
    opacity: 0;
    position: absolute;
    right: 0;
    top: -13rem;
    transition: all .5s;
    border: 2px solid #a4bce9;
    background: #fff;
    border-radius: 1.25rem;
    width: 21rem;
    padding: 2rem 2.25rem;
    height: 12.5rem;
    visibility: hidden;
    z-index: 1;
}

.earth .map .zbkuang p {
    color: #313131;
    font-size: .9375rem;
    line-height: 1.875;
}

.earth .map .zbkuang h5 {
    color: #060606;
    font-size: 1.25rem;
    line-height: 1.37rem;
    font-weight: bold;
    margin-bottom: 2rem;
}

.earth .map .zbkuang .kz {
    flex-shrink: 0;
}

.earth .map .zbkuang div {
    display: flex;
    align-items: flex-start;
}

.earth .map .zuobiao:hover .zbkuang,
.earth .map .on .zbkuang {
    opacity: 1;
    top: -14rem;
    visibility: visible;
}


.earth .map .zuobiao:hover .bowen,
.earth .map .on .bowen {
    opacity: 1;
}

.earth .map .left .zbkuang {
    right: auto;
    left: 0;
}

/* 技术服务 */


.jsfw {
    background: url(../image/jsfwbg.jpg)0 4.0625rem no-repeat;
    background-size: cover;
    width: 100%;
    position: relative;
}

.jsfw .sale {
    display: grid;
    gap: 3.125rem;
}

.jsfw .sale li {
    display: flex;
    gap: 5.625rem;
    align-items: flex-start;
    padding-bottom: 4.375rem;
    border-bottom: 1px solid #dadbdd;
}

.jsfw .sale li:last-child {
    padding-bottom: none;
    border-bottom: none;
}

.jsfw .sale li h5 {
    color: #060606;
    font-size: 2rem;
    flex-shrink: 0;
}

.jsfw .sale li p {
    color: #313131;
    font-size: 1rem;
    line-height: 1.875rem;
    margin-bottom: 3rem;
}


/* 发展历程 */


.fzlc {
    background: url(../image/lichengbg.jpg) no-repeat;
    background-size: cover;
    width: 100%;
    position: relative;
}


.twolj {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: .5625rem;
}

.twolj li a {
    display: flex;
    align-items: center;
    justify-content: center;
    border: 1px solid #dddfe1;
    border-radius: 1.875rem;
    color: #060606;
    font-size: 1rem;
    line-height: 2.25rem;
    width: 10.625rem;
    height: 3.4375rem;
    transition: all .5s;
}

.twolj li.on a,
.twolj li:hover a {
    border: 1px solid #164b94;
    background: #164b94;
    color: #fff;
}

.fzlc .licheng {
    position: relative;
}

.fzlc .licheng img {
    display: block;
}

.fzlc .licheng .develop {
    position: absolute;
    padding: 3.75rem 3.125rem;
    background: #164b94;
    left: 6.25rem;
    height: 30.9375rem;
    width: 26.25rem;
    z-index: 1;
    bottom: -5rem;
    display: flex;
    flex-direction: column;
    justify-content: space-between;
}

.fzlc .licheng .develop h4 {
    font-family: BARLOW-BOLD;
    color: #fff;
    font-size: 2.75rem;
    text-transform: uppercase;
}

.fzlc .licheng .develop h5 {
    color: #fff;
    font-size: 2rem;
    line-height: 1.5;
}

.fzlc .licheng .develop p {
    color: #fff;
    text-transform: uppercase;
    font-family: BarlowCondensed-Medium;
    font-size: 2rem;
    line-height: 1.5;
}

.fzlc .fz-year {
    position: relative;
}

.fzlc .fz-year::before {
    content: '';
    position: absolute;
    width: 2px;
    height: 100%;
    left: 50%;
    top: 0;
    transform: translate(-50%, 0);
    background: #e5e5e5;

}

.fzlc .fz-year ul {
    display: grid;
    gap: 6.25rem;
}

.fzlc .fz-year ul li {
    display: flex;
    align-items: center;
    gap: 7rem;
}

.fzlc .fz-year ul li:nth-child(odd) {
    justify-content: flex-end;
}

.fzlc .fz-year ul li:nth-child(even) {
    justify-content: flex-start;
}

.fzlc .fz-year ul li .years {
    font-family: BarlowCondensed-SemiBold;
    color: #164b94;
    font-size: 3.75rem;
    font-style: oblique;
    flex-shrink: 0;
    max-width: 7rem;
    width: 100%;
}

.fzlc .fz-year ul li p::before {
    content: '';
    position: absolute;
    width: 1.125rem;
    height: 1.125rem;
    background: #fff;
    border: 3px solid #164b94;
    top: 50%;
    border-radius: 50%;
    transform: translate(0, -50%);
}

.fzlc .fz-year ul li:nth-child(odd) p::before {
    left: -4.375rem;
}

.fzlc .fz-year ul li:nth-child(even) p::before {
    right: -4.25rem;
}

.fzlc .fz-year ul li p {
    color: #313131;
    font-size: 1rem;
    line-height: 1.875rem;
    max-width: 41.25rem;
    width: 100%;
    position: relative;

}

.fzlc .fz-year ul li:nth-child(even) p {
    text-align: right;
}

/* 品牌 */

.pinpai {
    display: flex;
    align-items: center;
    justify-content: space-between;
}

.pinpai .n_tit {
    text-align: left;
    margin-bottom: 0;
}

/* 公司公告 */

.panynot {
    background: url(../image/gongsinocbg.jpg)0 4.0625rem no-repeat;
    background-size: cover;
    width: 100%;
    position: relative;
}



.panynot .noc {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 1.875rem
}

.panynot .noc li {
    border: 1px solid #dce2e8;
    border-radius: 1.25rem;
    background: url(../image/gonggaobg.jpg)no-repeat;
    background-size: cover;
    position: relative;
    overflow: hidden;
}

.panynot .noc li::before {
    content: '';
    position: absolute;
    width: 100%;
    height: 100%;
    bottom: -100%;
    background: #164b94;
    transition: all .5s;
    z-index: 0;
}

.panynot .noc li:hover::before {
    bottom: 0;
}

.panynot .noc li a {
    padding: 2.5rem 2.5rem 2.875rem;
    display: flex;
    flex-direction: column;
    justify-content: flex-start;
    position: relative;
}

.panynot .noc li a p,
.newlist li a span {
    font-family: BARLOWCONDENSED-REGULAR;
    color: #616161;
    font-size: 1.125rem;
    line-height: 2.25rem;
    transition: all .5s;
}

.panynot .noc li a h5 {
    color: #060606;
    font-size: 1.375rem;
    line-height: 2.125rem;
    margin: 1rem 0 2rem;
    transition: all .5s;
}

.panynot .noc li a .ggico {
    border: 2px solid #97a2b1;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    width: 2.5rem;
    height: 2.5rem;
    transition: all .5s;
}

.panynot .noc li a .ggico svg path {
    fill: #838991;
    transition: all .5s;
}

.panynot .noc li:hover a p,
.panynot .noc li:hover a h5 {
    color: #fff;
}

.panynot .noc li:hover a .ggico  {
    border: 2px solid #fff;
    transform: rotate(45deg);
}

.panynot .noc li:hover a svg path  {
    fill: #fff;
}

/* 公司新闻 */

.panynew {
    background: url(../image/panynewbg.jpg) no-repeat;
    background-size: cover;
    width: 100%;
    position: relative;
}

.panynew .newlist {
    display: grid;
}

.panynew .newlist li {
    padding: 2.125rem 0;
    border-bottom: 1px solid #dee0e2;
}

.panynew .newlist li:first-child {
    padding-top: 0;
}

.panynew .newlist li a {

    display: flex;
    align-items: center;
    gap: 2.25rem;
}

.newlist li a p {
    color: #616161;
    font-size: .875rem;
    line-height: 1.625rem;
}

.newlist li a h5 {
    color: #000000;
    font-size: 1.5rem;
    line-height: 1.875rem;
    margin: .5rem 0 1.25rem;
    transition: all .5s;
}

.newlist li a .img {
    max-width: 30.4375rem;
    border-radius: 1.25rem;
    overflow: hidden;
}

.newlist li a .img_db:after {
    padding-top: 61.7%;
}




.newlist li a .newlistcon>div {
    display: flex;
    gap: .625rem;
    align-items: center;
    margin-top: 2.25rem;
}

.newlist li a .newlistcon>div div {
    width: auto;
    padding: 0 1rem;
    height: 2rem;
    border: 1px solid #c2c2c2;
    border-radius: 1rem;
    display: flex;
    align-items: center;
    justify-content: center;
    color: #616161;
    font-size: .875rem;
    line-height: 1.875rem;
}

.newlist li a:hover h5 {
    color: #164b94;
}

/* 合作伙伴 */
.partner .twolj li a ,
.rongyu .twolj li a {
    border: 1px solid #ced1d4;
}

.partner {
    background: url(../image/partnerbg.jpg)0 4.0625rem no-repeat;
    background-size: cover;
    width: 100%;
    position: relative;
}
.partner .huoban {
    display: grid;
    grid-template-columns: repeat(6,1fr);
    gap: .75rem;
}
.partner .huoban>div {
    position: relative;
}
.partner .huoban>div:first-child {
    grid-column-start: 1;
    grid-column-end: 3;
}
.partner .huoban>div:nth-child(8) {
    grid-column-start: 3;
    grid-column-end: 5;
}
.partner .huoban>div:nth-child(12) {
    grid-column-start: 2;
    grid-column-end: 4;
}
.partner .huoban .short {
    background: #fff;
    border-radius: .875rem;
    display: flex;
    align-items: center;
    justify-content: center;
    position: relative;
    height: 13rem;
    overflow: hidden;
    padding: 1rem;
}

.partner .huoban .hbmz {
    position: absolute;
    width: 100%;
    height: 100%;
    background: #164b94;
    display: flex;
    align-items: center;
    justify-content: center;
    opacity: 0;
    transition: all .5s;
    color: #fff;
    font-size: 1.375rem;
    line-height: 1.5;
    padding: 1rem;
    text-align: center;
}

.partner .huoban>div:hover .hbmz {
    opacity: 1;
}


/* 联系我们 */

.contactus .n_tit {
    text-align: left;
}

.contactus {
    background: url(../image/contactusbg.jpg)0 4.0625rem no-repeat;
    background-size: cover;
    width: 100%;
    position: relative;
}
.contactus  .rclns {
    display: flex;
    justify-content: space-between;
    align-items: center;
}
.contactus .dizhi .dzxx {
    display: grid;
    gap: .875rem;
}
.dzxx li {
    display: flex;
    align-items: center;
    gap: 1rem;
    position: relative;
}
.dzxx li .ckdt  {
    position: absolute;
    right: -6rem;
    top: 50%;
    transform: translate(0,-50%);
    color: #777879;
    font-size: .875rem;
    display: flex;
    align-items: center;
    gap: 5px;
    line-height: 2.5rem;
    text-decoration: underline;
}

.dzxx  li p {
    color: #060606;
    font-size: 1.25rem;
    line-height: 2.625rem;
}
.add1 {
    width: 3rem;
    height: 3rem;
    border-radius: 50%;
    position: relative;
    display: flex;
    align-items: center;
    justify-content: center;
    border: 1px solid #626262;
    flex-shrink: 0;
}
.contactus .dizhi h5 {
    color: #060606;
    font-size: 1.625rem;
    line-height: 2.625rem;
    margin: 3.5rem 0 2rem;
}


.message {
    background: url(../image/liuyanbg.jpg) no-repeat;
    background-size: cover;
    width: 100%;
    position: relative;
    padding: 7.5rem 0 8.75rem;
}

.message .msg {
    display: flex;
    gap: 5rem;
    justify-content: space-between;
    align-items: flex-start;
}

.message h4 , 
.message .strong {
    font-family:BARLOW-BOLD;
    color: #fff;
}

.message h4 {
    font-size: 2.75rem;
    line-height: 1.25;
}
.message .strong {
    font-size: 1.375rem;
    line-height: 1.5rem;
    margin-top: .5rem;
}
.message h5 {
    color: #fff;
    font-size: 2rem;
    line-height: 1.5;
    margin-bottom: 2rem;
}

.message p {
    color: rgb(255 255 255 / 80%);
    font-size: 1rem;
    line-height: 1.5rem;
}

.message .msgright {
    max-width: 53.75rem;
    width: 100%;
    flex-shrink: 0;
}

.message .msgright form {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 1.25rem;
}

.message .msgright form>div {
    background: #fff;
    border-radius: .375rem;
    display: flex;
    align-items: center;
    justify-content: center;
    padding-left: 1.125rem;
    position: relative;
}

.message .msgright form>div p {
    color: #313131;
    font-size: 1rem;
    line-height: 1.5rem;
    flex-shrink: 0;
}

.message .msgright form>div input {
    padding: 1.25rem;
    width: 100%;
    font-size: 1rem;
    color: #313131;
}

.message .msgright form>div:nth-child(5) {
    grid-column-start: 1;
    grid-column-end: 3;
    grid-row-start: 3;
    grid-row-end: 4;
    height: 10rem;
    flex-direction: column;
    align-items: flex-start;
    justify-content: flex-start;
    padding: 1.125rem;
    gap: .5rem;
}

.message .msgright form>div textarea {
    resize: none;
    width: 100%;
    height: 100%;
}

.message .msgright form>div .yzm {
    position: absolute;
    right: 1.5rem;
    top: 50%;
    transform: translate(0,-50%);
}

.message .msgright form>div:last-child {
    width: 11.25rem;
    height: 100%;
    padding: 0;
}

.message .msgright form button {
    width: 100%;
    height: 100%;
    display: flex;
    align-items: center;
    justify-content: center;
    cursor: pointer;
    gap: .5rem;
    color: #fff;
    font-size: 1rem;
    line-height: 1.5rem;
    background: #164b94;
    border-radius: .375rem;
}

/* 鹏远价值 */

.pyjiazhi {
    background: url(../image/pyvaluebg.jpg)0 4.0625rem no-repeat;
    background-size: cover;
    width: 100%;
    position: relative;
}

.pyjiazhi .pengyuan {
    display: flex;
    gap: 9.375rem;
    align-items: flex-start;
    justify-content: space-between;
}
.pyjiazhi .pengyuan img {
    flex-shrink: 0;
}
.pyjiazhi .pengyuan h5 {
    font-size: 1.875rem;
    color: #164b94;
    line-height: 1.5;
    font-weight: bold;
    margin-bottom: 2rem;
}

.pyjiazhi .pengyuan p {
    font-size: 1rem;
    line-height: 2rem;
    color: #313131;
    margin-bottom: 1.5rem;
}

/* 企业宣传片 */

.panyvideo {
    background: url(../image/panyvideobg.jpg)0 4.0625rem no-repeat;
    background-size: cover;
    width: 100%;
    position: relative;
}
.panyvideo .xcp {
    display: flex;
    align-items: flex-start;
}
.panyvideo .xcp ul {
    display: grid;
    gap: 1rem;
    width: 50%;
}
.panyvideo .xcp ul li .imgplay {
    position: relative;
}
.panyvideo .xcp ul li .imgplay::before {
    content: '';
    position: absolute;
    width: 100%;
    height: 100%;
    background: rgba(0, 0, 0, .4);
    z-index: 1;
}
.panyvideo .xcp ul li .img_db:after {
    padding-top: 65.3%;
}

.panyvideo .xcp ul li .playcon {
    padding: 2rem  3.375rem;
}

.panyvideo .xcp ul li .playcon p ,
.humanity .care li .carecon p {
    color: #747474;
    font-size: .875rem;
    line-height: 2.75rem;
}

.panyvideo .xcp ul li .playcon h5 {
    color: #000;
    font-size: 1.5rem;
    line-height: 2.75rem;
    margin: .5rem 0 2rem;
}

.panyvideo .xcp ul li a .ggico ,
.humanity .care li .carecon .ggico {
    border: 2px solid #c5c7ca;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    width: 2.5rem;
    height: 2.5rem;
    transition: all .5s;
}

.panyvideo .xcp ul li a .ggico svg path ,
.humanity .care li .carecon .ggico  svg path {
    fill: #616366;
    transition: all .5s;
}


.panyvideo .xcp ul li:hover a .ggico svg path ,
.humanity .care li:hover .carecon .ggico  svg path {
    fill: #fff;
}

.panyvideo .xcp ul li:hover a .ggico ,
.humanity .care li:hover .carecon .ggico {
    border: 2px solid #164b94;
    background: #164b94;
    transform: rotate(45deg);
}

.panyvideo .xcp ul li .btn-play {
    position: absolute;
    width: 5.125rem;
    height: 5.125rem;
    border-radius: 50%;
    left: 50%;
    top: 50%;
    transform: translate(-50%,-50%);
    background: url(../image/xcpplay.png)no-repeat;
    background-size: cover;
    z-index: 5;
}

.panyvideo .xcp ul li:hover .imgplay::before {
    background: rgba(0, 0, 0, .2);
}

.panyvideo .xcp ul:first-child {
    margin-top: 15.625rem;
}

/* 人文关怀 */

.humanity {
    background: url(../image/renwenbg.jpg)0 4.0625rem no-repeat;
    background-size: cover;
    width: 100%;
    position: relative;
}

.humanity .care {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 3.125rem 2.375rem;
}
.humanity .care li .img {
    border-radius: 6.25rem 0  6.25rem 0;
    
}
.humanity .care li .img_db:after {
    padding-top: 65.63%;
}

.humanity .care li .carecon {
    padding: .5rem 0 2.75rem;
}

.humanity .care li .carecon h5{
    color: #000;
    font-size: 1.5rem;
    line-height: 2.75rem;
    margin: 0rem 0 1rem;
}
.humanity .care li {
    border-bottom: 1px solid #dcdfe2;
}

/* 荣誉资质 */

.rongyu {
    background: url(../image/honorbg.jpg)0 4.0625rem no-repeat;
    background-size: cover;
    width: 100%;
    position: relative;
}

.rongyu .honor {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 1.875rem;
}

.rongyu .honor  a {
    padding: 2.25rem 3.125rem;
    background: #fff;
    border-radius: 1rem;
    display: grid;
    grid-template-columns:16.25rem 1fr;
    align-items: center;
    gap: 3.125rem;
    height: 100%;
}
.rongyu .honor a .img {

    padding: .625rem;
    margin: auto;
    flex-shrink: 0;
}
.rongyu .honor  a .img{
    background: url(../image/kuang.png)center no-repeat;
    background-size: 100% 100%;
    height: auto;
}

.rongyu .honor .honorcon .qiye {
    width: 6.5rem;
    height: 2.1875rem;
    display: flex;
    align-items: center;
    justify-content: center;
    background: #eef0f2;
    border-radius: 1.25rem;
    color: #060606;
    font-size: .9375rem;
}

.rongyu .honor .honorcon h5 {
    color: #060606;
    font-size: 1.4375rem;
    line-height: 1.875rem;
    margin-top: 1.25rem;
}

.rongyu .honor .honorcon .honorico {
    width: 2.625rem;
    height: 2.625rem;
    border: 2px solid #c4c6c9;
    display: flex;
    align-items: center;
    justify-content: center;
    border-radius: 50%;
    margin-top: 2.5rem;
    transition: all .5s;
}
.rongyu .honor .honorcon .honorico svg path {
    transition: all .5s;
    fill: #666666;
}
.rongyu .honor a:hover  .honorico {
    border: 2px solid #164b94;
    background: #164b94;
    transform: rotate(-45deg);
}

.rongyu .honor a:hover  .honorico svg path {
    fill: #fff;
}

/* 新闻详情 */

.newxq {
    padding-top: 5rem;
    background: url(../image/newxqbg.jpg) no-repeat;
    background-size: cover;
    width: 100%;
    position: relative;
}

.newxq .xqbox {
    margin: 0 7.5rem;
    background: #fff;
    padding: 4.5rem 4rem;

}
.newxq .xqbox  .ar_title p {
    color: #0a4493;
    font-size: 1.25rem;
    line-height: 1.875rem;
    font-family:BarlowCondensed-Medium;
}

.newxq .xqbox  .ar_title h4 {
    color: #060606;
    font-size: 2.125rem;
    font-weight: bold;
    margin: 1rem 0 1.5rem;
}

.newxq .xqbox  .ar_title ul {
    display: flex;
    align-items: center;
    justify-content: flex-start;
    gap: .625rem;
}

.newxq .xqbox  .ar_title ul li {
    display: flex;
    align-items: center;
    justify-content: center;
    color: #616161;
    font-size: .9375rem;
    line-height: 1.875rem;
    border: 1px solid #c2c2c2;
    border-radius: 1.25rem;
    width: auto;
    height: 2rem;
    padding: 0 1rem;
}

.newxq .xqbox .ar_article {
    border-top: 1px solid #e2e3e7;
    border-bottom: 1px solid #e2e3e7;
}


.newxq .xqbox .back {
    margin: 3rem auto 0;
    background: #164b94;
    border-radius: 1.5rem;
    display: flex;
    align-items: center;
    justify-content: center;
    color: #fff;
    font-size: 1rem;
    line-height: 2rem;
    width: 10rem;
    height: 2.8125rem;
    gap: .5rem;
}
.newxq .latnew #lanew .img {
    border-radius: 1rem;
}

.newxq .latnew #lanew .img_db:after {
    padding-top: 54.9%;
}


#lanew .lacon {
    padding: .5rem .625rem;
}

.latnew {
    position: relative;
    margin: 0 7.5rem;
}

/* 企业文化 */

.panyculture {
    background: url(../image/culturebg.jpg)0 4.0625rem no-repeat;
    background-size: cover;
    width: 100%;
    position: relative;
}

.panyculture  .shiming .m {
    display: flex;
    gap: 10rem;
    align-items: center;
    justify-content: space-between;
}
.panyculture  .shiming .m .img {
    flex-shrink: 0;
}
.panyculture  .shiming  .smz>p {
    color: #313131;
    font-size: 1.125rem;
    line-height: 2.125rem;
}

.panyculture  .shiming  .smz .strong {
    color: #060606;
    font-weight: bold;
    margin-bottom: 2rem;
}

.panyculture  .shiming .n_tit {
    text-align: left;
}

.panyculture .baiye {
    background: url(../image/jiazhiguanbg.jpg) no-repeat;
    background-size: cover;
    width: 100%;
    position: relative;
}

.panyculture .baiye .byc {
    overflow: hidden;
    display: flex;
    justify-content: space-between;
}

.panyculture .baiye .bycs.on {
    width: calc(100% - 740px);
    flex-shrink: 0;
}
.panyculture .baiye .bycs {
    transition: .7s;
    width: 235px;
    height: 100%;
}
.panyculture .baiye .bycs {
    overflow: hidden;
    flex-grow: 1;
    position: relative;
    border-radius: .625rem;
}

.panyculture .baiye .bycs>.bl {
    height: 34.375rem;
    background-position: center center !important;
    background-size: cover !important;
}

.bycs+.bycs {
    margin-left: 12px;
}

.bycs .byc_tit {
    position: absolute;
    bottom: 2rem;
    left: 2rem;
    color: #fff;
    line-height: 1.5rem;
    font-size: 1.375rem;
}

.bycs::before {
    content: "";
    position: absolute;
    width: 100%;
    background: -webkit-linear-gradient(270deg, transparent 0%, rgba(0, 0, 0, .55) 100%);
    height: 10rem;
    bottom: 0;
}

.bycs .byc_tit h5 {
    margin: 1rem 0 1.25rem;
    font-size: 1.375rem;
    line-height: 1.5rem;
    color: #fff;
}

.bycs .byc_tit p {
    color: #fff;
    font-size: 0;
    line-height: 1.875rem;
    opacity: 0;
    visibility: hidden;
    transition: all .5s;

    position: absolute;
    width: 100%;
}

.panyculture .baiye .bycs.on p {
    font-size: 1rem;
    opacity: 1;
    visibility: visible;
    position: relative;
    height: auto;
    transition-delay: .2s; 
}


.panyculture .fourdot {
    display: grid;
    gap: .875rem;
}

.panyculture .fourdot .leftgrid {
    display: grid;
    grid-template-columns: 1fr 32.5rem;
    gap: .875rem;
}

.panyculture .fourdot .rightgrid {
    display: grid;
    grid-template-columns: 32.1875rem 1fr;
    gap: .875rem;
}

.panyculture .fourdot .leftgrid>div ,
.panyculture .fourdot .rightgrid>div {
    position: relative;
    border-radius: .875rem;
    overflow: hidden; 
}
.panyculture .fourdot  .img {
    height: 100%;
}
.panyculture .fourdot  .img_db:after {
    padding-top: 45.81%;
}
.panyculture .fourdot h5 {
    color: #fff;
    font-size: 1.75rem;
    line-height: 1.875rem;
}
.panyculture .fourdot .leftgrid>div>h5 ,
.panyculture .fourdot .rightgrid>div>h5 {
    position: absolute;
    left: 2.5rem;
    bottom: 1.5rem;
    transition: all .5s;
}

.panyculture .fourdot  .dotcon {
    position: absolute;
    width: 100%;
    height: 100%;
    left: 0;
    top: 0;
    display: flex;
    flex-direction: column;
    align-items: flex-start;
    justify-content: center;
    padding: 0 12.5rem;
    gap: 2rem;
    background: rgb(22 75 148 / 90%);
    opacity: 0;
    transition: all .5s;
}
.panyculture .fourdot  .duan .dotcon {
    padding: 0 5.5rem;
}
.panyculture .fourdot  .dotcon p {
    color: #ffffff;
    font-size: 1rem;
    line-height: 1.875rem;
}

.panyculture .fourdot .leftgrid>div:hover .dotcon ,
.panyculture .fourdot .rightgrid>div:hover .dotcon {
    opacity: 1;
}

.panyculture .fourdot .leftgrid>div:hover>h5 ,
.panyculture .fourdot .rightgrid>div:hover>h5 {
    opacity: 0;
} 