.home-about {
    padding: 100px 0;
}

.home-about .aboutrow {
    display: flex;
    justify-content: space-between;
}

.home-about .aboutrow .leftabout {
    width: 52%;
}

.home-about .aboutrow .leftabout img {
    width: 100%;
    height: 100%;
}

.home-about .aboutrow .rightabout {
    width: 43%;
}

.home-about .aboutrow .rightabout .abouttitle h3 {
    font-weight: 700;
    font-size: 42px;
}

.home-about .aboutrow .rightabout .abouttitle h5 {
    font-size: 28px;
    font-weight: 700;
}

.home-about .aboutrow .rightabout .abouttext {
    line-height: 2;
    text-indent: 2em;
    margin: 30px 0 50px 0;
}

.home-about .aboutrow .rightabout ul {
    display: flex;
    justify-content: space-around;
}

.home-about .aboutrow .rightabout ul li {
    display: flex;
    flex-direction: column;
    align-items: center;
}

.home-about .aboutrow .rightabout ul li img {
    max-width: 100%;
    height: auto;
    margin-bottom: 10px;
}

.home-about .aboutrow .rightabout ul li p {
    margin-bottom: 0;
}

.home-product {
    padding: 0 0 80px 0;
    background-color: #f8f8f8;
}

.home-product ul {
    display: flex;
    justify-content: space-between;
    margin: 50px 0;
}

.home-product ul li {
    width: 20%;
    background-color: #fff;
    color: #373b84;
    text-align: center;
    padding: 10px 0;
    font-size: 24px;
    border-radius: 20px;
    cursor: pointer;
}

.home-product ul li.on,
.home-product ul li:hover {
    background-color: #373b84;
    color: #fff;
    -webkit-transition: all .3s;
    -moz-transition: all .3s;
    -o-transition: all .3s;
    transition: all .3s;
}

.home-product .home-productitem {
    margin-bottom: 40px;
    background-color: #fff;
}

.home-product .home-productitem .proimg {
    overflow: hidden;
    height: 20vw;
}

.home-product .home-productitem .proimg img {
    width: 100%;
    height: 100%;
    object-fit: contain;
    -webkit-transition: all .5s;
    -moz-transition: all .5s;
    -o-transition: all .5s;
    transition: all .5s;
}

.home-product .home-productitem:hover .proimg img {
    transform: scale(1.1);
}

.home-product .home-productitem p {
    margin-bottom: 0;
    color: #7b7f7e;
    font-size: 20px;
    text-align: center;
    padding: 0 10px 20px 10px;
    display: -webkit-box;
    -webkit-line-clamp: 1;
    -webkit-box-orient: vertical;
    text-overflow: ellipsis;
    overflow: hidden;
}

.home-img img {
    width: 100%;
    height: 100%;
}

.home-case {
    background-color: #f8f8f8;
    padding: 0 0 100px 0;
}

.home-adv {
    padding-bottom: 100px;
}

.home-adv .advimg {
    margin-top: -120px;
    position: relative;
    z-index: -1;
}

.home-adv .advimg img {
    width: 100%;
    height: 100%;
    object-fit: contain;
}

.home-news {
    background-color: #f8f8f8;
    padding-bottom: 100px;
}

.home-news ul {
    display: flex;
    align-items: center;
    justify-content: flex-end;
    margin: 50px 0;
}

.home-news ul li {
    background-color: #fff;
    color: #333;
    font-size: 20px;
    width: 150px;
    height: 40px;
    line-height: 40px;
    text-align: center;
    cursor: pointer;
}

.home-news ul li.on,
.home-news ul li:hover {
    background-color: #0167cb;
    color: #fff;
}

.home-news .newsrow {
    display: flex;
    justify-content: space-between;
    flex-wrap: wrap;
}

.home-news .newsrow .newsbox {
    width: 49%;
    background-color: #f4f4f4;
    padding: 20px 30px;
    margin-bottom: 20px;
    display: flex;
    justify-content: space-between;
}

.home-news .newsrow .newsbox .newsboximg {
    overflow: hidden;
    height: 10vw;
    width: 30%;
}

.home-news .newsrow .newsbox .newsboximg img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    -webkit-transition: all .3s;
    -moz-transition: all .3s;
    -o-transition: all .3s;
    transition: all .3s;
}

.home-news .newsrow .newsbox .newsboxtext {
    width: 65%;
}

.home-news .newsrow .newsbox .newsboxtext .ntitle {
    font-size: 18px;
    display: -webkit-box;
    -webkit-box-orient: vertical;
    -webkit-line-clamp: 1;
    text-overflow: ellipsis;
    overflow: hidden;
    margin-bottom: 5px;
}

.home-news .newsrow .newsbox .newsboxtext .ndata {
    font-size: 14px;
    margin-bottom: 20px;
}

.home-news .newsrow .newsbox .newsboxtext .ncontent {
    font-size: 14px;
    display: -webkit-box;
    -webkit-box-orient: vertical;
    -webkit-line-clamp: 2;
    text-overflow: ellipsis;
    overflow: hidden;
    margin-bottom: 20px;
}

.home-news .newsrow .newsbox .newsboxtext .nmore a {
    display: block;
    width: 100px;
    height: 30px;
    line-height: 30px;
    text-align: center;
    background-color: #a7a7a7;
    color: #fff;
    font-size: 14px;
}

.home-news .newsrow .newsbox:hover {
    background-color: #0167cb;
    -webkit-transition: all .3s;
    -moz-transition: all .3s;
    -o-transition: all .3s;
    transition: all .3s;
}

.home-news .newsrow .newsbox:hover .newsboximg img {
    transform: scale(1.1);
}

.home-news .newsrow .newsbox:hover .newsboxtext .ntitle,
.home-news .newsrow .newsbox:hover .newsboxtext .ndata,
.home-news .newsrow .newsbox:hover .newsboxtext .ncontent {
    color: #fff;
    -webkit-transition: all .3s;
    -moz-transition: all .3s;
    -o-transition: all .3s;
    transition: all .3s;
}

.home-news .newsrow .newsbox:hover .newsboxtext .nmore a {
    background-color: #fff;
    color: #0167cb;
    -webkit-transition: all .3s;
    -moz-transition: all .3s;
    -o-transition: all .3s;
    transition: all .3s;
}

.m2menu {
    text-align: center;
    padding: 24px 0 10px 0;
    background: #efefef;
}

.m2menu a {
    margin: 0px 30px 15px;
    line-height: 55px;
    height: 55px;
    background: #EEEEEE;
    display: inline-block;
    font-size: 20px;
    padding: 0px 35px;
    border-radius: 0.1em;
    letter-spacing: 1px;
}

.m2menu_a {
    margin: 0px 15px 15px;
    line-height: 68px;
    height: 68px;
    background: #EEEEEE;
    display: inline-block;
    font-size: 24px;
    padding: 0px 55px;
    color: #555;
    border-radius: 0.1em;
    letter-spacing: 1px;
}

.m2micon {
    display: inline-block;
    height: 40px;
    width: 40px;
    margin-right: 7px;
    position: relative;
    top: -3px;
}

.m2menu_a text,
.m2micon {
    vertical-align: middle;
}

.m2micon img {
    position: absolute;
    left: 0;
    top: 0;
    transition: all 0.5s ease-in-out;
}

.m2micon .iOpacity {
    opacity: 0;
}

.m2menu_a:hover img {
    opacity: 0;
}

.m2menu_a:hover img.iOpacity,
.m2menu_a.on img.iOpacity {
    opacity: 1;
}

.m2menu_a:hover,
.m2menu_a.on {
    color: #FFF;
    background: #373B84;
}

.newscontent {
    padding: 70px 0;
}

.divBox {
    width: 80%;
    margin: 0 auto;
}

.xwzx_con1_u1 .divBox {
    font-size: 0;
}

.xwzx_con1_u1 li {
    position: relative;
}

.xwzx_con1_u1 li a {
    display: block;
    padding: 30px 0;
    position: relative;
    z-index: 2;
}

.xwzx_con1_u1 li:nth-child(even) {
    background: #f6f6f6;
}

.xwzx_con1_left {
    display: inline-block;
    vertical-align: middle;
    width: 248px;
    overflow: hidden;
}

.xwzx_con1_left img {
    width: 100%;
    transition: 0.3s ease-out;
}

.xwzx_con1_middle {
    width: 185px;
    display: inline-block;
    vertical-align: middle;
    text-align: center;
}

.xwzx_con1_right {
    width: calc(100% - 233px);
    display: inline-block;
    vertical-align: middle;
    box-sizing: border-box;
    border-left: 1px solid #e5e5e5;
    padding-left: 60px;
    padding-right: 100px;
    position: relative;
    transition: 0.3s ease-out;
}

.xwzx_con1_right:after {
    content: '/';
    display: block;
    font-size: 20px;
    color: #282828;
    position: absolute;
    right: 0;
    top: 50%;
    margin-top: -10px;
    transition: 0.3s ease-in-out;
}

.xwzx_con1_right h1 {
    font-size: 20px;
    color: #282828;
    transition: 0.3s ease-out;
    font-weight: bold;
}

.xwzx_con1_right h1:before {
    content: '';
    display: inline-block;
    width: 0;
    height: 1px;
    background: #282828;
    vertical-align: middle;
    transition: 0.3s ease-in-out;
}

.xwzx_con1_right p {
    font-size: 16px;
    line-height: 25px;
    color: #999999;
    margin-top: 10px;
    padding-left: 5px;
    display: -webkit-box;
    -webkit-box-orient: vertical;
    -webkit-line-clamp: 2;
    text-overflow: ellipsis;
    overflow: hidden;
}

.xwzx_con1_middle h2 {
    font-size: 40px;
    color: #2c3238;
    font-family: arial;
    transition: 0.3s ease-out;
}

.xwzx_con1_middle time {
    display: block;
    font-size: 16px;
    color: #999;
    transition: 0.3s ease-out;
}

.xwzx_con1_u1 li:hover .xwzx_con1_right h1:before {
    width: 20px;
    margin-right: 10px;
}

.xwzx_con1_u1 li:hover .xwzx_con1_left img {
    transform: scale(1.05);
}

.xwzx_con1_u1 li:hover .xwzx_con1_right:after {
    transform: rotate(180deg);
    color: #373B84;
}

.xwzx_con1_u1 li:hover:after {
    opacity: 1;
}

.xwzx_con1_u1 li:hover .xwzx_con1_right {
    border-left: 1px solid rgba(250, 250, 250, .2);
}

.xwzx_con1_u1 li:hover .xwzx_con1_right h1 {
    color: #373B84;
}

.xwzx_con1_u1 li:hover .xwzx_con1_right h1:before {
    background: #373B84;
}

.xwzx_con1_u1 li:hover .xwzx_con1_middle h2 {
    color: #373B84;
}

.news_details .ndh h1 {
    font-size: 30px;
    color: #363636;
    font-weight: bold;
    margin-bottom: 10px;
    line-height: 1.7;
    text-align: center;
}

.news_details .ndh .newsbar {
    font-size: 14px;
    color: #9e9e9e;
    line-height: 35px;
    border-bottom: 1px dashed #cfcfcf;
    margin-bottom: 20px;
    display: flex;
    justify-content: center;
}

.news_details .ndh .newsbar .newsbartime {
    margin-right: 20px;
}

.news_details .ndc {
    line-height: 2;
}

.news_details .ndc img,
.news_details .ndc video {
    max-width: 100%;
    height: auto;
}

.news_details .content_text {
    margin-top: 50px;
}

.aboutmain {
    padding: 100px 0;
}

.aboutcontent h2 {
    font-size: 36px;
    color: #333;
    text-align: center;
    font-weight: bold;
    position: relative;
    line-height: 36px;
    padding-bottom: 20px;
}

.aboutcontent h2::after {
    content: "";
    position: absolute;
    left: 50%;
    bottom: 0px;
    width: 40px;
    height: 3px;
    background: #285dad;
    margin-left: -20px;
}

.aboutcontent .aboutinfo {
    margin: 30px auto;
    line-height: 2;
    color: #666;
    font-size: 18px;
}

.aboutcontent .aboutinfo img {
    max-width: 100%;
}

.position {
    padding: 20px 0;
    background-color: #f3f3f3;
    font-size: 14px;
}

.position a {
    color: #333;
    margin: 0 5px;
}

.position a:first-child {
    margin-left: 0;
}

.position a:last-child {
    margin-right: 0;
}

.position a:hover {
    color: #373B84;
}

.productmain {
    padding: 70px 0;
}

.productcontent {
    display: flex;
    justify-content: space-between;
}

.nyleft {
    width: 20%;
}

.nyleftList {
    background: #f6f6f6;
    border-bottom: 3px solid #285dad;
    box-shadow: 0px 5px 20px 0px rgba(51, 51, 51, 0.2);
}

.nyleftList>li {
    border-bottom: 1px solid #e5e5e5;
}

.nyleftList>li:last-child {
    border-bottom: 0;
}

.nyleftList>li>p {
    margin-bottom: 0;
    display: flex;
    align-items: center;
}

.nyleftList>li>p a {
    color: #333;
    display: block;
    width: 100%;
    margin: 0 0 0 6%;
    font-size: 16px;
    padding: 20px 0;
}

.nyleftList>li:hover,
.nyleftList>li.on {
    background-color: #373B84;
    -webkit-transition: all .3s;
    -moz-transition: all .3s;
    -o-transition: all .3s;
    transition: all .3s;
}

.nyleftList>li:hover>p>a,
.nyleftList>li.on>p>a {
    color: #fff;
}

.product-catelog {
    border: 1px solid #dee2e6;
    background: #f6f6f6;
    padding: 1rem;
    margin-bottom: 15px;
    margin-top: 40px;
    box-shadow: 0px 5px 20px 0px rgba(51, 51, 51, 0.2);
}

.product-catelog h2 {
    font-size: 18px;
    font-weight: 700;
    margin: 0;
    text-transform: capitalize;
}

.product-catelog h2 a {
    color: #274d7c;
}

.product-catelog ul {
    margin: 20px 0 0 0;
    padding: 0
}

.product-catelog ul li {
    border-bottom: 1px solid #dee2e6;
}

.product-catelog ul li a {
    padding: 7px 0;
    display: inline-block;
    color: #888;
}

.product-catelog ul li .con {
    padding: 7px 0;
    color: #888;
    font-size: 15px;
}

.product-catelog ul li .con a {
    padding: 0;
}

.nyright {
    width: 75%;
}

.productitem {
    margin-bottom: 20px;
    border: 1px solid #eeeeee;
    -webkit-transition: all .5s;
    -moz-transition: all .5s;
    -o-transition: all .5s;
    transition: all .5s;
}

.productitem .productimg {
    overflow: hidden;
    height: 18vw;
}

.productitem .productimg img {
    width: 100%;
    height: 100%;
    object-fit: contain;
    -webkit-transition: all .5s;
    -moz-transition: all .5s;
    -o-transition: all .5s;
    transition: all .5s;
}

.productitem .producttext {
    padding: 15px 10px;
    text-align: center;
    color: #5a5a5a;
    background-color: #f1f1f1;
    white-space: nowrap;
    text-overflow: ellipsis;
    overflow: hidden;
}

.productitem:hover .productimg img {
    transform: scale(1.1);
}

.productitem:hover {
    border: 1px solid #0E61C9;
}

.probox {
    background: #f7f7f7;
}

.probox .proinfo {
    display: flex;
    padding: 1.5rem;
}

.probox .proinfo .proinfoimg {
    width: 43%;
    overflow: hidden;
}

.probox .proinfo .proinfoimg img {
    max-width: 100%;
    height: auto;
}

.probox .proinfo .protxt {
    padding-top: .5rem;
    width: calc(100% - 43% - 2.5rem);
    margin-left: 2.25rem;
}

.probox .proinfo .protxt .tit3 {
    color: #555;
    font-size: 28px;
    padding-bottom: 15px;
    margin-bottom: 15px;
    border-bottom: 1px solid #ddd;
}

.probox .proinfo .protxt .p2 {
    margin-bottom: 1.25rem;
}

.probox .proinfo .protxt .p2 .tipli {
    padding-left: 35px;
    margin-bottom: 10px;
    background: url(../images/proicon1.png) no-repeat left 5px;
    background-size: 18px 18px;
    min-height: 24px;
    line-height: 26px;
}

.probox .proinfo .f-nobtn {
    display: flex;
}

.probox .proinfo .f-nobtn a {
    width: 150px;
    height: 50px;
    line-height: 50px;
    border-radius: 8px;
    text-align: center;
    background: #285dad;
    color: #fff;
    -webkit-transition: all .3s ease-in-out;
    -o-transition: all .3s ease-in-out;
    transition: all .3s ease-in-out;
}

.prodetail {
    padding-bottom: 2rem;
}

.prodetail .protitle,
.hotpro .protitle {
    height: 60px;
    line-height: 58px;
    background: #fff;
    border-bottom: solid 1px #f0f0f0;
    margin-bottom: 20px;
}

.prodetail .protitle span,
.hotpro .protitle span {
    float: left;
    font-size: 20px;
    line-height: 58px;
    font-weight: bold;
    color: #285dad;
    border-bottom: solid 2px #285dad;
}

.prodetail .itemlibox {
    line-height: 2;
}

.prodetail .itemlibox .rise {
    text-indent: 2em;
    margin-bottom: 20px;
    border: 1px solid #f1f1f1;
    padding: 0 10px;
}

.prodetail .itemlibox .rise a {
    color: #333;
}

.prodetail .itemlibox img {
    max-width: 100%;
}

.prodetail .itemlibox table {
    margin-bottom: 1rem;
}

.prodetail .itemlibox table thead th {
    text-align: center;
    border: 1px solid #808080;
}

.prodetail .itemlibox table p {
    margin-bottom: 0;
}

.hotpro .hotitem {
    background-color: #f9f9f9;
    border: 1px solid #eee;
    margin-bottom: 20px;
}

.hotpro .hotitem .hotimg {
    height: 15vw;
}

.hotpro .hotitem .hotimg img {
    width: 100%;
    height: 100%;
    object-fit: contain;
}

.hotpro .hotitem .hottxt {
    text-align: center;
    color: #333;
    white-space: nowrap;
    text-overflow: ellipsis;
    overflow: hidden;
    padding: 20px 10px;
}

.hotpro .hotitem .protbox {
    position: relative;
}

.hotpro .hotitem .protbox .showBox {
    position: absolute;
    top: 0px;
    left: 0px;
    width: 100%;
    height: 100%;
    opacity: 0;
    background: rgba(0, 0, 0, .6);
    transition: all 0.5s ease;
}

.hotpro .hotitem .protbox .showBox .showBoxLink {
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    display: block;
    width: 80%;
    color: #fff;
    text-align: center;
    font-size: 1rem;
    padding: 0.5rem 0;
}

.hotpro .hotitem .protbox .showBox .showBoxLink::before {
    content: '';
    position: absolute;
    top: 0px;
    left: 50%;
    transform: translateX(-50%);
    width: 60%;
    height: 1px;
    background: #fff;
    transition: all .5s ease;
}

.hotpro .hotitem .protbox .showBox .showBoxLink::after {
    content: '';
    position: absolute;
    bottom: 0px;
    left: 50%;
    transform: translateX(-50%);
    width: 60%;
    height: 1px;
    background: #fff;
    transition: all .5s ease;
}

.hotpro .hotitem:hover .protbox .showBox {
    opacity: 1;
}

.hotpro .hotitem:hover .protbox .showBox .showBoxLink::before,
.hotpro .hotitem:hover .protbox .showBox .showBoxLink::after {
    width: 1rem;
}

.contactinfo {
    margin-top: 50px;
    display: flex;
}

.contactinfo .leftcontact {
    width: 50%;
    background-color: #373B84;
    padding: 30px;
}

.contactinfo .leftcontact h3 {
    color: #fff;
    font-size: 24px;
    font-weight: 700;
    margin-bottom: 20px;
}

.contactinfo .leftcontact ul li {
    color: #fff;
    line-height: 2;
}

.contactinfo .leftcontact ul li a {
    color: #fff;
}

.contactinfo .leftcontact ul li:last-child {
    margin-top: 20px;
}

.contactinfo .rightcontact {
    width: 50%;
}

.contactinfo .rightcontact img {
    width: 100%;
    height: 100%;
    object-fit: cover;
}