@charset "utf-8";

* {
    margin: 0;
    padding: 0;
}

@font-face {
    font-family: "YouSheBiaoTiHei";
    src: url("../fonts/YouSheBiaoTiHei.ttf") format("truetype");
    font-weight: normal;
    font-style: normal;
}

@font-face {
    font-family: "Oswald";
    src: url("../fonts/Oswald.ttf") format("truetype");
    font-weight: normal;
    font-style: normal;
}

/*初始化样式*/
body {
    margin: 0px;
    padding: 0px;
    margin: 0px auto;
    zoom: 1;

    /*设置字体*/
    font-size: 18px;
    line-height: 2;
    font-family: sans-serif;
    color: #333;
    /*设置宽度*/
    width: 100%;
}

ul, li, form, dl, dt, dd, div {
    padding: 0px;
    margin: 0px;
}

.ul, .ul li {
    list-style: none;
}

.h1, .h2, .h3, .h4, .h5, .h6, .p {
    padding: 0px;
    margin: 0px;
}

select, input, textarea {
    border-radius: 0;
    -webkit-border-radius: 0;
    color: #333;
}

input:focus {
    outline: none;
}

/*强制去除表单自带的样式*/
input, button, select, textarea {
    outline: none;
    /*-webkit-appearance:none;*/
}

/*强制去除textarea自带的样式*/
textarea {
    resize: none;
    /*-webkit-appearance:none;*/
}

textarea, input, select {
    background: none;
    border: none;
    margin: 0;
    padding: 0;
}

/*html5设置*/
article, aside, footer, header, hgroup, nav, section, figure, figcaption {
    display: block;
}

figure, figcaption {
    margin: 0px;
    padding: 0px;
}

audio, canvas, progress, video {
    display: inline-block;
    vertical-align: baseline;
}

img {
    border: none;
    border: 0;
    vertical-align: baseline;
    display: block;
}

a {
    font-size: inherit;
    color: inherit;
    text-decoration: none;
    noline: -webkit-tap-highlight-color:rgba(0, 0, 0, 0);
}

a:focus {
    outline: none;
    -moz-outline: none;
}

a:hover {
    text-decoration: none;
    color: #0A3590;
}

ul, li {
    list-style: none;
    font-style: normal;
}

* {
    font-style: normal;
}

/*清楚浮动*/
.clear {
    clear: both;
    height: 0px;
    overflow: hidden;
}




.pulbicCon {
    width: 94%;
    max-width: 16rem;
    margin: 0 auto;

}


.hide {
    display: none;
}

.show {
    display: block;
}

.imgBox {
    width: 100%;
    display: block;
}

.pc {
    display: block;
}

.mobile {
    display: none;
}

@media screen and (max-width:1024px) {
    .pc {
        display: none;
    }

    .mobile {
        display: block;
    }


}

/*初始化样式*/

.pulbicTitle {
    font-size: 0.6rem;
    line-height: 1;
    text-align: center;
    display: flex;
    align-items: center;
    justify-content: center;
    padding-top: 0.14rem;
    margin-top: 0.8rem;
    margin-bottom: 0.8rem;
}

.pulbicTitle div {
    position: relative;
}

.pulbicTitle div::after {
    content: '';
    display: block;
    width: 0.17rem;
    height: 0.17rem;
    background-image: url(../images/titleIcon.png);
    background-size: 0.17rem;
    background-repeat: no-repeat;
    position: absolute;
    right: -0.14rem;
    top: -0.14rem;
}

.pulbicConPadding {
    padding-bottom: 1.2rem;
    width: 100%;
}

.news.pulbicConPadding .pulbicCon {
   
    margin-top: 0.8rem;
}

@media screen and (max-width:768px) {
    .pulbicTitle {
        font-size: 24px;
        margin-top: 30px;
        margin-bottom: 30px;
    }

    .pulbicConPadding {
        padding-bottom: 30px;
    }
}

/* .newsList */
.newsList {
    display: flex;
    flex-direction: row;
    flex-wrap: wrap;
}

.newsList .item {
    width: calc(100% / 3 - 0.42rem);
    margin-right: 0.63rem;
    margin-bottom: 0.63rem;
}

.newsList .item:nth-child(3n) {
    margin-right: 0;
}

.newsList .item .imgBox {
    width: 100%;
    height: 3.35rem;
    overflow: hidden;
}

.newsList .item .imgBox img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: all 0.3s ease;
    -webkit-transition: all 0.3s ease;
    -moz-transition: all 0.3s ease;
    -ms-transition: all 0.3s ease;
    -o-transition: all 0.3s ease;
}

.newsList .time {
    color: #999999;
    line-height: 1;
    margin-top: 0.34rem;
}

.newsList .title {
    line-height: 0.4rem;
    color: #333;
    margin-top: 0.2rem;
}

.newsList .intro {
    color: #888888;
    line-height: 1.5;
    margin-top: 0.14rem;
}

.newsList .more {
    width: 0.6rem;
    height: 0.6rem;
    background-image: url(../images/arrowRightGray.png);
    background-size: 0.6rem;
    background-repeat: no-repeat;
    display: block;
    margin-top: 0.3rem;
    transition: all 0.3s ease;
    -webkit-transition: all 0.3s ease;
    -moz-transition: all 0.3s ease;
    -ms-transition: all 0.3s ease;
    -o-transition: all 0.3s ease;
}

.newsList .item:hover .imgBox img {
    transform: scale(1.1);
    -webkit-transform: scale(1.1);
    -moz-transform: scale(1.1);
    -ms-transform: scale(1.1);
    -o-transform: scale(1.1);
}

.newsList .item:hover .title {
    color: #0A3590;
}

.newsList .item:hover .more {
    background-image: url(../images/arrowRightRed.png);
}

@media screen and (max-width:1024px) {
    .newsList {
        justify-content: space-between;
    }

    .newsList .item .imgBox {
        height: auto;
    }

    .newsList .item {
        width: calc(50% - 0.32rem);
        margin-right: 0;
    }
}

@media screen and (max-width:1024px) {
    .newsList .item {
        width: calc(50% - 8px);
        margin-right: 0;
        margin-bottom: 16px;
    }

    .newsList .more {
        width: 36px;
        height: 36px;
        background-size: 36px;
    }
}

.newsCon {
    padding: 0 0.8rem;
}

.newsConHead {
    display: flex;
    flex-direction: column;
    align-items: center;
    border-bottom: 1px solid #ebecee;
    padding-bottom: 0.5rem;
}

.newsConHead .title {
    font-size: 0.26rem;
    color: #252525;
    line-height: 0.64rem;
    margin-top: 0.6rem;
    margin-bottom: 0.14rem;
    text-align: center;
}

.newsConHead .time {
    font-size: 0.18rem;
    color: #8F97A4;
    line-height: 1;
}

.newsCon .singlePage {
    padding-top: 0.5rem;
}

@media screen and (max-width:768px) {
    .newsCon {
        padding: 0 16px;
    }

    .newsConHead .title {
        font-size: 18px;
    }

    .newsConHead .time {
        font-size: 14px;
    }
}

.PrevNextBox {
    display: flex;
    justify-content: space-between;
    align-items: center;
    border-top: 1px solid #E6E6E6;
    padding-top: 0.42rem;
    padding-bottom: 0.42rem;
    margin-top: 0.5rem;
}

.PrevNextBox .left a {
    font-size: 0.16rem;
    color: #999999;
    display: flex;
    align-items: center;
    line-height: 2;
}

.PrevNextBox .left a div {
    color: #333;
    flex: 1;
    overflow: hidden;
    white-space: nowrap;
    text-overflow: ellipsis;
}

.PrevNextBox .left a:hover,
.PrevNextBox .left a:hover div {
    color: #0A3590;
}

.PrevNextBox .more a {
    width: 1.9rem;
    height: 0.6rem;
    border: 1px solid #0A3590;
    color: #0A3590;
    display: flex;
    align-items: center;
    font-size: 0.16rem;
    justify-content: flex-start;
    background-image: url(../images/arrowRightBlue.png);
    background-size: 0.18rem 0.07rem;
    background-repeat: no-repeat;
    background-position: right 0.3rem center;
    padding-right: 0.17rem;
    transition: all 0.3s ease;
    -webkit-transition: all 0.3s ease;
    -moz-transition: all 0.3s ease;
    -ms-transition: all 0.3s ease;
    -o-transition: all 0.3s ease;
    padding-left: 0.3rem;
}

.PrevNextBox .more a:hover {
    background-color: #0A3590;
    color: #fff;
    background-image: url(../images/arrowRightWhite.png);
}

@media screen and (max-width:768px) {
    .PrevNextBox {
        flex-direction: column;
        align-items: flex-start;
    }

    .PrevNextBox .left a {
        font-size: 14px;
    }

    .PrevNextBox .more {
        display: flex;
        justify-content: center;
        width: 100%;
    }

    .PrevNextBox .more a {
        font-size: 12px;
        margin: 16px auto 0 auto;
        background-size: 14px;
    }

}

.capacity {
    display: flex;
    flex-direction: row;
    flex-wrap: wrap;
}

.capacity .item {
    width: calc(100% / 3 - 0.63rem);
    margin-right: 0.63rem;
    background: #F7F8FA;
    padding: 0.4rem;
    margin-bottom: 0.63rem;
}

.capacity .item:nth-child(3n) {
    margin-right: 0;
}

.capacity .item .imgBox {
    width: 100%;
    height: 100%;
    overflow: hidden;
}

.capacity .item .imgBox img {
    width: 100%;
    height: 100%;
    transition: all 0.3s ease;
    -webkit-transition: all 0.3s ease;
    -moz-transition: all 0.3s ease;
    -ms-transition: all 0.3s ease;
    -o-transition: all 0.3s ease;
}

.capacity .item:hover img {
    transform: scale(1.1);
    -webkit-transform: scale(1.1);
    -moz-transform: scale(1.1);
    -ms-transform: scale(1.1);
    -o-transform: scale(1.1);
}

@media screen and (max-width:1024px) {
    .capacity {
        display: flex;
        justify-content: space-between;
    }

    .capacity .item {
        width: calc(50% - 8px);
        margin-right: 0;
        margin-bottom: 16px;
    }
}

@media screen and (max-width:768px) {
    .capacity .item {
        padding: 10px;
    }
}

.control .item {
    margin-bottom: 0.78rem;
}

.control .itemCon {
    width: 100%;
    display: flex;
    cursor: auto;
}

.control .item .imgBox {
    width: 9.15rem;
    height: 5.37rem;
    overflow: hidden;
}

.control .item .imgBox img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: all 0.3s ease;
    -webkit-transition: all 0.3s ease;
    -moz-transition: all 0.3s ease;
    -ms-transition: all 0.3s ease;
    -o-transition: all 0.3s ease;
}

.control .controlCon {
    border-bottom: 1px solid #E3E3E3;
    padding: 0 1.2rem 0 0.6rem;
    flex: 1;
    position: relative;
}

.control .controlCon::after {
    content: '';
    display: block;
    width: 0.84rem;
    height: 0.74rem;
    background-image: url(../images/mh.png);
    background-size: 0.84rem;
    background-repeat: no-repeat;
    position: absolute;
    top: 0.64rem;
    right: 0.7rem;
}

.control .num {
    line-height: 1;
    color: #0A3590;
    opacity: 0.2;
    margin-top: 1.12rem;
}

.control .title {
    line-height: 1.5;
    margin-top: 0.07rem;
}

.control .intro {
    padding-top: 0.52rem;
}

.control .intro * {
    font-size: inherit !important;
    color: inherit !important;
    line-height: 1.5 !important;
    margin-bottom: 0.26rem !important;
    position: relative;
    padding-left: 0.2rem;
}

.control .intro *::before {
    content: '';
    display: block;
    width: 0.1rem;
    height: 0.1rem;
    background-image: url(../images/dot.png);
    background-size: 0.1rem;
    background-repeat: no-repeat;
    position: absolute;
    left: 0;
    top: 0.07rem;
}

.control .item:hover img {
    transform: scale(1.1);
    -webkit-transform: scale(1.1);
    -moz-transform: scale(1.1);
    -ms-transform: scale(1.1);
    -o-transform: scale(1.1);
}

.control .item:nth-child(2n) .itemCon {
    flex-direction: row-reverse;
}

@media screen and (max-width:1024px) {
    .control .item .imgBox {
        width: 51.1875%;
        height: auto;
    }

    .control .num {
        margin-top: 0;
    }
}

@media screen and (max-width:768px) {
    .control .itemCon {
        flex-direction: column !important;
    }

    .control .item .imgBox {
        width: 100%;
        height: auto;
    }

    .control .controlCon {
        padding: 16px;
    }

    .control .item {
        margin-bottom: 16px;
    }

    .control .intro *::before {
        width: 10px;
        height: 10px;
        background-size: 10px;
        left: 0;
        top: 7px;
    }

    .control .intro * {
        padding-left: 20px;
        margin-bottom: 0.14rem !important;
    }

    .control .intro {
        font-size: 14px;
        padding-top: 0.2rem;
    }
}


.product .itemCon {
    display: flex;
    flex-direction: row;
}

.HoverLabel li {
    display: flex;
    align-items: center;
}

.HoverLabel label {
    display: block;
    width: 100%;
    font-size: 0.16rem;
    padding-left: 0.14rem;
}

.HoverLabel li input {
    width: 0.22rem;
    height: 0.22rem;
}

@media screen and (max-width:1024px) {
    .HoverLabel label {
        font-size: 14px;
    }
}

.product .more {
    width: 1.9rem;
    height: 0.6rem;
    background-color: #0A3590;
    color: #fff;
    display: flex;
    align-items: center;
    font-size: 0.16rem;
    justify-content: flex-start;
    background-image: url(../images/arrowRightWhite.png);
    background-size: 0.18rem 0.07rem;
    background-repeat: no-repeat;
    background-position: right 0.3rem center;
    padding-right: 0.17rem;
    transition: all 0.3s ease;
    -webkit-transition: all 0.3s ease;
    -moz-transition: all 0.3s ease;
    -ms-transition: all 0.3s ease;
    -o-transition: all 0.3s ease;
    padding-left: 0.3rem;
    margin-top: 0.76rem;
}

.product .item {
    margin-bottom: 0.6rem;
}

.product .itemCon {
    height: 6rem;
}

.product .itemCon .left {
    width: 6.3rem;
    height: 100%;
    background: #F7F8FA;
    display: flex;
    flex-direction: column;
    justify-content: center;
    padding: 0 0.86rem;
}

.product .itemCon .imgBox {
    flex: 1;
    height: 100%;
    background-image: url(../images/product_bg.png);
    background-size: cover;
    background-repeat: no-repeat;
    background-position: right center;
    display: flex;
    align-items: center;
    justify-content: center;
    padding: 0.1rem;
    overflow: hidden;
}

.product .itemCon .imgBox img {
    max-width: 100%;
    max-height: 100%;
    transition: all 0.3s ease;
    -webkit-transition: all 0.3s ease;
    -moz-transition: all 0.3s ease;
    -ms-transition: all 0.3s ease;
    -o-transition: all 0.3s ease;
}

.product .title {
    line-height: 1;
}

.product .intro {
    display: flex;
    flex-wrap: wrap;
    margin-top: 0.2rem;
    margin-bottom: 0.6rem;
}

.product .intro * {
    font-size: inherit !important;
    color: inherit !important;
    margin-right: 0.46rem;
}

.product .intro *:last-child {
    margin-right: 0;
}

.product .item:hover img {
    transform: scale(1.1);
    -webkit-transform: scale(1.1);
    -moz-transform: scale(1.1);
    -ms-transform: scale(1.1);
    -o-transform: scale(1.1);
}

@media screen and (max-width:1024px) {
    .product .itemCon .left {
        width: 50%;
        padding: 0 0.4rem;
    }
}

@media screen and (max-width:768px) {
    .product .itemCon {
        height: auto;
        flex-direction: column-reverse;
    }

    .product .itemCon .left {
        width: 100%;
        padding: 16px;
    }

    .product .itemCon .imgBox {
        width: 100%
    }

    .product .more {
        font-size: 12px;
        background-size: 14px;
        margin-top: 16px;
    }

    .product .intro {
        margin-bottom: 10px;
    }

    .product .itemCon .imgBox {
        padding: 30px;
    }
}

.proDetail {
    display: flex;
    flex-wrap: wrap;
}

.proDetail .item {
    width: calc(25% - 0.3rem);
    margin-right: 0.4rem;
}

.proDetail .item:nth-child(4n) {
    margin-right: 0;
}

.proDetail .item .imgBox {
    width: 100%;
    height: 4rem;
    display: flex;
    align-items: center;
    justify-content: center;
    overflow: hidden;
    background-image: url(../images/product_dBg.png);
    background-size: cover;
}

.proDetail .item .imgBox img {
    max-width: 80%;
    min-width: 50%;
    transition: all 0.3s ease;
    -webkit-transition: all 0.3s ease;
    -moz-transition: all 0.3s ease;
    -ms-transition: all 0.3s ease;
    -o-transition: all 0.3s ease;
}

.proDetail .item .title {
    text-align: center;
    line-height: 1;
    width: 100%;
    overflow: hidden;
    white-space: nowrap;
    text-overflow: ellipsis;
    margin-top: 0.3rem;
    margin-bottom: 0.4rem;
}

.proDetail .item:hover img {
    transform: scale(1.1);
    -webkit-transform: scale(1.1);
    -moz-transform: scale(1.1);
    -ms-transform: scale(1.1);
    -o-transform: scale(1.1);
}

.proDetailIntro {
    display: flex;
    flex-direction: row;
    background: #F7F8FA;
    padding: 0.9rem 1rem 1rem 0;
    margin-top: 0.8rem;
}

.proDetailIntro .left {
    width: 7.9rem;
    max-width: 49.375%;
    height: 100%;
    display: flex;
    align-items: center;
    justify-content: center;
    padding-top: 0.52rem;
}

.proDetailIntro .left img {
    max-width: 80%;
}

.proDetailIntro .iconList {
    display: flex;
    flex-wrap: wrap;
    padding-left: 0.8rem;
    padding-right: 2.6rem;
}

.proDetailIntro .iconList dd {
    display: flex;
    align-items: center;
    width: 1.9rem;
    margin-top: 0.24rem;
    color: #555;
}

.proDetailIntro .iconList dd img {
    display: block;
    width: 0.5rem;
    height: 0.5rem;
    border-radius: 50%;
    background-image: url(../images/jd.png);
    background-size: 0.5rem;
    margin-right: 0.2rem;
}

.proDetailIntro .iconList dd:nth-child(2)::before {
    background-image: url(../images/nx.png);
}

.proDetailIntro .iconList dd:nth-child(3)::before {
    background-image: url(../images/jg.png);
}

.proDetailIntro .iconList dd:nth-child(4)::before {
    background-image: url(../images/wx.png);
}

.proDetailIntro .right {
    flex: 1;
    width: 8.1rem;
    max-width: calc(100% - 49.375%);
}

.proDetailIntro .title {
    padding-left: 0.8rem;
}

.proDetailIntro .intro {
    padding-left: 0.8rem;
    margin-top: 0.24rem;
    margin-bottom: 0.18rem;
}

.sliderBox {
    width: 100%;
    padding-left: 0.8rem;
    padding-right: 0.8rem;
    margin-top: 0.5rem;
}

.sliderBox .item {
    display: flex !important;
    justify-content: center;
}

.sliderBox .itemCon {
    width: 1.6rem;
    height: 1.2rem;
    background: #FFFFFF;
    display: flex;
    justify-content: center;
    align-items: center;
}

.sliderBox .itemCon .imgBox {
    width: 100%;
    height: 100%;
    display: flex;
    justify-content: center;
    align-items: center;
    padding-top: 0.1rem;
}

.sliderBox .itemCon .imgBox img {
    min-width: 50%;
}

.tab_liBox {
    width: 100%;
    overflow-x: auto;
    margin-top: 0.5rem;
}

.tab_liBox .tab_li {
    width: 100%;
    overflow-x: auto;
    overflow-y: hidden;
    list-style: none;
    padding: 0;
    margin: 0;
    display: flex;
    background: #F6F8FA;
    height: 0.94rem;
    margin-bottom: 0.3rem;
}

.tab_liBox .tab_li span {
    flex: 0 0 auto;
    font-size: 0.18rem;
    cursor: pointer;
    height: 100%;
    transition: all 0.3s ease;
    -webkit-transition: all 0.3s ease;
    -moz-transition: all 0.3s ease;
    -ms-transition: all 0.3s ease;
    -o-transition: all 0.3s ease;
    display: inline-flex;
    align-items: center;
    width: 2.56rem;
    max-width: 25%;
    justify-content: center;
}

.tab_liBox .tab_li span:hover, .tab_liBox span.on {
    color: #0B3483;
}

.nones {
    position: absolute;
    visibility: hidden;
    opacity: 0;
    top: 0;
    width: 100%;
    z-index: -10;
    left: 0;
}

.tab_liBox .tab_li span {
    position: relative;
    display: flex;
    transition: all ease 0.3s;
}

.tab_liBox .tab_li span::after {
    content: '';
    height: 0.02rem;
    background-color: #0B3483;
    display: block;
    position: absolute;
    left: 50%;
    top: 0;
    transform: all 0.5s ease;
    width: 0;
    transition: all ease 0.3s;
}

.tab_liBox .tab_li span:hover::after, .tab_liBox .tab_li span.on::after {
    left: 0;
    width: 100%;
    color: #0B3483;
}

.tab_info .info * {
    font-size: 0.16rem;
    color: #888888;
    line-height: 0.7rem;
    border-bottom: 1px solid #dedede;
}

@media screen and (max-width:1024px) {
    .proDetailIntro .iconList {
        padding-right: 0;
    }

    .proDetail {
        display: flex;
        flex-direction: row;
        justify-content: space-between;
    }

    .proDetail .item {
        width: calc(50% - 8px);
        margin-right: 0 !important;
    }
}

@media screen and (max-width:768px) {
    .proDetailIntro {
        flex-direction: column;
        padding: 16px;
    }

    .proDetailIntro .left {
        width: 100%;
        max-width: 100%;
    }

    .proDetailIntro .right {
        width: 100%;
        max-width: 100%;
    }

    .proDetailIntro .title {
        padding-left: 0;
    }

    .proDetailIntro .intro {
        padding-left: 0;
        font-size: 14px;
    }

    .proDetailIntro .iconList dd {
        width: 50%;
    }

    .proDetailIntro .iconList {
        padding-left: 0;
    }

    .sliderBox .itemCon {
        width: auto;
        height: auto;
        padding: 10px;
    }

    .proDetail .item .imgBox {
        height: auto;
        padding: 30px 16px;
    }

    .proDetail .item .imgBox img {
        height: 90px;
    }

    .proDetailIntro .iconList dd::before {
        width: 36px;
        height: 36px;
        background-size: 36px;
    }

    .tab_liBox .tab_li span {
        width: 25%;
        font-size: 15px;
    }

    .tab_info .info * {
        font-size: 14px;
        line-height: 36px;
    }
}

.message {
    width: 100%;
    height: 9.6rem;
    background-image: url(../uploadfiles/image/zxBg.jpg);
    background-size: cover;
    background-repeat: no-repeat;
    background-position: center bottom;
    padding-bottom: 0.75rem;
}

.message .pulbicCon {
    height: 100%;
    display: flex;
    flex-direction: row;
    justify-content: space-between;
    align-items: flex-end;
}

.message .title {
    font-size: 0.34rem;
    line-height: 0.48rem;
    color: #fff;
    margin-bottom: 0.5rem;
}

.message .right {
    width: 6.2rem;
    height: 7.1rem;
    background-color: #fff;
    padding: 0.42rem 0.6rem 0.6rem 0.6rem;
}

.message .right .pulbicTitle {
    text-align: left;
    justify-content: flex-start;
    margin-top: 0px;
    margin-bottom: 0px;
}

.message .form {
    display: flex;
    flex-direction: row;
    flex-wrap: wrap;
    justify-content: space-between;
}

.message .form input, .message .form textarea {
    width: 100%;
    padding-bottom: 0.14rem;
    padding-top: 0.14rem;
    font-size: 0.16rem;
    border-bottom: 1px solid #dedede;
    line-height: 1.5;
    margin-top: 0.26rem;
}

.message .form input:nth-child(1), .message .form input:nth-child(2) {
    width: calc(50% - 0.2rem);
}

.message .btn {
    width: 100%;
    height: 0.6rem;
    background: #0A3591;
    color: #fff;
    cursor: pointer;
}

@media screen and (max-width:768px) {
    .message {
        height: auto;
        padding-top: 100px;
    }

    .message .pulbicCon {
        display: flex;
        flex-direction: column-reverse;
    }

    .message .right {
        width: 100%;
        height: auto;
        background-color: #fff;
        padding: 20px;
        margin-bottom: 16px;
    }

    .message .form input, .message .form textarea {
        font-size: 14px;
    }

    .message .btn {
        height: 36px;
    }

    .message .title {
        font-size: 16px;
        line-height: 30px;
        width: 100%;
    }
}

.about {
    display: flex;
    flex-direction: row;
    justify-content: space-between;
}

.about .title {
    line-height: 1;
    margin-bottom: 0.27rem;
    margin-top: 1.6rem;
}

.about .pulbicTitle {
    align-items: flex-start;
    margin-top: 1.46rem;
}

.about .title span {
    color: #0A3590;
}

.about .right {
    width: 8rem;
    max-width: 50%;
}

.about .right .intro {
    margin-bottom: 0.9rem;
    font-size: 0.16rem;
    line-height: 1.5;
}

.about .right .intro * {
    font-size: inherit !important;
    line-height: inherit !important;
}

.aboutCompany {
    width: 100%;
}

.gsImg {
    width: 100%;
}

.aboutCompanyCon {
    padding: 0.6rem;
    margin-top: -1.1rem;
    position: relative;
    background-color: #fff;
    max-width: 17.2rem;
}

.oneList {
    display: flex;
    flex-direction: row;
    flex-wrap: wrap;
    justify-content: space-between;
    margin-bottom: 1.5rem;
}

.oneList img {
    width: 0.56rem;
}

.oneList .item, .twoList .item {
    width: calc(50% - 0.4rem);
}

.oneList .item .font28 {
    margin-top: 0.46rem;
    margin-bottom: 0.18rem;
}

.twoList {
    display: flex;
    flex-direction: row;
    flex-wrap: wrap;
    justify-content: space-between;
    margin-bottom: 1.5rem;
}

.twoList .imgBox img {
    width: 100%;
}

.twoList .title {
    color: #0A3590;
    line-height: 1;
    margin-top: 0.4rem;
}

.twoList .intro {
    line-height: 1.8;
    margin-top: 0.17rem;
}

.twoList .item .imgBox{
    width: 100%;
    overflow: hidden;
}
.twoList .item .imgBox img{
    width: 100%;
    transition: all 0.3s ease;
    -webkit-transition: all 0.3s ease;
    -moz-transition: all 0.3s ease;
    -ms-transition: all 0.3s ease;
    -o-transition: all 0.3s ease;
}
.twoList .item:hover img{
    transform: scale(1.1);
    -webkit-transform: scale(1.1);
    -moz-transform: scale(1.1);
    -ms-transform: scale(1.1);
    -o-transform: scale(1.1);
}
.scbj {
    width: 100%;
    height: 8.6rem;
    background-image: url(../images/scbjBg.jpg);
    background-size: cover;
    background-repeat: no-repeat;
    background-position: right bottom;
}

.scbj .pulbicCon {
    display: flex;
    flex-direction: column;
    height: 100%;
    justify-content: center;
    color: #fff;
}

.scbj .pulbicTitle {
    justify-content: flex-start;
    margin-top: 0;
}

.scbj .pulbicTitle div::after {
    background-image: url(../images/titleIconWhite.png);
}

.scbj .title {
    color: #fff;
    line-height: 1;
}

.scbj .intro {
    font-size: 0.16rem;
    line-height: 1.5;
    max-width: 7.1rem;
}

.scbj .intro * {
    margin-top: 0.27rem;
    font-size: inherit !important;
    color: inherit !important;
}

.ryzs {
    width: 100%;
    height: 8.2rem;
    /*background-image: url(../images/ryzsBg.jpg);*/
    background-size: cover;
    background-repeat: no-repeat;
    background-position: bottom center;
    padding-top: 0.2rem;
}

.ryzs .pulbicTitle {
    margin-bottom: 0.52rem;
}

.ryzs .intro {
    text-align: center;
    font-size: 0.16rem;
    line-height: 1.5;
}

.ryzs .slick-next {
    width: 0.6rem;
    height: 0.6rem;
    background-color: transparent;
    background-image: url(../images/arrrGray.png) !important;
    background-repeat: no-repeat;
    background-size: 0.18rem !important;
    background-position: center center;
    border: 1px solid #b8b8b8;
}

.ryzs .slick-prev {
    width: 0.6rem;
    height: 0.6rem;
    background-color: transparent;
    background-image: url(../images/arrlGray.png) !important;
    background-repeat: no-repeat;
    background-size: 0.18rem !important;
    background-position: center center;
    border: 1px solid #b8b8b8;
}

.ryzs .slick-next:hover {
    background-color: #0A3590;
    background-image: url(../images/arrrWhite.png) !important;
}

.ryzs .slick-prev:hover {
    background-color: #0A3590;
    background-image: url(../images/arrlWhite.png) !important;
}

.ryzs .sliderBox .itemCon {
    width: 3.81rem;
    height: 2.8rem;
    border-radius: 0.1rem;
    -webkit-border-radius: 0.1rem;
    -moz-border-radius: 0.1rem;
    -ms-border-radius: 0.1rem;
    -o-border-radius: 0.1rem;
    background-image: url(../images/zhengBg.png);
    background-size: cover;
    background-color: transparent;
}

.ryzs .sliderBox .itemCon img {
    width: 3.27rem;
    height: 2.25rem;
    cursor:auto;
}

.ryzs .itemCon .imgBox {
    padding-top: 0;
}

.ryzs .sliderBox {
    margin-top: 0.84rem;
}

@media screen and (max-width:768px) {
    .about {
        flex-direction: column;
    }

    .about .right {
        width: 100%;
        max-width: 100%;
    }

    .about .pulbicTitle {
        margin-top: 30px;
    }

    .about .title {
        margin-bottom: 10px;
        margin-top: 0px;
        font-size: 18px;
    }

    .about .right .intro {
        margin-bottom: 16px;
        font-size: 15px;
        line-height: 30px;
    }

    .oneList .item, .twoList .item {
        width: 100%;
        margin-bottom: 16px;
    }

    .aboutCompanyCon {
        padding: 0px;
        margin-top: 16px;
        background-color: transparent;
        max-width: 16rem;
    }

    .oneList {
        margin-bottom: 0px;
    }

    .twoList {
        margin-bottom: 0px;
    }

    .ryzs .intro {
        font-size: 15px;
        text-align: left;
    }

    .oneList img {
        width: 36px;
    }

    .aboutCompany .font16 {
        font-size: 15px !important;
    }
}


/* fzlc start */
.fzlc {
    width: 100%;
    height: 9.3rem;
    background-image: url(../images/fzlcBg.jpg);
    background-size: cover;
    background-position: bottom center;
}

.fzlcBox {
    background-image: url(../images/fzlcLine.png);
    background-repeat: no-repeat;
    background-position: bottom 2rem left 0.3rem;
    width: 100%;
    height: 100%;
    background-size: contain;
}

.fzlc .fzlcBox, .fzlc .slick-list {
    height: 100%;
}

.fzlc .pulbicCon {
    height: 100%;
    position: relative;
    max-width: 94%;
    margin-left: 6%;
}

.fzlc .slick-slider {
    height: 100%;
}

.fzlc .slick-track {
    height: 100%;
}

.fzlc .pulbicTitle {
    position: absolute;
    top: 1.76rem;
    margin-top: 0;
    margin-bottom: 0;
}

.fzlc .item {
    width: 100%;
    height: 100%;
}

.fzlc .itemCon {
    position: relative;
    display: flex;
    justify-content: space-between;
    padding-top: 1.46rem;
    max-width: 16rem;
    width: 97%;
}

.fzlc .itemCon .left {
    flex: 1;
}

.fzlc .itemCon .time {
    font-weight: bold;
    font-size: 2.5rem;
    color: #0A3590;
    position: absolute;
    left: 5.3rem;
    bottom: -1.23rem;
    line-height: 1.5;
}

.fzlc .itemCon .imgBox {
    width: 5.8rem;
    height: 5.8rem;
    border-radius: 50%;
    border: 0.03rem solid #0A3590;
}

.fzlc .itemCon .imgBox img {
    width: 100%;
    height: 100%;
    border-radius: 50%;
}

.fzlc .itemCon .title {
    font-size: 0.34rem;
    color: #0A3590;
    margin-top: 1.7rem;
}

.fzlc .itemCon .intro {
    font-size: 0.16rem;
    margin-top: 0.27rem;
    max-width: 7.3rem;
    color: #333;
    max-height: 1.3rem;
    overflow: auto;
    overflow-x: hidden;
}


.fzlc .slick-prev:hover{
    background-image: url(../images/arrowLeftRed.png) !important;
}



.fzlc .slick-prev {
    left: calc(50% - 0.76rem);
    right: auto;
    bottom: 0.5rem;
    top: auto;
    background-image: url(../images/arrowLeftGray.png) !important;
}

.fzlc .slick-next {
    left: auto;
    right: calc(50% - 0.76rem);
    bottom: 0.5rem;
    top: auto;
    background-image: url(../images/arrowRightGray.png) !important;
}

.fzlc .slick-next:hover{
    background-image: url(../images/arrowRightRed.png) !important;
}

.fzlc .slick-arrow {
    width: 0.66rem;
    height: 0.66rem;
    transform: translate(0px, 0px);
    background-repeat: no-repeat;
}

@media screen and (min-width:1680px) and (max-width:1920px) {
    .fzlc .itemCon .time {
        left: 6.3rem;
    }
}


@media screen and (max-width:1024px) {
    .fzlc .itemCon .time {
        font-size: 1.5rem;
        bottom: -0.5rem;
        left: 2.2rem;
    }


}

@media screen and (max-width:768px) {
    .fzlc {
        height: auto;
        padding-bottom: 1.22rem;

    }

    .fzlc .itemCon .imgBox {
        width: 3rem;
        height: 3rem;
        border: 3px solid #0A3590;
        margin-top: 2rem;
    }

    .fzlc .pulbicCon {
        margin-left: 3%;
    }

    .fzlc .pulbicTitle {
        position: static;
        margin-top: 30px;
        margin-bottom: 30px;
    }

    .fzlc .itemCon {
        padding-top: 0px;
    }

    .fzlc .itemCon .title {
        font-size: 18px;
        color: #0A3590;
        margin-top: 0px;
    }

    .fzlc .itemCon .intro {
        font-size: 14px;
        max-width: 100%;
        height: auto;
        max-height: 2.5rem;
    }

    .fzlcBox {
        background-position: bottom 0rem left 0.3rem;
    }

    .fzlc .itemCon .time {
        font-size: 1rem;
        bottom: -0.3rem;
        left: 2rem;
    }
    .fzlc .slick-prev {
        left: calc(50% - 0.76rem);
        right: auto;
        bottom: -1rem;
    }
    .fzlc .slick-next {
        left: auto;
        right: calc(50% - 0.76rem);
        bottom: -1rem;
    }
}

/* fzlc end */


/* 未选中状态下的背景色和边框色 */
input[type="checkbox"] {
    background-color: #fff; /* 或你想要的任何颜色 */
    border: 2px solid #ddd; /* 或你想要的任何颜色 */
  }
   
  /* 当选中时，背景色和边框色 */
  input[type="checkbox"]:checked {
    background-color: #033491; /* 选中时的背景颜色 */
    border: 2px solid #033491; /* 选中时的边框颜色 */
    background-image: url(../images/checkBoxIcon.png);
    background-size: cover;
  }
   
  /* 可选：隐藏原生的checkbox样式 */
  input[type="checkbox"] {
    -webkit-appearance: none; /* 移除iOS默认样式 */
    -moz-appearance: none; /* 移除Firefox默认样式 */
    appearance: none; /* 移除其他浏览器默认样式 */
    outline: none; /* 移除点击时的轮廓 */
  }
  @media screen and (min-width:1025px){
      .sec-4{
          background: rgb(212, 231, 238);
          overflow: hidden;
      }
      .indexdevBg {
        width: 100%;
        height: 9.6rem !important;
        object-fit: initial !important;
    }
    .deveSlider{
        height:9.6rem !important;
    }
    .Banner002910 .slick-slide img {
   
    min-height: 100vh;
}
  }