.header-top {
    background: #f4f4f4;
    height: 40px;
    display: none;
}

.header {
    background: white;
    position: sticky;
    top: 0;
    z-index: 99;
    border-bottom: 1px solid #ddd;
}

.header .container {
    display: flex;
    align-items: center;
    justify-content: space-between;
    height: 76px;
}

.header .logo img {
    height: 58px;
}

.header ul.fir-menu {
    display: flex;
    align-items: center;
    gap: 15px;
}

.header ul.fir-menu>li {
    position: relative;
    display: flex;
    justify-content: center;
}

.header ul.fir-menu>li>a {
    display: flex;
    align-items: center;
    justify-content: center;
    padding: 0 5px;
    position: relative;
    transition: all 0.3s ease;
}

.header ul.fir-menu>li:hover>a,
.header ul.fir-menu>li.active>a {
    color: var(--themeColor);
}

.header ul.fir-menu>li>a::after {
    content: "";
    position: absolute;
    bottom: -10px;
    width: 0;
    height: 3px;
    background: var(--themeColor);
    transition: all 0.3s ease;
}

.header ul.fir-menu>li:hover>a::after,
.header ul.fir-menu>li.active>a::after {
    width: 100%;
}

.header ul.sub-menu {
    position: absolute;
    top: 100%;
    z-index: 10;
    background: rgb(255, 255, 255, 0.8);
    border-radius: 4px;
    border: 1px solid #ddd;
    padding: 10px 0;
    color: #444;
    transform: translateY(30px);
    pointer-events: none;
    opacity: 0;
    transition: all 0.4s ease;

}

.header li:hover>.sub-menu {
    transform: translateY(0);
    pointer-events: all;
    opacity: 1;
}

.header ul.sub-menu>li>a {
    display: flex;
    align-content: center;
    justify-content: center;
    font-size: 16px;
    padding: 15px 10px;
    min-width: 150px;
    white-space: nowrap;
    transition: all 0.3s ease;
}

.header ul.sub-menu>li>a:hover {
    background: var(--themeColor);
    color: white;
}

.index-banner img {
    width: 100%;
}

.index-news {
    margin-top: 80px;
}

.index-news .b-title {
    display: flex;
    align-items: flex-end;
    justify-content: space-between;
    padding-right: 30px;
    position: relative;
    z-index: 2;
}

.index-news .b-title::after {
    content: "";
    position: absolute;
    bottom: 0;
    left: 0;
    z-index: -1;
    background: #eaeaea;
    width: 100%;
    height: 4px;
}

.index-news .b-title .title {
    font-size: 26px;
    color: var(--themeColor);
}

.index-news .b-title .title img {
    margin-top: 12px;
}

.index-news .b-title ul {
    width: 515px;
    display: flex;
    font-size: 20px;
    color: #999999;
    justify-content: space-between;
}

.index-news .b-title ul a {
    display: flex;
    align-items: center;
    justify-content: center;
    padding: 0 0 14px;
    position: relative;
    transition: all 0.3s ease;
}

.index-news .b-title ul a:hover,
.index-news .b-title ul li.active a {
    color: var(--themeColor);
}

.index-news .b-title ul a::after {
    content: "";
    position: absolute;
    bottom: 0;
    width: 0;
    height: 4px;
    background: var(--themeColor);
    transition: all 0.3s ease;
}

.index-news .b-title ul a:hover::after,
.index-news .b-title ul li.active a::after {
    width: 100%;
}

.index-news .item-all {
    margin-top: 24px;
    display: flex;
    justify-content: space-between;
}

.index-news .item-all .left-sec {
    width: 625px;
}

.index-news .item-all .left-sec img {
    width: 100%;
    height: 420px;
    object-fit: cover;
}


.index-news .item-all .left-sec a {
    display: block;
    position: relative;
    overflow: hidden;
}

.index-news .item-all .left-sec .title {
    position: absolute;
    bottom: 0;
    left: 0;
    padding: 24px 14px;
    line-height: 1.5;
    font-size: 24px;
    color: white;
    transition: all 0.3s ease;
    width: 460px;
}

/*.index-news .item-all .left-sec a:hover .title {
    color: var(--themeColor);
}*/

.index-news .item-all .left-sec .swiper-pagination {
    width: auto !important;
    right: 0;
    left: unset;
    bottom: 22px !important;
    font-size: 0;
    padding-right: 35px;
}

.index-news .item-all .left-sec .swiper-pagination span {
    width: 14px;
    height: 14px;
    opacity: 1;
    background: white;
    margin: 0 8px;
}

.index-news .item-all .left-sec .swiper-pagination span.swiper-pagination-bullet-active {
    background: #DBC07B;
}

.index-news .item-all .tab-content {
    width: 545px;
}

.index-news .item-all .tab-content .description {
    line-height: 1.5;
}

.index-news .item-all .tab-content .description h3 {
    color: #262626;
    font-size: 28px;
    margin-bottom: 5px;
  display: -webkit-box;
  -webkit-box-orient: vertical;
  -webkit-line-clamp: 2;
  overflow: hidden;
  text-overflow: ellipsis;
  height: 86px;
}

.index-news .item-all .tab-content .description p {
    color: #B6B6B6;
    font-size: 14px;
    text-indent: 28px;
}

.index-news .item-all .tab-content .link {
    margin-top:10px;
    margin-bottom: 25px;
}

.index-news .item-all .tab-content .link a {
    display: flex;
    align-items: center;
    justify-content: space-between;
    margin-bottom: 21px;
    transition: all 0.1s ease;
    line-height: 1.5;
}

.index-news .item-all .tab-content .link a:last-child {
    margin-bottom: 0;
}

.index-news .item-all .tab-content .link a:hover {
    color: var(--themeColor);
    font-weight: bold;
}

.index-news .item-all .tab-content .link a .title {
    /*display: flex;*/
    align-items: center;
    gap: 15px;
    transition: all 0.3s ease;
    text-overflow: ellipsis;
    white-space: nowrap;
    width: 462px;
    overflow: hidden;
    float: left;
    padding-left: 20px;
}

.index-news .item-all .tab-content .link a:hover .title {
    gap: 40px;
}

.index-news .item-all .tab-content .link a .title::before {
    content: "";
    display: block;
    width: 3px;
    height: 3px;
    border-radius: 50%;
    border: 1px solid var(--themeColor);
    margin-top: 12px;
    position: absolute;
    left: 0;
}

.index-news .item-all .tab-content .link a .date {
    color: #B6B6B6;
    font-size: 14px;
    transition: all 0.3s ease;
}

.index-news .item-all .tab-content .link a:hover .date {
    color: var(--themeColor);
}

.index-news .item-all .tab-content a.more-btn {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    border-radius: 4px;
    border: 1px solid #ddd;
    color: 343030;
    font-size: 12px;
    height: 30px;
    padding: 0 10px;
    transition: all 0.3s ease;
}

.index-news .item-all .tab-content a.more-btn:hover {
    background: var(--themeColor);
    border-color: var(--themeColor);
    color: white;
}


.index-special {
    margin-top: 75px;
}

.index-special .container {
    display: flex;
}

.index-special .left-sec {
    width: 50px;
    writing-mode: vertical-lr;
    text-orientation: upright;
    font-size: 26px;
    color: var(--themeColor);
    letter-spacing: 15px;
}

.index-special .swiper-button-prev::after,
.index-special .swiper-button-next::after {
    font-size: 40px;
    font-weight: bold;
    color: white;
    opacity: 0.8;
    text-shadow: 0 0 1px black;
    transition: all 0.3s ease;
}

.index-special .swiper-button-prev:hover:after,
.index-special .swiper-button-next:hover:after {
    color: var(--themeColor);
}

.index-special .right-sec {
    width: calc(100% - 50px);
}

.index-special .right-sec a {
    display: block;
    overflow: hidden;
    border-radius: 8px;
}

.index-special .right-sec a img {
    width: 100%;
    height: auto;
}

.index-special .right-sec a:hover img {
    transform: scale(1.1);
}

.index-advantage {
    margin-top: 75px;
    position: relative;
}

.index-advantage .item-all {
    position: relative;
}

.index-advantage .item-all img.bg {
    width: 100%;
    height: 605px;
    object-fit: cover;
}

.index-advantage .item-all .layer {
    position: absolute;
    left: 0;
    top: 0;
    width: 100%;
    height: 100%;
    display: flex;
    align-items: center;
    flex-direction: column;
    padding-top: 75px;
    color: white
}

.index-advantage .item-all .layer .b-title {
    font-size: 56px;
    margin-bottom: 105px;
}

.index-advantage .item-all .layer .icon-all {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 80px;
}

.index-advantage .item-all .layer .icon-all .item {
    text-align: center;
    cursor: pointer;
}

.index-advantage .item-all .layer .icon-all .icon {
    display: flex;
    align-items: center;
    justify-content: center;
    width: 94px;
    height: 94px;
    border: 2px solid white;
    border-radius: 50%;
    transition: all 0.3s ease;
    margin: auto;
}
#index-advantage2 .item-all .layer .icon-all .icon img{
    width: 60px;
}
#index-advantage1 .item-all .layer .icon-all .icon img{
    width: 45px;
}
.index-advantage .item-all .layer .icon-all .item:hover .icon {
    background: #4CB5EC;
}

.index-advantage .item-all .layer .icon-all .item p {
    white-space: nowrap;
    margin-top: 10px;
    font-size: 20px;
}

.index-advantage .nav-tab {
    position: absolute;
    left: 0;
    bottom: 0;
    width: 100%;
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 40px;
    padding-bottom: 70px;
}

.index-advantage .nav-tab a {
    font-size: 34px;
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 15px;
    height: 80px;
    border-radius: 4px;
    padding: 0 35px;
    transition: all 0.3s ease;
    color: white
}

.index-advantage .nav-tab a img {
    height: 34px;
}

.index-advantage .nav-tab li.active a,
.index-advantage .nav-tab li a:hover {
    background: #4CB5EC;
}

.index-videos {
    margin-top: 75px;
    margin-bottom: 90px;
}

.index-videos .b-title {
    text-align: center;
    font-size: 26px;
    color: var(--themeColor);
    margin-bottom: 50px;
}

.index-videos .swiper-slide {
    width: 715px;
}

.index-videos .swiper-slide img {
    width: 100%;
    height: 330px;
    object-fit: cover;
}


.index-videos .swiper-slide .img video{
    position: relative;
    /*height: 400px;*/
    /*background: #000;*/
}
.index-videos .swiper-slide .img {
    position: relative;
}

/*.index-videos .swiper-slide .img::after {
    content: "";
    position: absolute;
    left: 0;
    top: 0;
    width: 100%;
    height: 100%;
    background: rgb(0, 0, 0, 0.6);
    transition: all 0.3s ease;
}
*/
.index-videos .swiper-slide.swiper-slide-active .img::after {
    opacity: 0;
}

.index-videos .swiper-slide .title {
    line-height: 1.5;
    font-size: 24px;
    text-align: center;
    margin-top: 20px;
    transition: all 0.3s ease;
    opacity: 0;
}

.index-videos .swiper-slide.swiper-slide-active .title {
    opacity: 1;
}

.footer {
    clear: both;
    background: #F5F5F5;
    padding-top: 55px;
}

.footer-top {
    padding-bottom: 25px;
}

.footer-top .container {
    display: flex;
    justify-content: space-between;
    align-items: center;
}

.footer-top .logo img {
    width: 335px;
}

.footer-top .item {
    line-height: 1.5;
}

.footer-top .item .title {
    color: #6C6C6C;
    font-size: 20px;
    margin-bottom: 15px;
}

.footer-top .item a {
    display: block;
    font-size: 14px;
    margin-bottom: 8px;
    transition: all 0.3s ease;
}

.footer-top .item a:last-child {
    margin: 0;
}

.footer-top .item a:hover {
    text-decoration: underline !important;
    color: var(--themeColor);
}

.footer-top .img-all {
    display: flex;
    gap: 24px;
}

.footer-top .img-all img {
    width: 140px;
}

.footer .cop {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 25px;
    color: white;
    font-size: 12px;
    height: 60px;
    background: var(--themeColor);
}


/* 新闻中心 */

.page-news1 {
    background: #DEF3FF;
    height: 60px;
    /*display:flex;*/
}
.flexbb{
    display: flex;
    justify-content: center;
    background: #def3ff;
}

.page-news1 ul {/*
    display: flex;
    align-items: center;
    justify-content: center;*/
    margin: 0 auto;
}

.page-news1 ul li{
    float: left;
}
.page-news1 ul a {
    /*display: inline-block;
    align-items: center;
    justify-content: center;
    gap: 10px;*/
    display: block;
    height: 60px;
    line-height: 60px;
    font-size: 18px;
    color: var(--themeColor);
    padding: 0 29px;
    transition: all 0.3s ease;
    border-right: 1px solid white;
    cursor: pointer;
}

.page-news1 ul a img {
    height: 28px;
    width: 28px;
    float: left;
    margin-top: 16px;
}

.page-news1 ul li:last-child a {
    border: none;
}

.page-news1 ul li.active a,
.page-news1 ul li:hover a {
    background: white;
}


.page-news2 {
    margin-top: 70px;
}

.page-news2 .b-title {
    display: flex;
    align-items: flex-end;
    justify-content: space-between;
    position: relative;
    z-index: 2;
}

.page-news2 .b-title::after {
    content: "";
    position: absolute;
    bottom: 0;
    left: 0;
    z-index: -1;
    background: #eaeaea;
    width: 100%;
    height: 4px;
}

.page-news2 .b-title .title {
    font-size: 32px;
    color: var(--themeColor);
}

.page-news2 .b-title .title img {
    margin-top: 12px;
}

.page-news2 .list-all {
    margin-top: 40px;
}
.en-kjcx2 .page-news2 .list-all{
    margin-bottom: 0;
}
.page-news2 .list-all a {
    display: flex;
    padding: 16px;
    line-height: 1.5;
    background: #F8F8F8;
    border-radius: 4px;
    margin-bottom: 16px;
    transition: all 0.3s ease;
}

.page-news2 .list-all a:hover {
    background: #E0EBFF;
}

.page-news2 .list-all a:last-child {
    margin-bottom: 0;
}

.page-news2 .list-all a .date {
    width: 68px;
    font-size: 14px;
    border-right: 1px solid #ddd;
    text-align: center;
}

.page-news2 .list-all a .date .year {
    letter-spacing: 2px;
    color: #b6b6b6;
}

.page-news2 .list-all a .content {
    width: calc(100% - 68px);
    padding-left: 18px;
    transition: all 0.3s ease;
}

.page-news2 .list-all a:hover .content {
    transform: translateX(10px);
}

.page-news2 .list-all a h3 {
    font-size: 18px;
    color: #262626;
    transition: all 0.3s ease;
}

.page-news2 .list-all a:hover h3 {
    color: #3A81FB;
}

.page-news2 .list-all a .desc {
    font-size: 12px;
    color: #a5a5a5;
    margin-top: 10px;
}

.pager {
    padding: 60px 0 20px;
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 15px;
}

.pager a.btn {
    width: 116px;
    height: 52px;
    border: 1px solid #ddd;
    border-radius: 8px;
    font-size: 12px;
    display: flex;
    align-items: center;
    justify-content: flex-end;
    gap: 8px;
    padding: 0 22px;
    transition: all 0.3s ease;
}

.pager a.btn.active,
.pager a.btn:hover {
    background: #E0EBFF;
    color: #3A81FB;
    border-color: #E0EBFF;
}

.pager a.btn:last-child {
    justify-content: flex-start;
}

.pager a.btn img {
    height: 16px;
}

.pager a.num {
    height: 36px;
    border-radius: 8px;
    font-size: 14px;
    display: flex;
    align-items: center;
    justify-content: center;
    padding: 0 10px;
    transition: all 0.3s ease;
}

.pager a.num.active,
.pager a.num:hover {
    background: #E0EBFF;
    color: #3A81FB;
}

.akiback {
    margin-top: 90px;
}

.akiback .container {
    padding-bottom: 26px;
    border-bottom: 1px solid #ddd;
}

.akiback a {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    font-size: 20px;
    gap: 22px;
    transition: all 0.3s ease;
}

.akiback a img {
    height: 12px;
}

.akiback a:hover {
    color: var(--themeColor);
}

.news-show {
    width: 1000px;
    margin: auto;
    padding-top: 30px;
}

.news-show h1.title {
    font-size: 44px;
    line-height: 1.5;
    color: #262626;
    text-align: center;
	font-weight: 500;
}

.news-show .date {
    font-size: 16px;
    color: #64748B;
    margin-top: 32px;
    text-align: center;
}

.news-show .thumb {
    margin-top: 36px;
    text-align: center;
    display: flex;
    justify-content: center;
}

.news-show .thumb img {
    width: 80%;
}

.news-show .news-show-content {
    font-size: 20px;
    line-height: 1.5;
    color: #262626;
    margin-top: 30px;
}
.news-show .news-show-content img {
    margin:0px auto;
}

.news-show .news-show-content p {
    margin-bottom: 38px;
    text-indent: 40px;
}
.news-show .news-show-content div {
    margin-bottom: 38px;

}

.news-show .news-show-content p:last-child {
    margin-bottom: 0;
}

.news-show-other {
    margin-top: 70px;
    margin-bottom: 100px;
}

.news-show-other .container {
    width: 1000px;
    display: flex;
    align-items: center;
    position: relative;
}

.news-show-other .item {
    display: flex;
    align-items: center;
    width: 425px;
}

.news-show-other .item .btn {
    display: flex;
    align-items: center;
    justify-content: center;
    width: 76px;
    height: 76px;
    font-size: 16px;
    color: white;
    background: var(--themeColor);
    transition: all 0.3s ease;
}

.news-show-other .item:hover .btn {
    background: #3A81FB;
}

.news-show-other .item .title {
    font-size: 14px;
    color: #64748B;
    line-height: 1.5;
    padding: 0 20px;
    width: calc(100% - 76px);
    transition: all 0.3s ease;
}

.news-show-other .item:hover .title {
    color: #3A81FB;
}

.news-show-other .topping {
    display: flex;
    align-items: center;
    justify-content: center;
    width: 50px;
    height: 50px;
    background: var(--themeColor);
    transition: all 0.3s ease;
    position: absolute;
    right: 0;
}

.news-show-other .topping:hover {
    transform: scale(1.1);
}

.news-show-other .topping img {
    height: 30px;
}


/* 业务领域 */

.business-cate .container {
    display: flex;
    align-items: flex-end;
    justify-content: space-between;
    margin-top: 60px;
    position: relative;
    z-index: 2;
}

.business-cate .container::after {
    content: "";
    position: absolute;
    bottom: 0;
    left: 0;
    z-index: -1;
    background: #eaeaea;
    width: 100%;
    height: 1px;
}

.business-cate .left-sec {
    display: flex;
    gap: 22px;
}

.business-cate .left-sec a {
    display: flex;
    align-items: center;
    justify-content: center;
    padding: 16px;
    position: relative;
    color: var(--themeColor);
    transition: all 0.3s ease;
    font-size: 16px;
    background: #ECECEC;
    color: #000;
}

.business-cate .left-sec a:hover,
.business-cate .left-sec a.active {
    font-weight: bold;
    color: #fff;
    background: #22A5EA;
}

.business-cate .right-sec a::after {
    content: "";
    position: absolute;
    bottom: 0;
    width: 0;
    height: 2px;
    background: #22A5EA;
    transition: all 0.3s ease;
}

.business-cate .right-sec a:hover:after,
.business-cate .right-sec a.active::after {
    width: 100%;
}

.business-cate .right-sec {
    display: flex;
    gap: 5px;
}

.business-cate .right-sec a {
    position: relative;
    display: flex;
    align-items: center;
    justify-content: center;
    width: 100px;
    height: 56px;
    border-radius: 4px 4px 0px 0px;
    color: #000;
    /*background: #ECECEC;*/
    transition: all 0.3s ease;
    font-size: 16px;
}

.business-cate .right-sec a.active,
.business-cate .right-sec a:hover {
    /*background: #22A5EA;
    color: white;*/
}

.business-list {
    margin-top: 40px;
}

.business-list .item {
    padding: 40px 0;
    background: #F8F8F8;
    margin-bottom: 16px;
}

.business-list .item:last-child {
    margin-bottom: 0;
}

.business-list .item a {
    display: flex;
    align-items: flex-start;
}

.business-list .item a .img {
    width: 375px;
    border-radius: 4px;
    overflow: hidden;
}

.business-list .item a .img img {
    width: 100%;
    object-fit: cover;
}

/*.business-list .item a:hover .img img {
    transform: scale(1.2);
}*/

.business-list .item .content {
    width: calc(100% - 375px);
    padding-left: 30px;
    line-height: 1.5;
    transition: all 0.3s ease;
}

/*.business-list .item a:hover .content {
    transform: translateX(10px);
}
*/
.business-list .item .content h3.title {
    font-size: 24px;
    font-weight: normal;
    transition: all 0.3s ease;
}

.business-list .item a:hover .content h3.title {
    color: #22A5EA;
}

.business-list .item .once {
    display: flex;
    align-items: flex-start;
    font-size: 14px;
    margin-top: 20px;
}

.business-list .item .once .name {
    width: 70px;
    display: flex;
    justify-content: space-between;
    white-space: nowrap;
    color: #A5A5A5;
}

.business-list .item .once .desc {
    width: calc(100% - 80px);
}


/* 业务链条 */

.business2-title {
    margin-top: 60px;
    font-size: 20px;
    line-height: 1.5;
    text-align: center;
}

.business2-title span {
    color: var(--themeColor);
    font-weight: bold;
}
/*关于我们*/
.about-usbox{
    margin-bottom: 50px;
}
.about-usbox .pp1{
    font-size: 20px;
    line-height: 34.6px;
    text-indent: 40px;
    margin-bottom: 30px;
}
.dongshihui{
    overflow: hidden;
    margin-bottom: 40px;
}
.dongshihui li{
    width: 100%;
    height: auto;
    overflow: hidden;
    border-left: 4px solid rgba(60, 180, 240, 1);
    background: rgba(245, 245, 245, 1);
    margin-bottom: 20px;
    padding: 10px 30px;
    box-sizing: border-box;
}
.dongshihui li h2{
    border-bottom: 1px dashed rgba(0, 64, 152, .6);
    line-height: 54px;
    padding-bottom: 10px;
    font-size: 24px;
    font-weight: 600;
    color: rgba(38, 38, 38, 1);
}
.dongshihui li{
    float: left;
    width: 48.5%;
    margin-right: 3%;
    margin-bottom: 36px;
}

/*.dongshihui li:nth-child(1){
    width: 100%;
}*/
.dongshihui li:nth-child(even){
    margin-right: 0;
}
.dongshihui li p{
    font-size: 20px;
    color: rgba(100, 100, 100, 1);
    line-height: 40px;
    padding-top: 10px;
}
.dynamics .list-all a .date{
    width: 165px;
    border-right:none;
    overflow: hidden;
}
.dynamics .list-all a .date img{
    height: 100px;
    width: 100%;
}
.lilian-img{
    width: 80%;
    margin: 0 auto;
}
.xinx-gkai li{
    text-align: center;
    width: 285px;
    height: 285px;
    float: left;
    margin-right: 20px;
    margin-bottom: 20px;
    background: #f5f5f5;
    display: flex;
    justify-content: center;
    align-items: center;
}
.xinx-gkai li .img1{
    width: 70px;
    margin: 0 auto;
}
.xinx-gkai li .img2{
    width: 30px;
    margin: 0 auto;
}
.xinx-gkai li:nth-child(4n){
    margin-right: 0;
}
.xinx-gkai li a{
    display: block;
}
.gkxx-box{
    overflow: hidden;
    margin-top: 40px;
    margin-bottom: 20px;
}
.xinx-gkai li h2{
    color: rgba(23, 63, 143, 1);
    line-height: 54px;
    font-weight: normal;
    height: 64px;
}
.rongyu-zz{
    margin-top: 40px;
}
.rongyu-list{
    overflow: hidden;
    margin-bottom: 40px;
}
.rongyu-list li{
    float: left;
    width: 278px;
    height: auto;
    border: 1px solid rgba(204, 204, 204, 1);
    margin-right: 29px;
    padding: 16px;
    box-sizing: border-box;
    margin-bottom: 30px;
}
.rongyu-list li:nth-child(4n){
    margin-right: 0;
}
.rongyu-list li a p{
    height: auto;
    line-height: 28px;
    overflow: hidden;
    /*text-overflow: ellipsis;
    white-space: nowrap;
    text-align: center;*/
    font-size: 16px;
    text-align: left;
    margin-top: 20px;

  display: -webkit-box;
  -webkit-box-orient: vertical;
  -webkit-line-clamp: 6; /* 显示的行数，可以根据需要修改 */
  overflow: hidden;
  text-overflow: ellipsis;
}
.zhanshi-img{
    width: 100%;
    margin:0 auto;
}
.page-news2 .list-all{
    margin-bottom: 40px;
}
.zhuti-box .pp1-1{
    color: #666;
    margin-top: 30px;
    text-indent: 40px;
}
.gkxx-box{
    margin-bottom: 40px;
}
.clamp3 {
    -webkit-line-clamp: 2;
}
.qysx-box li{float: left;width:373px;margin-right: 40px;border: 1px solid #eee;padding: 15px;box-sizing: border-box;margin-bottom: 40px;background: #fff;display: block; transition: all 1s;}
.qysx-box li:nth-child(3n){margin-right: 0;}
.qysx-box li p{font-size: 24px;line-height: 1.5;text-align: center;margin-top: 15px;}
.qysx-box li:hover{background: #34b1ef;transition: all 1s;}
.qysx-box li:hover p{color: #fff;}
.title333{display: block;text-align: center;clear: both;margin-top: 20px;}
.zhuti-box{padding-bottom: 40px;}
.page-news2 .b-title .title .a1{font-size: 16px;line-height: 60px;margin-right: 30px;padding: 20px 10px;position: relative;}
.page-news2 .b-title .title .a1.active:before,
.page-news2 .b-title .title .a1:hover:before{position: absolute;width: 100%;height: 4px;background:#1d4992;left: 0;bottom: 0;content: "";}
.yingw-box img{width: 16px;float: right;margin-top: 3px;}
.yingw-box a{color: rgba(23, 63, 143, 1);margin-right: 10px;display: block;float: left; line-height: 27px;}
.lai-yuan{
    padding: 20px 0;
    border-top: 1px solid #e5e5e5;
    border-bottom: 1px solid #e5e5e5;
    font-size: 14px;
}
.lai-yuan span{
    color: #7d7d7d;
}
.m-search-btn{
    display: none;
}
.pcbner,img.pc-hx{
    display: block;
}
.ydbner,img.yd-hx{
    display: none;
}
.page-news1 ul li{
    position: relative;
}
.sub-nav{
    width: 100%;
    display: none;
    position: absolute;
/    z-index: 100;
    box-shadow: 0 4px 4px 0 rgba(0, 0, 0, 0.25);
}
.page-news1 ul li .sub-nav a{
    font-size: 15px;
    padding: 0;
    display: block;
    text-align: center;
    width: 100%;
    background: #fff;
    height: 32px;
    line-height: 32px;
    cursor: pointer;
}
.sub-nav a:hover{
    text-decoration: underline;
    background: #DEF3FF;
}
.page-news1 ul.pcshow{
    display: block;
}
.page-news1 ul.ydshow{
    display: none;
}
.business-nav.pcshow li:hover .sub-nav{
    display: block;
}
.business2box{
	background:url('../png/ywltbj.png') no-repeat;
}
.business2box .title{
    font-size: 32px;
    line-height: 60px;
    color: rgba(23, 63, 143, 1);
    border-bottom: 2px solid rgba(234, 234, 234, 1);
    margin-bottom: 30px;
}
.business2box .title2{
    font-size: 40px;
    font-weight: bold;
    margin-top: 50px;
    text-align: center;
}
.business2box .title2 img{
    width: 80px;
}
.busi-txt{
    font-size: 24px;
    line-height: 40px;
    color: rgba(38, 93, 167, 1);
}
.chanye-list li{
    float: left;
    width: 360px;
    height: 106px;
    line-height: 106px;
    text-align: center;
    background: rgba(238, 245, 255, 1);
    color: rgba(0, 64, 152, 1);
    margin-right: 50px;
    margin-top: 50px;
    font-size: 20px;
}
.chanye-list li:nth-child(3n){
    margin-right: 0;
}
.tips2{
    padding:45px 0 80px;
    overflow: hidden;
    clear: both;
}
.tips2 .chanye-list li{
    width: 48%;
    margin-right: 4%;
}
.tips2 .chanye-list li:nth-child(2n){
    margin-right: 0;
}
.zt-pc{
    display: block;
}
.zt-yd{display: none;}
.news-search-box{
    display: flex;
    justify-content: center;
    background: #004898;
    padding: 50px 0;
}
.news-search-box .ser_ipt2{
    width: 540px;
    height: 50px;
    border: 0;
    padding: 0 10px;
    font-size: 20px;
    -webkit-appearance: none;
    display: inline-block;
    vertical-align: top;
    outline: 0;
    border-radius: 5px;
    color: #333;
}
.news-search-box .ser_btn2{
    width: 120px;
    height: 50px;
    border: 0;
    font-size: 20px;
    cursor: pointer;
    display: inline-block;
    vertical-align: top;
    border-radius: 5px;
    background: linear-gradient(to bottom, #fff 55%, #c5d2e0 100%);
    margin-left: 10px;
    color: #333;
    text-align: center;
    letter-spacing: 2px;
}
.mbxue{
    font-size: 20px;
    color: #333;
    padding: 50px 0 0;
}
.mbxue em{
    color: #f10b0b;
    font-weight: bold;
    font-style: normal;
    margin: 0 0.5em;
}

.rongyu-list li{
    position: relative;
    float: left;
    width: 278px;
    height: 480px;
    border: 1px solid rgba(204, 204, 204, 1);
    margin-right: 29px;
    box-sizing: border-box;
    margin-bottom: 30px;
    background: #f8f7f7;
}
.height300 {
    display: flex;
    align-items: center;
    justify-content: center;
    height: 340px;
}
.rongyu-list li a img {
    max-height: 340px;
}
.en-jiangpin .rongyu-list li a img{
    max-height: 300px;
}
.height100 {
    height: 120px;
    display: flex;
    justify-content: center;
    align-items: center;
}
.qysx-box li img{
    height: 210px;
    width: 341px;
}

.page-news1{
    display: flex;
}
.enindex .newsh3 a{
    display: block;
}
@media (max-width: 768px) {
    
.page-news1{
    display: block;
}
.mbxue{
    padding:5vw 0 0 0;
}
.news-search-box{    
    display: block;
    width: 100%;
    height: 80px;
    margin: 0;
    background: none;
    background: #fff;
    border:1px solid #eee;
    height: auto;
    padding: 6vw 5vw;
}
.news-search-box .ser_ipt2{        
    width: 71%;
    height: 11vw;
    padding:0 3vw;
    font-size: 4vw;
    box-sizing: border-box;
    background-color: #f5f5f5;
    border: 2px solid #dcdcdc;
}
.news-search-box .ser_btn2{
    width: 24%;
    height: 11vw;
    font-size: 4vw;
    background: #004898;
    color: #fff;
}
    .zt-pc,.page-pc{display: none;}
    .zt-yd{display: block;}
    .container{width: 100%;padding:0 5vw;box-sizing: border-box;}
    .header ul.fir-menu{height: 30vw;position: fixed;z-index: 1;right: 0;top: 0;display: block;z-index: 200;width: 100%;
        background: #fff;height: 100%;padding: 4vw;box-sizing: border-box;padding-top: 16vw;display: none;}
    .header .logo img{height: 11vw;}
    .header .container{padding:0 5vw;width: 100%;}
    .header .container{height: 15vw; gap:2vw;}
    /*.yingw-box{display: none;}*/
    .yingw-box a{margin-left: 2vw;margin-right: 0;font-size: 3.4vw;}
    .yingw-box a:nth-child(2){margin-right: 0;}
    .m-search-btn a{float: left;margin-left: 2vw;}
    .m-search-btn a img{width: 5vw;}
    .header ul.fir-menu>li{font-size: 4.8vw;line-height:16vw;border-bottom: 1px solid #ddd;text-align: left;display: block;}
    .header ul.fir-menu>li>a{display: block;}
    .header ul.fir-menu>li>a::after{bottom: 0;left: 0;}
    .closebtn{width: 15vw;height: 15vw;float: right;background: var(--themeColor);position: absolute;top: 0;right: 0;}
    .m-search-btn{display: block;}
    .closebtn a img{width: 10vw;margin: 2.5vw;}
    .akiswiper .swiper-pagination span{width: 2vw;height: 2vw;}
    .akiswiper .swiper-pagination{bottom: 3vw !important;}
    .akiswiper .swiper-pagination span::before,.akiswiper .swiper-pagination span::after{width: 3vw;height:3vw;}
    .akiswiper .swiper-pagination span{margin: 0 5px!important;}
    .index-news{margin-top: 10vw;}
    .index-news .b-title{display: block;}
    .index-news .b-title ul{display: block;}
    .nav-tab li{float: left;margin-right: 8vw;}
    .index-news .b-title{overflow: hidden;clear: both;}
    .index-news .item-all .tab-content{width: 100%;}
    .index-news .b-title ul a{font-size: 4vw;}
    .index-news .item-all .tab-content .description h3{font-size: 5.6vw;height: 17vw;}
    .index-news .item-all .left-sec{display: none;}
    .index-news .item-all .tab-content .link a .title{width:72vw;}
    .index-news .b-title .title{text-align: center;margin-bottom: 8vw;}
    .index-news .b-title .title img{margin: 12px auto;}
    .index-news .b-title{padding-right: 0;}
    .index-news .item-all .tab-content .link a .title{
      display: -webkit-box;
      -webkit-box-orient: vertical;
      -webkit-line-clamp: 2;
      overflow: hidden;
      white-space: normal;
      text-overflow: ellipsis;}
    .index-news .item-all .tab-content a.more-btn{
        width: 24vw;
        line-height: 10vw;
        height: 10vw;
        margin: 0 auto;
        display: flex;
        font-size: 3.6vw;
    }
    .index-special{margin-top: 10vw;}
    .index-advantage .item-all .layer .b-title{font-size: 8vw;}
    .index-advantage .item-all .layer .icon-all{display: block;}
    .index-advantage .item-all .layer .icon-all .item{float: left;width: 50%;margin-bottom:10vw;}
    .index-advantage .item-all .layer .icon-all .item p{font-size: 3vw;}
    .index-advantage .item-all .layer .icon-all .icon{width: 20vw;height: 20vw;}
    .index-advantage .item-all .layer .b-title{margin-bottom: 13vw;font-size: 6vw;}
    .index-advantage .nav-tab a{display: block;font-size: 4vw;padding: 0;line-height:8vw;height:14vw;padding: 3vw 4vw;margin-right: 2vw;}
    .index-advantage .nav-tab a img{float: left;margin-right: 2vw;height: 7vw;margin-top: 1vw;}
    .index-advantage .nav-tab li{margin-right: 0;}
    .footer-top .container{display: block;}
    .footer-top .item{margin-top: 8vw;}
    .footer-top .img-all{margin-top: 5vw;}
    .footer .cop{display: block;text-align: center;height: auto;padding: 5vw;}
    .footer .cop p{width: 100%;margin: 4vw;}
    .index-special .swiper-backface-hidden .swiper-slide{width: 247px !important;}
    .index-special .left-sec{font-size: 5vw;letter-spacing:6px;}
    .index-advantage,.index-special{margin-top: 15vw;}
    .index-videos .swiper-slide{width: 100%;}
    .index-videos .swiper-slide img{height: 35vw;}
    .index-videos .swiper-slide .title{font-size: 4vw;}
    .swiper-3d, .swiper-3d.swiper-css-mode .swiper-wrapper{padding: 14.2vw;}
    .index-videos .b-title{margin-bottom: 0;}
    .index-videos{margin-bottom: 0;}
    .swiper-button-next, .swiper-button-prev{margin-top: -10vw;right: 2vw;}
    .index-special .swiper-button-next,.index-special .swiper-button-prev{margin-top: -6vw;}
    .ydbner{display: block;}
    .pcbner{display: none;}
    .about-usbox .pp1{line-height: 8vw;font-size: 3.6vw;}
    .page-news2 .b-title .title{margin: 0 auto;}
    .page-news2 .b-title::after{background: none;}
    .page-news1 ul li{float: left;display: block;}

    .page-news1 ul a{padding: 0;}
    .page-news1 ul{width: 180%;display: block;float: left;}
    .page-news1{width: 100%;overflow: auto;}
    .page-news1 ul a{font-size: 4vw;display: block;padding: 4vw 3vw;}
    .page-news1 ul a img{vertical-align: middle;display: inline-block;}
    .page-news2{margin-top: 15vw;}
    .dongshihui li{width: 100%;}
    .page-news2 .b-title .title{text-align: center;font-size: 6vw;}
    .dongshihui li h2{font-size: 4.6vw;}
    .dongshihui li p{font-size: 4vw;}
    .dongshihui li{padding: 2vw 7vw;}
    .dongshihui li h2{line-height: 10vw;}
    .business-cate .container,.business-cate .left-sec{display: flex;overflow: hidden;padding: 0;}
    .business-cate .left-sec{float: left;gap:15px;}
    .business-cate .left-sec a{display: inline-block;font-size: 3vw;}
    .rongyu-list li{width: 42vw;margin-right: 5vw;}
    .rongyu-list li:nth-child(2n){margin-right: 0;}
    .page-news2 .list-all{margin-top: 9vw;}
    .page-news2 .list-all a h3{font-size: 3.6vw;}
    .pager{padding: 5vw;}
    .pager a.btn{padding: 0 3vw;font-size: 3vw;width: auto;}
    .news-show{width: 100%;padding: 4vw;}
    .news-show h1.title{font-size: 4.8vw;}
    .akiback{margin-top: 8vw;}
    .akiback a{font-size: 3.6vw;}
    .news-show .date{margin-top: 4vw;}
    .news-show .thumb img{width: 100%;}
    .news-show .news-show-content{font-size: 3.6vw;line-height: 2;}
    .news-show .news-show-content p{margin-bottom: 6vw;}
    .news-show-other .item .title{width: calc(100% - 100px);}
    .qysx-box li{width: 100%;}
    .qysx-box li p{font-size: 4vw;}
    .page-news2 .b-title .title img{margin: 12px auto;}
    .dongshihui li p{line-height: 8vw;}
    .dongshihui li h2{line-height: 7vw;}
    .business-cate .left-sec{gap: 11px;}
    .rongyu-list li a p{font-size: 3vw;line-height: 5vw;}
    .rongyu-list li{padding: 2vw;}
    .business-cate .container,.page-news2{margin-top: 9vw;}
    .footer-top .item .title{font-size: 4vw;}
    .footer-top .item a{font-size: 3.2vw;margin-bottom: 1vw;}
    .pager a.btn img{height: 12px;}
    .page-news2 .list-all a h3,.page-news2 .list-all a .desc{
      display: -webkit-box;
      -webkit-box-orient: vertical;
      -webkit-line-clamp: 2;
      overflow: hidden;
      text-overflow: ellipsis;}
    .page-news2 .list-all a .desc{margin-top: 1vw;}
    .xinx-gkai li{width: 42vw;height: 42vw;margin-right: 5vw;}
    .xinx-gkai li:nth-child(2n){margin-right: 0;}
    .xinx-gkai li .img1{width: 12vw;margin: 4vw auto 0;}
    .xinx-gkai li h2{font-size: 4.6vw;}
    .footer-top .logo img{width: 77vw;}
    .business-cate .left-sec a{padding: 6px;line-height:6vw;width:49%;text-align: center;font-size: 3.2vw;}
    .footer-top .img-all img{width: 25vw;}
    .business-list .item a{display: block;}
    .business-list .item a .img{width: 100%;}
    .business-list .item .content{width: 100%;padding-left: 0;padding:5vw;}
    .business-list .item{width: 90vw;margin: 0 auto 5vw;padding: 0;}
    .business-list .item .container{padding: 0;}
    .business-list .item .content h3.title{font-size: 4.8vw;}
    .business-list .item .once{font-size: 3vw;}
    .business-cate .container, .business-cate .left-sec{display: block;}
    .business-cate .left-sec,.business-cate .right-sec{width: 100%;}
    .business-cate .right-sec{justify-content: center;padding-top: 5vw;}
    .business-cate .left-sec{border-bottom: 2px solid #eee;}
    .business-cate .right-sec a{height: 10vw;font-size:4.2vw;}
    .news-show-other .item{width: 70vw;}
    .bg-banner>img{height: auto;}
    .bg-banner .layer h1{font-size: 6vw;}
    img.yd-hx{ display: block;}
    img.pc-hx{display: none;}
    .en-dsh img.pc-hx{display: block;}
    .business2box .title1{display: none;}
    .business2box .title2{font-size: 5vw;}
    .busi-txt{font-size: 4vw;line-height: 6vw;}
    .chanye-list li,.tips2 .chanye-list li{width: 100%;margin: 5vw 0 0;height: 20vw;line-height: 20vw;}
    .zt-zl-box{overflow: auto;}
    .index-special .right-sec .zt-zl{width: 189vw;}
    .index-special .right-sec .zt-zl a:last-child{margin-right: 0;}
    .index-special .right-sec .zt-zl a{display:inline-block;margin-right:3vw;}
    .index-special .right-sec .zt-zl img{width: 60vw;}

    .pageion-mobile > li{
        display: inline-block;
        vertical-align: top;
        width: 28%;
        font-size: 28px;
        margin: 0 2%;
    }
    .mpageion a{
        width: 100%;
        height: 10vw;
        border: 2px solid #d3d3d3;
        line-height: 10vw;
        border-radius: 4vw;
        color: #333;
        font-size: 4vw;
        display: block;
        text-align: center;
    }
    .pageion-mobile{
        display: flex;
        justify-content: center;
        padding: 5vw 0 10vw;
    }
    .page-news1 ul a img{
        margin-top: 0;
    }
    .page-news1 ul a{
        line-height: 6vw;
    }
    .page-news1 ul a img{
        margin-top: 0;
    }
    .height300{height: 60vw;}
    .height100{height: 10vw;}
    .rongyu-list li a img {max-height: 50vw;}
    .rongyu-list li{height: 84vw;}
    .dynamics .list-all a .date img{height: 25vw;}
    .qysx-box li img{height: 43vw;}
    .header ul.sub-menu{background: #fbffff;}
    .header ul.sub-menu>li>a{padding:0;height: 10vw;line-height: 10vw;}
    .sub-nav{display: none;}
    .sub-nav:hover{cursor: default;}
    .page-news1 ul.pcshow{
        display: none;
    }
    .page-news1 ul.ydshow{
        display: block;
    }
}

/*en*/
.container{
    clear: both;
}
.news-center1{
    clear: both;
    overflow: hidden;
    margin-top: 30px;
    margin-bottom: 40px;
}
.news-center1 .mySwiper{
    float: left;
    width: 50%;
}
.newsimg2 img{
    float: left;
    width: 220px;
    height: 300px;
    border-radius: 8px;
}
.newsimg2 p{
    float: left;
    font-size: 18px;
    line-height: 30px;
    width: 336px;
    margin-left: 20px;
    color: #444;
}
.enindex .newsimg2 p:hover{
    color: rgb(215 192 132);
}
.newsh3{
    line-height: 80px;
    color: rgba(215, 192, 132, 1);
    font-size: 24px;
    font-weight: normal;
}
.news-center1 .akiswiper .swiper-pagination span,.news-center1 .akiswiper .swiper-pagination span::before{
    background: rgba(236, 236, 236, 1);
    width: 8px;
    height: 8px;
}
.news-center1 .akiswiper .swiper-pagination span::before,.news-center1 .akiswiper .swiper-pagination span::after{
    background: rgba(23, 63, 143, 1);
    width: 8px;
    height: 8px;
}
.projectsbg{
    background: rgba(247, 250, 254, 1);
    padding: 10px 0 1px 0;
}
.projectsbg .news-center1,.projectsbg .news-center1 .mySwiper{
    width: 100%;
}
.projectsbg .newsimg2 img{
    width: 790px;
    height: 470px;
    border-radius: 30px;
}
.projectsbg .projects-rigt{
    float: left;
    width: 290px;
    margin-left: 30px;
}
.projectsbg .newsimg2 p{
    width: auto;
}
.projects-rigt p{
    margin-left: 0;
    font-weight: bold;
    color: rgba(0, 0, 0, 1);
    text-align: justify;
    line-height: 28px;
    color: #444;
    font-weight: normal;
}
.projects-rigt p.p2{
    font-weight: normal;
    margin-top: 20px;
    font-size: 14px;
    color: #ababab;
    line-height: 20px;
}
.projectsbg .newsh3{
    line-height: 30px;
    margin-bottom: 20px;
}
.en-btitle{
    text-align: center;
}
a.hse-title{
    color: rgba(215, 192, 132, 1);
    text-align: center;
    font-size: 35px;
    display: block;
    margin-bottom: 50px;
    /*font-weight: bold;*/
}
.enindex .index-videos .swiper-slide .title{
    font-size: 20px;
}
.enindex .index-advantage .item-all .layer .b-title{
    margin-bottom: 70px;
    font-size: 36px;
    line-height: 47px;
    text-align: center;
}
.akiswiper .swiper-button-next, .akiswiper .swiper-button-prev{
    opacity: 1;
}
.enindex .akiswiper .swiper-button-next::after,.enindex .akiswiper .swiper-button-prev::after{
    color: #dddee0;
    font-size: 23px;
    font-weight: bold;
}
.enindex .akiswiper .swiper-pagination{
    position: relative;
}
.mt50{
    margin-top: 50px;
}
.jtbg{
    width: 280px;
    float: right;
    position: absolute;
    bottom: 0;
    height: 50px;
    top: 50%;
    margin-top: -25px;
    z-index: 100;
    width: 100%;
}
.enindex .news-center1 .akiswiper .jtbg .swiper-button-next{
    left: 93%;
}
.enindex .news-center1 .akiswiper .jtbg .swiper-button-prev{
    left: -10px;
}
.enindex .news-center1 .swiper-autoheight .swiper-wrapper{
    padding-left: 40px;
}
.enindex .news-center1 .akiswiper .swiper-button-next, 
.enindex .news-center1 .akiswiper .swiper-button-prev,
.enindex .news-center1 .akiswiper .swiper-pagination{
    float: left;
}
.enindex .news-center1 .akiswiper .swiper-pagination{
    width: auto;
    margin-top: 30px;
}
.enindex .projectsbg .news-center1 .akiswiper .swiper-pagination{
    display: none;
}
.jt2{
    position: absolute;
    left: 250px;
    bottom: -28px;
}
.en-gywm .page-news1 ul a{
    font-size: 16px;
    padding: 0 20px;
}
.en-gywm .about-usbox .pp1{
    text-indent: 0;
    color: #555;
    text-align: justify;
    font-size: 18px;
    line-height: 32px;
}
.en-gywm .page-news2 .list-all a .content{
    line-height: 40px;
}
.en-business .business-cate .right-sec a{
    width: 190px;
}
.en-business .business-list .item .once .name{
    width: 130px;
}
.en-business .business-cate .container{
    margin-top: 40px;
}
.en-gywm .news-show h1.title{
    font-size: 34px;
    text-align: center;
}
.en-gywm .news-show .thumb{
    text-align: left;
    display: block;
}
.en-gywm .news-show .thumb img{
    width: 100%;
}
.en-gywm .news-show .news-show-content p{
    text-align: left;
    text-indent: 0;
    font-size: 16px;
    color: #555;
}
.en-gywm .news-show .thumb{
    margin-top: 25px;
}
.en-gywm .news-show .date{
    text-align: left;
}
.en-gywm .news-show-other .item{
    width: 485px;
}
.en-gywm .news-show-other .item .btn{
    width: 166px;
}
.en-kjcx .page-news2 .list-all{
    margin-bottom: 0;
}
.bigr{
    font-size: 30px;
}
.en-shzr .news-show .date{
    margin-top: 20px;
}
.en-shzr .fubiaot{
    margin: 29px auto;
}
.en-dsh .page-news1 ul a,
.en-jiangpin .page-news1 ul a,
.en-kjcx2 .page-news1 ul a,
.en-newscenter .page-news1 ul a,
.en-business .page-news1 ul a,
.en-gywm .page-news1 ul a,
.en-kjcx .page-news1 ul a,
.en-vedio .page-news1 ul a{
    font-size: 17px;
    padding: 0 20px;
}
.en-business .page-news1 ul a{
    min-width: 170px;
    text-align: center;
}
.en-jiangpin .rongyu-list li a p{
    line-height: 23px;
    font-size: 15px;
}
.downloadbg{
    width: 100%;
    background: rgba(248, 248, 248, 1);
    padding: 50px;
    margin-top: 40px;
    display: flex;
    justify-content: center;
}
.baogao{
    width: 300px;
}
.bg-right-txt{
    margin-left: 30px;
}
.bg-right-txt p{
    font-size: 24px;
    color: rgba(100, 100, 100, 1);
}
.bg-right-txt img{
    width: 150px;
    margin-top: 10px;
}
.jpitmes1{
    margin-bottom: 50px;
    overflow: hidden;
}
.items001{
    display: flex;
    justify-content: space-between;
    text-align: center;
    margin-top: 30px;
}
.items001 a{
    display: block;
    background: rgba(245, 245, 245, 1);
    width: 23%;
    padding: 40px 20px;
    text-align: center;
}
.items002 a{
    width: 18%;
}
.items003 a{
    width: 32%;
}
.items004 a{
    width: 49%;
    padding: 30px;
}

.items004 p span{
    font-size:40px;
    color: rgba(29, 73, 146, 1);
    font-weight: bold;
}
.items001 a img{
    margin: 0 auto;
}
.items001 a p{
    font-size: 16px;
    line-height: 20px;
    margin-top: 30px;
    color: rgba(100, 100, 100, 1);
}
.items004 a p{
    text-align: left;
    line-height: 33px;
    margin-top: 0;
    font-size: 23px;
}
.topnavbx{
    display: flex;
    justify-content: space-between;
    overflow: hidden;
    clear: both;
    margin-bottom: 40px;
    margin-top: 40px;   
}
.topnavbx a{
    position: relative;
    float: left;
    width: 19%;
    text-align: center;
    display: block;
    font-size: 16px;
    display: block;
    padding: 0 20px 0;
    border: 1px solid rgba(215, 192, 132, .6);
    padding: 20px;
    box-sizing: border-box;
}
.en-kjcx2 .topnavbx a{
    cursor: default;
}
.topnavbx a:hover,.topnavbx a.active{
    background: rgba(215, 192, 132, .2);
}
/*.topnavbx a:before{
    position: absolute;
    width: 1px;
    height: 150px;
    background: rgba(215, 192, 132, 1);
    content: "";
    right: 0;
    top: 3px;
}*/

.topnavbx a:last-child:before{
    background: none;
}
.topnavbx a img{
    width: 70px;
    margin: 0 auto 15px;
}
.topnavbx a p{
    color: rgba(100, 100, 100, 1);
    font-size: 18px;
    line-height: 24px;
}
.detail-bg{
    background: url("../detailbg.html") no-repeat;
    width: 1200px;
    height: auto;
    min-height: 1000px;
    background-size: 100% 100%;
    padding: 50px 150px;
}
.detail-bg h2{
    margin-bottom: 30px;
    font-size: 40px;
}
.detail-bg p{
    font-size: 24px;
    line-height: 36px;
    margin-bottom: 30px;
}
.swiper-button-next:after, .swiper-button-prev:after{
    opacity: 0.4;
}
.index-videos .swiper-button-next:after, .index-videos .swiper-button-prev:after{
    opacity: 1;
}
.en-business .page-news1 ul li .sub-nav a{
    line-height: 20px; 
    padding: 6px 5px;
    border-bottom: 1px solid #ddd;
    height: auto;
}
.en-business .business-cate .left-sec a:hover, .en-business .business-cate .left-sec a.active{
    background: rgba(215, 192, 132, 1);
}
.pat30{
    padding-bottom: 30px;
    overflow: hidden;
}
.en-jiangpin .rongyu-list li a p{
    margin-top: 0;
    text-align: justify;
}
.en-jp-box,.en-jp-text{
    height: 310px;
    display: flex;
    justify-content: center;
    align-items: center;
}
.en-jp-text{
    height: 140px;
}
.en-business2 .busi-txt{
    text-align: justify;
}
.en-vedio .qysx-box li p{
    font-size: 15px;
    color: #555;
}
.fubiaot{
    width: 100%;
    height: auto;
    padding: 20px;
    color: #555;
    background: #eee;
    border-radius: 10px;
    margin: 20px auto;
    line-height: 25px;
}
.rongyu-list2{
    display: flex;
    justify-content: space-evenly;
    margin-top: -40px;
}
.rongyu-list2 li{
    width: 33%;
}
.rongyu-list2 li:nth-child(3){
    margin-right: 0;
}
.chanye-list li{
    line-height: 31px;
    display: flex;
    justify-content: center;
    align-items: center;
    padding: 20px;
}
.en-gywm .page-news2 .b-title .title,
.en-newscenter .page-news2 .b-title .title,
.en-business .page-news2 .b-title .title,
.en-kjcx .page-news2 .b-title .title,
.en-dsh .page-news2 .b-title .title,
.en-jiangpin .page-news2 .b-title .title,
.en-kjcx2 .page-news2 .b-title .title,
.en-global .page-news2 .b-title .title,
.en-vedio .page-news2 .b-title .title{
    color: rgba(215, 192, 132, 1);
}

.infobottom {
    background: #faf7ee;
    padding: 25px;
    border-radius: 5px;
    overflow: hidden;
    margin-bottom: 50px;
}
.infobottom ul li {
    width: 50%;
    float: left;
}
.infobottom ul li a {
    font-size: 14px;
    color: #777777;
    line-height: 26px;
}
.en-business .business-list .item .once .desc{
    text-align: justify;
}
.en-gywm .news-show .news-show-content p{
    text-align: justify;
}
.en-gywm .akiback a{
    position: relative;
    padding-left: 40px;
}
.en-gywm .akiback a:before{
    position: absolute;
    content: "";
    background: url("../fh-hui.html") no-repeat;
    width: 32px;
    height: 32px;
    background-size: 32px 32px;
    left: 0;
}
.en-gywm .akiback a:hover:before{
    background: url("../fh-lan.html") no-repeat;
    width: 32px;
    height: 32px;
    background-size: 32px 32px;
}
.en-business .page-news1 ul li .sub-nav a{
    text-align: left;
    line-height: 21px;
}
@media (max-width: 768px) {
    .enindex .header{width: 100%;height: 15vw;}
    .enindex .news-center1 .swiper-wrapper{height: auto !important;}
    .enindex .newsimg2 p,
    .enindex .newsimg2{width: 100%;}
    .enindex .newsimg2 p{margin-left: 0;font-size: 4vw;word-wrap: break-all;}
    .enindex .news-center1 .mySwiper{width: 100%;}
    .enindex .news-center1,.enindex{width: 100%;}
    .enindex .header ul.fir-menu{height:230vw;margin-top: 0;}
    .newsh3{font-size: 4.6vw;text-align: center;}
    .news-center1{margin-top: 0;}
    .newsimg2 img{float: none;margin: 0 auto;}
    .enindex .newsimg2 p{line-height: 6vw;margin-top: 8vw;}
    .jt2{position: relative;right: 0;bottom: 0;display: flex;justify-content: space-around;top: 8vw;padding: 0 15vw;left: 0;}
    .enindex .news-center1 .swiper-button-next, .enindex .news-center1 .swiper-button-prev{margin-top: 1vw;}
    .enindex .news-center1 .mySwiper{padding-bottom: 10vw;}
    .enindex .news-center1 .akiswiper .swiper-pagination{min-width: 22vw;}
    .projectsbg .newsimg2 img{width: 100%;height: auto;}
    .projectsbg{padding: 8vw 0 2vw;}
    .projects-rigt{margin-left: 0;width: 100%;}
    .projectsbg .newsh3{text-align: left;}
    .projectsbg .newsh3{margin: 8vw 0 0 0;}
    .projectsbg .jtbg{width: 30%;
        left: 50%;
        margin-left: -15%;}
    .projectsbg .jtbg{bottom: 1vw;top: 90%;}
    .enindex .index-advantage .nav-tab a{font-size: 3.2vw;}
    .enindex .index-videos .swiper-slide .title{font-size: 3vw;margin-top: 4vw;}
    .enindex .swiper-3d{
        padding: 0 14.2vw;
        margin-bottom: 16vw}
    .enindex .index-videos .swiper-button-next, .enindex .index-videos .swiper-button-prev{margin-top: -2vw;}
    .header{z-index: 101}
    .en-gywm .page-news1 ul a,
    .en-jiangpin .page-news1 ul a,
    .en-kjcx2 .page-news1 ul a,
    .en-newscenter .page-news1 ul a,
    .en-dsh .page-news1 ul a,
    .en-business .page-news1 ul a,
    .en-kjcx .page-news1 ul a,
    .en-vedio .page-news1 ul a{line-height: 14vw;}
    .en-business .business-cate .left-sec a{
        width: 22.5vw;
        margin-left: 1.3vw;}
    .downloadbg{display: block;}
    .bg-right-txt p{font-size: 5vw;}
    .bg-right-txt{margin-left: 0;text-align: center;margin-top: 5vw;font-size: 5vw;}
    .bg-right-txt img{    
        margin-top: 10px;
        margin: 5vw auto 0;
        width: 33vw;}
    .en-jiangpin .rongyu-list li a p{
        line-height: 5vw;
        font-size: 3vw;
        margin-top: 3vw;
    }

    .enindex .akiswiper .swiper-pagination{bottom: 8vw !important;}
    .enindex .news-center1 .akiswiper .swiper-pagination{bottom: 0 !important;}
    .ydbox a{float: left;width: 45%;display: block;height: 75vw;overflow: hidden;
    display: block;
    background: rgba(245, 245, 245, 1);
        padding: 8vw 4vw;
        text-align: center;
        margin: 8vw 0 1vw;
        line-height: 3.8vw;
        font-size: 3vw;}
    .ydbox a:nth-child(2n){margin-left:10%;}
    .ydbox a img{width: 16vw;margin: 0 auto 3vw;}
    .ydbox a.aend1{
        width: 100%;
        margin-left: 0;
        text-align: left;
        height: auto;
        font-size: 7vw;
        line-height: 10vw;}
    .ydbox a.aend1 span{
        font-size: 10vw;color: rgba(30, 72, 144, 1);font-weight: bold;
    }
    .topnavbx{display: none;}
    .detail-bg{
    min-height: 170vw;
    width: 100%;
    height: auto;
    background-size: 100% 100%;
    padding:8vw 15vw;}
    .detail-bg h2{
        font-size: 6vw;
        line-height: 7vw;}
    .detail-bg p{font-size: 3.6vw;line-height: 4.6vw;margin-bottom: 3vw;}
    .en-gywm .news-show h1.title{font-size: 4.5vw;line-height: 6vw;}
    .en-jp-box{height: 53vw;}
    .en-jp-text{height: 20vw;}
    .en-jiangpin .rongyu-list li a p{line-height: 4.2vw; text-align: justify;}
    .en-jiangpin .rongyu-list li a img{width: 100%;max-width:34vw;}
    .en-business .page-news1 ul a{min-width: auto;}
    .en-gywm .news-show .news-show-content p,.en-shzr .fubiaot{
    font-size: 3.2vw;
    line-height: 6vw;}
    .en-shzr .fubiaot{padding: 4vw;}
    .en-shzr .fubiaot{margin: 5vw auto;}
    .enindex .index-advantage .item-all .layer .b-title{font-size: 4vw;line-height: 6vw;margin-bottom: 10vw;}
    .news-show-other{display: none;}
    .enindex .news-center1 .swiper-autoheight .swiper-wrapper{padding-left: 0;}
    /*.projectsbg .jtbg{top: 90%;}*/
    .enindex .projectsbg .news-center1 .akiswiper .swiper-pagination{top: 2vw;}
    .enindex .news-center1 .swiper-button-next, .enindex .news-center1 .swiper-button-prev{bottom: -4vw;}
    .enindex .news-center1 .akiswiper .jtbg .swiper-button-next,.enindex .news-center1 .akiswiper .jtbg .swiper-button-prev{left: 0;}
    .enindex .projectsbg .news-center1 .akiswiper .jtbg .swiper-button-next{float: right;margin-right: -16px;}
    .enindex .projectsbg .news-center1 .akiswiper .jtbg .swiper-button-prev{margin-left: -16px;}
    .enindex .projectsbg .news-center1 .mySwiper{padding-bottom: 20vw;}
    .business-list .item a .img img{height: auto;}
    .en-gywm .news-show .news-show-content div{font-size: 3.2vw !important;line-height: 6vw;}
}