* {
    padding: 0px;
    margin: 0px;
    font-size: 16px;
}

a {
    text-decoration: none;
}

input,
textarea {
    outline: none;
    border: none;
}

ul,
ol {
    list-style: none;
}

body,
html {
    scroll-behavior: smooth;
}

table{
    border-collapse:collapse; /* 合并为单一的边框线 */
    width: 100% !important;
}

.public {
    width: 100%;
    max-width: 1400px;
    margin: 0 auto;
    height: 100%;
}

.public_title {
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    margin-top: 60px;
    margin-bottom: 40px;
}

.public_title h5 {
    color: #111111;
    font-size: 28px;
    font-weight: 600;
}

.public_title i {
    display: block;
    width: 50px;
    height: 2px;
    background: #0086FF;
    margin-top: 19px;
}

/* 导航 ----- */
.nav {
    width: 100%;
    height: 90px;
    background: #FFF;
    position: fixed;
    z-index: 999;
    top: 0px;
    left: 0px;
    box-shadow: 1px -2px 14px 0px rgba(0, 0, 0, 0.1);
}

.nav .public {
    max-width: 1350px;
}

.nav .out {
    display: flex;
    align-items: center;
    justify-content: space-between;
    height: 100%;
}

.nav .out .logo {
    height: 54px;
}

.nav .out .logo img {
    height: 100%;
    display: block;
}

.nav .out ul {
    display: flex;
    align-items: center;
    height: 100%;
    /* margin-right: 5%; */
}

.nav .out ul li {
    height: 100%;
    display: flex;
    align-items: center;
    justify-content: center;
    margin-right: 100px;
    position: relative;
    cursor: pointer;
}


.nav .out ul li::after {
    width: 0px;
    height: 2px;
    background: #0086FF;
    position: absolute;
    bottom: 2px;
    content: '';
    transition: 0.5s ease;
}

/* .nav .out ul li:last-child {
    margin-right: 0px;
} */

.nav .out ul li .title a {
    color: #666666;
    font-size: 16px;
    font-weight: bold;
}

.nav .out ul li.all .title a,
.nav .out ul li:hover .title a {
    color: #0086FF;
}

.nav .out ul li:hover::after,
.nav .out ul li.all::after {
    width: 100%;
}

.Pc_navBox {
    width: 120px;
    position: absolute;
    top: 90px;
    left: 50%;
    background: #FFF;
    margin-left: -60px;
    box-shadow: 0px 10px 10px 1px #99999954;
    display: none;
}

.Pc_navBox a {
    display: block;
    color: #333;
    font-size: 14px;
    text-align: center;
    padding: 10px 0px;

}

.Pc_navBox a:hover {
    background: #0086FF;
    color: #FFF;
}



/* banner */

.banner {
    margin-top: 90px;
}

.banner .swiper-pagination {
    bottom: 20px;
}

.banner img {
    width: 100%;
    display: block;
}

.banner .swiper-pagination-bullet {
    background: #FFF;
    opacity: 1;
}

.banner .swiper-pagination-bullet-active {
    background: #0086FF;
}

.banner .swiper-slide-active img{
    animation: banner 4s cubic-bezier(0.25, 0.46, 0.45, 0.94) both 0.3s;
}



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

.banner .txt_sto p{
    color: #ffffff;
    font-size: 50px;
    line-height: 1.6;
    text-shadow: 3px 0 10px rgba(22, 78, 145, 0.4);
    transform: translateY(80px);
    opacity: 0;
    font-weight: bold;
}

.banner .swiper-slide-active .txt_sto p{
    transition: all 2s ease .7s;
    transform: translateY(0);
    opacity: 1;
}

.banner_page {
    position: relative;
    overflow: hidden;
}

.banner_page img{
    animation: banner 4s cubic-bezier(0.25, 0.46, 0.45, 0.94) both 0.3s;
}

.banner_page .txt_sto p{
    transition: all 2s ease .7s;
    transform: translateY(0);
    opacity: 1;
}


@keyframes banner {
    0% {
        -webkit-transform: scale(1.1);
        transform: scale(1.1);
    }

    100% {
        -webkit-transform: scale(1);
        transform: scale(1);
    }
}

/* 业务范围 */
.Business_Scope .out {
    display: flex;
    align-items: center;
    justify-content: space-between;
}

.Business_Scope .public_title {
    margin-bottom: 40px;
    margin-top: 115px;
}

.Business_Scope .out .box {
    width: 20%;
    height: 155px;
    box-shadow: 0px 0px 12px 1px rgba(0, 0, 0, 0.1);
    background: #FFF;

}

.Business_Scope .out .box .img {
    width: 28%;
    /* height: 197px; */
    display: block;
    object-fit: cover;
    margin: 0 auto;
    margin-top: 4px;
}

.Business_Scope .out .box span {
    display: block;
    text-align: center;
    color: #333333;
    font-size: 14px;
    margin-top: 10px;
}

.Business_Scope .out .box .ion {
    width: 52px;
    display: block;
    margin: 0 auto;
    margin-top: 22px;
}

/* Announcement */

.Announcement {
    background: #F3F5F9;
    padding-top: 59px;
    box-sizing: border-box;
    /* margin-top: 60px; */
    padding-bottom: 60px;
}

.Announcement .public_title {
    margin-top: 0px;
    margin-bottom: 50px;
}




.Announcement .out {
    width: 100%;
    background: #FFF;
    padding: 20px;
    box-sizing: border-box;
}

.Tap_title {
    display: flex;
    align-items: center;
    justify-content: center;
    border-bottom: 1px solid #E2E2E2;
    box-sizing: border-box;
    margin-bottom: 40px;
}

.Tap_title .T_box {
    width: 145px;
    height: 60px;
    display: flex;
    align-items: center;
    justify-content: center;
    position: relative;
    cursor: pointer;
}

.Tap_title .T_box::after {
    width: 1px;
    height: 18px;
    background: #999;
    content: '';
    position: absolute;
    right: 0px;
}

 .Tap_title .T_box::before{
    width: 20px;
    height: 20px;
    content: '';
    position: absolute;
    left: 50%;
    margin-left: -10px;
    bottom: -10px;
    background: #0086FF;
    transform: rotate(45deg);
    display: none;
    
}

.Tap_title .T_box img {
    width: 20px;
    display: block;
    margin-right: 5px;
}

 .Tap_title .T_box span {
    color: #333;
    font-size: 16px;
}

.Tap_title .T_box:last-child::after {
    display: none;
}

.Tap_title .T_box:hover , .Tap_title .T_box.all{
    background: #0086FF;
}

 .Tap_title .T_box:hover img ,  .Tap_title .T_box.all img{
    content: var(--image-url) ;
}

 .Tap_title .T_box:hover span ,  .Tap_title .T_box.all span {
    color: #FFF;
}

 .Tap_title .T_box:hover::after  ,  .Tap_title .T_box.all::after{
    display: none;
}

 .Tap_title .T_box:hover::before  , .Tap_title .T_box.all::before{
    display: block;
}

.Announcement .out .swiper-slide a{
    display: flex;
    align-items: center;
    justify-content: space-between;
    padding: 10px 0px;
    
}

.Announcement .out .swiper-slide .Ann_box{
    display: flex;
    align-items: center;
    flex-wrap: wrap;
    justify-content: space-between;
}

.Announcement .out .swiper-slide .box{
    width: 48%;
}

.Announcement .out .swiper-slide .box p{
    width: 80%;
    color: #333333;
    font-size: 15px;
    text-overflow: ellipsis;
    overflow: hidden;
    word-break: break-all;
    white-space: nowrap;
    transition: 0.4s ease;
}

.Announcement .out .swiper-slide .box span{
    width: 20%;
    color: #999999;
    font-size: 12px;
    text-align: right;
    font-weight: 400;
    transition: 0.4s ease;
}


.Announcement .out .box:hover a p,
.Announcement .out .box:hover a span,
.Announcement .out .swiper-slide .title a:hover {
    color: #0086FF;

}

.Announcement .out .swiper-slide .title a:hover img {
    content: url(../images/jiantou3.png);
}

.About .out {
    display: flex;
    align-items: end;
    flex-wrap: wrap;
    justify-content: space-between;
    position: relative;

}

.About .out .left {
    width: 48.6%;
}

.About .out .left .public_title {
    align-items: baseline;
    margin-bottom: 35px;
    /*margin-top: 0px;*/
}

.index_abuto .left .public_title{
    margin-top: 0px;
}

.About .out .left p {
    color: #61666B;
    font-size: 14px;
    line-height: 1.5em;
    letter-spacing: 1px;
}

.About .out .left a {
    width: 110px;
    height: 34px;
    border-radius: 3px 3px 3px 3px;
    border: 1px solid #A5A5A5;
    box-sizing: border-box;
    display: flex;
    align-items: center;
    justify-content: center;
    color: #666666;
    font-size: 12px;
    letter-spacing: 1px;
    font-weight: 400;
    margin-top: 25px;
    margin-bottom: 58px;
    border-radius: 24px;
    transition: 0.4s ease;
}



.About .out .left a img {
    margin-left: 5px;
    height: 10.84px;
    display: block;
}

.About .out .left a:hover {
    color: #FFF;
    border: none;
    background: #0086FF;
}

.About .out .left a:hover img {
    content: url(../images/jiantou2.png);
}

.About .out .rigth {
    width: 46.31%;
    overflow: hidden;
    height: 320px;
}

.About .out .rigth img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    display: block;
}





.About .out .tumble {
    position: absolute;
    left: 0px;
    bottom: -51px;
    display: flex;
    align-items: center;
}

.About .out .tumble .box {
    width: 173px;
    height: 85px;
    border-radius: 5px;
    box-sizing: border-box;
    background: #0086FF;
    margin-right: 44px;
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
}

.About .out .tumble .box b {
    color: #FFFFFF;
    font-size: 26px;
}

.About .out .tumble .box .txt span {
    color: #FFFFFF;
    font-size: 16px;
}

.About .out .tumble .box>span {
    color: #FFFFFF;
    font-size: 16px;
    margin-top: 3px;
}

.About .out .tumble .box:last-child {
    margin-right: 0px;
}

.Banner {
    width: 100%;
    margin-top: 174px;
    margin-bottom: 100px;
}

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


.Culture .swiper-slide {
    width: 320px;
    margin-right: 40px;
}

.Culture .swiper-slide:last-child {
    margin-right: 0px;
}

.Culture .swiper-slide .img {
    width: 100%;
    height: 220px;
}

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

.Culture .swiper-slide span {
    width: 100%;
    height: 37px;
    display: flex;
    align-items: center;
    justify-content: center;
    position: absolute;
    bottom: 0px;
    left: 0px;
    background: rgba(0, 0, 0, 0.4);
    color: #EBEBEB;
    font-size: 14px;
}



.Culture .swiper-button-next:after,
.Culture .swiper-button-prev:after {
    font-size: 20px;
    color: #FFF;
}

.biaoji {
    transform: translateY(-80px);
}

/* ------------------------- */



.Showcase .out {
    position: relative;
}

.Showcase .out .swiper-slide {
    position: relative;
    width: 323px;
    height: 190px;
    margin: 0px 13.5px;
}

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

.Showcase .out .swiper-slide .txt {
    width: 100%;
    height: 37px;
    display: flex;
    align-items: center;
    justify-content: center;
    position: absolute;
    bottom: 0px;
    left: 0px;
    background: rgba(0, 0, 0, 0.2);

}

.Showcase .out .swiper-slide .txt span {
    color: #EBEBEB;
    font-size: 12px;
}

.Showcase .swiper-button-prev {
    left: -47px;
}

.Showcase .swiper-button-next {
    right: -47px;
}


.Showcase .swiper-button-prev::after,
.Showcase .swiper-button-next::after {
    color: #999999;
    font-size: 30px;
}

.Partners .out {
    display: flex;
    flex-wrap: wrap;
    margin-bottom: 60px;
}

.Partners .out .box {
    width: 10%;
    height: 80px;
    margin-right: 1.24%;
    margin-bottom: 20px;
    background: #FFF;
    box-shadow: 0px 0px 10px 1px #99999930;
}

.Partners .out .box img {
    width: 100%;
    height: 100%;
    object-fit: contain;
}

.Partners .out .box:nth-child(9n) {
    margin-right: 0px;
}

/* footer */

.footer {
    width: 100%;
    background: #000000c4;
    padding-top: 64px;
    padding-bottom: 59px;
    box-sizing: border-box;
}

.footer .out {
    display: flex;
}

.footer .out .left {
    width: 29%;
    /* margin-right: 148px; */
}

.footer .out .left .logo {
    width: 208px;
    margin-bottom: 52px;
}

.footer .out .left .box {
    display: flex;
    align-items: center;
    margin-bottom: 15px;
}

.footer .out .left .box:last-child {
    margin-bottom: 0px;
}

.footer .out .left .box span,
.footer .out .left .box a {
    color: #DCDCDC;
    font-size: 14px;
}

.footer .out .right {
    padding-top: 68px;
    box-sizing: border-box;
}

.footer .out .right ul {
    display: flex;
}

.footer .out .right ul li {
    margin-right: 70px;
}

.footer .out .right ul li span {
    display: block;
    color: #FFFFFF;
    font-size: 16px;
    margin-bottom: 20px;
    font-weight: bold;
}

.footer .out .right ul li span:hover {
    color: #0086FF;
}


.footer .out .right ul li a {
    display: block;
    color: #DCDCDC;
    font-size: 15px;
    margin-bottom: 10px;
}

.footer .out .right ul li a:hover {
    color: #0086FF;
}

.blogroll {
    margin-top: 28px;
    display: flex;
    align-items: center;
    flex-wrap: wrap;
    /* display: none; */
}

.News_particulars .out .text strong{
    margin-bottom: 10px;
    display: block;
    margin-top: 10px;
}

.blogroll span {
    color: #DCDCDC;
    font-size: 16px;
}

.blogroll a {
    color: #DCDCDC;
    font-size: 14px;
    margin: 0px 5px;
}

.blogroll a:hover {
    color: #ff4a14;
}

.footer_bottom {
    background: #000000c4;
    height: 56px;
    border-top: 2px solid #c8c8c863;
}

.footer_bottom .out {
    display: flex;
    align-items: center;
    justify-content: space-between;
    height: 100%;
}

.footer_bottom .out a,
.footer_bottom .out span {
    color: #CCCCCC;
    font-size: 14px;
}

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

.team .out .box {
    width: 220px;
    height: 220px;
    border-radius: 50%;
}

.team .out .box img {
    width: 100%;
    height: 100%;
    object-fit: cover;
}

.Honor .out {
    position: relative;
}

.Honor .swiper {
    padding: 50px 0px;
    padding-bottom: 110px;
}

.Honor .swiper-slide {
    width: 190px;
    /* height: 447px; */
    margin: 0px 142px;
    transition: 0.5s ease;
}

.Honor .swiper-slide-active {
    transform: scale(1.2);
}

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

.Honor .swiper-button-next,
.Honor .swiper-button-prev {
    width: 40.54px;
    height: 40.54px;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    background: rgba(0, 0, 0, 0.27);

    top: 39%;
}

.Honor .swiper-button-next:hover,
.Honor .swiper-button-prev:hover {
    background: #0086FF;
}

.Honor .swiper-button-next:after,
.Honor .swiper-button-prev:after {
    font-size: 18px;
    color: #FFF;
}

.Honor .swiper-slide span {
    display: block;
    text-align: center;
    color: #333333;
    font-size: 14px;
    margin-top: 20px;
}

.bidding_page .out {
    margin-bottom: 36px;
}

.bidding_page .out .box {

    box-sizing: border-box;
    border-bottom: 1px dashed #CBCBCB;
    transition: 0.4s ease;
}

.bidding_page .out .box:first-child {
    padding-top: 0px;
}

.bidding_page .out .box a {
    display: flex;
    align-items: center;
    padding: 14px 0px;
    box-sizing: border-box;
}

.bidding_page .out .box p {
    width: 80%;
    color: #333333;
    font-size: 16px;
    text-overflow: ellipsis;
    overflow: hidden;
    word-break: break-all;
    white-space: nowrap;
    /* font-weight: bold; */
    transition: 0.4s ease;
}

.bidding_page .out .box span {
    width: 20%;
    display: block;
    text-align: right;
    color: #999999;
    font-size: 16px;
    transition: 0.4s ease;
}

.bidding_page .out .box span img{
    width: 32px;
}

.bidding_page .out .box:hover span img{
    content: url(../images/xiazai2.png);
}

.bidding_page .out .box:hover p {
    color: #0086FF;
}

.bidding_page .out .box:hover span {
    color: #0086FF;
}

.bidding_page .out .box:hover {
    border-bottom: 1px dashed #0086FF;
}


.bidding_page .Tap_title{
    margin-bottom: 0px;
}

.page .page_out {
    display: flex;
    align-items: center;
    justify-content: center;
    margin-bottom: 60px;
}

.page .page_out a {
    height: 41px;
    width: max-content;
    display: flex;
    align-items: center;
    justify-content: center;
    background: #EEEEEE;
    border-radius: 2px;
    margin-right: 9px;
    color: #555555;
    font-size: 14px;
}

.page .page_out .totalnumber {
    width: 49px;
}

.page .page_out .record {
    width: 66px;
}

.page .page_out a:last-child {
    margin-right: 0px;
}

.page .page_out .YeMa:hover,
.page .page_out .YeMa.all,
.page .page_out .record:hover {
    color: #FFF;
    background: #0086FF;
}

.News_page .out .box {
    transition: 0.5s ease;
    border-radius: 5px;
    overflow: hidden;
    margin-bottom: 50px;
}

.News_page .out .box a {
    display: flex;
    justify-content: space-between;
    align-items: center;
}

.News_page .out .box .left {
    width: 25%;
    height: 199px;
    overflow: hidden;
}

.News_page .out .box .left img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    display: block;
    transition: 0.5s ease;
}

.News_page .out .box .right {
    width: 75%;
    display: flex;
    padding-right: 3%;
}

.News_page .out .box .right .let {
    margin: 0px 35px;
}

.News_page .out .box .right .let h5 {
    color: #333333;
    font-size: 20px;
    margin-bottom: 14px;
}

.News_page .out .box .right .let span {
    color: #333333;
    font-size: 14px;
}

.News_page .out .box .right .rig {
    width: 85%;
}

.News_page .out .box .right .rig h5 {
    color: #333333;
    font-size: 18px;
    margin-bottom: 28px;
    text-overflow: ellipsis;
    overflow: hidden;
    word-break: break-all;
    white-space: nowrap;
    font-weight: 500;
}



.News_page .out .box .right .rig .txt {
    height: 53px;
    overflow: hidden;
}

.News_page .out .box .right .rig p {
    color: #444444;
    font-size: 14px;
    line-height: 1.5em;
    letter-spacing: 1px;
    word-break: break-all;
    overflow: hidden;
    display: -webkit-box;
    -webkit-line-clamp: 2;
    -webkit-box-orient: vertical;

}


.News_page .out .box .right .rig .butt {
    display: flex;
    align-items: center;
    justify-content: center;
    width: 118px;
    height: 36px;
    border: 1px solid #A5A5A5;
    border-radius: 24px;
    box-sizing: border-box;
    margin-top: 26px;
    color: #666666;
    font-size: 12px;
}

.News_page .out .box .right .rig .butt img {
    margin-left: 10px;
    height: 10.84px;
    display: block;
}


.News_page .out .box:hover .right .rig h5 {
    color: #0086FF;
}


.News_page .out .box:hover .right .rig .butt {
    border: none;
    background: #0086FF;
    color: #FFF;
}

.News_page .out .box:hover .right .rig .butt img {
    content: url(../images/jiantou2.png);
}

.News_page .out .box:hover {
    box-shadow: 0px 0px 10px 1px #99999962;
    transform: translateY(-10px);
}

.News_page .out .box:hover .left img {
    transform: scale(0.9);
}

.contact_page .public {
    max-width: 1200px;
}

.contact_page .out {
    display: flex;
    justify-content: space-between;
    /* margin-bottom: 130px; */
}

.contact_page .out .box {
    display: flex;
    flex-direction: column;
    align-items: center;
    width: 20%;
}

.contact_page .out .box img {
    height: 45px;
    display: block;
    margin-bottom: 26px;
}

.contact_page .out .box span {
    display: block;
    margin-bottom: 20px;
    font-size: 16px;
    color: #666666;
}

.contact_page .out .box p {
    height: 30px;
    color: #333333;
    font-size: 15px;
    text-align: center;
}

.News_particulars .public {
    max-width: 1200px;
}

.News_particulars .out {
    margin-top: 60px;
}

.News_particulars .out>h5 {
    color: #333;
    font-size: 26px;
    font-weight: 500;
    text-align: center;
    margin-bottom: 20px;
}

.News_particulars .out .list {
    text-align: center;
    margin-bottom: 40px;
}


.News_particulars .out .list span  {
    color: #666;
    margin: 0px 10px;
    font-size: 14px;
}

.News_particulars .out .list span a{
    color: #0086FF;
    font-size: 14px;
}

.News_particulars .out .text {
    padding-top: 30px;
    border-top: 1px solid #99999967;
    padding-bottom: 40px;
    border-bottom: 1px dashed #9999994d;
    margin-bottom: 40px;
}

.News_particulars .out .text iframe{
    width: 100% !important;
}

.News_particulars .out .text h5{
    font-size: 20px;
    margin-bottom: 20px;
}

.News_particulars .out .text p {
    color: #333;
    font-size: 16px !important;
    line-height: 2em;
    /* letter-spacing: 1px; */
}

.News_particulars .out .text td{
    font-size: 16px !important;
    line-height: 2em;
}

.News_particulars .out .text span {
    font-size: 16px !important;
    line-height: 2em;
}

.News_particulars .out .text p {
    font-weight: 400;
}



.News_particulars .out .text a{
    font-size: 16px !important;
    line-height: 1.7em;
    letter-spacing: 1px;
}

.News_particulars .out .text div{
    margin-bottom: 0px !important;
    font-size: 16px !important;
}



.News_particulars .out .text img,
.News_particulars .out .text video {
    width: auto;
    max-width: 100%;
}

.dropdown {
    display: none;
}

.dropdown img {
    width: 0.6rem;
    display: block;
}


.dropdown.all img {
    content: url(../images/guanbi.png);
}

.dropdown_menu {
    position: absolute;
    width: 100%;
    left: 0px;
    z-index: 9999;
    background: #FFFF;
    padding: 5% 3%;
    box-sizing: border-box;
    box-shadow: 0px 0px 10px 1px #9999992f;
    display: none;
}

.dropdown_menu .box .title {
    display: flex;
    align-items: center;
    padding: 0.1rem 0px;
    justify-content: space-between;
}

.dropdown_menu .box .title a {
    display: block;
    width: 80%;
    /* line-height: 2em; */
    font-size: 0.26rem;
    color: #333;
    box-sizing: border-box;
}

.dropdown_menu .box .title img {
    height: 13px;
    display: block;
    padding: 0px 0.15rem;
    text-align: right;
    transition: 0.4s ease;
}

.dropdown_menu .box .title img.all {
    transform: rotate(90deg);
}

.dropdown_menu .box .min_nav {
    width: 100%;
    padding: 0px 0.3rem;
    display: none;
}

.dropdown_menu .box .min_nav a {
    display: block;
    padding: 0.13rem 0px;
    color: #333;
    font-size: 0.2rem;

}

.contact_page2 {
    margin-bottom: 60px;
}

.contact_page2 .out {
    width: 100%;
}

.contact_page2 .out .box {
    width: 100%;
    display: flex;
    align-items: center;
}

.contact_page2 .out .box a {
    display: flex;
    align-items: center;
    width: 100%;
    height: 70px;
}

.contact_page2 .out .box_title {
    background: #F5F5F5;
    height: 60px;
}

.contact_page2 .out .box_txt {
    border-bottom: 1px dashed rgba(112, 112, 112, 0.3);
}

.contact_page2 .out .box span {
    font-size: 14px;
    color: #666;
    padding-left: 3.6%;
    padding-right: 3.6%;
    box-sizing: border-box;
}


.contact_page2 .out .box .s_1 {
    width: 55%;
}

.contact_page2 .out .box .s_2 {
    width: 15%;
}

.contact_page2 .out .box .s_3 {
    width: 15%;
}

.contact_page2 .out .box .s_4 {
    width: 15%;
}

.contact_page2 .out .box_title span {
    font-weight: bold;
    font-size: 16px;
    padding-left: 3.6%;
    padding-right: 3.6%;
    box-sizing: border-box;
    color: #333;
}

.contact_page2 .out .box_txt:hover span {
    color: #0086FF;
}


.sousuo_box {
    width: 26px;
    position: absolute;
    right: 13%;
    cursor: pointer;
}

.sousuo_box img {
    width: 100%;
    display: block;
}

.sousuo_box.all img {
    content: url(../images/sousuo2.png);
}

.sousuo_box_m {
    width: 100%;
    background: #FFF;
    box-shadow: 0px 0px 10px 1px #0000002e;
    position: fixed;
    top: 90px;
    z-index: 997;
    padding: 40px 0px;
    display: none;
}

.sousuo_box_m form {
    width: 60%;
    margin: 0 auto;
    border: 1px solid #3333335e;
    display: flex;
    align-items: center;
    height: 60px;
    padding: 0px 30px;
    box-sizing: border-box;
}

.sousuo_box_m input {
    width: 100%;
    height: 100%;

}

.sousuo_box_m button {
    width: 30px;
    background: none;
    border: none;
    cursor: pointer;
}

.sousuo_box_m button img {
    width: 100%;
    display: block;
}

.form_box {
    margin-top: 0.4rem;
}

.form_box form {
    width: 100%;
    display: flex;
    align-items: center;
    border: 1px solid #00000036;
    height: 0.8rem;
    padding: 0px 0.3rem;
    box-sizing: border-box;
}

.form_box form input {
    width: 100%;
    font-size: 0.25rem;
}

.form_box form button {
    width: 0.4rem;
    border: none;
    background: none;
}

.form_box form button img {
    width: 100%;
    display: block;
}

.autp_particulars .out{
    margin-top: 0px;
}

.autp_particulars  .out h5{
    margin-bottom: 0px;
}

.autp_particulars .out .text{
    padding-top: 0px;
    border-top: none;
}

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

.Recru_box form{
    border:1px solid #99999961;
    height: 45px;
    border-radius: 1px;
    display: flex;
    align-items: center;
    padding: 0px 10px;
    box-sizing: border-box;
}

.Recru_box form input{
    width: 350px;
    font-size: 14px;
    color: #333;
    height: 100%;
    margin-right: 15px;
}

.Recru_box form input::placeholder{
    font-size: 14px;
    color: #999;
}

.Recru_box form button{
    border: none;
    background: none;
    width: 25px;
    cursor: pointer;
}

.Recru_box form button img{
    width: 100%;
    opacity: 0.5;
}

.consty_particulars .public{
    max-width: 1200px;
}

br{
    content: "";
    margin: 25px;
    display: block;
    font-size: 24%;
}

@media (max-width:992px) {

    br{
        content: "";
        margin: 2em;
        display: block;
        font-size: 24%;
    }

    .News_particulars .out .list span a{
        font-size: 0.14rem;
    }

    .banner {
        margin-top: 0.9rem;
    }

    .banner .txt_sto p{
        font-size: 0.3rem;
        transform: translateY(0.8rem);
    }

    .banner .swiper-pagination{
        bottom: 0.1rem;
    }

    .dropdown {
        display: block;
    }

    .public {
        padding: 0px 2%;
        box-sizing: border-box;
    }

    .nav {
        height: 0.9rem;
    }

    .nav .out .logo {
        height: 0.54rem;
    }

    .nav .out ul li {
        margin-right: 0.1rem;
    }

    .nav .out ul li a {
        font-size: 0.18rem;
    }

    .nav .out ul {
        display: none;
    }

    .public_title {
        margin-top: 0.6rem;
        margin-bottom: 0.4rem;
    }

    .public_title h5 {
        font-size: 0.36rem;
    }

    .public_title i {
        width: 0.89rem;
        height: 0.04rem;
        margin-top: 0.19rem;
    }

    .Business_Scope .out {
        flex-wrap: wrap;
    }

    .Business_Scope .public_title {
        margin-bottom: 0.4rem;
        margin-top: 1.6rem;
    }

    .Business_Scope .out .box {
        width: 48%;
        height: 2.2rem;
        margin-bottom: 0.3rem;
    }

    .Business_Scope .out .box .img {
        margin-top: 0.11rem;
    }

    .Business_Scope .out .box span {
        font-size: 0.24rem;
        margin-top: 0.1rem;
    }

    .Business_Scope .out .box .ion {
        width: 0.52rem;
        margin-top: 0.22rem;
    }

    .Business_Scope .out .box:last-child,
    .Business_Scope .out .box:nth-last-child(2) {
        margin-bottom: 0px;
    }

    .Announcement {
        padding-top: 0.59rem;
        /* margin-top: 0.6rem; */
        padding-bottom: 0.7rem;
    }

    .Announcement .public_title {
        margin-bottom: 0.5rem;
    }

    .Announcement .out{
        padding: 0.2rem;
    }

    .Tap_title .T_box{
        width: 1.4rem;
        height: 0.6rem;
    }

    .Tap_title .T_box span{
        font-size: 0.14rem;
    }

    .Tap_title .T_box img {
        width: 0.2rem;
        display: block;
        margin-right: 0.05rem;
    }

    .Tap_title{
        margin-bottom: 0.4rem;
    }

    .Tap_title .T_box::before {
        width: 0.2rem;
        height: 0.2rem;
        margin-left: -0.1rem;
        bottom: -0.1rem;
    }


    .Announcement .out .box {
        /* padding: 0.13rem 0px; */
        width: 100%;
    }

    .Announcement .out .box p {
        font-size: 0.15rem;
    }

    .Announcement .out .box span {
        font-size: 0.12rem;
        width: 20%;
    }



    /* .Announcement .out .box:first-child, .Announcement .out .box:nth-child(2){
        padding-top: 0.27rem;
    } */

    .Announcement .out .swiper-slide {
        height: auto;
        width: 100%;
        /* margin-bottom: 0.4rem; */
    }



    .About .out .left {
        width: 100%;
    }

    .About .out .left .public_title {
        margin-bottom: 0.35rem;
    }

    .About .out .rigth {
        width: 100%;
        height: 4rem;
    }


    .footer .out .right ul {
        display: none;
    }

    .Showcase .swiper-button-next {
        right: 10px;
    }

    .Showcase .swiper-button-prev {
        left: 10px;
    }

    .About .out .left p {
        font-size: 0.18rem;
    }

    .About .out .left a {
        width: 1.51rem;
        height: 0.48rem;
        border-radius: 0.03rem;
        font-size: 0.16rem;
        letter-spacing: 0.01rem;
        margin-top: 0.43rem;
        margin-bottom: 0.83rem;
        border-radius: 0.24rem;
    }

    .About .out .left a img {
        margin-left: 0.1rem;
        height: 0.184rem;
    }

    .About .out .tumble {
        width: 100%;
        bottom: -0.79rem;
    }

    .About .out .tumble .box {
        width: 24%;
        height: 1.23rem;
        border-radius: 0.07rem;
        margin-right: 2%;
    }

    .About .out .tumble .box b {
        font-size: 0.3rem;
    }

    .About .out .tumble .box .txt span {
        font-size: 0.2rem;
    }

    .About .out .tumble .box>span {
        font-size: 0.16rem;
        margin-top: 0.03rem;
    }



    .Showcase .out .swiper-slide {
        width: 3.23rem;
        height: 2rem;
        margin: 0px 0.135rem;
    }

    .Showcase .out .swiper-slide .txt {
        height: 0.57rem;
    }

    .Showcase .out .swiper-slide .txt span {
        font-size: 0.2rem;
    }

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

    .Partners .out .box {
        width: 18.4%;
        height: 1.07rem;
        margin-right: 2%;
        margin-bottom: 0.4rem;
    }

    .Partners .out .box:nth-child(9n) {
        margin-right: 2%;
    }

    .Partners .out .box:nth-child(5n) {
        margin-right: 0px;
    }

    .Partners .out {
        margin-bottom: 0.6rem;
    }

    .footer {
        padding-top: 0.64rem;
        padding-bottom: 0.59rem;
    }

    .footer .out .left {
        width: 100%;
        margin-right: 0px;
    }

    .footer .out .left .logo {
        width: 2.08rem;
        margin-bottom: 0.52rem;
    }

    .footer .out .left .box {
        margin-bottom: 0.35rem;
    }

    .footer .out .left .box span,
    .footer .out .left .box a {
        font-size: 0.16rem;
    }

    .blogroll {
        margin-top: 0.28rem;
    }

    .blogroll span {
        font-size: 0.18rem;
    }

    .blogroll a {
        font-size: 0.18rem;
        margin: 0px 0.05rem;
    }

    .footer_bottom {
        height: 0.57rem;
    }

    .footer_bottom .out a,
    .footer_bottom .out span {
        font-size: 0.12rem;
    }


    .team .out .box {
        width: 3.82rem;
        height: 3.82rem;
    }

    .Honor .swiper-slide {
        width: 3.20rem;
        height: 4.47rem;
        margin: 0px 0.33rem;
    }

    .Honor .swiper {
        padding: 0.5rem 0px;
        padding-bottom: 2.5rem;
    }

    .Honor .swiper-slide span {
        font-size: 0.22rem;
        margin-top: 0.33rem;
    }


    .Honor .swiper-button-next,
    .Honor .swiper-button-prev {
        width: 0.4rem;
        height: 0.4rem;

    }

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

    .bidding_page .out {
        margin-bottom: 0.36rem;
    }

    .bidding_page .out .box p {
        width: 78%;
        font-size: 0.18rem;

    }

    .bidding_page .out .box span {
        width: 20%;
        font-size: 0.12rem;
    }

    .bidding_page .out .box span img{
        width: 0.32rem;
    }

    /* .bidding_page .out .box{
        padding: 0.12rem 0px;
    } */

    .page .page_out {
        margin-bottom: 0.6rem;
    }

    .page .page_out a {
        height: 0.41rem;
        width: max-content;
        border-radius: 0.02rem;
        margin-right: 0.09rem;
        font-size: 0.16rem;
    }

    .page .page_out .totalnumber {
        width: 0.49rem;
    }

    .page .page_out .record {
        width: 0.66rem;
    }

    .News_page .out .box a {
        flex-wrap: wrap;
    }

    .News_page .out .box .left {
        width: 100%;
        height: 4rem;
    }

    .News_page .out .box .right {
        width: 100%;
        flex-wrap: wrap;
        padding: 3%;
        box-sizing: border-box;
    }

    .News_page .out .box .right .let {
        margin: 0px;
        width: 100%;
    }

    .News_page .out .box .right .let span {
        font-size: 0.2rem;
    }

    .News_page .out .box .right .let h5 {
        color: #333333;
        font-size: 0.36rem;
        margin-bottom: 0.14rem;
    }

    .News_page .out .box .right .rig {
        width: 100%;
    }

    .News_page .out .box .right .rig h5 {
        font-size: 0.22rem;
        margin-bottom: 0.28rem;
    }

    .News_page .out .box .right .rig .txt {
        height: 0.73rem;
    }

    .News_page .out .box .right .rig p {
        font-size: 0.16rem;
    }

    .News_page .out .box .right .rig .butt {
        width: 1.51rem;
        height: 0.48rem;
        border-radius: 0.24rem;
        margin-top: 0.46rem;
        font-size: 0.16rem;
    }

    .News_page .out .box .right .rig .butt img {
        margin-left: 0.1rem;
        height: 0.1rem;
    }

    .News_page .out .box {
        margin-bottom: 0.5rem;
    }

    .contact_page .out .box {
        width: 32%;
    }

    .contact_page .out .box img {
        height: 0.45rem;
        margin-bottom: 0.26rem;
    }

    .contact_page .out .box span {
        margin-bottom: 0.2rem;
        font-size: 0.18rem;
    }

    .contact_page .out .box p {
        height: 0.3rem;
        font-size: 0.14rem;
    }

    .contact_page2 .out .box_title span {
        font-size: 0.16rem;
    }

    .contact_page2 .out .box_title{
        height: 0.6rem;
    }

    .contact_page2 .out .box .s_1{
        width: 40%;
    }

    .contact_page2 .out .box .s_2 , .contact_page2 .out .box .s_3 , .contact_page2 .out .box .s_4{
        width: 20%;
    }

    .contact_page2 .out .box span{
        font-size: 0.14rem;
    }

    .contact_page2 .out .box a{
        height: 0.7rem;
    }

    .contact_page2{
        margin-bottom: 0.6rem;
    }


    .News_particulars .out {
        margin-top: 0.6rem;
    }

    .News_particulars .out h5 {
        font-size: 0.26rem;
        margin-bottom: 0.2rem;
    }

    .News_particulars .out .list {
        margin-bottom: 0.4rem;
        display: flex;
        justify-content: center;
        flex-wrap: wrap;
    }

    .News_particulars .out .list span {
        margin: 0px 0.05rem;
        font-size: 0.16rem;
    }

    .News_particulars .out .list span:nth-child(3){
        margin-top: 0.1rem;
        width: 100%;
    }

    .News_particulars .out .text {
        padding-top: 0.25rem;
        padding-bottom: 0.4rem;
        margin-bottom: 0.4rem;
    }

    .News_particulars .out .text p ,.News_particulars .out .text td {
        font-size: 0.18rem !important;
    }

    .News_particulars .out .text span{
        font-size: 0.18rem !important;
    }

    .News_particulars .out .text a{
        font-size: 0.18rem !important;
    }

    .News_particulars .out .text div{
        font-size: 0.18rem !important;
    }
    

    .News_particulars .out .text strong{
        font-size: 0.18rem !important;
        margin: 0.05rem 0px !important;
    }

    .News_particulars .out .text strong span{
        font-size: 0.18rem !important;
    }

    .Announcement .out .swiper-slide .title h5 {
        font-size: 0.2rem;
    }

    .Announcement .out .swiper-slide .title a {
        font-size: 0.14rem;
    }

    .Announcement .out .swiper-slide .title a img {
        height: 0.1rem;
    }

    .Announcement .out .swiper-slide .title h5 img {
        height: 0.25rem;
        margin-right: 0.1rem;
    }

    .Announcement .out .swiper-slide .title {
        padding: 0.15rem 0.2rem;
    }

    .Announcement .out .swiper-slide .box {
        /* padding: 0.2rem; */
        width: 100%;
    }
    

    .Announcement .out .swiper-slide a{
        padding: 0.1rem 0px;
    }

    .Announcement .out .swiper-slide .box p{
        font-size: 0.15rem;
    }

    .Announcement .out .swiper-slide .box span{
        font-size: 0.12rem;
    }

    .Culture .swiper-slide {
        width: 3.20rem;
        margin-right: 0.4rem;
    }

    .Culture .swiper-slide .img {
        height: 2.2rem;
    }

    .Culture .swiper-slide span {
        margin-top: 0.2rem;
        font-size: 0.16rem;
    }

    .sousuo_box {
        display: none;
    }

    .Recru_box{
        margin-top:0.4rem;
        flex-wrap: wrap;
        flex-direction: column-reverse;
    }

    .Recru_box .Tap_title{
        width: 100%;
    }

    .Recru_box .ystai{
        width: 100%;
        display: flex;
        justify-content: right;
        margin-bottom: 0.4rem;
    }

    .Recru_box form {
        height: 0.45rem;
        padding: 0px 0.1rem;
    }

    .Recru_box form input {
        width: 3.5rem;
        font-size: 0.14rem;

        margin-right: 0.15rem;
    }

    .Recru_box form input::placeholder{
        font-size: 0.14rem;
    }

    .Recru_box form button{
        width: 0.25rem;
    }

}


@media (min-width:993px) and (max-width:1450px) {
    .public {
        padding: 0px 2%;
        box-sizing: border-box;
    }

    .nav .out ul {
        /* width: 85%; */
        margin-right: 16px;
    }

    .sousuo_box {
        right: 1%;
    }

    .nav .out ul li {
        margin-right: 60px;
    }

    .Business_Scope .out .box {
        width: 24%;
    }

    .Announcement .out .box span {
        width: 20%;
    }

    .Announcement .out .box p {
        width: 78%;
    }

    .About .out .left p {
        font-size: 14px;
    }

    .Showcase .swiper-button-prev {
        left: 0px;
    }

    .Showcase .swiper-button-next {
        right: 0px;
    }

    .Partners .out .box {
        width: 17.6%;
        margin-right: 3%;
    }

    .footer .out .right {
        width: 50%;
    }

    .footer .out .right ul li:last-child {
        margin-right: 0px;
    }


    .footer .out .right ul li {
        margin-right: 10%;
    }

    .News_page .out .box .right .rig {
        width: 45vw;

        padding-right: 5%;
        box-sizing: border-box;
    }

    .Business_Scope .out .box .img {
        width: 30%;
    }

    .Announcement .out .box span {
        width: 30%;
    }

}

@media (min-width:1451px) and (max-width:1600px) {
    .Showcase .swiper-button-next {
        right: 10px;
    }

    .Showcase .swiper-button-prev {
        left: 10px;
    }
}


@media (min-width:1200px) and (max-width:1450px) {
    .nav .out ul {
        width: auto;
        /* margin-right: 60px; */
    }

    .nav .out ul li {
        margin-right: 70px;
    }
}

@media (min-width:1390px) and (max-width:1400px) {
    .sousuo_box {
        right: 0.5%;
    }
}

@media (min-width:1400px) and (max-width:1650px) {
    .nav .out ul {
        /* margin-right: 60px; */
    }

    .sousuo_box {
        right: 4.5%;
    }
}

@media (min-width:1650px) and (max-width:1800px) {
    .nav .out ul {
        /* margin-right: 60px; */
    }

    .sousuo_box {
        right: 7.5%;
    }
}