@charset "utf-8";
@import url("//netdna.bootstrapcdn.com/font-awesome/4.7.0/css/font-awesome.min.css");
html {
    font-size: 14px !important;
}

* {
    padding: 0px;
    margin: 0px;
    list-style: none;
    text-decoration: none;
}

body {
    padding: 0px;
    margin: 0px;
    background: #f3f3f3;

}


.case_menu {
    display: flex;
    display: -webkit-flex;
    justify-content: space-between;
    height: 80px;
    line-height: 80px;
    padding: 0px 90px;
    background: #fff;
}
.bannerbg{
	display: block;
	height: 300px;
}
.case_menu img {
    height: 51px;
    width: auto;
    margin-top: 12px;
}

.case_menu span {
    text-align: left;
    width: 56%;
}

.caseTopMenu {
    width: 30%;
    display: flex;
    display: -webkit-flex;
    justify-content: space-between;
}

.caseTopMenu li {
    position: relative;
}

.caseTopMenu a {
    color: #102541;
}

.caseTopMenu a:hover {
    color: #fd5e16;
}

.case_smMenu {
    background: #fff;
    box-shadow: 0px 0px 5px rgba(0, 0, 0, 0.3);
    position: absolute;
    width: 160px;
    text-align: center;
    left: -50px;
    top: 80px;
    padding: 20px 0px;
    z-index: 1000000;
    display: none;
}

.case_smMenu li {
    width: 100%;
    line-height: 40px;
}

.case_smMenu a {
    padding: 5px 20px;
    line-height: 40px;
    display: block;

}

.caseTopMenu li:hover .case_smMenu {
    display: block;
}

.header_box {
	background: url(http://www.shimaotong.net/demo/banner.jpg) no-repeat;
	background-size: cover;
	-moz-background-size: cover;
	-webkit-background-size: cover;
	-ms-background-size: cover;
    height: 300px;
    /* background: linear-gradient(135deg, #95d964 0%, #0ba29d 100%);
    background: -webkit-linear-gradient(135deg, #95d964 0%, #0ba29d 100%);
    background: -moz-linear-gradient(135deg, #95d964 0%, #0ba29d 100%);
    background: -ms-linear-gradient(135deg, #95d964 0%, #0ba29d 100%); */
    line-height: 300px;
	margin-top:80px;
	
}

.header {
    color: #fff;
    margin: 0px 200px;
    text-shadow: 0px 0px 6px rgba(0, 0, 0, .4);
}

.header h1 {
    font-size: 3rem;
    position: relative;
	color:#fff;
}

.header h1::before {
    content: "";
    position: absolute;
    height: 5px;
    width: 190px;
    bottom: 38%;
    background: linear-gradient(135deg, #F36265 0%, #961276 100%);
    background: -webkit-linear-gradient(135deg, #F36265 0%, #961276 100%);
    background: -moz-linear-gradient(135deg, #F36265 0%, #961276 100%);
    background: -ms-linear-gradient(135deg, #F36265 0%, #961276 100%);
    border-radius: 50px;
    -webkit-border-radius: 50px;
    -moz-border-radius: 50px;
    -ms-border-radius: 50px;
}

.header span {
    font-size: 1.2rem;
    margin-left: 20px;
    color: #fff;
}

.case_cont {
    margin: 60px 120px 0px 120px;
}

.case_list {
    display: flex;
    display: -webkit-flex;
    justify-content: space-between;
    align-items: center;
    flex-wrap: wrap;
}

.case_list li {
    width: 49%;
    margin-bottom: 50px;
    display: block;
    background-color: #fff;
    border-radius: 5px 5px 0px 0px;
    -moz-border-radius: 5px 5px 0px 0px;
    -webkit-border-radius: 5px 5px 0px 0px;
    -ms-border-radius: 5px 5px 0px 0px;
}

.case_list li a {
    color: #575757;
}

.case_list li:hover {
    box-shadow: 0px 6px 6px rgba(0, 0, 0, 0.1);
}

.case_img {
    width: 100%;
	height:400px;
    overflow: hidden;
    border-radius: 5px 5px 0px 0px;
    -moz-border-radius: 5px 5px 0px 0px;
    -webkit-border-radius: 5px 5px 0px 0px;
    -ms-border-radius: 5px 5px 0px 0px;
    position: relative;
}

.case_img img {
    max-width: 100%;
    border-radius: 5px 5px 0px 0px;
    -moz-border-radius: 5px 5px 0px 0px;
    -webkit-border-radius: 5px 5px 0px 0px;
    -ms-border-radius: 5px 5px 0px 0px;
}

.case_img::after {
    content: "";
    position: absolute;
    bottom: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background-color: rgba(23, 176, 152, 0.6);
    transition: all 0.3s linear;
    overflow: hidden;
    -webkit-transform: scaleY(1);
    -khtml-transform: scaleY(1);
    -moz-transform: scaleY(1);
    -ms-transform: scaleY(1);
    -o-transform: scaleY(1);
    transform: scaleY(1);
    opacity: 0;
}

.case_list li:hover .case_img::after {
    -webkit-transform: scaleY(0);
    -khtml-transform: scaleY(0);
    -moz-transform: scaleY(0);
    -ms-transform: scaleY(0);
    -o-transform: scaleY(0);
    transform: scaleY(0);
    opacity: 1;
}

.case_list li:hover img {
    transition: all 0.3s cubic-bezier(0.68, -0.01, 0.17, 1.03);
    -webkit-transition: all 0.3s cubic-bezier(0.68, -0.01, 0.17, 1.03);
    -ms-transition: all 0.3s cubic-bezier(0.68, -0.01, 0.17, 1.03);
    -moz-transition: all 0.3s cubic-bezier(0.68, -0.01, 0.17, 1.03);
    transform: scale(1.1);
    transform: scale(1.1);
    transform: scale(1.1);
}

.case_name {
    font-size: 1.2rem;
    margin-top: 20px;
    padding: 0px 20px;
}
.mobile_menu{
    display: none;
}
.case_text {
    font-size: 0.875rem;
    padding: 20px;
    line-height: 30px;
    display: flex;
    display: -webkit-flex;
    justify-content: space-between;
}

.case_text h1 {
    font-weight: normal;
    font-size: 1rem;
}

.case_text span {
    font-size: 1rem;
    color: #f80e3f;
}

.case_text span>i {
    margin-right: 10px;
}
.item{
    padding:50px 120px 0px 120px;
}
.close_menu{
    display: none;
}
footer {
    height: 300px;
    background: #102541;
    height: auto;
}



.part1 img {
    height: 51px !important;
    width: auto;
}



.item a {
    line-height: 50px;
    padding: 0px 20px;
    color: #000;
}

.item a:hover {
    color: #FF0000;
}
.sm_item{
    height:auto;
	font-size:1rem;
}
.sm_item li{
    line-height: 30px !important;
    margin-bottom:5px !important;
}
.sm_item a{
    line-height: 35px;
    padding:8px 20px;
	font-size:1rem !important;
}
.sm_item span{
    padding:8px 20px;
    background: #dedede;
    margin-right:10px;
    position: relative;
	font-size:1rem;
}
.sm_item span::after{
    content:"\f0da";
    font-family: fontawesome;
    position: absolute;
    right:-7px;
    color:#dedede;
    font-size:1.5rem;
    top:3px;
}
.itemcheck{
    padding:8px 20px;
    background: #fd5e16;
    color:#fff !important;
}
/*分页*/
.pagination{
	width:100%;
	margin-bottom:60px;
	text-align: center;
	display: flex;
	display: -webkit-flex;
	justify-content: center;
    font-size:1rem;
}
.pagination li{
	margin:0px 5px;
	background: #fff;
	line-height: 40px;
	border-radius:5px;
	-moz-border-radius:5px;
	-ms-border-radius:5px;
	-webkit-border-radius:5px;
	box-shadow:0px 0px 8px rgba(0,0,0,.2);
	-moz-box-shadow:0px 0px 8px rgba(0,0,0,.2);
	-webkit-box-shadow:0px 0px 8px rgba(0,0,0,.2);
	-ms-box-shadow:0px 0px 8px rgba(0,0,0,.2);
}
.pagination > li > a{
	 padding: 8px 20px ;
 }
.pagination > li.disabled{
	padding: 0px 20px ;
}
.pagination > li.active > a, .pagination > li > a:hover {
	color: #fff !important;
	background-color: #fd5e16;
	border-radius:5px;
	-moz-border-radius:5px;
	-ms-border-radius:5px;
	-webkit-border-radius:5px;
	box-shadow:0px 0px 8px rgba(0,0,0,.3);
	-moz-box-shadow:0px 0px 8px rgba(0,0,0,.3);
    -webkit-box-shadow:0px 0px 8px rgba(0,0,0,.3);
	-ms-box-shadow:0px 0px 8px rgba(0,0,0,.3);
}
@media screen and (min-width: 1200px) and (max-width: 1500px) {
    html{
        font-size: 12px;
    }
    .case_list li{
        width:48%;
    }
}

@media screen and (min-width: 300px) and (max-width: 500px) {
    header {
        height: 168px;
    }
    .case_menu{
        padding:0px 10px;
    }
    .case_menu span{
        display: none;
    }
    .mobile_menu{
        display: block;
        font-size:1.8rem;
        color:#000;
        padding:0px 15px;
    }
    .caseTopMenu{
        position: absolute;
        display: block;
        background: rgba(255,255,255,0.8);
        width:100%;
        height:100%;
        left:0;
        z-index:10000;
        padding-top:120px;
        display: none;
    }
    .caseTopMenu li{
        display: block;
        line-height: 40px;
        text-align: center;
        background: rgba(255,255,255,1);
        padding:10px 0px;
    }
    .case_smMenu{
        display: none;
    }
    .item{
        padding:50px 10px 0px 10px !important;
    }
    .sm_item li{
        display: flex;
        display: -webkit-flex;
        justify-content: flex-start;
        flex-wrap: wrap;
        align-items: center;
    }
    .sm_item span{
        padding:0px 20px;

    }
    .sm_item li a{
        line-height: 30px;
        padding:2px 10px;
        margin:3px;
    }
    .header h1::before {
        bottom: 25%;
    }

    .header {
        margin: 0px 20px;
        line-height: 140px;
    }

    .case_cont {
        margin: 60px 10px;
    }

    .case_list li {
        width: 100%
    }

}

.page_menu{
	width: 100%;
	padding: 0 90px;
	text-align: right;
	background: rgba(255,255,255,.5);
	line-height: 58px;
}
.page_item{
	display: flex;
	display: -webkit-flex;
	justify-content: flex-end;
}
.page_item li{
	margin-right:4px;
}

.page_item a {
	width: 140px;
	font-size: 18px;
	display: block;
	text-align: center;
	hieght:58px;
	line-height: 58px;
}
.page_active{
	background: #fd5e16;
	
}
.page_active a{
	color: #fff !important;
}

.webFIxHeader > .navStyle > ul > li a {
    color: #102541;
}