body {
    margin: 0;
    padding: 0;
}


/* 隐藏滚动条 */


/* ::-webkit-scrollbar { */


/* display: none; */


/* Chrome Safari */


/* } */


/* 头部 */

.header-box {
    width: 100%;
    height: 120px;
    background-color: #fff;
}

.header-left {
    width: 40%;
    height: 100%;
    float: left;
    padding-left:60px;
}

.header-left img {
    width: 158px;
    height: 36px;
	padding-top:30px;
}

.en-name {
    width: 100%;
    color: #13102b;
    font-size: 16px;
    font-weight: 700;
    padding-top: 10px;
	height: 20px;
    line-height: 20px;
}


/* 导航栏 */

.header-right {
    width: 45%;
    height: 100%;
    float: right;
}

.nav {
  margin: 40px auto;
  padding: 0px;
}

.nav li {
  list-style-type: none;
  float: left;
  margin-right:10px;
}
.nav li:hover {
  background-color: #0741C0;
  border-radius:10px;
}
.nav li:hover a {
  color: #fff;
}
.hide {
  display: none;
}
.product_hover:hover .hide {
  background: #fff;
  display: block;
  border-radius:10px;
}
.product_hover:hover .hide a {
  color: #13102b;
  font-size: 18px !important;

}
.hide_box:hover {
  background: #231E4A;
  border-radius:10px;
}
.hide_box:hover .aaa {
  color: #fff !important;
}
.hide_box:hover .product_hover {
  background: #fff !important;
  color: #0741C0 !important;
}

.bg-cat {
  background-color: #0741C0;
  border-radius: 10px;
}
.bg-cat a {
  color: white;
}

li a {
    display: block;
    width: 100px;
    height: 40px;
    font-family: Microsoft Yahei;
    line-height: 40px;
    margin: 0px 0px;
    color: black;
    text-align: center;
    text-decoration: none;
    font-size: 20px;
}

.product_list_box {
    width: 100px;
    display: none;
    position: absolute;
    text-align: center;
    cursor: pointer;
    font-size: 14px;
    z-index: 1;
}

.list {
    width: 100%;
    height: 40px;
    line-height: 40px;
    display: block;
    color: black;
}

.product_toggle {
    /* transition:height 2s; */
    z-index: 1;
}

.product_toggle:hover .product_list_box {
    display: block;
}


/* 轮播图 */


/* 首页产品服务 */

.product_box {
    width: 100%;
    margin: 0 auto;
    overflow: hidden;
    background-color: white;
    padding-bottom: 50px;
}

.product_title {
    position: relative;
    width: 180px;
    line-height: 50px;
    margin: 0 auto;
    margin-bottom: 60px;
    margin-top: 60px;
    text-align: center;
    color: #fff;
    font-size: 22px;
    border: 2px solid #0741C0;
    border-radius: 10px;
    background: #0741C0;
    transition: all 0.3s;
    cursor: pointer;
    letter-spacing: 3px;
}

.product_title span {
    font-size: 12px;
}

.product_title:hover {
    filter: contrast(1.1);
}

.product_title:active {
    filter: contrast(0.9);
}

.product_title::before,
.product_title::after {
    content: "";
    position: absolute;
    top: -10px;
    left: -10px;
    right: -10px;
    bottom: -10px;
    border: 2px solid #0741C0;
    transition: all 0.5s;
    animation: clippath 3s infinite linear;
    border-radius: 10px;
}

.product_title::after {
    animation: clippath 3s infinite -1.5s linear;
}

@keyframes clippath {
    0%,
    100% {
        clip-path: inset(0 0 98% 0);
    }
    25% {
        clip-path: inset(0 98% 0 0);
    }
    50% {
        clip-path: inset(98% 0 0 0);
    }
    75% {
        clip-path: inset(0 0 0 98%);
    }
}

.items_box {
    width: 85%;
    margin: 0 auto;
    overflow: hidden;
}

.product_items {
    height: 280px;
    margin: 0 auto;
    overflow-y: hidden;
    overflow-x: scroll;
    white-space: nowrap;
}

.product_items::-webkit-scrollbar {
    height: 12px;
    scrollbar-arrow-color: red;
}

.product_items::-webkit-scrollbar-thumb {
    /*滚动条里面小方块*/
    border-radius: 5px;
    -webkit-box-shadow: inset 0 0 5px rgba(55, 137, 245, 0.2);
    background: rgba(55, 137, 245, 0.1);
    scrollbar-arrow-color: red;
}

.product_items::-webkit-scrollbar-track {
    /*滚动条里面轨道*/
    -webkit-box-shadow: inset 0 0 5px rgba(105, 164, 241, 0.2);
    border-radius: 0;
    background: rgba(105, 164, 241, 0.1);
}

.product_list {
    width: 260px;
    height: 200px;
    padding: 20px 30px;
    position: relative;
    display: inline-block;
    color: black;
}

.product_list img {
    width: 260px;
    height: 140px;
}

.list_name {
    width: 100%;
    height: 40px;
    line-height: 40px;
    font-size: 20px;
    text-align: center;
}

.list_brief {
    width: 100%;
    /* white-space: pre-wrap; */
    font-size: 14px;
    text-align: center;
}


/*主体—产品*/

.main-product {
    padding-top: 30px;
    padding-bottom: 50px;
    background-color: #fff;
}

.main-product p {
    font-size: 16px;
    color: #ababab;
    line-height: 28px;
    text-overflow: -o-ellipsis-lastline;
    overflow: hidden;
    text-overflow: ellipsis;
    display: -webkit-box;
    -webkit-line-clamp: 1;
    line-clamp: 1;
    -webkit-box-orient: vertical;
}

.main-product p.title,
.main-service p.title {
    color: #484848;
    font-size: 24px;
    text-align: center;
    line-height: 160px;
}

.main-product p.title span,
.main-service p.title span {
    color: #13102b;
}

.main-product .content {
    border: 1px solid #dedede;
    text-align: center;
    transition: 0.3s;
}

.main-product .content p.label {
    font-size: 18px;
    color: #939393;
    line-height: 46px;
    padding-top: 6px;
}

.main-product .content a {
    font-size: 18px;
    color: #13102b;
    line-height: 50px;
}

.main-product .content:hover {
    box-shadow: 0 0 3px 3px #eee;
    transition: 0.3s;
}

.main-product .content img {
    position: relative;
    transition: all 1s linear;
    width: 100%;
    height: 150px;
}

.main-product .content img:hover {
    transform: rotateY(15deg);
    cursor: pointer;
}

.main-product .content .content_box {
    padding: 5px 10px;
}


/* 瀚苍荣誉 */

.honor_box {
    width: 100%;
    background-color: #fff;
    overflow: hidden;
}

.content_honor {
    width: 90%;
    margin: 0 auto;
    /* padding-top: 30px;*/
}

.content_title {
    position: relative;
    margin: auto;
    width: 130px;
    line-height: 50px;
    margin: 30px auto;
    text-align: center;
    color: #fff;
    font-size: 22px;
    border: 2px solid #0741C0;
    border-radius: 10px;
    background: #0741C0;
    transition: all 0.3s;
    cursor: pointer;
    letter-spacing: 3px;
}

.content_title:hover {
    filter: contrast(1.1);
}

.content_title:active {
    filter: contrast(0.9);
}

.content_title::before,
.content_title::after {
    content: "";
    position: absolute;
    top: -10px;
    left: -10px;
    right: -10px;
    bottom: -10px;
    border: 2px solid #0741C0;
    transition: all 0.5s;
    animation: clippath 3s infinite linear;
    border-radius: 10px;
}

.content_title::after {
    animation: clippath 3s infinite -1.5s linear;
}

.pic1 {
    width: 200px;
    height: 300px;
    float: left;
    margin: 0 10px;
    padding-top: 10px;
}

#outer {
    margin: 50px auto;
    /* width: 1350px; */
    width: 100%;
    overflow: hidden;
    /*把多余的部分隐藏掉*/
}

#inner {
    width: 5000px;
    height: 300px;
}

#inner div {
    float: left;
}


/* 首页案例 */

.index_box {
    width: 100%;
    overflow: hidden;
}

.index_box_center {
    width: 78%;
    margin: 0 auto;
    padding-top: 20px;
    padding-bottom: 80px;
    overflow: hidden;
}

.index_news {
    width: 60%;
    height: 100%;
    float: left;
}

.content_items {
    width: 100%;
    height: 370px;
    overflow: hidden;
    overflow: scroll;
    overflow-x: hidden;
}

.index_more {
    width: 90px;
    height: 40px;
    line-height: 40px;
    font-size: 18px;
    text-align: center;
    margin-right: 40px;
    color: black;
    font-weight: 700;
    border-bottom: 1px solid black;
    float: right;
    cursor: pointer;
}

.index_items {
    width: 95%;
    height: 60px;
    /*margin: 0 auto;*/
    border-bottom: 1px dashed #666666;
}

.index_items img {
    /* width: 7%; */
    height: 40px;
    float: left;
    padding-top: 10px;
    margin-right: 2%;
}

.index_list {
    width: 65%;
    height: 60px;
    line-height: 60px;
    font-size: 18px;
    float: left;
    overflow: hidden;
    white-space: nowrap;
    text-overflow: ellipsis;
}

.index_list:hover {
    color: #999999
}

.index_time {
    width: 22%;
    height: 60px;
    line-height: 60px;
    float: right;
    text-align: left;
    font-size: 16px;
    color: #666666;
}

.index_anli {
    width: 40%;
    height: 100%;
    float: right;
    /* background-color: pink; */
}


/* 关于我们 */

.about {
    width: 100%;
    overflow: hidden;
    background-color: #fff;
    margin-top: 80px;
}

.about_box {
    width: 80%;
    margin: 0 auto;
}

.navbar-collapse {
    width: 100%;
}

.navbar-nav {
    width: 100%;
    height: 50px;
    background-color: #3f89c8;
    padding: 0;
}

.active {
    background: rgb(37 112 179);
}

.menuItem {
    float: left;
    text-align: center;
    width: 100px;
}

.menuItem a {
    width: 100%;
    color: rgb(255 255 255);
    height: 50px;
    line-height: 50px;
    font-size: 18px;
    text-align: center;
    text-decoration: none;
}

.menuItem:hover {
    cursor: pointer;
    background: rgb(37 112 179);
}

.synopsis {
    width: 100%;
    background-color: #f1f1f1;
    /* padding-bottom: 50px; */
    padding-top: 20px;
    margin-bottom: 20px;
    overflow: hidden;
}

.synopsis_title {
    height: 60px;
    line-height: 60px;
    font-size: 24px;
    padding: 0 50px;
    font-weight: 900;
}

.synopsis_content {
    line-height: 35px;
    font-size: 16px;
    padding: 0px 60px;
    padding-bottom: 20px;
    color: rgb(102 102 102);
}

.synopsis_content img {
    width: 100%;
}


/* 产品服务 */

.product_box {
    width: 100%;
    background-color: #fff;
}

.product_box_items {
    width: 80%;
    margin: 0 auto;
    margin-bottom: 50px;
}

.product_box_list {
    width: 100%;
    /* height: 280px; */
    border-bottom: 1px dashed #666666;
    margin-top: 20px;
    padding-bottom: 30px;
    overflow: hidden;
}

.list_left {
    width: 60%;
    float: left;
}

.list_left {
    float: left;
    animation: rightEaseInAnimate1 2s ease 1;
    /*调用动画：动画名、时间、时间线条、播放次数*/
    animation-fill-mode: forwards;
    /*定义动画结束的状态*/
}

@keyframes rightEaseInAnimate1 {
    /*定义从左边滑入文字的动画*/
    0% {
        transform: translateX(-500px);
        opacity: 0;
    }
    100% {
        transform: translateX(0px);
        opacity: 1;
    }
}

@keyframes rightEaseInAnimate {
    /*定义从右边滑入文字的动画*/
    0% {
        transform: translateX(500px);
        opacity: 0;
    }
    100% {
        transform: translateX(0px);
        opacity: 1;
    }
}

.left_title {
    height: 60px;
    line-height: 60px;
    font-size: 30px;
}

.left_title_two {
    height: 50px;
    line-height: 50px;
    font-size: 18px;
    color: #666666;
}

.left_button {
    width: 100px;
    height: 40px;
    line-height: 40px;
    text-align: center;
    font-size: 14px;
    background-color: #3f89c8;
    color: #fff;
    border-radius: 5px;
    letter-spacing: 2px;
    margin: 10px 0;
}

.left_button a {
    width: 100px;
    height: 40px;
    line-height: 40px;
    text-align: center;
    font-size: 14px;
    background-color: #3f89c8;
    color: #fff;
    border-radius: 5px;
    letter-spacing: 2px;
    margin: 10px 0;
    text-decoration: none;
    display: block;
}

.left_button a:hover {
    cursor: pointer;
    background-color: rgb(20, 115, 199);
}

.left_text {
    margin-top: 20px;
    width: 90%;
    line-height: 26px;
    color: #999999;
    text-indent: 2em;
    font-size: 14px;
    overflow: hidden;
    text-overflow: ellipsis;
    display: -webkit-box;
    -webkit-line-clamp: 3;
    -webkit-box-orient: vertical;
}

.list_right {
    width: 40%;
    float: right;
    text-align: center;
    animation: rightEaseInAnimate 2s ease 1;
    /*调用动画：动画名、时间、时间线条、播放次数*/
    animation-fill-mode: forwards;
    /*定义动画结束的状态*/
}

.list_right img {
    width: 80%;
    max-height: 200px;
    margin-top: 20px;
    border-radius: 20px;
}


/* 产品详情 */

.P_detail {
    width: 100%;
    background-color: #fff;
    overflow: hidden;
}

.P_detail_box {
    width: 60%;
    margin: 30px auto;
}

.P_detail_time {
    width: 100%;
    height: 60px;
    line-height: 60px;
    color: #999999;
    font-size: 16px;
    text-align: right;
    border-bottom: 1px solid #cccaca;
}

.P_detail_content {
    width: 100%;
    line-height: 30px;
    text-indent: 2.5em;
    font-size: 16px;
    margin-top: 30px;
    color: #666666;
}

.P_detail_pic {
    width: 100%;
    text-align: center;
    padding: 50px 0;
}

.P_detail_pic img {
    width: 60%;
    height: auto;
    border-radius: 20px;
}


/* 新闻中心 */

.news_box {
    width: 100%;
    background-color: #fff;
    overflow: hidden;
    padding-bottom: 60px;
}

.news_box_center {
    width: 70%;
    margin: 0 auto;
    display: flex;
    justify-content: flex-start;
    flex-wrap: wrap;
    overflow: hidden;
}

.news_box_center {
    /* animation: DownEaseInAnimate 4s ease 1; */
    /*调用动画：动画名、时间、时间线条、播放次数*/
    /* animation-fill-mode: forwards; */
    /*定义动画结束的状态*/
}

@keyframes DownEaseInAnimate {
    /*定义从左边滑入文字的动画*/
    0% {
        transform: translateY(500px);
        opacity: 0;
    }
    100% {
        transform: translateY(0px);
        opacity: 1;
    }
}

.news_items {
    width: 33.3%;
    -webkit-transition: margin 0.2s ease-out;
    -moz-transition: margin 0.2s ease-out;
    -o-transition: margin 0.2s ease-out;
}

.news_items:hover {
    cursor: pointer;
    margin-top: -10px;
    -webkit-box-shadow: 0px 0px 20px rgba(211, 209, 209, 0.8);
    -moz-box-shadow: 0px 0px 20px rgba(211, 209, 209, 0.8);
    box-shadow: 0px 0px 20px rgba(211, 209, 209, 0.8);
    opacity: 1;
}

.news_list {
    padding: 20px;
}

.news_items img {
    width: 100%;
    height: 180px;
}

.list_fonts {
    width: 90%;
    font-size: 16px;
    line-height: 26px;
    text-indent: 2em;
    margin: 10px auto;
    overflow: hidden;
    text-overflow: ellipsis;
    display: -webkit-box;
    -webkit-line-clamp: 2;
    -webkit-box-orient: vertical;
}


/* 新闻中心详情 */

.N_detail {
    width: 100%;
    background-color: #fff;
    overflow: hidden;
}

.N_detail_box {
    width: 70%;
    margin: 50px auto;
}

.N_detail_title {
    width: 100%;
    height: 50px;
	line-height:50px;
    font-size: 25px;
    font-weight: 700;
    text-align: center;
}

.N_detail_time {
    width: 100%;
    height: 80px;
    line-height: 80px;
    color: #666666;
    font-size: 16px;
    text-align: right;
}

.N_detail_content {
    width: 100%;
    line-height: 30px;
    text-indent: 0em;
    font-size: 16px;
    padding-top: 30px;
    color: #535353;
    border-top: 1px solid #cccaca;
}

.N_detail_pic {
    width: 100%;
    text-align: center;
    padding: 50px 0;
}

.N_detail_content p img {
    width: 65%;
	
}

.N_detail_pic img {
    width: 60%;
    height: auto;
    border-radius: 20px;

}


/* 联系我们 */

.contact_center {
    width: 40%;
    margin: 0 auto;
    margin-top: 20px;
    display: flex;
    justify-content: space-around;
}

.foot_box {
    width: 80%;
    margin: 50px auto;
    overflow: hidden;
    padding: 50px 0;
    border: 2px dashed silver;
    padding-left: 30px;
    /* display: none; */
}

.c_map {
    width: 35%;
    /* height: 400px; */
    float: left;
    overflow: auto;
    /* margin-right: 50px; */
}

.c_map img {
    width: 100%;
    height: 100%;
    border-radius: 10px;
}

.map-fonts {
    width: 55%;
    float: right;
}

.lianxi {
    width: 60%;
    float: right;
    margin-top: 100px;
}

.featurette-h44 {
    margin-top: 30px;
}

.featurette-heading {
    text-align: left;
    font-weight: 700;
    font-family: 华文楷体;
    letter-spacing: 3px;
    font-size: 34px;
}

.c_erweima {
    width: 100%;
    text-align: center;
    overflow: hidden;
}

.c_erweima img {
    width: 150px;
    height: 150px;
    margin-bottom: 10px;
}

@keyframes clippath {
    0%,
    100% {
        clip-path: inset(0 0 98% 0);
    }
    25% {
        clip-path: inset(0 98% 0 0);
    }
    50% {
        clip-path: inset(98% 0 0 0);
    }
    75% {
        clip-path: inset(0 0 0 98%);
    }
}

.foot_box2 {
    width: 83%;
    margin: 0 auto;
    overflow: hidden;
    /*border: 2px dashed silver;*/
    /* border-bottom: none; */
    padding-left: 0px;
    margin-bottom: 50px;
    margin-top: 30px;
    display: flex;
    justify-content: space-between;
}

.box2_list1 {
    width: 20%;
    float: left;
    margin: 0 auto;
}

.list_post {
    width: 100%;
    height: 250px;
    line-height: 250px;
    text-align: center;
    color: #666666;
    font-size: 18px;
    border-right: 2px dashed silver;
    border-bottom: 2px dashed silver;
}

.list_describe {
    width: 100%;
    height: 250px;
    text-align: left;
    border-right: 2px dashed silver;
    border-bottom: 2px dashed silver;
    padding-left: 10px;
    /* display: table; */
}

.list_describe span {
    display: inline-block;
    font-size: 18px;
    color: #666666;
    line-height: 30px;
    display: table-cell;
    vertical-align: middle;
}

.list_adress {
    width: 100%;
    height: 250px;
    line-height: 250px;
    text-align: center;
    color: #666666;
    font-size: 18px;
    border-right: 2px dashed silver;
    border-bottom: 2px dashed silver;
}

.list_time {
    width: 100%;
    height: 250px;
    line-height: 250px;
    text-align: center;
    color: #666666;
    font-size: 18px;
    border-right: 2px dashed silver;
    border-bottom: 2px dashed silver;
}

.list_title {
    height: 50px;
    line-height: 50px;
    color: white;
    font-size: 22px;
    text-align: center;
    background-color: #3f89c8;
}

.box2_list2 {
    width: 40%;
    float: left;
    margin: 0 auto;
}

.box2_list3 {
    width: 20%;
    float: left;
    margin: 0 auto;
}

.box2_list4 {
    width: 20%;
    float: left;
    margin: 0 auto;
}


/* 底部 */

.footer {
    width: 100%;
    background-image: url(../img/foot-bg.png);
    background-size: 100% 100%;
    background-repeat: no-repeat;
    overflow: hidden;
}

.foot_info {
    height: 270px;
}

.map {
    width: 31%;
    height: 270px;
    position: relative;
    float: left;
}

.map img {
    width: 300px;
    height: 180px;
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    border-radius: 8px;
}

.adress {
    width: 38%;
    margin: 0 auto;
    float: left;
    margin-top: 60px;
}

.featurette-h4 {
    font-size: 16px;
    color: white;
    line-height: 50px;
}

.erweima {
    width: 30%;
    height: 270px;
    text-align: center;
    float: left;
}

.erweima img {
    width: 120px;
    height: 120px;
    margin-bottom: 10px;
}

.gzh {
    color: white;
    font-size: 16px;
    padding-top: 75px;
}

.beian {
    width: 100%;
    height: 50px;
    line-height: 50px;
    color: #999999;
    text-align: center;
    font-size: 14px;
    border-top: 1px solid #a19f9f;
}
.beian a{
    color: #999999;
}
.beian a:hover{
    color: #fff;
}

/* 移动端 */

@media screen and (max-width: 480px) {
    .app {
        background-color: #fff;
    }
    /* 头部 */
    .header-box {
        width: 100%;
        height: 70px;
        padding-top: 0px;
        background-color: white;
    }
	.header-left {
		width: 93%;
		height: 100%;
		float: left;
		padding-left:20px;
	}

	.header-left img {
		width: 140px;
		height: 33px;
		padding-top:15px;
}

	.en-name {
		width: 100%;
		color: #13102b;
		font-size: 14px;
		font-weight: 700;
		padding-top: 3px;
}
    .header-right {
        width: 100%;
        height: 60px;
        line-height: 60px;
    }
    .nav {
        width: 100%;
        margin: 10px auto;
        padding: 0px;
        text-align: center;
        z-index: 0;
    }
    .nav li {
        width: 75px;
        list-style-type: none;
        float: left;
        margin: 0 auto;
        z-index: 0;
    }
	
	.hide {
		display: none;
		background:#fff;
	}
	.product_hover:hover .hide {
		background: #fff;
		display: none;
		border-radius:10px;
	}
	
    .nav :first-child {
        width: 75px;
        list-style-type: none;
        float: left;
        margin: 0 auto;
        z-index: 0;
    }
    li a {
        display: block;
        width: 80px;
        height: 30px;
        font-family: Microsoft Yahei;
        line-height: 30px;
        margin: 0px 0px;
        color: black;
        text-align: center;
        text-decoration: none;
        font-size: 16px;
    }
    .product_box {
        width: 100%;
        margin: 0 auto;
        overflow: hidden;
        background-color: white;
        padding-bottom: 50px;
    }
    .product_title {
        position: relative;
        width: 120px;
        line-height: 40px;
        margin: 0 auto;
        margin-bottom: 10px;
        margin-top: 20px;
        text-align: center;
        color: rgb(255 255 255);
        font-size: 18px;
        border: 2px solid #0741C0;
        border-radius: 10px;
        background: #0741C0;
        transition: all 0.3s;
        cursor: pointer;
        letter-spacing: 3px;
    }
    .product_title span {
        font-size: 12px;
    }
    .product_title:hover {
        filter: contrast(1.1);
    }
    .product_title:active {
        filter: contrast(0.9);
    }
    .product_title::before,
    .product_title::after {
        content: "";
        position: absolute;
        top: -10px;
        left: -10px;
        right: -10px;
        bottom: -10px;
        border: 2px solid #0741C0;
        transition: all 0.5s;
        animation: clippath 3s infinite linear;
        border-radius: 10px;
    }
    .product_title::after {
        animation: clippath 3s infinite -1.5s linear;
    }
    @keyframes clippath {
        0%,
        100% {
            clip-path: inset(0 0 98% 0);
        }
        25% {
            clip-path: inset(0 98% 0 0);
        }
        50% {
            clip-path: inset(98% 0 0 0);
        }
        75% {
            clip-path: inset(0 0 0 98%);
        }
    }
    .items_box {
        width: 85%;
        margin: 0 auto;
        overflow: hidden;
    }
    .product_items {
        height: 280px;
        margin: 0 auto;
        overflow-y: hidden;
        overflow-x: scroll;
        white-space: nowrap;
    }
    .product_items::-webkit-scrollbar {
        height: 12px;
        scrollbar-arrow-color: red;
    }
    .product_items::-webkit-scrollbar-thumb {
        /*滚动条里面小方块*/
        border-radius: 5px;
        -webkit-box-shadow: inset 0 0 5px rgba(55, 137, 245, 0.2);
        background: rgba(55, 137, 245, 0.1);
        scrollbar-arrow-color: red;
    }
    .product_items::-webkit-scrollbar-track {
        /*滚动条里面轨道*/
        -webkit-box-shadow: inset 0 0 5px rgba(105, 164, 241, 0.2);
        border-radius: 0;
        background: rgba(105, 164, 241, 0.1);
    }
    .product_list {
        width: 260px;
        height: 200px;
        padding: 20px 30px;
        position: relative;
        display: inline-block;
    }
    .product_list img {
        width: 260px;
        height: 140px;
    }
    .list_name {
        width: 100%;
        height: 40px;
        line-height: 40px;
        font-size: 20px;
        text-align: center;
        color: black;
    }
    .list_brief {
        width: 100%;
        white-space: pre-wrap;
        font-size: 14px;
        text-align: center;
        color: black;
    }
    /* 首页地图 */
    .content {
        width: 100%;
        background-color: white;
        overflow: hidden;
    }
    .content_title {
        position: relative;
        width: 120px;
        line-height: 40px;
        margin: 10px auto;
        text-align: center;
        color: rgb(255 255 255);
        font-size: 18px;
        border: 2px solid #0741C0;
        border-radius: 10px;
        background: #0741C0;
        transition: all 0.3s;
        cursor: pointer;
        letter-spacing: 3px;
    }
    .content_title:hover {
        filter: contrast(1.1);
    }
    .content_title:active {
        filter: contrast(0.9);
    }
    .content_title::before,
    .content_title::after {
        content: "";
        position: absolute;
        top: -10px;
        left: -10px;
        right: -10px;
        bottom: -10px;
        border: 2px solid #0741C0;
        transition: all 0.5s;
        animation: clippath 3s infinite linear;
        border-radius: 10px;
    }
    .content_title::after {
        animation: clippath 3s infinite -1.5s linear;
    }
    .content_pic {
        width: 70%;
        margin: 60px auto;
        text-align: center;
    }
    .content_pic img {
        width: 90%;
        height: auto;
    }
    /* 首页案例 */
    .index_box {
        width: 100%;
        overflow: hidden;
    }
    .index_box_center {
        width: 100%;
        margin: 0 auto;
        padding-top: 20px;
        padding-bottom: 80px;
        overflow: hidden;
    }
    .index_news {
        width: 100%;
        height: 100%;
        float: left;
    }
    #map {
        width: 100% !important;
        height: 400px !important;
    }
    .index_anli {
        display: none;
    }
    .content_items {
        width: 100%;
        height: 100%;
        overflow: hidden;
    }
    .index_more {
        width: 90px;
        height: 40px;
        line-height: 40px;
        font-size: 18px;
        text-align: center;
        margin-right: 20px;
        color: #e61d15;
        border-bottom: 1px solid #e61d15;
        float: right;
        cursor: pointer;
    }
    .index_items {
        width: 95%;
        height: 60px;
        margin: 0 auto;
        border-bottom: 1px dashed #666666;
    }
    .index_items img {
        /* width: 7%; */
        height: 40px;
        float: left;
        padding-top: 10px;
        margin-right: 2%;
    }
    .index_list {
        width: 73%;
        height: 60px;
        line-height: 60px;
        font-size: 18px;
        float: left;
        overflow: hidden;
        white-space: nowrap;
        text-overflow: ellipsis;
    }
    .index_time {
        width: 18%;
        height: 60px;
        line-height: 60px;
        float: right;
        text-align: center;
        font-size: 16px;
        color: #3f89c8;
    }
    /* 关于我们 */
    .about {
        width: 100%;
        overflow: hidden;
        background-color: #fff;
        margin-top: 20px;
    }
    .about_box {
        width: 90%;
        margin: 0 auto;
    }
    .navbar-collapse {
        width: 100%;
    }
    .navbar-nav {
        width: 100%;
        height: 40px;
        background-color: #3f89c8;
        padding: 0;
    }
    .active {
        background: rgb(37 112 179);
    }
    .menuItem {
        float: left;
        text-align: center;
        width: 20%;
    }
    .menuItem a {
        width: 100%;
        color: #fff;
        height: 40px;
        line-height: 40px;
        font-size: 14px;
        text-align: center;
        text-decoration: none;
    }
    .menuItem a:hover {
        background: rgb(37 112 179);
    }
    .synopsis {
        width: 100%;
        background-color: #f1f1f1;
        padding-bottom: 50px;
        padding-top: 20px;
        margin-bottom: 20px;
    }
    .synopsis_title {
        height: 80px;
        line-height: 80px;
        font-size: 22px;
        padding: 0 20px;
    }
    .synopsis_content {
        line-height: 30px;
        font-size: 16px;
        padding: 0 30px;
        text-indent: 2em;
        color: rgb(102 102 102);
    }
    .synopsis_content img {
        width: 100%;
        height: 60px;
    }
    /* 产品服务 */
    .product_box {
        width: 100%;
        background-color: #fff;
    }
    .product_box_items {
        width: 88%;
        margin: 0 auto;
        margin-bottom: 50px;
    }
    .product_box_list {
        width: 100%;
        /* height: 530px; */
        overflow: hidden;
        border-bottom: 1px dashed #666666;
        margin-top: 20px;
    }
    .list_left {
        width: 100%;
        float: left;
        padding-left: 0px;
        animation: rightEaseInAnimate1 4s ease 1;
        /*调用动画：动画名、时间、时间线条、播放次数*/
        animation-fill-mode: forwards;
        /*定义动画结束的状态*/
    }
    .left_title {
        height: 50px;
        line-height: 50px;
        font-size: 24px;
        /* font-weight: 700; */
    }
    .left_title_two {
        line-height: 24px;
        font-size: 16px;
        color: #666666;
    }
    .left_button {
        width: 100px;
        height: 35px;
        line-height: 35px;
        text-align: center;
        font-size: 14px;
        background-color: #3f89c8;
        color: #fff;
        border-radius: 5px;
        letter-spacing: 2px;
        margin: 10px 0;
    }
    .left_button:hover {
        cursor: pointer;
        background-color: rgb(20, 115, 199);
    }
    .left_text {
        margin-top: 20px;
        width: 90%;
        line-height: 26px;
        color: #999999;
        text-indent: 2em;
        font-size: 14px;
        overflow: hidden;
        text-overflow: ellipsis;
        display: -webkit-box;
        -webkit-line-clamp: 3;
        -webkit-box-orient: vertical;
    }
    .list_right {
        width: 100%;
        float: right;
        margin-top: 20px;
        text-align: center;
        animation: rightEaseInAnimate 5s ease 1;
        /*调用动画：动画名、时间、时间线条、播放次数*/
        animation-fill-mode: forwards;
        /*定义动画结束的状态*/
    }
    @keyframes rightEaseInAnimate1 {
        /*定义从左边滑入文字的动画*/
        0% {
            transform: translateX(-500px);
            opacity: 0;
        }
        100% {
            transform: translateX(0px);
            opacity: 1;
        }
    }
    @keyframes rightEaseInAnimate {
        /*定义从右边滑入文字的动画*/
        0% {
            transform: translateX(500px);
            opacity: 0;
        }
        100% {
            transform: translateX(0px);
            opacity: 1;
        }
    }
    .list_right img {
        width: 80%;
        max-height: 200px;
        border-radius: 15px;
    }
    /* 产品详情 */
    .P_detail {
        width: 100%;
        background-color: #fff;
        overflow: hidden;
    }
    .P_detail_box {
        width: 90%;
        margin: 30px auto;
    }
    .P_detail_time {
        width: 100%;
        height: 40px;
        line-height: 40px;
        color: #666666;
        font-size: 14px;
        text-align: right;
        border-bottom: 1px solid #cccaca;
    }
    .P_detail_content {
        width: 100%;
        line-height: 30px;
        text-indent: 2.5em;
        font-size: 16px;
        margin-top: 30px;
        color: #535353;
    }
    .P_detail_content p img {
        width: 100%;
        /*max-height: 150px;*/
        display: flex;
    }
    .P_detail_pic {
        width: 100%;
        padding: 30px 0;
        text-align: center;
    }
    .P_detail_pic img {
        width: 100%;
        max-height: 150px;
        border-radius: 20px;
    }
    /* 新闻中心 */
    .news_box {
        width: 100%;
        background-color: #fff;
        overflow: hidden;
        margin-bottom: 60px;
    }
    .news_box_center {
        width: 90%;
        margin: 0 auto;
        display: flex;
        justify-content: flex-start;
        flex-wrap: wrap;
        overflow: hidden;
        margin-top: 50px;
    }
    .news_box_center {
        animation: DownEaseInAnimate 4s ease 1;
        /*调用动画：动画名、时间、时间线条、播放次数*/
        animation-fill-mode: forwards;
        /*定义动画结束的状态*/
    }
    @keyframes DownEaseInAnimate {
        /*定义从左边滑入文字的动画*/
        0% {
            transform: translateY(500px);
            opacity: 0;
        }
        100% {
            transform: translateY(0px);
            opacity: 1;
        }
    }
    .news_items {
        width: 100%;
        -webkit-transition: margin 0.2s ease-out;
        -moz-transition: margin 0.2s ease-out;
        -o-transition: margin 0.2s ease-out;
    }
    .news_items:hover {
        cursor: pointer;
        margin-top: -10px;
        -webkit-box-shadow: 0px 0px 20px rgba(211, 209, 209, 0.8);
        -moz-box-shadow: 0px 0px 20px rgba(211, 209, 209, 0.8);
        box-shadow: 0px 0px 20px rgba(211, 209, 209, 0.8);
        opacity: 1;
    }
    .news_list {
        padding: 20px 0;
        text-align: center;
    }
    .news_items img {
        width: 90%;
        height: 160px;
    }
    .list_fonts {
        width: 90%;
        font-size: 16px;
        line-height: 26px;
        text-indent: 0em;
        margin: 10px auto;
        overflow: hidden;
        text-overflow: ellipsis;
        display: -webkit-box;
        -webkit-line-clamp: 2;
        -webkit-box-orient: vertical;
        text-align: center;
    }
    /* 新闻中心详情 */
    .N_detail {
        width: 100%;
        background-color: #fff;
        overflow: hidden;
    }
    .N_detail_box {
        width: 90%;
        margin: 0 auto;
    }
    .N_detail_title {
        width: 100%;
        height: 60px;
        line-height: 30px;
        font-size: 18px;
        font-weight: 700;
        text-align: center;
    }
    .N_detail_time {
        width: 100%;
        height: 40px;
        line-height: 40px;
        color: #666666;
        font-size: 14px;
        text-align: right;
    }
    .N_detail_content {
        width: 100%;
        line-height: 30px;
        text-indent: 2em;
        font-size: 14px;
        color: #535353;
    }
    .N_detail_content p span {}
    .N_detail_content p img {
        width: 100%;
        display: flex;
        
    }
	.maxhidden{
		width:100% !important;
		display:flex !important;
		max-height:100% !important;
	}
    .N_detail_pic {
        width: 100%;
        text-align: center;
        padding: 30px 0;
    }
    .N_detail_pic img {
        width: 70%;
        height: auto;
        border-radius: 20px;
    }
    /* 联系我们 */
    .foot_box {
        width: 90%;
        margin: 0 auto;
        overflow: hidden;
        padding: 20px 0;
        border: 2px dashed silver;
        padding-left: 0px;
        margin-bottom: 30px;
        margin-top: 50px;
    }
    .product_title_contact {
        display: none;
    }
    .c_map {
        width: 100%;
        /* float: left; */
        overflow: auto;
        text-align: center;
    }
    .c_map img {
        width: 90%;
        height: 100%;
        border-radius: 10px;
    }
    .map-fonts {
        width: 100%;
        float: right;
    }
    .lianxi {
        width: 95%;
        margin: 0 auto;
        padding-right: 7px;
        margin-top: 10px;
    }
    .featurette-h44 {
        margin-top: 1px;
        font-size: 14px;
        font-weight: 400;
    }
    .featurette-heading {
        text-align: left;
        font-weight: 700;
        font-family: 华文楷体;
        letter-spacing: 3px;
        font-size: 22px;
        text-align: center;
    }
    .c_erweima {
        width: 100%;
        text-align: center;
        overflow: hidden;
    }
    .c_erweima img {
        width: 100px;
        height: 100px;
        margin-bottom: 0px;
    }
    @keyframes clippath {
        0%,
        100% {
            clip-path: inset(0 0 98% 0);
        }
        25% {
            clip-path: inset(0 98% 0 0);
        }
        50% {
            clip-path: inset(98% 0 0 0);
        }
        75% {
            clip-path: inset(0 0 0 98%);
        }
    }
    /* 底部 */
    .footer {
        width: 100%;
        background-image: url(../img/foot-bg.png);
        background-size: 100% 100%;
        background-repeat: no-repeat;
        overflow: hidden;
    }
    .foot_info {
        width: 100%;
        height: 270px;
    }
    .c_foot_info {
        /* height: 300px; */
        display: none;
    }
    .map {
        width: 100%;
        height: 250px;
        position: relative;
        float: left;
    }
    .adress {
        width: 90%;
        margin-left: 5%;
        margin-top: 20px;
    }
    .featurette-h4 {
        font-size: 14px;
        color: white;
        line-height: 35px;
    }
    .erweima {
        width: 100%;
        text-align: center;
        padding-top: 0px;
        padding-right: 0px;
        height: 160px;
    }
    .erweima img {
        width: 80px;
        height: 80px;
        margin-bottom: 10px;
    }
    .gzh {
        color: white;
        font-size: 16px;
        padding-top: 25px;
    }
    .beian {
        width: 100%;
        height: 50px;
        line-height: 50px;
        color: white;
        text-align: center;
        font-size: 13px;
        border-top: 1px solid #a19f9f;
    }
    .main-product .content {
        border-bottom: 1px solid #dedede;
        text-align: center;
        transition: 0.3s;
        margin-bottom: 50px;
    }
    .layui-col-space25 {
        margin: 0 -10px!important;
    }
}