

body {
    font-size: 1.2rem; /* 基础字体12px */
    overflow-y: scroll;
}

.neiye{
    background: #f5f5f5;
}

.mtop6{
    margin-top: 6rem;
}
/* 重置和初始化样式 */
html, body, div, span, applet, object, iframe,
h1, h2, h3, h4, h5, h6, p, blockquote, pre,
a, abbr, acronym, address, big, cite, code,
del, dfn, em, img, ins, kbd, q, s, samp,
small, strike, strong, sub, sup, tt, var,
b, u, i, center,
dl, dt, dd, ol, ul, li,
fieldset, form, label, legend,
table, caption, tbody, tfoot, thead, tr, th, td,
article, aside, canvas, details, embed,
figure, figcaption, footer, header, hgroup,
menu, nav, output, ruby, section, summary,
time, mark, audio, video {
    margin: 0;
    padding: 0;
    border: 0;
    font-size: 100%;
    font: inherit;
    vertical-align: baseline;
    box-sizing: border-box;
}

/* 基础rem设置 - 1rem = 10px (方便计算) */
html {
    font-size: 62.5%; /* 10px = 1rem */
}

/* HTML5 元素显示为块级元素 */
article, aside, details, figcaption, figure,
footer, header, hgroup, menu, nav, section {
    display: block;
}

body {
    line-height: 1.5;
    font-family: Arial, "Microsoft YaHei", sans-serif;
    color: #333;
    background-color: #fff;
}

ol, ul {
    list-style: none;
}

a {
    text-decoration: none;
    color: inherit;
}
a:hover{
    color: #0435D4;
}

img {
    max-width: 100%;
    height: auto;
    display: block;
}
.yhsl {
    white-space: nowrap;      /* 强制文本不换行 */
    overflow: hidden;         /* 隐藏超出部分 */
    text-overflow: ellipsis;  /* 超出时显示省略号 */
    width: 100%;            /* 必须指定宽度（或 max-width） */
}

table {
    border-collapse: collapse;
    width: 100%;
}
table tr {
    background: #FFF;
}
table td {
    padding: 2rem 1rem;
    border: 1px solid #CCC;
    font-weight: 400;
    font-size: 1.6rem;
    text-align: center;
    color: #666666;
}

.zsjzContent3 table thead td{
    background: #244735;
    color: #fff;
}
.zsjzContent3 table{
    min-width: 60rem;
}





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

/* 布局样式 */
.container {
    width: 100%;
    max-width: 160rem; /* 1200px */
    margin: 0 auto;
    padding: 0rem; /* 15px */
}

/* 页头样式 */
.header {
    background-color: #fff;
    position: relative;
    height: 10rem;
}
/* 页头样式 */
.header .container{
    width: 100%;
    padding: 0 2%;
    max-width: 160rem;
}


.header-inner {
    width: 100%;
    height: 10rem;
    display: flex;
    align-items: center;
    justify-content: space-between;
}

/* LOGO样式 */
.logo {
    display: flex;
    align-items: center;
    font-weight: bold;
}

.logo-img {
    width: 4rem; /* 40px */
    height: 4rem; /* 40px */
    margin-right: 1rem; /* 10px */
}

.logo-text {
    font-size: 1.8rem; /* 18px */
}
.nav{
    width: auto;
    height: 10rem;
}
/* 导航菜单样式 - 桌面端 */
.nav-list {
    display: flex;
    justify-content: space-between;
    align-items: center;
    height: 10rem;
}

.nav-item {
    position: relative;
    align-items: center;
    margin: 0 2rem;
}

.nav-item a{
    position: relative;
    display: flex;
    height: 10rem;
    align-items: center;
    padding: 0 1rem;
    color: #333333;
}

.nav-item .erji{
    display: none;
}


.nav-item:hover .erji{
    position: absolute;
    width: 16rem;
    min-height: auto;
    z-index: 999;
    height: auto;
    display: flex;
    visibility: visible;
    justify-content: center;
}

.nav-item .erji .jiantou{
    position: absolute;
    z-index: 9999;
}
.nav-item .erji .erji1{
    width: 100%;
    display: flex;
    flex-direction: column;
    align-items: center;
    margin-top: 1rem;
    background: #FFFFFF;
    border-radius: 1rem;
}


.erji0{
    margin-left: 0rem;
}

.erji3{
    margin-left: -2rem;
}

.nav-item .erji .erji1 a{
    font-weight: 400;
    font-size: 1.6rem;
    text-align: center;
    height: auto;
    color: #333333;
    line-height: 3.8rem;
}

.nav-item .erji .erji1 a{
    margin-top: 1rem;
}
.nav-item .erji .erji1 a:last-child{
    margin-bottom: 1rem;
}

.nav-item .erji .erji1 a:hover{
    color: #0435D4;
}

.nav-item a span{
    font-size: 2rem;
}

.nav-item a text{
    font-size: 2rem;
    padding: 0.8rem;
   font-weight:  400;
    text-transform: uppercase;
}
.nav-item a:hover{
    color: #0435D4;
}



.nav-link:hover, .nav-link.active {
    color: #0435D4;
}

.nav-link {
    padding: 0.5rem 0; /* 5px */
    font-size: 1.8rem; /* 14px */
    transition: color 0.3s;
}



/* 汉堡菜单样式 - 默认隐藏 */
.hamburger {
    display: none;
    padding: 1rem; /* 10px */
    background: none;
    border: none;
    cursor: pointer;
}

.hamburger-box {
    width: 2.4rem; /* 24px */
    height: 1.6rem; /* 16px */
    display: inline-block;
    position: relative;
}

.hamburger-inner {
    width: 100%;
    height: 0.2rem; /* 2px */
    background-color: #333;
    position: absolute;
    left: 0;
    top: 50%;
    transform: translateY(-50%);
    transition: background-color 0.2s;
}

.hamburger-inner::before,
.hamburger-inner::after {
    content: "";
    width: 100%;
    height: 0.2rem; /* 2px */
    background-color: #333;
    position: absolute;
    left: 0;
    transition: transform 0.2s;
}

.hamburger-inner::before {
    top: -0.6rem; /* -6px */
}

.hamburger-inner::after {
    top: 0.6rem; /* 6px */
}

/* 主要内容区域 */
.main {
    /*padding: 3rem 0; !* 30px *!*/
}

.content h1 {
    font-size: 2.4rem; /* 24px */
    margin-bottom: 2rem; /* 20px */
}

.content h2 {
    font-size: 2rem; /* 20px */
    margin: 1.5rem 0 1rem; /* 15px 0 10px */
}

.content p {
    margin-bottom: 1rem; /* 10px */
    font-size: 1.4rem; /* 14px */
}









/*首页*/
.btop{
    width: 100%;
    height: 10rem;
    background: #224533;
}
.btop .container{
    display: flex;
    justify-content: space-between;
    align-items: center;
    height: 100%;
}

.btop .logoBox{
    width: auto;
    height:100%;
    display: flex;
    flex-direction: column;
    justify-content: center;
    background: url("../imgs/ty.png") no-repeat center top;
}


.btop .sousuo{
    width: 26rem;
    height: 4rem;
    background: #FFFFFF;
    border-radius: 2rem;
    display: flex;
    justify-content: space-between;
    align-items: center;
}

.sousuotext{
    width: 18rem;
    height: 3rem;
    font-family: Microsoft YaHei;
    font-weight: 400;
    font-size: 1.6rem;
    color: #999999;
    border: 0;
    margin-left: 2rem;
    line-height: 2.2rem;
}

.sousuoanniu{
    width: 2.1rem;
    height: auto;
    font-size: 2rem;
    color: #333;
    margin-right: 2rem;
}





.banner{
    width: 100%;
    height:auto;
    position: relative;
}

.banner .swiper {
    width: 100%;
    height: 100%;
}

.banner .swiper-slide {
    text-align: center;
    font-size: 18px;
    background: #fff;
    display: flex;
    justify-content: center;
    align-items: center;
}

.banner .swiper-slide img {
    display: block;
    width: 100%;
    height: 100%;
    object-fit: cover;
}

.banner .swiper {
    margin-left: auto;
    margin-right: auto;
}
.banner .swiper-button-prev, .banner .swiper-button-next{
    width: 5.6rem;
    height: 5.6rem;
    background: #000000;
    border-radius: 50%;
    opacity: 0.2;
}
.banner .swiper-button-prev{
    left: 5%;
}
.banner .swiper-button-next{
    right: 5%;
}


.banner .swiper-button-prev:after, .banner  .swiper-button-next:after{
    font-size: 2rem;
    color: #fff;
}

.banner .swiper-horizontal>.swiper-pagination-bullets, .swiper-pagination-bullets.swiper-pagination-horizontal, .swiper-pagination-custom, .swiper-pagination-fraction{
    bottom: 10rem;
}

.banner .swiper-horizontal>.swiper-pagination-bullets .swiper-pagination-bullet, .swiper-pagination-horizontal.swiper-pagination-bullets .swiper-pagination-bullet{
    width: 1.2rem;
    height: 1.2rem;
    background: #FFFFFF;
    border-radius: 50%;
    opacity: 0.3;
}

.banner .swiper-horizontal>.swiper-pagination-bullets .swiper-pagination-bullet-active,
.swiper-pagination-horizontal.swiper-pagination-bullets .swiper-pagination-bullet-active{
    background: #fff;
    width: 1rem;
    height: 1rem;
    background: #FFFFFF;
    border-radius: 50%;
    opacity:1;
    background-size: 100%;
}

.banner .swiper-pagination-bullet-active{

}

.tongzhi{
    position: absolute;
    width: 100%;
    height: 8rem;
    background: rgb(0,0,0,0.2);
    bottom: 0;
    z-index: 99999999999999;
}
.tongzhi .container{
    height: 8rem;
    display: flex;
    align-items: center;
}


.scroll-news {
    width: 100%;
    height: 3.6rem;
    line-height:3.6rem;
    overflow: hidden;
    position: relative;
}

.news-icon {
    color: #fff;
    font-size: 2.8rem;
    vertical-align: middle;
}

.news-content {
    position: absolute;
    width: calc(100% - 3rem);
   margin-left: 4rem;
    top: 0;  /* 添加初始定位 */

}

.news-item {
    height: 3.6rem;
    white-space: nowrap;
    overflow: hidden;
    text-overflow: ellipsis;
    color: #fff;
    font-size: 1.8rem;
}

.news-item a {
    color: #fff;
    text-decoration: none;
}

.news-item a:hover {
    text-decoration: underline;
}



.indexSnav{
    width: 100%;
    height: 26rem;
}


.indexSnav .container{
    height: 26rem;
    display: flex;
    justify-content: space-between;
}


.indexSnav .container a{
    width: 25%;
    height:auto;
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: center;
    background: #fff;
}
.indexSnav .container a:hover{
    background: rgb(245,245,245,1);
}

.indexSnav .container a .sNavImg{
    max-width: 100%;
}

.indexSnav .container a .sNavName {
    font-weight: bold;
    font-size: 2rem;
    color: #244735;
    line-height: 3.6rem;
    margin-top: 2.4rem;
}

.indexSnav .container a:hover .sNavName {
    text-decoration: underline;
}

.indexNews{
    width: 100%;
    height: 96rem;
    background: #F5F5F5;
    display: flow-root; /* 方法3 */
}
.indexNews .container{
    display: flex;
    justify-content: space-between;
}

.newsBox{
    width: 69rem;
    height:auto;
    /*background: #ccc;*/
    margin-top: 10rem;

}

.newsTypeName{
    width: 100%;
    height: 5rem;
    display: flex;
    justify-content: space-between;
    align-items: center;
}

.newsTypeName .newsTypeNameleft{
    width: auto;
    height: 5rem;
    display: flex;
    align-items: center;
}

.newsTypeName .newsTypeNameleft img{
    width: auto;

}

.newsTypeName .newsTypeNameleft text{
    width: auto;
    height: auto;
    font-weight: bold;
    font-size: 2.6rem;
    padding-left: 1rem;
    color: #333333;
}

.newsTypeName .newsTypeNameright{
    height: 5rem;
    display: flex;
    align-items: center;
}

.newsTypeName .newsTypeNameright text{
    height: 5rem;
    display: flex;
    align-items: center;
    height: 1.6rem;
    font-weight: 400;
    font-size: 1.6rem;
    color: #666666;
    padding-right: 1rem;
}

.newsTypeName .newsTypeNameright .icon-jiahao2fill{
    color: #244735;
    font-size: 1.9rem;
}















.gallery-container {
    position: relative;
    width: 100%;
    height: 33rem;
    overflow: hidden;
}

.swiper-container {
    width: 100%;
    height: 100%;
    border-radius: 10px;
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.2);
}

.swiper-slide {
    position: relative;
    display: flex;
    justify-content: center;
    align-items: center;
    overflow: hidden;
    background: #000;
}

.swiper-slide img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    opacity: 0.9;
}

.slide-title {
    position: absolute;
    left: 0;
    bottom: 0;
    color: white;
    font-size: 1.6rem;
    font-weight: bold;
    text-shadow: 2px 2px 4px rgba(0, 0, 0, 0.5);
    z-index: 10;
    /* max-width: 60%; */
    width: 100%;
    height:8rem;
    background: rgb(0,0,0,0.2);
    line-height: 8rem;
    padding-left: 3rem;
}


.slide-title1 {
    position: absolute;
    left: 0;
    bottom: 0;
    color: white;
    font-size: 1.6rem;
    font-weight: bold;
    text-shadow: 2px 2px 4px rgba(0, 0, 0, 0.5);
    z-index: 10;
    /* max-width: 60%; */
    width: 100%;
    height:8rem;
    background: rgb(0,0,0,0.2);
    line-height: 8rem;
    padding-left: 3rem;
}

.navigation-container {
    position: absolute;
    right: 3rem;
    bottom: 1rem;
    display: flex;
    align-items: center;
    z-index: 10;
}

.nav-button {
    width: 3rem;
    height: 3rem;
    border-radius: 50%;
    background:none;
    border: none;
    color: white;
    font-size: 1.6rem;
    cursor: pointer;
    display: flex;
    justify-content: center;
    align-items: center;
    transition: all 0.3s ease;
    outline: none;
    text-align: center;
}



.nav-button:hover {
    background: rgba(255, 255, 255, 0.4);
}

.progress-container {
    position: relative;
    width: 4.6rem;
    height: 4.6rem;
    margin: 0 15px;
}

.progress-circle {
    width: 100%;
    height: 100%;
    transform: rotate(-90deg);
}

.progress-circle-bg {
    fill: none;
    stroke: rgba(255, 255, 255, 0.2);
    stroke-width: 4;
}

.progress-circle-fill {
    fill: none;
    stroke: white;
    stroke-width: 4;
    stroke-dasharray: 283;
    stroke-dashoffset: 283;
    transition: stroke-dashoffset 0.3s ease;
}

.progress-text {
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    color: white;
    font-size: 14px;
    font-weight: bold;
}

.IndexNewsList{
    width: 100%;
    height: auto;
    margin-top: 3rem;
}

.IndexNewsList ul{
    width: 100%;
    height: auto;
}

.IndexNewsList ul li{
    width: 100%;
    height: auto;
    display: flex;
    justify-content: space-between;
}

.IndexNewsList ul li a{
    font-weight: 400;
    font-size: 1.6rem;
    color: #666666;
    height: 4rem;
    display: flex;
    align-items: center;
    color: #666666;


}

.IndexNewsList ul li a span{
    font-weight: 400;
    font-size: 3rem;
    color: #999999;
}



.IndexNewsList ul li a text{
    font-weight: 400;
    font-size: 1.6rem;
    max-width: 50rem;
    white-space: nowrap;
    overflow: hidden;
    text-overflow: ellipsis;
}

.IndexNewsList ul li a:hover span,.IndexNewsList ul li a:hover text{
    color: #0435D4;
}

.IndexNewsList ul li .date{
    font-weight: 400;
    font-size: 1.6rem;
    color: #999999;
    line-height: 4rem;
}


.swiper-container1 {
    width: 100%;
    height: 100%;
    border-radius: 10px;
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.2);
}

.progress-circle-fill1 {
    fill: none;
    stroke: white;
    stroke-width: 4;
    stroke-dasharray: 283;
    stroke-dashoffset: 283;
    transition: stroke-dashoffset 0.3s ease;
}

.gaofuzhichuang{
    width: 100%;
    height: auto;
    margin-top: 10rem;
}
.gaofuzhichuang ul{
    width: 100%;
    height: auto;
    display: flex;
    margin-top: 4rem;
    justify-content: space-between;
}

.gaofuzhichuang ul li{
    width: 44rem;
    height: auto;
    margin-right: 6rem;
}
.gaofuzhichuang ul li:nth-child(3){
    margin-right: 0;
}


.gaofuzhichuang ul li a{
    width: 100%;
    height: auto;
}


.gaofuzhichuang ul li a .gaofuImg{
    width: 100%;
    height: auto;
}


.gaofuzhichuang ul li a .gaofuImg img{
    width: 100%;
}

.gaofuzhichuang ul li a .gaofuImg:hover img {
    transform: scale(1.01);
}



.gaofuzhichuang ul li a .gaofuTitle{
    font-family: Microsoft YaHei;
    font-weight: 400;
    font-size: 1.6rem;
    /*color: #666666;*/
    line-height: 3rem;
    margin-top: 3rem;
}


/* 页脚样式 */
.footer {
    background: url("../imgs/footbg.png") no-repeat center bottom;
    width: 100%;
    height: 68rem;
    margin-top: 6.9rem;
    display: inline-table;
}


.footer-top{
    width: 100%;
    height: 36rem;
    margin-top: 6rem;
    margin-top: 19rem;
    border-bottom: 1px solid #294d3b;
    display: flex;
}

.footer-top .container{
    display: flex;
    justify-content: space-between;
}

.foot-left{
    width: 108.6rem;
    display: flex;
    justify-content: space-between;
}
.footNav1{
    width: 20%;
    height: auto;
    display: flex;
    flex-direction: column;
}
.footNav1 strong{
    font-weight: bold;
    font-size: 2.4rem;
    color: #619078;
    padding-bottom: 2rem;
}
.footNav1 a{
    font-weight: 400;
    font-size: 1.6rem;
    color: #FFFFFF;
    line-height: 3.6rem;
}
.footNav1:nth-child(3){
    width: 32%;
}

.footNav1 span{
    font-weight: 400;
    font-size: 1.5rem;
    color: #FFFFFF;
    line-height: 3.6rem;
    margin-bottom: 1.5rem;
}
.footNav1 span p:nth-child(2){
    font-family: Arial;
    font-weight: bold;
    font-size: 2.4rem;
    color: #FFFFFF;
    line-height: 3rem;
}


.foot-right{
    width: 19rem;
    display: flex;
    flex-direction: column;
    text-align: center;
}

.foot-right text{
    font-weight: 400;
    font-size: 1.4rem;
    color: #619078;
    line-height: 2.4rem;
    padding-top: 1rem;
}

.foot-bottom{
    width: 100%;
    font-weight: 400;
    font-size: 1.6rem;
    color: #619078;
    padding-top: 4rem;
    text-align: center;
}

.mobilelogo{
    display: block;
}

.headerRgiht{
    width: auto;
    display: flex;
    align-items: center;

    font-weight: 400;
    font-size: 1.4rem;
    color: #0435D4;
}

.headerRgiht a{
    width: auto;
    height: 3.2rem;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 3rem;
    color: #0435d4;
}
.headerRgiht a:nth-child(1){
    margin-right: 0rem
}
.headerRgiht a span{
    font-weight: 400;
    font-size: 1.6rem;
    color: #0435D4;
    padding-left: 0.5rem;
}

.headerRgiht a:hover{
    /*background: #127701;*/
    color: #127701;
}

.headerRgiht a:hover  span{
    /*background: #127701;*/
    color: #127701;
}

.pagebanner{
    width: 100%;
    height: 56rem;
}


.pagebanner .container{
    height: 56rem;
    display: flex;
    flex-direction: column;
    justify-content: center;
}

.pagebanner .container h1{
    font-weight: bold;
    font-size: 4rem;
    color: #FFFFFF;
}

.pagebanner .container h2{
    font-weight: 400;
    font-size: 3rem;
    color: #FFFFFF;
    margin-top: 2.9rem;
}


.pagebanner .container span{
    width: 9rem;
    height: 0.2rem;
    background: #FFFFFF;
    margin-top: 4rem;
}


.dangqianweizhi{
    width: 100%;
    height: 6.6rem;
    background: #F5F5F5;
}

.dangqianweizhi span{
    font-size: 1.6rem;
}

.dangqianweizhi text{
    font-weight: 400;
    padding-left: 1rem;
    font-size: 1.4rem;
    color: #999999;
}


.newsListBox{
    width: 100%;
    height: auto;
}

.newsListBox a {
    width: 100%;
    height: 15rem;
    display: flex;
    justify-content: space-between;
    border-bottom: 1px solid #EEEEEE;
    margin-top: 5rem;
}


.newsListBox a .left-data{
    width: 10rem;
    height: 10rem;
    display: flex;
    flex-direction: column;
    justify-content: space-between;
    background: #0435D4;
    text-align: center;
}

.newsListBox a .left-data span:nth-child(1){
    width:10rem;
    height: 6.4rem;
    background: #0435D4;
    font-family: PingFang SC;
    font-weight: bold;
    font-size: 3rem;
    color: #FFFFFF;
    line-height: 6.4rem;
}

.newsListBox a .left-data span:nth-child(2){
    width:100%;
    height:  3.6rem;
    background: #244735;
    font-family: PingFang SC;
    font-weight: 500;
    font-size: 1.4rem;
    color: #FFFFFF;
    line-height: 3.6rem;
}

.newsListBox a .right-Box{
    width: 130rem;
    height: 10rem;
    display: flex;
    flex-direction: column;
    align-items: flex-start; /* 子元素高度不再被拉伸 */
}

.newsListBox a .right-Box .biaoti{
    width: 100%;
    height: auto;
    font-weight: 400;
    font-size: 2.4rem;
    color: #333333;
    display: block;       /* 确保非行内元素 */
    flex-shrink: 0;       /* 禁止被压缩 */
}

.newsListBox a .right-Box span:nth-child(2){
    width: 100%;
    height: auto;
    font-weight: 400;
    font-size: 1.6rem;
    color: #666666;
    margin-top: 2rem;
}




.pagination {
    display: flex;
    justify-content: center;
    align-items: center;
    font-family: Arial, sans-serif;
    margin: 20px 0;
    font-size: 1.4rem;
}

.page-item {
    margin: 0 5px;
}

.page-link {
    display: inline-block;
    padding: 5px 10px;
    color: #333;
    text-decoration: none;
    border: 1px solid #ddd;
    border-radius: 3px;
    transition: all 0.3s;
    font-size: 1.4rem;
}

.page-link:hover {
    background-color: #0435D4;
}

.page-link.active {
    background-color: #0435D4;
    color: white;
    border-color: #0435D4;
}

.ellipsis {
    padding: 5px 10px;
}

.newsDetail{
    width: 100%;
    height: auto;
}


.newsDetail .container{
    height: auto;
    border: 1px solid #EBEBEB;
    border-top:0;
    display: flex;
    justify-content: space-between;
}

.newsDetail .container .detailLeft{
    width: 100rem;
    height: auto;
    min-height: 20rem;
    border-right: 1px solid #EBEBEB;
}

.detailLeftcenyter{
    margin: 0 5.4rem;
    padding-top: 4.9rem;
}

.detailLeftcenyter .news-title{
    width: 100%;
    font-weight: bold;
    font-size: 3.2rem;
    color: #333333;
    text-align: center;
}

.detailLeftcenyter .news-sj{
    width: 100%;
    font-family: Microsoft YaHei;
    font-weight: 400;
    font-size: 1.6rem;
    color: #999999;
    text-align: center;
    padding-top: 3rem;
    padding-bottom: 2rem;
    border-bottom: 1px solid #EBEBEB;
}
.detailLeftcenyter .newsContent{
    width:100%;
    font-weight: 400;
    font-size: 1.6rem;
    color: #666666;
    padding: 4rem 0;
    line-height: 3rem;
}

.shangyi{
    width: 100%;
    height: 10rem;
    display: flex;
    border-top: 1px solid #EBEBEB;
    padding-top: 5rem;
    padding-bottom: 11rem;
    justify-content: space-between;
}


.shangyi .shangyi-left{
    width: 60rem;
    height: 6rem;
    display: flex;
    flex-direction: column;
    justify-content: space-between;
}


.shangyi .shangyi-left a{
    font-weight: 400;
    font-size: 1.6rem;
    color: #666666;
    line-height: 2.2rem;
}
.shangyi .fanhui{
    width: 14rem;
    height: 4.6rem;
    background: #244735;
    font-weight: 400;
    font-size: 1.6rem;
    color: #FFFFFF;
    line-height: 4.6rem;
    text-align: center;
}

.detailRight{
    width: 35rem;
    height: auto;
    min-height: 20rem;
    margin-right: 5rem;
    margin-top: 4.9rem;
}

.rightNews{
    width: 100%;
    padding-bottom: 4rem;
    border-bottom: 1px solid #EBEBEB;
}

.rightNav{
    width: 100%;
    height: auto;
    margin-top: 5rem;
}
.rightNav .rightNavBox{
    width: 100%;
    height: auto;
    display: flex;
    flex-wrap: wrap;
    margin-top: 3.2rem;
}

.rightNav .rightNavBox a{
    width: 49.5%;
    height: 10rem;
    background: #f5f5f5;
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: center;
    margin-right: 1px;
    margin-bottom: 1px;
}
.rightNav .rightNavBox a:hover{
    background: #eafff4;
    font-weight: bold;
}


.rightNav .rightNavBox a span{
    font-weight: 400;
    font-size: 1.6rem;
    color: #666666;
    padding-top: 1.2rem;
}
.rightNav .rightNavBox a:hover span{
    font-weight: bold;
}

.zhaoshengjianzhang{
    width: 100%;
    height: auto;
    margin-top: 8.3rem;
}

.zhaoshengjianzhang .zsjzTitle{
    font-weight: bold;
    font-size: 2.4rem;
    color: #333333;
}

.zhaoshengjianzhang .zsjzContent1{
    width: 100%;
    height: auto;
    font-weight: 400;
    font-size: 1.6rem;
    color: #666666;
    line-height: 3rem;
    padding-top: 3rem;
}
.zhaoshengjianzhang .zsjzContent1 p{
    padding-top: 4rem;
}

.zhaoshengjianzhang .zsjzTitle{
    margin-top: 8rem;
}

.zhaoshengjianzhang .zhaoshengduixiang{
    font-weight: bold;
    font-size: 2rem;
    color: #0435D4;
    margin-top: 5rem;
}

.zhaoshengjianzhang .zsjzContent2{
    font-weight: 400;
    font-size: 1.6rem;
    color: #244735;
    line-height: 3.6rem;
    padding-top: 2.6rem;
}

.zhaoshengjianzhang .zsjzContent3{
    width: 100%;
    margin-top: 2.3rem;
}

.zhaoshenglianxi{
    width: 100%;
    height: auto;
    display: flex;
    min-height: 5rem;
    margin-top: 3rem;
    justify-content: space-between;
}
.zhaoshenglianxi span{
    width: 30%;
    border-right: 1px solid #E2E2E2;
}
.zhaoshenglianxi span p{
    font-weight: 400;
    font-size: 1.6rem;
    color: #666666;
    line-height: 3rem;
}

.zhaoshenglianxi span p:nth-child(2){
    font-family: Arial;
    font-weight: bold;
    font-size: 2.4rem;
    color: #224533;
    line-height: 3rem;
}

.zhaoshenglianxi1{
    font-weight: 400;
    font-size: 1.6rem;
    color: #666666;
    line-height: 3rem;
    margin-top: 4rem;
}

.zhaoshengbm{
    width: 100%;
    height: auto;
    display: flex;
    margin-top: 6rem;
    justify-content: space-between;
}

.zhaoshengbm .baoming{
    display: flex;
    width: 70rem;
    height: 32rem;
    background: #F5F5F5;
    flex-direction: column;
    justify-content: center;
    padding: 6rem;
}


.zhaoshengbm .baoming h2{
    font-weight: bold;
    font-size: 2.4rem;
    color: #333333;
}

.zhaoshengbm .baoming text{
    font-weight: 400;
    font-size: 1.6rem;
    color: #666666;
    line-height: 3rem;
}

.zhaoshengbm .baoming text{
    font-weight: 400;
    font-size: 1.6rem;
    color: #666666;
    line-height: 3rem;
    margin-top: 4rem;
}
.zhaoshengbm .baoming a{
    font-weight: 400;
    font-size: 1.6rem;
    color: #FFFFFF;
    text-align: center;
    line-height:4.6rem;
    width: 14rem;
    height: 4.6rem;
    margin-top: 4rem;
    background: #0435D4;
}

.tixin{
    width: 100%;
    height: 16rem;
    border-bottom: 1px solid #EBEBEB;
    padding-top: 2.9rem;
    font-weight: 400;
    font-size: 1.6rem;
    color: #666666;
    line-height: 3rem;
}
.tixin a{
    color: #0435D4;
    text-decoration: underline;
}

.wenjian{
    margin: 6.2rem 0;

}

.wenjian a{
    display: flex;
    height: 3rem;
    font-weight: 400;
    font-size: 1.6rem;
    color: #2D59FF;
    line-height: 4rem;
    align-items: center;
}


.wenjian a img{
    margin-right: 1rem;
}

.ditu{
    padding-top: 3rem;
}

.wenxintishi{
    font-weight: bold;
    font-size: 1.6rem;
    color: #FF2D2D;
    line-height: 3rem;
    padding-top: 4rem;
}

.tixin2{
    width: 100%;
    height: auto;
    padding-top: 2.9rem;
    font-weight: 400;
    font-size: 1.6rem;
    color: #666666;
    line-height: 3rem;
}
.tixin2 a{
    color: #0435D4;
    text-decoration: underline;
}

.changwenwenti{
    width: 100%;
    height: auto;
}

.changwenwenti .container{
    width: 100%;
    height: auto;
}


.changwenwenti a{
    width: 100%;
    height: 10.2rem;
    border-bottom: 1px solid #EEEEEE;
    display: flex;
    font-weight: 400;
    font-size: 2rem;
    color: #666666;
    padding: 0 2rem;
    align-items: center;
}
.changwenwenti a:hover{
    background: #f4f6f5;
    color: #0435D4;

}
.changwenwenti a .iconfont{
    font-size: 1rem;
    font-weight: bold;
    padding-right: 1rem;
}













.album-container {
    max-width: 1200px;
    margin: 0 auto;
    background: #fff;
    box-shadow: 0 0 20px rgba(0, 0, 0, 0.1);
    border-radius: 10px;
    overflow: hidden;
}

.swiper-container2 {
    width: 100%;
    height: 100%;
}

.album-slide {
    display: flex;
    height: 46rem;
}

.album-image {
    width: 72rem;
    height: 100%;
    background-size: cover;
    background-position: center;
}

.album-content {
    flex: 1;
    padding: 3rem;
    display: flex;
    flex-direction: column;
    justify-content: center;
}

.album-title {
    font-size: 2.5rem;
    margin-bottom: 1.5rem;
    color: #333;
}

.album-date {
    font-size: 1rem;
    color: #999;
    margin-bottom: 2rem;
}

.album-description {
    font-size: 1.2rem;
    line-height: 1.6;
    color: #666;
    margin-bottom: 3rem;
}

.album-navigation {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 20px;
    margin-top: auto;
}

.swiper-button-prev,
.swiper-button-next {
    position: relative;
    width: 40px;
    height: 40px;
    background: #333;
    color: #fff;
    border-radius: 50%;
    top: auto;
    left: auto;
    right: auto;
    margin: 0;
    display: flex;
    align-items: center;
    justify-content: center;
    cursor: pointer;
    flex-shrink: 0;
}

.swiper-button-prev::after,
.swiper-button-next::after {
    font-size: 1rem;
}

.swiper-pagination {
    position: relative;
    bottom: auto;
    display: flex;
    justify-content: center;
    gap: 8px;
}

.swiper-pagination-bullet {
    width: 12px;
    height: 12px;
    background: #ccc;
    opacity: 1;
    transition: all 0.3s ease;
}

.swiper-pagination-bullet-active {
    background: #333;
    transform: scale(1.2);
}













.banner2{
    width: 100%;
    height:auto;
    position: relative;
    margin-top: 8rem;
}

.banner2 .swiper {
    width: 100%;
    height: 100%;
}

.banner2 .swiper-slide {
    text-align: center;
    font-size: 18px;
    background: #fff;
    display: flex;
    justify-content: space-between;
    align-items: flex-start;
}

.banner2 .swiper-slide img {
    display: block;
    width: 100%;
    height: 100%;
    object-fit: cover;
}

.banner2 .swiper {
    margin-left: auto;
    margin-right: auto;
}
.banner2 .swiper-button-prev, .banner2 .swiper-button-next{
    width: 2.6rem;
    height: 2.6rem;
    background: unset;
    border-radius: 50%;
    opacity: 1;
    color: #355545;

    z-index: 99999999999999999999999999999999999999999;
}
.banner2 .swiper-button-prev{
    left: 5%;
}
.banner2 .swiper-button-next{
    right: 5%;
}


/*.banner2 .swiper-button-prev:after, .banner2  .swiper-button-next:after{*/
/*    font-size: 2.3rem;*/
/*    color: #355545;*/
/*}*/

/*.banner2 .swiper-horizontal>.swiper-pagination-bullets, .swiper-pagination-bullets.swiper-pagination-horizontal, .swiper-pagination-custom, .swiper-pagination-fraction{*/
/*    bottom:30rem;*/
/*}*/

/*.banner2 .swiper-horizontal>.swiper-pagination-bullets .swiper-pagination-bullet, .swiper-pagination-horizontal.swiper-pagination-bullets .swiper-pagination-bullet{*/
/*    width: 0.8rem;*/
/*    height: 0.8rem;*/
/*    opacity: 1;*/
/*    background:rgb(0,0,0,0.3);*/
/*    background-size: 100%;*/
/*    margin-right: 3rem;*/
/*}*/

/*.banner2 .swiper-horizontal>.swiper-pagination-bullets .swiper-pagination-bullet-active,*/
/*.swiper-pagination-horizontal.swiper-pagination-bullets .swiper-pagination-bullet-active{*/
/*    background:#fff;*/
/*    background-size: 100%;*/
/*}*/

/*.banner2 .swiper-pagination-bullet-active{*/
/*    background: red;*/
/*}*/

/*.banner2 .swiper-slide2{*/
/*    display: flex;*/
/*    justify-content: space-between;*/
/*}*/


/*.banner2 .swiper-slide2 .fotleft{*/

/*}*/


/*.banner2 .swiper-slide2 .fotright{*/
/*    width: 65.6rem;*/
/*    height: 200px;*/
/*    text-align: left;*/
/*}*/


/*.banner2 .swiper-slide2 .fotright .fotright_biaoti{*/
/*    font-weight: 400;*/
/*    font-size: 2.4rem;*/
/*    color: #333333;*/
/*}*/


/*.banner2 .swiper-slide2 .fotright .fotright_date{*/
/*    font-weight: 400;*/
/*    font-size: 1.6rem;*/
/*    color: #999999;*/
/*    margin-top: 5.9rem;*/
/*}*/

/*.banner2 .swiper-slide2 .fotright .fotright_con{*/
/*    font-weight: 400;*/
/*    font-size: 1.6rem;*/
/*    color: #666666;*/
/*    line-height: 3rem;*/
/*    padding-top: 6rem;*/
/*    height: 25.5rem;*/
/*}*/

/*.banner2 .swiper-slide2 .fotright .fotright_a{*/
/*    font-family: Microsoft YaHei;*/
/*    font-weight: 400;*/
/*    font-size: 1.5rem;*/
/*    color: #666666;*/
/*    padding-top: 8rem;*/
/*    line-height: 3rem;*/
/*}*/

.qiehuananniu{
    right: 0;
    bottom: 0;
    width: 23rem;
    height: 2.6rem;
    position: absolute;
    z-index: 9999999999999;
}

.tupianliebiao{
    width: 100%;
    height: auto;
    background: #f5f5f5;
    margin-top: 8rem;
    padding: 8rem 0;
}

.tupianliebiao .container{
    width: 100%;
    display: flex;
    justify-content: space-between;
    flex-wrap: wrap;
}


.tupianliebiao a{
    width: 33.6rem;
    height: 36rem;
    background: #fff;
    margin-top: 3.2rem;
}

.tupianliebiao a .tupian{
    width: 100%;
}

.tupianliebiao a .biaotikuang{
    font-weight: 400;
    font-size: 1.6rem;
    color: #666666;
    line-height: 3rem;
    margin: 2.6rem 2rem;
    margin-bottom: 0;
}

.tupianliebiao a .shijiankuang {
    font-weight: 400;
    font-size: 1.6rem;
    color: #999999;
    line-height: 3rem;
    margin: 2.6rem 2rem;
    margin-top: 1rem;
}




.tupianliebiao a:hover{
    background: #f4fff9;
}

.tupianliebiao a:hover .biaotikuang{
    color: #0435D4;
}

.tupianliebiao a:hover .shijiankuang {
    color: #0435D4;
}

.zbjzTitle{
    font-weight: bold;
    font-size: 2.4rem;
    color: #0435D4;
}

.jiangzuotupian{
    height:auto;
    margin-top: 4rem;
}

.jiangzuoanniu{
    width: 100%;
    height: auto;
    text-align: center;
    display: inline-table;
    display: flex;
    justify-content: center;
}

.jiangzuoanniu a{
    display: flex;
    width: 36rem;
    height: 6.8rem;
    background: #0435D4;
    font-weight: 400;
    font-size: 2.4rem;
    color: #FFFFFF;
    line-height: 6.8rem;
    align-items: center;
    justify-content: center;
    margin-top: 5rem;
}

.jingul{
    width: 55rem;
    height: auto;
    font-family: Microsoft YaHei;
    font-weight: 400;
    font-size: 1.6rem;
    color: #244735;
    display: flex;
    justify-content: space-between;
    flex-wrap: wrap;
    margin-top: 1rem;
}

.jingul a{
    width: 50%;
    height: 3rem;
    margin-top: 2rem;
    display: flex;
    align-items: center;
    justify-content: flex-start;
}
.jingul a img{
    margin-right: 1.5rem;
}

.sanjianke{
    width: 100%;
    display: flex;
    justify-content: space-between;
    margin-top: 3.9rem;
}

.biaodanBox{
    width: 100%;
    height: 43rem;
    padding: 5rem 4rem;
    margin-top: 3.9rem;
    background: #F5F5F5;
}

.biaodanBox_text{
    width: 100%;
    height: auto;
    display: flex;
    justify-content: space-between;
    flex-wrap: wrap;
}
.biaodanBox .inputText{
    width: 40rem;
    height: auto;
    display: flex;
    margin-bottom: 4.5rem;
    flex-direction: column;
}
.biaodanBox .inputText span{
    font-weight: 400;
    font-size: 1.6rem;
    color: #333;
    line-height: 2.4rem;
}
.biaodanBox .inputText span font{
    color: #F93030;
}

.biaodanBox .inputText input{
    width: 39rem;
    height: 6rem;
    background: #FFFFFF;
    border: 0.1px solid #E0E0E0;
    margin-top: 1.8rem;
    font-weight: 400;
    font-size: 1.6rem;
    color: #999999;
    padding-left: 1rem;
}



.jiangzuoanniu1{
    width: 100%;
    height: auto;
    text-align: center;
    display: inline-table;
    display: flex;
    justify-content: center;
}

.jiangzuoanniu1 a{
    display: flex;
    width: 14.4rem;
    height: 4.3rem;
    background: #0435D4;
    font-weight: 400;
    font-size: 1.6rem;
    color: #FFFFFF;
    line-height: 1.6rem;
    align-items: center;
    justify-content: center;
}


.zhiboimgfoot{
    width: 100%;
    display: flex;
    justify-content: space-between;
    margin-top: 3.9rem;
}










.biaodanBox2{
    width: 100%;
    height: auto;
    margin-top: 3.9rem;
}

.biaodanBox2_text{
    width: 100%;
    height: auto;
    display: flex;
    justify-content: space-between;
    flex-wrap: wrap;
}
.biaodanBox2 .inputText{
    width: 40rem;
    height: auto;
    display: flex;
    margin-bottom: 4.5rem;
    flex-direction: column;
}
.biaodanBox2 .inputText span{
    font-weight: 400;
    font-size: 1.6rem;
    color: #333;
    line-height: 2.4rem;
}
.biaodanBox2 .inputText span font{
    color: #F93030;
}

.biaodanBox2 .inputText input{
    width: 39rem;
    height: 6rem;
    background: #FFFFFF;
    border: 0.1px solid #E0E0E0;
    margin-top: 1.8rem;
    font-weight: 400;
    font-size: 1.6rem;
    color: #999999;
    padding-left: 1rem;
}


.biaodanBox2 .inputText select{
    width: 39rem;
    height: 6rem;
    background: #FFFFFF;
    border: 0.1px solid #E0E0E0;
    margin-top: 1.8rem;
    font-weight: 400;
    font-size: 1.6rem;
    color: #999999;
    padding-left: 1rem;
}
.inputText2{
    width: 100%;
}
.inputText2 textarea{
    width: 100%;
    height: 16rem;
    background: #FFFFFF;
    padding: 3rem 1.5rem;
    border: 0.1px solid #E0E0E0;
}

.newsTypeName .newsTypeNameright:hover text{
    color: #0435D4;
}



.banner3{
    width: 100%;
    height: 77.8rem;
    background: url("../images/banner.jpg") no-repeat center top;
    background-size: cover;
}
.banner3 .bannerText{
    width: 100%;
    height: 60rem;
    text-align: center;
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: center;
}
.banner3 .bannerText h1{
    font-weight: bold;
    font-size: 4.8rem;
    color: #FFFFFF;
}
.banner3 .bannerText h4{
    font-weight: 400;
    font-size: 2.4rem;
    color: #FFFFFF;
    padding-top: 3rem;
}

.banner3 .tubiaoBox{
    width: 100%;
    padding: 0 10%;
    height: 12rem;
    background: #FFFFFF;
    opacity: 0.8;
    display: flex;
    justify-content: space-between;
}

.tubiaoBox .tubiaoBoxItem{
    width: auto;
    height: 12rem;
    display: flex;
    align-items: center;
}

.tubiaoBox .tubiaoBoxItem icon{
    width: auto;
    max-height: 4rem;
}

.tubiaoBox .tubiaoBoxItem text{
    font-weight: 400;
    font-size: 1.6rem;
    color: #333333;
    padding-left: 1.3rem;
}


.index01{
    width: 100%;
    height: 33rem;
    margin: 12rem 0;
    display: flex;
    background: #F5F5F5;
}

.index01Left{
    width: 72rem;
    height: 33rem;
}

.index01Right{
    width: 64rem;
    margin-left: 4rem;
    height: 33rem;
}

.typename3{
    width: 100%;
    height: 4.2rem;
    display: flex;
    justify-content: space-between;
    align-items: center;
    margin-top: 3rem;
}
.typename3 span{
    font-weight: bold;
    font-size: 3rem;
    color: #333333;
}
.typename3 a{
    font-weight: 400;
    font-size: 1.6rem;
    color: #666666;
    height: 4.2rem;
    display: flex;
    align-items: center;
}
.typename3 a text{}
.typename3 a icon{
    font-size: 1rem;
    padding-left: 0.6rem;
}

.index01Right ul{
    width: 100%;
    height: auto;
    margin-top: 3rem;
}
.index01Right ul li{
    width: 100%;
    font-weight: 400;
    font-size: 1.6rem;
    color: #333333;
    margin-bottom: 1.5rem;
}
.index01Right ul li a{
    width: 100%;
    height: 2rem;
    display: flex;
    align-items: center;
    justify-content: space-between;
}
.index01Right ul li a icon{
    font-size: 1rem;
    padding-right: 0.4rem;
}

.qikanList{
    width: 100%;
    height: auto;
    background: #F5F5F5;
}

.qikanlist2 .container{
    display: flex;
    justify-content: space-between;
}
.qikanList .typename4{
    width: 100%;
    font-weight: bold;
    font-size: 3rem;
    color: #333333;
    text-align: center;
    padding: 4.9rem 0;
}

.qikanliebiao{
    width: 100%;
    height: auto;
    background:#FFFFFF;
    /*display: flex;*/
    /*justify-content: space-between;*/
    /*flex-wrap: wrap;*/
    /*background-position-y:28.2rem ;*/
    /*padding: 0 ;*/
    padding: 9rem 0;

}

.qikanliebiaoul {
    width: 136rem;
    height: 88rem;
    background:url("../images/qkbj.png") no-repeat;
    display: flex;
    justify-content: space-between;
    flex-wrap: wrap;
    background-position-y:28.2rem ;
    padding: 0 5rem ;
    margin: 0 auto;

}

.qikanliebiao a{
    width: 21rem;
    height: auto;
    display: flex;
    margin-right: 13rem;
    flex-direction: column;
    align-items: center;
}
.qikanliebiao a:nth-child(4n){
    margin: 0;
}

.qikanliebiao a .qikanimg{
    width: 100%;
    height: auto;
}

.qikanliebiao a .qikanimg img{
    max-width: 100%;
    width: 21rem;
    height: 28.8rem;
}


.qikanliebiao a .qikantitle{
    margin-top: 6.4rem;
    font-weight: 400;
    font-size: 1.6rem;
    color: #333333;
}
.qikanliebiao a .qikantitle:hover{
    color: #0435D4;
}
.gengduoqikan{
    width: 100%;
    margin-top: 6rem;
    text-align: center;
    display: flex;
    justify-content: center;
}
.gengduoqikan a{
    width: 14rem;
    height: 4.6rem;
    background: #FFFFFF;
    border-radius: 2.3rem;
    border: 0.1px solid #E6E6E6;
    font-weight: 400;
    font-size: 1.6rem;
    color: #666666;
    line-height: 4.6rem;
    text-align: center;
    margin: 0;
}
.gengduoqikan a:hover{
    background: #0435D4;
    color: #fff;
}

.footBox{
    width: 100%;
    height: 10rem;
    text-align: center;
    background: #0C0B0B;
    line-height: 10rem;
    font-size: 1.6rem;
    color: #E8E8E8;
}

.bannerAbout{
    width: 100%;
    height: auto;
    min-height: 46rem;
}

.bannerAbout .container{
    height: 46rem;
    display: flex;
    align-items: flex-end;
}


.bannerAbout .container .weizhi{
    height: 10rem;
    width: 100%;
    color: #fff;
    font-weight: 400;
    font-size: 1.6rem;
    line-height: 3rem;
}


.bannerAbout .container .weizhi a{
    color: #fff;

}

.sousuok{
    width: 100%;
    height: 7.2rem;
    margin: 6rem 0;
    background: #FFFFFF;
    display: flex;
    align-items: center;
    justify-content: center;
}


.sousuok .icon-sousuo{
    width:2rem;
    height: 2rem;
    line-height: 2rem;
    font-weight: bold;
}

.sousuok .sousuowenben{
    width:125rem;
    height: 4rem;
    font-weight: 400;
    font-size: 1.6rem;
    color: #999999;
    border: unset;
    line-height: 4rem;
    padding-left: 1rem;
}

.sousuok .soiusuoanniu{
    width: 10rem;
    height: 4rem;
    background: linear-gradient(90deg, #0178e8, #2d4bc6, #6c22a0, #900c8b);
    border-radius: 2rem;
    font-weight: 400;
    font-size: 1.8rem;
    color: #FFFFFF;
    line-height: 4rem;
    text-align: center;
    border: none;
}






/* 分页容器 */
.fenye {
    display: flex;
width: 100%;
    justify-content: center;
    padding: 5rem 0;
}

/* 分页链接 */
.fenye a {
    display: flex;
    justify-content: center;
    align-items: center;
    width: 40px;
    height: 40px;
    text-decoration: none;
    color: #555;
    font-size: 16px;
    font-weight: 500;
    border-radius: 8px;
    transition: all 0.3s ease;
    background-color: #f8f9fa;
    margin:0 0.6rem ;
    border: 1px solid #eaeaea;
}

/* 悬停效果 */
.fenye a:hover {
    background-color: #e9ecef;
    transform: translateY(-2px);
    box-shadow: 0 4px 8px rgba(0, 0, 0, 0.1);
}

/* 当前页选中状态 */
.fenye a.active {
    background-color: #4a6cf7;
    color: white;
    border-color: #4a6cf7;
    box-shadow: 0 4px 12px rgba(74, 108, 247, 0.3);
}

/* 响应式设计 */
@media (max-width: 480px) {
    .fenye {
        padding: 10px 15px;
        gap: 6px;
    }

    .fenye a {
        width: 36px;
        height: 36px;
        font-size: 14px;
    }
}








.qikanDetailLeft{
    width: 105rem;
    min-height: 100rem;
    background: #fff;
    margin-bottom: 10rem;
}




.leftTypeName{
    width: 100%;
    height: 6rem;
    border-bottom: 1px solid #E5E5E5;
    display: block;
}
.leftTypeName span{
    position: relative;
    width: 15rem;
    height: 6rem;
    font-family: PingFang SC;
    font-weight: bold;
    font-size: 2rem;
    text-align: center;
    line-height: 6rem;
    display: block;
    color: #067DE9;
}
.leftTypeName span ico{
    background: linear-gradient(90deg, #0178e8, #2d4bc6, #6c22a0, #900c8b);
    width: 3rem;
    height: 0.6rem;
    border-radius: 0.3rem;
    opacity: 0.94;
    position: absolute;
    top: 5.6rem;
    left: 6rem;
}


.erjicaidan{
    width: 100%;
    height: 8rem;
    border-bottom: 1px solid #E5E5E5;
    display: block;
    display: flex;
    margin-top: 2rem;
}

.erjicaidan a{
    width: 15rem;
    height: 8rem;
}

.erjicaidan a span{
    position: relative;
    width: 15rem;
    height: 8rem;
    font-weight: bold;
    font-size: 1.6rem;
    text-align: center;
    line-height: 8rem;
    display: block;
    color: #666;
}
.erjicaidan a ico{
    background: linear-gradient(90deg, #0178e8, #2d4bc6, #6c22a0, #900c8b);
    width: 3rem;
    height: 0.6rem;
    border-radius: 0.3rem;
    opacity: 0.94;
    position: absolute;
    top: 7.6rem;
    left: 6rem;
    display: none;
}











.erjicaidan a:hover span{
    color: #067DE9;
}
.erjicaidan a:hover ico{
    display: block;
}

.erjicaidan a.hover span{
    color: #067DE9;
    font-size: 2rem;
}
.erjicaidan a.hover ico{
    display: block;
}


.container2{
    width: 100%;
    margin: 0 4rem;
}
.qikancanshu{
    width: 100%;
    height: auto;
    margin-top: 5.5rem;
    display: flex;
    justify-content: space-between;
}
.qikancanshu .container2{
    display: flex;
    justify-content: space-between;
}

.canshuimg{
    width: 21rem;
    height: 28.8rem;
}

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

.canshuright{
    width: 72rem;
    height: auto;

}
.canshuright h2{
    font-weight: bold;
    font-size: 1.8rem;
    color: #333333;
    padding-bottom: 2rem;
}

.canshuright p{
    font-weight: 400;
    font-size: 1.6rem;
    color: #666666;
    line-height: 3rem;
}

.qikanArticle{
    width: 100%;
    height: auto;
    margin-top: 5rem;
}

.qikanlist{
    width: 94%;
    height: auto;
    margin: 0 auto;
}

.qikanlist li{
    width: 100%;
    height: auto;
    border-bottom: 1px solid #E5E5E5;
    padding:3.9rem 0;
}

.qikanlist li .arcTitle{
    font-weight: bold;
    font-size: 1.6rem;
    color: #333333;
    line-height: 2.4rem;
}

.qikanlist li .mingc{
    font-weight: 400;
    font-size: 1.6rem;
    color: #666666;
    line-height: 2.4rem;
    margin-top: 1.7rem;
}

.qikanlist li .zaiyao{
    width: 100%;
    display: flex;
    margin-top: 2.4rem;
}


.qikanlist li .zaiyao .zaiyao1{
    width: auto;
    height: 3rem;
    background: #F5F5F5;
    border-radius: 0.4rem;
    font-weight: 400;
    font-size: 1.4rem;
    color: #067DE9;
    line-height: 2.4rem;
    text-align: center;
    line-height: 3rem;
    padding: 0 1rem;
}


.qikanlist li .zaiyao .zaiyaopdf{
    width: auto;
    height: 3rem;
    background: #F5F5F5;
    line-height: 3rem;
    padding: 0 1rem;
    font-size: 1.4rem;
    margin-left: 2rem;
    border-radius: 0.4rem;
}
.qikanlist li .zaiyao .zaiyaopdf ico{
    color: #067DE9;
}

.qikanlist li .liulancishu{
    width: auto;
    height: 3rem;
    background: #F5F5F5;
    border-radius: 0.4rem;
    font-weight: 400;
    font-size: 1.4rem;
    color: #999999;
    line-height: 2.4rem;
    text-align: center;
    margin-left: 2.4rem;
    line-height: 3rem;
    padding: 0 1rem;
}


.qikanDetailRight{
    width: 36rem;
    min-height: 20rem;
    margin-bottom: 8rem;
}

.qikanRIght1{
    width: 100%;
    height: auto;
    background: #fff;
    padding: 4rem 3rem;
}

.qikanRIght1TypeName{
    width: 100%;
    height: auto;
    font-weight: bold;
    font-size: 2rem;
    color: #333333;
}

.wangqiNav{
    width: 100%;
    height: auto;
    display: flex;
    margin-top: 2rem;
}
.wangqiNav a{
    width: auto;
    height: 3rem;
    line-height: 3rem;
    padding: 0 1rem;
    margin-right: 1rem;
    background: #F5F5F5;
    border-radius: 0.4rem;
    font-weight: 400;
    font-size: 1.4rem;
    color: #666666;
}
.wangqiNav a:hover{
    background: #067DE9;
    color: #FFFFFF;
}

.wangqiNav a.hover{
    background: #067DE9;
    color: #FFFFFF;
}

.qikanDetailRight ul{
    width: 100%;
    height: auto;
    margin-top: 2.3rem;
}
.qikanDetailRight li{
    width: 100%;
    display: flex;
    justify-content: flex-start;
}
.qikanDetailRight li a{
    width: 100%;
    display: flex;
    justify-content: flex-start;
    font-weight: 400;
    font-size: 1.6rem;
    color: #666;
    line-height: 3rem;
    padding: 0.2rem 0;
}
.qikanDetailRight li a ico{
    font-size:2.2rem;
    font-weight: bold;
}
.qikanDetailRight li a:hover{
    color: #067DE9;
}

.qikanRIght4{
    margin-top: 3rem;
}
.qikanRIght4 li a{
    font-size: 1.6rem;
}


.xinwenlist{
    width: 100%;
    height: auto;
}
.xinwenlist ul{
    width: 94%;
    height: auto;
    margin: 0 auto;
    margin-top: 5rem;
}
.xinwenlist ul li{
    width: 100%;
    border-bottom: 1px solid #F0F0F0;
    padding: 3rem 0;
    display: flex;
    justify-content: space-between;
}

.xinwenlist ul li .xinwenzuobian{
    width: 72rem;
}


.xinwenlist ul li .xinwenzuobian .zuobianbiaoti{
    font-weight: bold;
    font-size: 2rem;
    color: #333333;
}


.xinwenlist ul li .xinwenzuobian .zuobianjianjie{
    font-weight: 400;
    font-size: 1.6rem;
    color: #666666;
    padding: 2.5rem 0;
}
.xinwenlist ul li .xinwenzuobian .zuobiandate {
    font-size: 1.6rem;
    color: #999999;
    line-height: 4.6rem;
}

.xinwenlist ul li .youbianmore {
    width: 14rem;
    height: 4.6rem;
    background: #FFFFFF;
    border-radius: 2.3rem;
    border: 0.1px solid #E6E6E6;
    font-weight: 400;
    font-size: 1.6rem;
    color: #666666;
    line-height: 4.2rem;
    text-align: center;
    line-height: 4.6rem;
}


.xinwenlist ul li .youbianmore:hover {
    width: 14rem;
    height: 4.6rem;
    color: #fff;
    background: #0080ED;
    border-radius: 2.3rem;
    border: 0.1px solid #0080ED;
}

.rightfocus{
    width: 100%;
    height: auto;
    margin: 2.2rem 0;
}

.anniulist{
    width: 100%;
    height: auto;

    display: flex;
    flex-direction: column;
}

.anniulist a{
    width: 100%;
    height: 6rem;
    margin-top: 2rem;
    background: #F5F5F5;
    display: flex;
    align-items: center;

    font-size: 1.6rem;
    color: #333333;
}
.anniulist a icon{
    width: 2.7rem;
    padding:0 2rem;
}

.anniulist a span{
    /*width: 2.7rem;*/
    /*padding-right: 2rem;*/
}
.anniulist a:hover{
    color: #0080ed;
}

.xinwenlist3 ul li .xinwenzuobian{
    width: 110rem;
}

.xinwentop{
    width: 100%;
    height: auto;
    margin-bottom:4rem;
    background: #fff;
    display: flex;
}


.xinwentop .topimg{
    width: 50%;
    height: auto;
}

.xinwentop .topimg img{
    max-width: 100%;
    height: auto;
}

.qikanlist2list .container{
    flex-direction: column;
}

.xinwentopright{
    width: 50%;
    height: 100%;
    padding: 5rem;

}

.xinwentopright h1{
    font-family: PingFang SC;
    font-weight: bold;
    font-size: 2rem;
    color: #333333;
}

.xinwentopright h4{
    font-family: PingFang SC;
    font-weight: 400;
    font-size: 1.6rem;
    color: #666666;
    margin: 2rem 0;
}

.xinwentop a{
    width: 14rem;
    height: 4.6rem;
    background: #FFFFFF;
    border-radius: 2.3rem;
    border: 0.1px solid #E6E6E6;
    font-weight: 400;
    font-size: 1.6rem;
    color: #666666;
    line-height: 4.2rem;
    text-align: center;
    line-height: 4.6rem;
    display: block;
}


.xinwentop a:hover{
    width: 14rem;
    height: 4.6rem;
    color: #fff;
    background: #0080ED;
    border-radius: 2.3rem;
    border: 0.1px solid #0080ED;
}

.arcinfo{
    width: 100%;
    height: 100px;
}

.arcinfo{
    width: 100%;
    height: auto;
    padding: 3rem 0;
}

.arcinfoTitle{
    width: 100%;
    height: auto;
    border-bottom: 1px solid #E5E5E5;
}


.arcinfoTitle h1{
    text-align: center;
    font-weight: bold;
    font-size: 2rem;
    color: #333333;
}
.arcinfoTitle h5 {
    font-weight: 400;
    font-size: 1.6rem;
    color: #999999;
    line-height: 4.6rem;
    text-align: center;
}

.arcCotent{
    font-weight: 400;
    font-size: 1.6rem;
    color: #333333;
    padding: 6rem 3%;
    padding-bottom: 2rem;
    line-height: 3rem;
}

.shangyipian{
    display: flex;
    padding: 6rem 3%;
    flex-direction: column;
}

.shangyipian p{
    display: flex;
    font-size: 1.6rem;
    line-height: 3rem;
}
.shangyipian a{
    display: flex;
    color: #0435D4;
    display: flex;

    flex-direction: column;
}

.shangyipian a:hover{

}

.jiaruwomen{
    width: 100%;
    height: auto;
    padding: 0 3%;
}

.jiaruwomen ul{
    width: 100%;
    margin-top: 6rem;
}


.jiaruwomen ul li{
    width: 100%;

}


.jiaruwomen ul li .jrwmTitle{
    width: 100%;
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 3rem 0;
    border-bottom: 1px solid #E5E5E5;
}
.jiaruwomen ul li:last-child .jrwmTitle {
    border-bottom: 0;
}


.jiaruwomen ul li .jrwmTitle span{
    flex: 1;

    font-weight: 400;
    font-size: 1.6rem;
    color: #333333;
    text-align: left;
}
.jiaruwomen ul li .jrwmTitle span:nth-child(3){
    justify-content: flex-end;
    display: flex;
}

.jiaruwomen ul li .jrwmTitle span:nth-child(3) text{
    padding-right: 1rem;
}
.jiaruwomen ul li .jrwmTitle span:nth-child(1){
    display: flex;
    align-items: center;
}

.jiaruwomen ul li .jrwmTitle span:nth-child(1) .iconfont{
    display: flex;
    font-size: 3rem;
    font-weight: bold;
}

.jiaruwomen ul li .jrwmContent{
    font-weight: 400;
    font-size: 1.6rem;
    color: #333333;
    line-height: 3.5rem;
    padding: 2rem 0;
    border-bottom: 1px solid #E5E5E5;
    display: none;
}
.jiaruwomen ul li .jrwmTitle span:nth-child(2){
    text-align: center;
}



.qiehuantu{
    width: 100%;
    height: auto;
}











.swiper {
    width: 100%;
    height: auto;
}
.swiper-slide {
    position: relative;
}
.slide-bg{
    width:100%;
    height:100%;
    object-fit:cover;
}

/* 文字 居左 大标题+小标题 */
.slide-text{
    position:absolute;
    left:10%;
    top:50%;
    transform:translateY(-50%);
    color:#fff;
    z-index:2;
}
.big-title{
    font-size:6rem;
    font-weight:bold;
    margin-bottom:15px;
}
.sub-title{
    font-family: PingFang SC;
    font-weight: 500;
    font-size: 3rem;
    color: #E8E8E8;
    line-height: 6rem;
}

/* 分页整体布局：多个圆点横向排列 */
.swiper-pagination{
    bottom:140px;
}
/* 每个圆点基础样式 */
.swiper-pagination-bullet{
    width:14px;
    height:14px;
    background:rgba(255,255,255,0.4);
    opacity:1;
    margin:0 12px !important;
    position:relative;
}
/* 激活态圆点 */
.swiper-pagination-bullet-active{
    background:#fff;
}

/* 环形进度圈 只在当前激活圆点显示 */
.progress-ring{
    position:absolute;
    top:50%;
    left:50%;
    width:30px;
    height:30px;
    transform:translate(-50%,-50%);
    pointer-events:none;
}

.qiehuantu #swiper-pagination2{
    bottom: 5rem;
}




.qiehuantu .swiper-button-prev, .qiehuantu .swiper-button-next{
    width: 5.6rem;
    height: 5.6rem;
    background: #999;
    border-radius: 50%;
    opacity: 0.5;
    color: #fff;
}
.qiehuantu .swiper-button-prev{
    left: 3%;
}
.qiehuantu .swiper-button-next{
    right: 3%;
}


.qiehuantu .swiper-button-prev:after, .qiehuantu  .swiper-button-next:after{
    font-size: 2rem;
    color: #fff;
}

.qiehuantu .swiper-button-prev:hover, .qiehuantu .swiper-button-next:hover{
    background: #0435D4;
}

.qiehuantu .swiper-horizontal>.swiper-pagination-bullets, .swiper-pagination-bullets.swiper-pagination-horizontal, .swiper-pagination-custom, .swiper-pagination-fraction{
    bottom: 10rem;
}

.qiehuantu .swiper-horizontal>.swiper-pagination-bullets .swiper-pagination-bullet, .swiper-pagination-horizontal.swiper-pagination-bullets .swiper-pagination-bullet{
    width: 1.2rem;
    height: 1.2rem;
    background: #FFFFFF;
    border-radius: 50%;
    opacity: 0.3;
}

.qiehuantu .swiper-horizontal>.swiper-pagination-bullets .swiper-pagination-bullet-active,
.swiper-pagination-horizontal.swiper-pagination-bullets .swiper-pagination-bullet-active{
    background: #fff;
    width: 1rem;
    height: 1rem;
    background: #FFFFFF;
    border-radius: 50%;
    opacity:1;
    background-size: 100%;
}

.shouye01{
    width: 100%;
    height: auto;
    min-height: 20rem;
    margin-top: 8rem;
}

.shouye01 .shouye01name{
    width: 100%;
    height: auto;
    font-weight: bold;
    font-size: 3rem;
    color: #333333;
    line-height: 4.6rem;
}

.shouyechanpin{
    width: 100%;
    height: auto;
    margin-top: 8.9rem;
    display: flex;
    justify-content: space-between;
}

.chanpin{
    width: 37.3rem;
    height: auto;
    position: relative;
}
.chanpin .chanpinimg{
    position: relative;
    width: 100%;
}
.chanpin img{
    max-width: 100%;
}

.chanpin .cpbiaoti{
    position: absolute;
    top: 0;
    width: 100%;
    height: 100%;
    background: url("../pics/bg.png") left bottom ;
    background-repeat: repeat-x;
    z-index: 9999;
    display: flex;
    flex-direction: column;
    justify-content: flex-end;
    text-align: center;
}
.chanpin .cpbiaoti text{
    font-weight: bold;
    height:8rem;
    font-size: 2.4rem;
    color: #FFFFFF;
    line-height: 4.8rem;
}
.chanpin:hover .cpbiaoti text{
    text-decoration: underline;

}

.about{
    width: 100%;
    height: 76rem;
    margin-top: 12rem;
    background: url("../pics/aboutbg.jpg") center top no-repeat;
}

.abouttop{
    width: 100%;
    height: 28rem;
    display: flex;
    align-items: center;
    justify-content: space-between;
}

.abouttop .about1{
    font-weight: bold;
    font-size: 3rem;
    color: #FFFFFF;
    line-height: 4.6rem;
}

.aboutsum{
    width: 92rem;
    height: auto;
    display: flex;
    justify-content: space-between;
}
.aboutsum1{
    width: 30%;
    height:auto;
}

.aboutsum1 .aboutsum1top{
    width: 100%;
    display: flex;
    height:5rem;
    align-items: center;
}

.aboutsum1 .aboutsum1top span{
    font-weight: bold;
    font-size: 4.8rem;
    color: #FFFFFF;
}

.aboutsum1 .aboutsum1top .span2{
    font-size: 4.8rem;
    color: #FFFFFF;
    margin-top: -4rem;
    font-weight: normal;
}


.aboutsum1 .aboutsum1top .span3{
    font-size: 2rem;
    color: #FFFFFF;

}

.aboutsum1 .aboutsum1top2{
    font-weight: 400;
    font-size: 1.4rem;
    color: #FFFFFF;
    opacity: 0.7;
    padding-left: 0.5rem;
    margin-top: 1rem;
}

.aboutBottom{
    width: 100%;
    height: 48rem;
    background: #F5F5F5;
    display: flex;
    justify-content: space-between;
}
.aboutBottomImg{

}

.aboutBottomRgiht{
    width: 84rem;
    padding: 4%;
    height:  48rem;
    display: flex;
    flex-direction: column;
    align-items: flex-start;
    justify-content: center;
}

.aboutBottomRgiht h2{
    font-weight: bold;
    font-size: 3rem;
    color: #333333;
    line-height: 4.2rem;
}
.aboutBottomRgiht text{
    font-weight: 400;
    font-size: 1.6rem;
    color: #666666;
    margin: 5rem 0;
}

.aboutBottomRgiht a{
    width: 18rem;
    height: 6rem;
    background: #0435D4;
    display: flex;
    align-items: center;
    justify-content: center;
}

.aboutBottomRgiht a .icon-wangzhantubiaoji2_huaban1fuben18{
    color: #fff;
    font-size: 2.2rem;
}


.aboutBottomRgiht a .abouttext{
    font-weight: 400;
    font-size: 1.6rem;
    color: #FFFFFF;
    padding-left: 1rem;
    padding-right: 2rem;
}


.aboutBottomRgiht a .icon-youjiantou{
    font-size: 1.4rem;
    color: #FFFFFF;
}

.shouyetu{
    width: 100%;
    height: 32rem;
    display: flex;
    justify-content: space-between;
    margin-top: 12rem;
    margin-bottom: 10rem;
}
.shouyetu1{
    width: 49%;
    height: 32rem;
    display: flex;
    padding: 0 6rem;
    justify-content: space-between;
    align-items: center;
    background: url("../pics/img2.jpg") no-repeat;
}
.shouyetu1:nth-child(2){
    background: url("../pics/img3.jpg") no-repeat;
}
.shouyetu1left{
    width: 70%;
    height: auto;
    display: flex;
    flex-direction: column;
}

.shouyetu1left span:nth-child(1){
    font-weight: bold;
    font-size: 2.4rem;
    color: #FFFFFF;
    padding-bottom: 2rem;
}
.shouyetu1left span:nth-child(2){
    font-weight: 400;
    font-size: 1.6rem;
    color: #FFFFFF;
}

.shouyetu1right{
    width: 5rem;
    height: 5rem;
    border-radius: 50%;
    border: 1px solid #fff;
    display: flex;
    align-items: center;
    justify-content: center;
    color: #fff;
    font-size: 3rem;
}
.container2{
    width: 100%;
    padding: 0;
}

.footDiv{
    width:100%;
    height: auto;
    margin-top: 0rem;
    background: #0C0B0B;
}

.footDivTop{
    width: 100%;
    height: auto;
    padding: 8rem 0;
}
.footDivTop .container{
    display: flex;
    justify-content: space-between;
}

.footlianxi{
    width: 55rem;
    height: 2rem;
    font-weight: 400;
    font-size: 1.6rem;
    color: #FFFFFF;
    display: flex;
    flex-direction: column;
    align-items: flex-start;
}
.lianxi01{
    margin-bottom: 1rem;
}
.footLogo{
    width: auto;
}

.footlianxi .iconfont3{
    font-weight: 400;
    font-size: 1.8rem;
    color: #FFFFFF;
    opacity: 0.6;
}

.footewm{
    width: 13.2rem;
    min-height: 5rem;
    display: flex;
    flex-direction: column;
}

.footewm span{
    padding-top: 2rem;
    text-align: center;
    color: #fff;
    font-size: 1.4rem;
}

.footbq{
    width: 100%;
    height: auto;
    line-height: auto;
    text-align: center;
    font-size: 1.6rem;
    color: #fff;
    padding: 2rem 0;
    border-top:1px solid #292929;
}
.subpage-banner {
    position: relative;
    overflow: hidden;
    z-index: 2;
    height: 50rem;
    background-color: #f1f1f1;
    /*top: 10rem;*/
    margin-top: 10rem;
    background-position-x: center;

}

.ph2 {
    font-size: 5rem;
    color: #fff;
    position: absolute;
    text-align: center;
    text-transform: uppercase;
    width: 100%;
    line-height: 50rem;
    text-shadow: 2px 2px 5px rgba(0, 0, 0, .75);
    font-weight: bold;
    letter-spacing: 10px;
}

.nav-menu3{
    display: none;
}

@media (max-width: 1600px) {
    /* 布局样式 */
    .container {
        width: 100%;
        max-width: 144rem; /* 1200px */
        margin: 0 auto;
        padding: 0rem; /* 15px */
    }

    .chanpin {
        width: 34rem;
        height: auto;
        position: relative;
    }

}





































/*.subpage-lr {*/
/*    position: relative;*/
/*    z-index: 2;*/
/*    display: -webkit-box;*/
/*    display: -ms-flexbox;*/
/*    display: flex;*/
/*    -webkit-box-align: stretch;*/
/*    -ms-flex-align: stretch;*/
/*    align-items: stretch;*/
/*    -webkit-box-pack: justify;*/
/*    -ms-flex-pack: justify;*/
/*    justify-content: space-between;*/
/*    font-size:1.8rem;*/
/*}*/


/*.hidePoint {*/
/*    margin-top: calc(-1 * var(--Hheader));*/
/*}*/
/*.hidePoint {*/
/*    position: absolute;*/
/*    height: 0;*/
/*    visibility: hidden;*/
/*    top: 0;*/
/*    left: 0;*/
/*}*/


/*.subpage-lr>.sidebar {*/
/*    position: -webkit-sticky;*/
/*    position: sticky;*/
/*    top: var(--Hheader);*/
/*    background-color: #fff;*/
/*    width: 15em;*/
/*    padding-bottom: 2rem;*/
/*    max-height: calc(100vh - var(--Hheader));*/
/*}*/

/*.subpage-navL .dt {*/
/*    background-color: #186AD0;*/
/*    position: relative;*/
/*    z-index: 2;*/
/*    color: #fff;*/
/*    display: -webkit-box;*/
/*    display: -ms-flexbox;*/
/*    display: flex;*/
/*    -webkit-box-pack: center;*/
/*    -ms-flex-pack: center;*/
/*    justify-content: center;*/
/*    -webkit-box-align: center;*/
/*    -ms-flex-align: center;*/
/*    align-items: center;*/
/*    -ms-flex-line-pack: center;*/
/*    align-content: center;*/
/*    padding: 2em;*/
/*    font-size: 1.8rem;*/
/*    height: 7.5em;*/
/*    -webkit-box-sizing: border-box;*/
/*    box-sizing: border-box;*/
/*}*/


/*.subpage-navL .dt .this {*/
/*    font-size: 3.6rem;*/
/*}*/


/*.subpage-navL .dt:after {*/
/*    content: " ";*/
/*    z-index: -1;*/
/*    pointer-events: none;*/
/*    position: absolute;*/
/*    right: 0rem;*/
/*    bottom: -1rem;*/
/*    width: 3rem;*/
/*    height: 3rem;*/
/*    background-image: url(../12.jpg);*/
/*    background-size: contain;*/
/*    background-position: 50% 50%;*/
/*    background-repeat: no-repeat;*/
/*    opacity: 1;*/
/*}*/


/*.subpage-navL .dd .link2.on, .subpage-navL .dd .link2:hover {*/
/*    color: #186AD0;*/
/*}*/
/*.subpage-navL .dd .link2 {*/
/*    position: relative;*/
/*    z-index: 2;*/
/*    display: block;*/
/*    padding: 20px 1.6rem 20px 1rem;*/
/*    border-bottom: #acc9e1 dashed 1px;*/
/*    font-size:1.6rem;*/
/*    color: #666;*/
/*    -webkit-transition: all 320ms ease-out 0s;*/
/*    transition: all 320ms ease-out 0s;*/
/*    line-height: 2.4rem;*/
/*}*/


.aboutLeft{
    position: absolute;
    left: 0;
    width: 30rem;
    height: auto;
    min-height: 10rem;
    border-right: 1px solid #E7EDFF;

}

.LeftName{
    position: relative;
    width: 100%;
    height: 15rem;
    background: linear-gradient(150deg, #0B74DB, #0435D4);
    font-weight: bold;
    font-size: 3.6rem;
    color: #FFFFFF;
    display: flex;
    align-items: center;
    justify-content: center;
}

.LeftName:after {
    content: " ";
    pointer-events: none;
    position: absolute;
    left: 0rem;
    bottom: -1rem;
    width: 30rem;
    height: 20rem;
    background-image: url(../12.png);
    background-size: contain;
    background-position: 50% 80%;
    background-repeat: no-repeat;
    opacity: 1;
}



.menu-list {
    width: 100%;
    max-width: 75rem;
    margin: 0 auto;
}
.menu-item {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 2rem 2.5rem;
    font-size: 1.6rem;
    border-bottom: 0.1rem dashed #b3d0f5;
}
/* 第一个选项文字为蓝色 */
.menu-item.hover .menu-text {
    color: #2b78e4;
}
.menu-text {
    color: #333333;
}
.arrow {
    width: 1rem;
    height: 1rem;
    border-right: 0.1rem solid #333;
    border-top: 0.1rem solid #333;
    transform: rotate(45deg);
}
/* 第一个选项箭头也为蓝色 */
.menu-item.hover .arrow {
    border-color: #2b78e4;
}

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

.LeftBox{

    width: 20%;

}

.mainRight{
    width: 77%;
    min-height: 500px;
}

.daohangweizhi{
    width: 100%;
    height: 8rem;
    line-height: 8rem;
    font-weight: 400;
    font-size: 1.6rem;
    color: #566476;
    text-align: right;
}


.mainRight .head {
    text-align: center;
    position: relative;
    z-index: 2;
}


.mainRight .head .p1 {
    font-size: 12rem;
    font-weight: 700;
    text-transform: uppercase;
    color: rgba(0, 0, 0, .05);
    line-height: .8;
    -webkit-user-select: none;
    -moz-user-select: none;
    -ms-user-select: none;
    user-select: none;
}

.mainRight .head .p2 {
    position: absolute;
    top: 50%;
    left: 50%;
    -webkit-transform: translate(-50%, -50%);
    transform: translate(-50%, -50%);
    font-size: 4.6rem;
    line-height: 1.5;
    font-weight: 700;
    color: #0435D4;
    white-space: nowrap;
}



.mainRight .aboutsum{
    margin: auto;
    width: 80rem;
    height: auto;
    display: flex;
    justify-content: space-between;
    margin-top: 5rem;
}
.mainRight  .aboutsum1{
    width: 30%;
    height:auto;
}

.mainRight  .aboutsum1 .aboutsum1top span {
    color: #0435D4;
}

.mainRight  .aboutsum1 .aboutsum1top .span3 {
    font-size: 2rem;
    color: #0435D4;
}
.mainRight  .aboutsum1 .aboutsum1top .span2 {
    font-size: 4.8rem;
    color: #0435D4;
}

.mainRight  .aboutsum1 .aboutsum1top2 {
    color: #666;
}

.aboutCOntent{
    width: 100%;
    height: auto;
    font-family: Microsoft YaHei;
    font-weight: 400;
    font-size: 1.6rem;
    color: #666666;
    margin-top: 7rem;
    line-height: 3.6rem;
    padding-bottom: 10rem;
}

/* PC大屏 */
@media (min-width: 1760px) {
    .aboutLeft{
        width: 50rem;
    }


}







.product-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 4rem;
    max-width:100%;
    margin: 5rem auto;
    margin-top: 10rem;
}

.product-card {
    display: block;
    background-color: #fff;
    border-radius: 0.6rem;
    overflow: hidden;
    box-shadow: 0 0.2rem 1.2rem rgba(0, 0, 0, 0.05);
    text-decoration: none;
}

.product-img {
    width: 100%;
    height: auto;
    background-color: #f8f9fa;
    display: flex;
    align-items: center;
    justify-content: center;

    /* 溢出隐藏 + 过渡动画 */
    overflow: hidden;
}

.product-img img {
    width: 100%;
    height: 100%;
    object-fit: contain;
    /* 过渡动画 */
    transition: transform 0.3s ease;
}

/* 鼠标经过放大 */
.product-card:hover .product-img img {
    transform: scale(1.08);
}

.product-info {
    padding: 1.8rem;
}
.product-title {
    font-size: 1.6rem;
    font-weight: bold;
    color: #333;
    margin-bottom: 1rem;
}
.product-desc {
    font-size: 1.2rem;
    color: #666;
    line-height: 1.6;
    margin-bottom: 1.5rem;
}

.product-links {
    display: flex;
    gap: 2rem;
    font-size: 1.2rem;
}
.product-links a {
    color: #2b78e4;
    display: flex;
    align-items: center;
    gap: 0.4rem;
}
.product-links a::before {
    content: "☰";
    font-size: 1rem;
}
.product-links a:last-child::before {
    content: "✉";
}

/* 响应式 */
@media screen and (max-width: 992px) {
    .product-grid {
        grid-template-columns: repeat(2, 1fr);
    }
}
@media screen and (max-width: 576px) {
    html {
        font-size: 9px;
    }
    .product-grid {
        grid-template-columns: 1fr;
    }

}







.contact-container-box{
    margin-top: 8rem;
}


.contact-container-box .map{
    width: 100%;
    margin: 10rem 0;

}


.contact-container-box .map img{
    width: 100%;
    border-radius: 1rem;
}
/* 联系信息容器 */
.contact-container {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 3rem;
    width: 100%;

}

/* 单个信息卡片 */
.contact-card {
    display: flex;
    align-items: center;
    gap: 2rem;
    padding: 2.5rem 3rem;
    border: 0.1rem solid #c9d8ff;
    border-radius: 1rem;

}

/* iconfont图标样式 */
.contact-card .iconfont5 {
    width: 4rem;
    color: #2b78e4;
}
.contact-card .iconfont5 img{
    width: 4rem;
    color: #2b78e4;
}

/* 文字区域 */
.contact-content {
    flex: 1;
}
.contact-label {
    font-size: 1.8rem;
    font-weight: bold;
    color: #666;
    margin-bottom: 1rem;
}
.contact-text {
    font-size: 1.8rem;
    color: #666;
    line-height: 1.6;
}

/* 响应式适配 */
@media screen and (max-width: 768px) {
    html {
        font-size: 9px;
    }
    .contact-container {
        grid-template-columns: 1fr;
        gap: 2rem;
    }
    .contact-card {
        padding: 2rem;
    }
}

.qiehuantuen .big-title {
    font-size: 4rem;
    font-weight: bold;
    margin-bottom: 15px;
    text-transform: uppercase;
}

.qiehuantuen .sub-title {
    font-weight: 500;
    font-size: 2rem;
    color: #E8E8E8;
    line-height: 4rem;
}