@charset "utf-8";

* {
    margin: 0px;
    padding: 0px;
    font-family: "微软雅黑", "Microsoft Yahei", "Source Han Sans", "Source Han Sans CN", Arial;
    outline: none;
    -webkit-tap-highlight-color: transparent;
    box-sizing: border-box;
}

body,
html {
    width: 100%;
    height: 100%;
    position: relative;
}

@media (max-width: 800px) {
    body {
        padding-top: 1rem;
    }
}

/* ============================= 网页宽度 开始 ============================= */
.width1660 {
    max-width: 100%;
    margin: 0px auto;
    position: relative;
}

.width1600 {
    width: 100%;
    max-width: 16rem;
    margin: 0px auto;
    position: relative;
}

.width1500 {
    width: 100%;
    max-width: 15rem;
    margin: 0px auto;
    position: relative;
}

.width1200 {
    width: 100%;
    max-width: 12rem;
    margin: 0px auto;
    position: relative;
}

/* ============================= 网页宽度 结束 ============================= */
/* 富文本 */
.richText {
    overflow: hidden;
}

.richText img {
    max-width: 100%;
}



/* ========== 限制文本行数 开始 ========== */
/* 文字一行，多余省略号 */
.clamp1 {
    white-space: nowrap;
    text-overflow: ellipsis;
    -o-text-overflow: ellipsis;
    overflow: hidden;
}

/* 文字多行，多余省略号 */
.clamp2,
.clamp3,
.clamp4 {
    overflow: hidden;
    text-overflow: ellipsis;
    display: -webkit-box;
    -webkit-box-orient: vertical;
}

.clamp2 {
    -webkit-line-clamp: 2;
}

.clamp3 {
    -webkit-line-clamp: 3;
}

.clamp4 {
    -webkit-line-clamp: 4;
}

/* ========== 限制文本行数 结束 ========== */



/* ============================= 头部 开始 ============================= */
body {
    position: relative;
}



header {
    position: fixed;
    top: 0rem;
    left: 0rem;
    width: 100%;
    z-index: 9990;
    background: #fff;
}


/* 头部 */
.headerBtm {
    display: flex;
    align-items: center;
    justify-content: space-between;
}

.headerBtm .logo img.logob {
    display: none;
}

.headerBtm .logo img {
    display: block;
    height: 0.3rem;
    /* width: auto; */
}

.headerBtm .logo a {
    display: block;
    margin: 0.1rem 0rem;
}

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

.searchBox input {
    width: 2.4rem;
    height: 0.4rem;
    padding: 0rem 0.2rem;
    display: block;
    border: 0.01rem solid #ddd;
    border-radius: 0.06rem;
}

.searchBox button {
    width: 0.5rem;
    height: 0.4rem;
    display: block;
    border-radius: 0.06rem;
    background: #ECB875;
    color: #fff;
    border: none;
    margin-left: 0.1rem;
}



.headerUl {
    display: flex;
    align-items: center;
    justify-content: center;
    width: 60%;
}

.headerUl .headerList {
    /* position: relative; */
    width: 30%;
}

.headerUl .active>a {
    color: #21509F;
    position: relative;
}

.headerUl .active>a:after {
    content: '';
    position: absolute;
    left: 50%;
    transform: translateX(-50%);
    bottom: 0;
    width: 0.3rem;
    height: 0.03rem;
    background: #21509F;
}

.headerUl .active .headerWhite .headerUl .active ol a {
    color: #333;
}


.headerUl .headerList>a {
    display: block;
    line-height: 0.7rem;
    min-width: 0.72rem;
    text-align: center;
    font-family: "Montserrat-Regular";
}

/* 下拉菜单 */
.headerUl .dropDownMenu {
    position: fixed;
    top: 0.7rem;
	left:0rem;
    z-index: 999;
    display: none;
    width: 100%;
    padding: 0.4rem 0rem;
    background: #fff;
    box-shadow: 0 0.02rem 0.12rem rgba(0, 0, 0, .1);
}
.dropDownMenuCon{
	display:flex;
	flex-wrap:wrap;
}
.dropDownMenuCon .menuPart{
	width:30%;
	margin-right:0.7rem;
	margin-bottom: 0.4rem;
}
.dropDownMenuCon .menuPart:nth-child(3n){
	margin-right:0rem;
}
.headerUl .dropDownMenu .titH2{
	padding:0.2rem 0rem;
	border-bottom:0.01rem solid #eee;
}
.dropDownMenu .dropDownList {}

.messagePart{
	width:40%;
}
.titleCon{
	display:flex;
	margin-top:0.2rem;
}
.titleCon .kindList{
	margin-right:0.5rem;
}
.titleCon .kindList>a{
	color:#21509F;
	font-weight:550;
}
.titleCon .kindList:last-child{
	margin-right:0rem;
}
.titleCon .kindList ol{
	margin-top:0.2rem;
}
.titleCon .kindList ol li{
	/* line-height: 0.4rem; */
	min-width: 0.72rem;
}
.titleCon .kindList ol li a{
	margin-bottom:0.15rem;
	color:#666;
}
.titleCon .kindList ol li:hover a{
	color:#333;
}
.exchangePart .titleCon .kindList ol{
	margin-top:0rem;
}

.dropDownMenuCon .normalPart{
	width:22%;
	margin-right:0.6rem;
}
.dropDownMenuCon .normalPart:nth-child(3n){
	margin-right:0.6rem;
}
.dropDownMenuCon .normalPart:nth-child(4n){
	margin-right:0rem;
}



.search a img {
    width: 0.4rem;
}
/* 搜索容器初始隐藏 */
.search-container {
    position: absolute;
    top: 100%;
    right: -0.5rem;
    margin-top: 0.25rem;
    width: 3.6rem;
    background-color: #fff;
    box-shadow: 0 2px 8px rgba(0, 0, 0, 0.1);
    border-radius: 0.06rem;
    padding: 0.15rem;
    display: none; /* 保持默认隐藏 */
    z-index: 1000;
    transition: all 0.3s ease;
}

/* 添加显示搜索框的类 */
.search-container.show {
    display: block;
    animation: fadeIn 0.3s ease;
}

/* 确保.search元素有相对定位 */
.search {
    position: relative;
}

/* 搜索框样式优化 */
.searchBoxCon {
    display: flex;
    align-items: center;
    justify-content: center;
    width: 100%;
}

.searchBoxCon input {
    width: calc(100% - 60px);
    height: 0.4rem;
    padding: 0rem 0.2rem;
    display: block;
    border: 0.01rem solid #ddd;
    border-radius: 0.06rem 0 0 0.06rem;
    font-size: 0.16rem;
    transition: all 0.3s ease;
}

.searchBoxCon button {
    width: 60px;
    height: 0.4rem;
    display: block;
    border-radius: 0 0.06rem 0.06rem 0;
    background: #ff9500;
    color: #fff;
    border: none;
    cursor: pointer;
    transition: background-color 0.3s ease;
}

.searchBoxCon button:hover {
    background-color: #d4a05e;
}





/* 侧边栏 */
.sideBar {
    position: fixed;
    right: 0.2rem;
    top: 60%;
    transform: translateY(-50%);
    z-index: 1000;
    padding: 0.2rem 0.1rem;
    box-shadow: rgba(0, 0, 0, 0.1) 0rem 0rem 0.2rem;
    background: rgb(255, 255, 255);
    border-radius: 2rem;
}

.sideList {
    position: relative;
    margin-bottom: 10px;
    cursor: pointer;
    text-align: center;
}

.sideList img {
    width: 0.6rem;
    height: 0.6rem;
    display: block;
}

.sideList p {
    color: #333;
}

/* 二维码样式 */
.sideBar .qr-code {
    position: absolute;
    right: 0.7rem;
    top: 50%;
    transform: translateY(-50%);
    background-color: #fff;
    padding: 0.1rem;
    border: 0.01rem solid #eee;
    box-shadow: 0 0 0.05rem rgba(0, 0, 0, 0.2);
    display: none;
    width: 1.5rem;
}

/* 二维码图片样式 */
.sideBar .qr-code img {
    width: 100%;
    height: 100%;
}




/* =========== 移动端头部 开始 =========== */
@media (min-width: 801px) {
    .mobleHeaderMenu {
        display: none !important;
    }

    .mobleHeader {
        display: none !important;
    }
}

@media (max-width: 800px) {
    .header {
        display: none !important;
    }
}

.mobleHeader {
    position: fixed;
    top: 0px;
    left: 0px;
    width: 100%;
    padding-left: 4%;
    padding-right: 4%;
    background: #fff;
    box-shadow: 0rem 0.08rem 0.40rem rgba(0, 0, 0, 0.04);
    z-index: 9991;
}

.mobleHeader>div {
    width: 100%;
    height: 1rem;
    line-height: 1rem;
    display: flex;
    align-items: center;
    justify-content: space-between;
}

.mobleHeader a {
    display: flex;
    align-items: center;
    font-family: "Montserrat-Bold";
    color: #2A466B;
}

.mobleHeader img {
    height: 0.8rem;
    width: auto;
}

/* 按钮 */
.mobleMenu_button {
    width: 1rem;
    line-height: 1rem;
    text-align: right;
}

.mobleMenu_button span {
    display: inline-block;
    width: 0.28rem;
    height: 0.04rem;
    background: #333;
    margin-bottom: 0.3rem;
    position: relative;
}

.mobleMenu_button span::after,
.mobleMenu_button span::before {
    content: "";
    display: inline-block;
    width: 0.4rem;
    height: 0.04rem;
    background: #333;
    position: absolute;
    right: 0rem;
    -webkit-transition: all 0.3s;
    -moz-transition: all 0.3s;
    -o-transition: all 0.3s;
    transition: all 0.3s;
}

.mobleMenu_button span:before {
    top: 0.18rem;
}

.mobleMenu_button span:after {
    top: -0.18rem;
}

.mobleMenu_button.on span {
    background: rgba(51, 51, 51, 0);
    -webkit-transition: all 0.3s;
    -moz-transition: all 0.3s;
    -o-transition: all 0.3s;
    transition: all 0.3s;
}

.mobleMenu_button.on span::before,
.mobleMenu_button.on span::after {
    top: 0rem;
    width: 0.44rem;
    -webkit-transform-origin: 50% 50%;
    transform-origin: 50% 50%
}

.mobleMenu_button.on span::before {
    -webkit-transform: rotate3d(0, 0, 1, 45deg);
    transform: rotate3d(0, 0, 1, 45deg);
}

.mobleMenu_button.on span::after {
    -webkit-transform: rotate3d(0, 0, 1, -45deg);
    transform: rotate3d(0, 0, 1, -45deg);
}

/* 下拉菜单 */
.mobleHeaderMenu {
    display: none;
    position: fixed;
    top: 0px;
    left: 0px;
    width: 100%;
    height: 100%;
    overflow: hidden;
    padding-top: 55px;
    z-index: 9990;
    background: #fff;
    color: #000;
}

.mobleHeaderMenu ul {
    width: 100%;
    height: 100%;
    overflow-y: auto;
}

.mobleHeaderMenu ul>li {
    margin-left: 4%;
    margin-right: 4%;
    position: relative;
    border-bottom: 1px solid #EDF0F4;
}

.mobleHeaderMenu a {
    display: block;
    font-size: 0.28rem;
    line-height: 1rem;
    margin-right: 1rem;
    text-transform: uppercase;
}

.mobleHeaderMenu span {
    position: absolute;
    top: 0rem;
    right: 0rem;
    display: block;
    width: 1rem;
    height: 1rem;
    background: url(../images/headerTriangle2.png)no-repeat center right;
    background-size: 0.48rem 0.48rem;
}

/* 二级栏目 */
.mobleDropdown {
    display: none;
    background: #F9F9F9;
}

.mobleDropdown li {
    padding-left: 4%;
    color: #000;
}

.mobleDropdown .title {
    font-size: 0.28rem;
    color: #C0C0C0;
    padding-top: 0.3rem;
    margin-bottom: 0.1rem;
}

.mobleDropdown .title:nth-child(n+2) {
    border-top: 0.01rem dashed #E5E5E5;
}

.mobleDropdown a {
    line-height: unset;
    padding: 0.2rem 0rem;
}

/* 联系方式 */
.mobleHeaderMenu .contact {
    display: flex;
    align-items: center;
    justify-content: space-around;
    font-size: 0.26rem;
    padding: 0.8rem 0rem 0rem 0rem;
    text-align: center;
    border: none;
}

.mobleHeaderMenu .contact img {
    display: block;
    width: 0.36rem;
    height: 0.36rem;
    margin: 0rem auto;
}

.mobleHeaderMenu .contact a {
    line-height: unset;
    margin: 0rem;
    text-transform: unset;
    padding-top: 0.14rem;
}

/* 快捷链接 */
.mobleHeaderMenu .link {
    display: flex;
    align-items: center;
    justify-content: center;
    border: none;
    padding: 0.6rem 0rem;
}

.mobleHeaderMenu .link a {
    display: block;
    width: 0.6rem;
    height: 0.6rem;
    margin: 0rem 0.24rem;
}

.mobleHeaderMenu .link img {
    display: block;
    width: 100%;
    height: 100%;
}

/* 微信二维码 */
.mobleHeaderMenu .wxCode {
    text-align: center;
    padding-bottom: 0.6rem;
    font-size: 0.24rem;
    color: #999;
}

.wxCode>img {
    display: block;
    width: 2.5rem;
    height: 2.5rem;
    margin: 0rem auto 0.2rem auto;
    object-fit: contain;
}

/* 语言切换 */
.mobleHeaderMenu .language {
    display: flex;
    align-items: center;
}

.mobleHeaderMenu .language a {
    position: relative;
    padding-right: 0.3rem;
    margin-right: 0.3rem;
    color: #999;
}

.mobleHeaderMenu .language a.on {
    color: #333;
    font-family: "Montserrat-Bold";
}

.mobleHeaderMenu .language a:last-of-type {
    padding-right: 0rem;
}

.mobleHeaderMenu .language a::after {
    content: "";
    position: absolute;
    top: 50%;
    transform: translateY(-50%);
    right: 0rem;
    display: block;
    width: 0.02rem;
    height: 0.3rem;
    background: #EDF0F4;
}

/* =========== 移动端头部 结束 =========== */
/* ============================= 头部 结束 ============================= */





/* ============================= 底部 开始 ============================= */
@media (max-width: 800px) {
    footer .headerTop {
        display: none !important;
    }

    .mobleHeader img {
        height: 0.46rem;
        width: auto;
    }
}

footer {
    width: 100%;
    padding: 0.2rem 0.5rem;
    background: url(../images/fotBg.png)no-repeat center center;
    color: #fff;
    background-size: cover;
    padding-top: 0.8rem;
}

.footerCon {
    display: flex;
    justify-content: space-between;
}

.footerCon .footerL {
    width: 28%;
}

.footerCon .footerL .fotLogo {
    display: block;
    width: 3rem;
    height: 0.4rem;
    margin-bottom: 0.3rem;
}

.footerCon .footerL .lxList {
    border-top: 0.01rem solid rgba(255, 255, 255, 0.12);
    padding-top: 0.3rem;
}

.footerCon .footerL .lxList p {
    padding: 0.1rem 0rem;
    padding-left: 0.3rem;
}

.footerCon .footerL .lxList p.tel {
    background: url(../images/fotTel.png) no-repeat center left;
}

.footerCon .footerL .lxList p.email {
    background: url(../images/fotEmail.png) no-repeat center left;
}

.footerCon .footerL .lxList p.addr {
    background: url(../images/fotAddress.png) no-repeat center left;
}



footer .footerBox {
    width: 62%;
    display: flex;
    justify-content: space-between;
}

footer .footerBox .footerItem {
    width: 14%;
}

footer .footerBox .footerItem h3 {
    position: relative;
}

footer .footerBox .footerItem h3::after {
    content: "";
    position: absolute;
    bottom: -0.15rem;
    left: 0;
    transform: translateY(-50%);
    display: block;
    width: 0.15rem;
    height: 0.03rem;
    background: rgba(255, 255, 255, 1);
}



footer .footerBox .footerItem ul {
    margin-top: 0.3rem;
    opacity: 0.5;
}

footer .footerBox .footerItem ul li {
    padding: 0.05rem 0rem;
}

footer .copyRight {
    display: flex;
    justify-content: space-between;
    margin-top: 0.4rem;
    border-top: 0.01rem solid rgba(255, 255, 255, 0.12);
    padding: 0.1rem 0rem;
    padding-top: 0.3rem;
}

.copTxt .iconAll {
    display: flex;
    align-items: center;
    margin-bottom: 0.2rem;
}


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

.copyR>div {
    margin: 0 0.2rem;
}

.toggle-icon {
    display: none;
}



/* 友情链接 */
.links {
    position: relative;
}

.link-list {
    position: absolute;
    bottom: 100%;
    left: 0;
    background-color: white;
    border: 1px solid #ccc;
    padding: 10px;
    list-style-type: none;
    margin: 0;
    display: none;
    z-index: 1000;
    width: 1.8rem;
}

.toggle-link {
    cursor: pointer;
}

/* .toggle-link:after {
    content: "";
    background: url(../images/upJian.png) no-repeat center right;
    width: 0.2rem;
    height: 0.4rem;
    position: absolute;
    top: 50%;
    transform: translateY(-50%);
}

.link-list li {
    margin-bottom: 5px;
}

.link-list li a {
    color: #333;
} */

.webMap {
    margin-left: 0.2rem;
    padding-left: 0.3rem;
    border-left: 0.01rem solid #fff;
}

/* 返回顶部 */
.backTop {
    position: fixed;
    right: 0.3rem;
    bottom: 0.3rem;
    display: none;
    width: 0.6rem;
    height: 0.6rem;
    background: url(../images/backTop.png)no-repeat center center;
    background-size: cover;
    cursor: pointer;
    border-radius: 50%;
    z-index: 200;
}



/* 底部微信二维码 */
footer .wxItem {
    position: relative;
    margin-right: 0.2rem;
}

.wxItem img {
    width: 0.48rem;
    height: 0.48rem;
    cursor: pointer;
}

footer .wxPopup {
    position: absolute;
    bottom: 120%;
    left: 50%;
    transform: translateX(-50%);
    z-index: 2;
    display: block;
    width: 1.2rem;
    height: 1.2rem;
    border-radius: 0.04rem;
    background: #fff;
    padding: 0.08rem;
    margin-left: -0.05rem;
    display: none;
}

footer .wxPopup img {
    display: block;
    width: 100%;
    height: 100%;
    object-fit: contain;
    position: relative;
    z-index: 2;
}

footer .wxPopup::after {
    content: "";
    position: absolute;
    bottom: -0.04rem;
    left: 50%;
    transform: translateX(-50%);
    display: block;
    width: 0.1rem;
    height: 0.1rem;
    background: #fff;
    border-radius: 0.02rem;
    transform: rotate(45deg);
}

footer .wxItem:hover .wxPopup {
    display: block;
}

.mobErm {
    display: none;
}

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

.mobErmFx>div {
    flex: 1;
    text-align: center;
}

.mobErmFx>div img {
    width: 1.4rem;
    height: 1.4rem;
    margin: auto;
    margin-bottom: 0.1rem;
    display: block;
}

/* 移动端 */
@media (max-width: 800px) {
    footer {
        line-height: 1.5;
        padding: 0.32rem 4%;
    }

    .footerCon {
        flex-direction: column;
    }

    .footerCon .footerL .lxList {
        border-top: none;
    }

    .footerCon .footerL {
        width: 100%;
    }

    .footerCon .footerL .fotLogo {
        width: 4rem;
        height: auto;
    }

    .footerCon .footerL .lxList p {
        padding-left: 0.5rem;
    }

    .footerCon .footerL .lxList p.tel {
        background: url(../images/fotTel.png) no-repeat center left;
        background-size: 0.5rem 0.5rem;
    }

    .footerCon .footerL .lxList p.email {
        background: url(../images/fotEmail.png) no-repeat center left;
        background-size: 0.5rem 0.5rem;
    }

    .footerCon .footerL .lxList p.addr {
        background: url(../images/fotAddress.png) no-repeat center left;
        background-size: 0.5rem 0.5rem;
    }

    .backTop {
        display: none !important;
    }

    footer .copyright {
        display: block;
        text-align: center;
    }


    footer .footerBox {
        flex-direction: column;
        width: 100%;
        border-top: 0.01rem solid rgba(255, 255, 255, 0.12);
        margin-top: 0.3rem;
    }

    footer .footerBox .footerItem {
        margin-top: 0.2rem;
        width: 100%;
    }

    footer .footerBox .footerItem h3::after {
        display: none;
    }

    .toggle-icon {
        display: block;
    }

    .footerItem h3 {
        display: flex;
        justify-content: space-between;
    }

    footer .footerBox .footerItem ul {
        display: none;
    }

    .footerBox .footerItem ul li {
        padding: 0.1rem 0rem;
    }

    footer .copyRight {
        flex-direction: column;
        margin-top: 0.3rem;
    }

    .copTxt p a {
        display: inline-block;
    }

    footer .copyRight .copyR {
        margin-top: 0.2rem;
    }

    .copyR>div {
        margin: 0rem;
    }

    .pcErm {
        display: none;
    }

    .mobErm {
        display: block;
        margin-bottom: 0.3rem;
    }
}

/* ============================= 底部 结束 ============================= */





/* ============================= 公共样式 开始 ============================= */



/* 标题 */
.pubIndexTitle p {
    color: #333;
    font-family: 'manrope-simpleBold';
}

.pubIndexTitle h3 {
    font-weight: 500;
}


/* 内页Banner */
.pubPageBanner {
    position: relative;
    width: 100%;
}

.pubPageBanner img {
    width: 100%;
}

.pubPageTitle {
    position: absolute;
    top: 2.5rem;
    left: 1.9rem;
    color: #fff;
}

.lineBd {
    width: 2rem;
    height: 0.01rem;
    background: #fff;
    margin-top: 0.2rem;
    position: relative;
}

.lineBd:after {
    content: "";
    position: absolute;
    top: 50%;
    left: 0;
    transform: translateY(-50%);
    width: 0.8rem;
    height: 0.1rem;
    background: #fff;
}

.pubPageTitle p {
    color: #fff;
    font-family: "manrope-semibold";
    text-transform: uppercase;
}

.pubPageTitle h1 {
    margin-top: 0.1rem;
}


/* ============================按钮动画 开始============================ */
/* 按钮基础样式 */
.animated-btn {
    position: relative;
    padding: 0.15rem 0.3rem;
    background-color: #21509F;
    color: white;
    cursor: pointer;
    transition: all 0.3s ease;
    overflow: hidden;
    display: inline-block;
}

/* 按钮内容容器 */
.btn-content {
    display: flex;
    align-items: center;
    gap: 15px;
    position: relative;
    z-index: 2;
}

/* 线条基础样式 */
.btn-line {
    width: 0.4rem;
    height: 0.01rem;
    background-color: white;
    transition: width 0.4s ease;
    transform-origin: left center;
    position: relative;
    z-index: 1;
    margin-right: -0.31rem;
    margin-left: -0.1rem;
}

/* 圆环容器 */
.ring-container {
    position: relative;
    width: 0.24rem;
    height: 0.24rem;
}

/* 圆环样式 */
.btn-ring {
    width: 0.24rem;
    height: 0.24rem;
    border: 0.01rem solid white;
    border-radius: 50%;
    position: absolute;
    top: 0;
    left: 0;
}

/* 圆环中心点 */
.btn-ring::after {
    content: '';
    position: absolute;
    top: 50%;
    left: 50%;
    width: 0.06rem;
    height: 0.06rem;
    background-color: white;
    border-radius: 50%;
    transform: translate(-50%, -50%);
    z-index: 2;
}

/* 圆环脉动动画 */
@keyframes pulse {
    0% {
        transform: scale(1);
        opacity: 1;
    }

    50% {
        transform: scale(1.3);
        opacity: 0.7;
    }

    100% {
        transform: scale(1);
        opacity: 1;
    }
}

.btn-ring {
    animation: pulse 2s infinite;
}

/* 线条穿过时的颜色动画 */
@keyframes linePulse {
    0% {
        background-color: white;
        transform: scaleX(1);
    }

    50% {
        background-color: #a8c8ff;
        transform: scaleX(1.05);
    }

    100% {
        background-color: white;
        transform: scaleX(1);
    }
}

/* 穿环时的圆环特效 */
@keyframes ringEffect {
    0% {
        box-shadow: 0 0 0 0 rgba(255, 255, 255, 0);
    }

    50% {
        box-shadow: 0 0 0 4px rgba(255, 255, 255, 0.3);
    }

    100% {
        box-shadow: 0 0 0 0 rgba(255, 255, 255, 0);
    }
}

/* 鼠标悬停效果 */
.animated-btn:hover {
    transform: translateY(-5px);
    background-color: #FF9500;
    box-shadow: 0 10px 25px -5px rgba(59, 130, 246, 0.5);
    border-radius: 30px;
}

.animated-btn:hover .btn-line {
    width: calc(0.4rem + 0.32rem);
    /* 刚好到达圆环中心 */
    animation: linePulse 0.6s ease;
    /* 线条穿过时的脉动特效 */
}

.animated-btn:hover .btn-line::after {
    opacity: 1;
    /* 显示端点光点 */
    animation: endpointPulse 0.6s ease;
}

.animated-btn:hover .btn-ring {
    animation: pulse 2s infinite, ringEffect 0.6s ease;
    /* 叠加圆环特效 */
}

/* 端点闪烁动画 */
@keyframes endpointPulse {
    0% {
        transform: translate(50%, -50%) scale(1);
        opacity: 0.6;
    }

    50% {
        transform: translate(50%, -50%) scale(1.5);
        opacity: 1;
    }

    100% {
        transform: translate(50%, -50%) scale(1);
        opacity: 0.6;
    }
}

/* 点击反馈 */
.animated-btn:active {
    transform: translateY(-0.1rem);
    box-shadow: 0 0.1rem 0.3rem -0.1rem rgba(59, 130, 246, 0.5);
}

/* ============================按钮动画 结束============================ */




/* 内页Banner */
.mobBanner {
    display: none;
}

@media (max-width: 800px) {
    .pcBanner {
        display: none;
    }

    .mobBanner {
        display: block;
    }

    .pubPageTitle {
        position: absolute;
        top: 1rem;
        left: 0.3rem;
    }
}


/* ===== 公共样式== 内页导航、翻页、面包屑导航、 开始===== */

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


.pubPageNav {}

.pubPageNav ul {
    display: flex;
    justify-content: center;
}

.pubPageNav ul li {
    height: 0.65rem;
    line-height: 0.65rem;
    min-width: 2.1rem;
    text-align: center;
    position: relative;
}

.pubPageNav ul li a {
    color: #999;
}

.pubPageNav ul li.active a {
    color: #21509F;
}

.pubPageNav ul li.active a:after {
    content: '';
    position: absolute;
    bottom: 0;
    left: 50%;
    transform: translateX(-50%);
    width: 0.4rem;
    height: 0.03rem;
    background: #21509F;
}

.pubPageNav .navBd {
    width: 100%;
}




/* 面包屑 */
.crumbs {
    border-bottom: 0.01rem solid #E4E4E5;
}

.crumbsBox {
    padding: 0.2rem 0rem;
    display: flex;
    align-items: center;
    color: #666;
}

.crumbsBox a {
    color: #666;
}

.crumbsBox a:first-child {
    background: url(../images/home.png)no-repeat left center;
    background-size: 0.2rem 0.2rem;
    padding-left: 0.3rem;
}

.crumbsBox span {
    margin: 0 0.1rem;
}


/* 翻页 */
.applyPage {
    margin-top: 0.8rem;
}

.applyPage ul {
    display: flex;
    align-items: center;
    flex-wrap: nowrap;
    justify-content: center;
}

.applyPage ul li {
    margin: 0 0.05rem;
    text-align: center;
    min-width: 0.4rem;
    height: 0.4rem;
    line-height: 0.4rem;
    background: #f4f4f4;
}

.applyPage ul li a.active {
    background: #FF9500;
    color: #fff;
}

.applyPage .prev::before {
    content: '←';
    /* 可以根据需要调整样式 */
    display: inline-block;
    width: 20px;
    height: 20px;
    text-align: center;
    line-height: 20px;
}

.applyPage .next::before {
    content: '→';
    /* 可以根据需要调整样式 */
    display: inline-block;
    width: 20px;
    height: 20px;
    text-align: center;
    line-height: 20px;
}



@media (max-width: 800px) {
    .crumbsCon {
        flex-direction: column;
    }

    .crumbsBox {
        padding-left: 0.2rem;
        width: 100%;
    }

    .crumbsBox a:first-child {
        background-size: 0.3rem 0.3rem;
    }

    .pubPageNav {
        width: 100%;
    }

    .pubPageNav .navBd {
        padding: 0rem;
    }

    .pubPageNav ul {
        display: flex;
        justify-content: flex-start;
        /* width: 7.2rem; */
        overflow-x: scroll;
    }

    .applyPage ul li {
        margin: 0 0.05rem;
        text-align: center;
        min-width: 0.8rem;
        height: 0.8rem;
        line-height: 0.8rem;
        background: #f4f4f4;
    }


}

/* =====公共样式==内页导航、 翻页、面包屑导航、 结束 ===== */

/* =====  公共样式 表单 开始 ===== */
.formBox {
    margin-top: 0.7rem;
    max-width: 11rem;
    padding-bottom: 0.6rem;
    margin: auto;
}

.formList {
    margin-top: 0.22rem;
    display: flex;
    align-items: center;
}

.formList h4 {
    width: 2rem;
    font-weight: normal;
}

.formList .formItem {
    border: 0.01rem solid #E4E4E5;
    padding: 0 0.3rem;
    border-radius: 0.05rem;
    width: 100%;
}

.formList .formItem input {
    width: 100%;
    height: 0.7rem;
    line-height: 0.7rem;
}

.formItem textarea {
    height: 1.5rem;
    padding: 0.3rem 0rem;
}

.yzmBox {
    display: flex;
    align-items: center;
    justify-content: space-between;
    width: 100%;
}

.yzmBox img {
    width: 2rem;
    height: 0.6rem;
    display: block;
}

.yzmBox a {
    margin-left: 0.2rem;
}

button.enter {
    margin-top: 0.8rem;
    width: 4rem;
    height: 0.7rem;
    line-height: 0.7rem;
    background: linear-gradient(90deg, #E42240, #F85259);
    color: #fff;
    border: none;
    border: none;
    margin: auto;
    display: block;
    margin-top: 0.6rem;
}



@media (max-width: 800px) {

    .formList {
        flex-direction: column;
        margin-top: 0.5rem;
    }

    .formList h4 {
        width: 2rem;
        font-weight: normal;
        text-align: left;
        width: 100%;
        margin-bottom: 0.1rem;
    }

    .formList .formItem input {
        width: 100%;
        height: 0.85rem;
        line-height: 0.85rem;
    }

    button.enter {
        height: 0.85rem;
    }
}

/* =====  公共样式 表单 结束 ===== */




/* ============================= 公共样式 结束 ============================= */