﻿@charset "utf-8";



/* 外层容器 */
.middle {width:100%;height:auto;padding-bottom:10px;overflow:hidden;}

.mid-main{
	padding:80px 0 50px;
	overflow:hidden;
}
.mid-title {
	font-size:36px;
	font-weight:bold;
	color:#000;
	text-align:center;
	display:flex;
	align-items:center;
	justify-content:center;
}
.mid-title img {
	width:40px;
	height:40px;
	object-fit:contain;
	flex-shrink:0;
	margin-right:12px;
}

.project-grid {
    width: 100%;
 /*   overflow: hidden;*/
	margin-top: 65px;
}
.project-item {
	position: relative;
  width: 49%;
  float: left;
  margin-bottom: 53px;
  padding: 0 40px;
  border: 1px solid #eee;
  border-radius: 4px;
	  height: 130px;   
/*  overflow: auto;*/
}

.project-item:nth-child(even) {
  float: right;
}
.project-title {
  position: absolute;
  top: -20px;       
  left: 0;
	width: 230px;
   background: linear-gradient( 90deg, #0BB785 0%, #4AE1B4 100%);
  color: #fff;
  font-size: 18px;
  font-weight: bold;
  border-radius: 50px;
  white-space: nowrap;
	 padding: 11px 0 11px 40px;
}

.project-title::before {
  content: '';
  position: absolute;
  left: 20px;
  top: 50%;
  transform: translateY(-50%);
  width: 8px;
  height: 8px;
  background: #ffffff;
  border-radius: 50%;
}
.project-desc {
	margin-top: 38px;
  font-size: 16px;
  line-height: 24px;
  color: #333;
	display: -webkit-box;
    -webkit-line-clamp: 3;
    -webkit-box-orient: vertical;
    overflow: hidden;
    text-overflow: ellipsis;
}




/* ==============响应式============== */
@media screen and (max-width:1000px) {
	.mid-main{padding:50px 0 20px;}
	.mid-title{font-size:22px;line-height:31px;margin-bottom:24px;}
	.mid-title img{width:25px;height:25px;}
	
	
	.project-item {
        width: 100%;
		height: auto;
        float: none !important;
        margin-bottom: 40px;
		padding: 0 34px;
    }
	.project-title{
		font-size: 16px;
		padding: 10px 0 10px 34px;
	}
	.project-title::before{
		left: 16px;
	}
	.project-desc{
		margin-top: 32px;
		margin-bottom: 25px;
		font-size: 14px;
		
		display: block;
		-webkit-line-clamp: unset;
		-webkit-box-orient: unset;
		overflow: visible;
		text-overflow: unset;
	}
}