body{
    background: #f4f6f8!important;
    font-size: 14px!important;
	/* overflow-x: hidden; */
	width: 100%!important;
    font-family: 'Inter', -apple-system, BlinkMacSystemFont, 'Segoe UI', 'PingFang SC', 'Hiragino Sans GB', 'Microsoft YaHei', sans-serif !important;
    line-height: 1.6;
    color: #1e293b;
}

/* 现代化设计变量 */
:root {
    --primary-50: #eff6ff;
    --primary-100: #dbeafe;
    --primary-500: #3b82f6;
    --primary-600: #2563eb;
    --primary-700: #1d4ed8;
    --gray-50: #f8fafc;
    --gray-100: #f1f5f9;
    --gray-200: #e2e8f0;
    --gray-300: #cbd5e1;
    --gray-400: #94a3b8;
    --gray-500: #64748b;
    --gray-600: #475569;
    --gray-700: #334155;
    --gray-800: #1e293b;
    --gray-900: #0f172a;
    --radius-sm: 8px;
    --radius-md: 12px;
    --radius-lg: 16px;
    --radius-xl: 20px;
    --shadow-sm: 0 1px 2px 0 rgb(0 0 0 / 0.05);
    --shadow-md: 0 4px 6px -1px rgb(0 0 0 / 0.1), 0 2px 4px -2px rgb(0 0 0 / 0.1);
    --shadow-lg: 0 10px 15px -3px rgb(0 0 0 / 0.1), 0 4px 6px -4px rgb(0 0 0 / 0.1);
    --shadow-xl: 0 20px 25px -5px rgb(0 0 0 / 0.1), 0 8px 10px -6px rgb(0 0 0 / 0.1);
}
/* 现代化关于我们页面样式 */
.about-hero {
    background: linear-gradient(135deg, #f4f6f8 0%, #e2e8f0 100%);
    padding: 100px 0 80px;
    position: relative;
    overflow: hidden;
    border-bottom: 1px solid #e2e8f0;
}

.about-hero::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: linear-gradient(135deg, rgba(59, 130, 246, 0.05) 0%, rgba(139, 92, 246, 0.05) 100%);
    pointer-events: none;
}

.about-hero-content {
    position: relative;
    z-index: 2;
    text-align: center;
    max-width: 800px;
    margin: 0 auto;
    padding: 0 20px;
}

.about-title {
    font-size: 3.5rem;
    font-weight: 800;
    color: #1e293b;
    margin-bottom: 24px;
    line-height: 1.1;
    letter-spacing: -0.02em;
    text-shadow: 0 2px 4px rgba(0, 0, 0, 0.1);
}

.about-subtitle {
    font-size: 1.25rem;
    color: #64748b;
    margin-bottom: 40px;
    line-height: 1.6;
    font-weight: 500;
}

.about-stats {
    display: flex;
    justify-content: center;
    gap: 60px;
    margin-top: 60px;
    flex-wrap: wrap;
}

.stat-item {
    text-align: center;
    position: relative;
}

.stat-number {
    font-size: 3rem;
    font-weight: 900;
    color: #3b82f6;
    display: block;
    line-height: 1;
    margin-bottom: 8px;
    text-shadow: 0 2px 4px rgba(59, 130, 246, 0.2);
}

.stat-label {
    font-size: 1rem;
    color: #64748b;
    font-weight: 600;
    text-transform: uppercase;
    letter-spacing: 0.05em;
}

.stat-divider {
    width: 1px;
    height: 60px;
    background: #cbd5e1;
    position: absolute;
    right: -30px;
    top: 50%;
    transform: translateY(-50%);
}

.stat-item:last-child .stat-divider {
    display: none;
}

/* 内容区域优化 */
.about-content {
    padding: 80px 0;
    background: white;
}

.content-section {
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 20px;
}

.section-title {
    font-size: 2.5rem;
    font-weight: 700;
    color: #1e293b;
    text-align: center;
    margin-bottom: 60px;
    position: relative;
}

.section-title::after {
    content: '';
    position: absolute;
    bottom: -16px;
    left: 50%;
    transform: translateX(-50%);
    width: 80px;
    height: 4px;
    background: linear-gradient(90deg, #3b82f6, #8b5cf6);
    border-radius: 2px;
}

.section-content {
    font-size: 1.125rem;
    line-height: 1.8;
    color: #475569;
    margin-bottom: 40px;
    text-align: justify;
}

.highlight-text {
    color: #3b82f6;
    font-weight: 600;
    background: linear-gradient(120deg, rgba(59, 130, 246, 0.1) 0%, rgba(139, 92, 246, 0.1) 100%);
    padding: 2px 8px;
    border-radius: 6px;
}

/* 特色卡片 */
.features-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: 30px;
    margin-top: 60px;
}

.feature-card {
    background: white;
    padding: 40px 30px;
    border-radius: var(--radius-lg);
    box-shadow: var(--shadow-md);
    border: 1px solid #e2e8f0;
    transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
    position: relative;
    overflow: hidden;
}

.feature-card::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    height: 4px;
    background: linear-gradient(90deg, #3b82f6, #8b5cf6);
    transform: scaleX(0);
    transition: transform 0.3s ease;
}

.feature-card:hover {
    transform: translateY(-8px);
    box-shadow: var(--shadow-xl);
}

.feature-card:hover::before {
    transform: scaleX(1);
}

.feature-icon {
    width: 60px;
    height: 60px;
    background: linear-gradient(135deg, #3b82f6, #8b5cf6);
    border-radius: var(--radius-md);
    display: flex;
    align-items: center;
    justify-content: center;
    margin-bottom: 24px;
    font-size: 24px;
    color: white;
}

.feature-title {
    font-size: 1.5rem;
    font-weight: 700;
    color: #1e293b;
    margin-bottom: 16px;
}

.feature-description {
    color: #64748b;
    line-height: 1.6;
}

/* 团队介绍 */
.team-section {
    background: #f8fafc;
    padding: 80px 0;
}

.team-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
    gap: 40px;
    margin-top: 60px;
}

.team-member {
    text-align: center;
    background: white;
    padding: 40px 30px;
    border-radius: var(--radius-lg);
    box-shadow: var(--shadow-md);
    transition: all 0.3s ease;
}

.team-member:hover {
    transform: translateY(-8px);
    box-shadow: var(--shadow-xl);
}

.member-avatar {
    width: 120px;
    height: 120px;
    border-radius: 50%;
    margin: 0 auto 24px;
    background: linear-gradient(135deg, #3b82f6, #8b5cf6);
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 48px;
    color: white;
    font-weight: 700;
}

.member-name {
    font-size: 1.25rem;
    font-weight: 700;
    color: #1e293b;
    margin-bottom: 8px;
}

.member-role {
    color: #64748b;
    font-weight: 500;
    margin-bottom: 16px;
}

.member-bio {
    color: #64748b;
    line-height: 1.6;
    font-size: 0.95rem;
}

/* 联系我们 */
.contact-section {
    padding: 80px 0;
    background: white;
}

.contact-grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 60px;
    margin-top: 60px;
}

.contact-info {
    background: #f8fafc;
    padding: 40px;
    border-radius: var(--radius-lg);
    border: 1px solid #e2e8f0;
}

.contact-item {
    display: flex;
    align-items: center;
    margin-bottom: 24px;
    padding: 16px;
    background: white;
    border-radius: var(--radius-md);
    box-shadow: var(--shadow-sm);
    transition: all 0.3s ease;
}

.contact-item:hover {
    transform: translateX(8px);
    box-shadow: var(--shadow-md);
}

.contact-icon {
    width: 40px;
    height: 40px;
    background: linear-gradient(135deg, #3b82f6, #8b5cf6);
    border-radius: var(--radius-sm);
    display: flex;
    align-items: center;
    justify-content: center;
    margin-right: 16px;
    color: white;
    font-size: 18px;
}

.contact-text {
    color: #475569;
    font-weight: 500;
}

.contact-form {
    background: #f8fafc;
    padding: 40px;
    border-radius: var(--radius-lg);
    border: 1px solid #e2e8f0;
}

.form-group {
    margin-bottom: 24px;
}

.form-label {
    display: block;
    margin-bottom: 8px;
    color: #374151;
    font-weight: 600;
}

.form-input {
    width: 100%;
    padding: 12px 16px;
    border: 2px solid #e2e8f0;
    border-radius: var(--radius-sm);
    font-size: 1rem;
    transition: all 0.3s ease;
    background: white;
}

.form-input:focus {
    outline: none;
    border-color: #3b82f6;
    box-shadow: 0 0 0 3px rgba(59, 130, 246, 0.1);
}

.form-textarea {
    min-height: 120px;
    resize: vertical;
}

.submit-btn {
    background: linear-gradient(135deg, #3b82f6, #8b5cf6);
    color: white;
    padding: 14px 32px;
    border: none;
    border-radius: var(--radius-sm);
    font-size: 1rem;
    font-weight: 600;
    cursor: pointer;
    transition: all 0.3s ease;
    width: 100%;
}

.submit-btn:hover {
    transform: translateY(-2px);
    box-shadow: var(--shadow-lg);
}

/* 响应式设计 */
@media (max-width: 768px) {
    .about-title {
        font-size: 2.5rem;
    }
    
    .about-stats {
        gap: 40px;
    }
    
    .stat-number {
        font-size: 2.5rem;
    }
    
    .stat-divider {
        display: none;
    }
    
    .contact-grid {
        grid-template-columns: 1fr;
        gap: 40px;
    }
    
    .features-grid {
        grid-template-columns: 1fr;
    }
    
    .team-grid {
        grid-template-columns: 1fr;
    }
}

/* 动画效果 */
@keyframes fadeInUp {
    from {
        opacity: 0;
        transform: translateY(30px);
    }
    to {
        opacity: 1;
        transform: translateY(0);
    }
}

.fade-in-up {
    animation: fadeInUp 0.6s ease-out;
}

/* 性能优化 */
.smooth-scroll {
    scroll-behavior: smooth;
}

.feature-card,
.team-member,
.contact-item {
    will-change: transform;
    transform: translateZ(0);
}

@media (prefers-reduced-motion: reduce) {
    * {
        animation-duration: 0.01ms !important;
        animation-iteration-count: 1 !important;
        transition-duration: 0.01ms !important;
    }
}

.m-img{
   width: 50%;
   height: 50%;
   margin: 0 auto;
}
.m-img2{
   width: 100%;
   height: 100%;
   margin: 0 auto;
   border-top-left-radius: 10px;
   border-top-right-radius: 10px;
}
.m-img3{
   width: 70%;
   height: 70%;
   margin: 0 auto;
}
.m-img4{
   width: 100%;
   height: 100%;
   margin: 0 auto;
}
.m-card{
    display: flex;
    flex-direction: column;
    flex-wrap: wrap;
    justify-content: center;
    align-items: center;
    width: 300px;
    font-size: 14px;
    line-height: 24px;
    margin: 0;
    color: gray;
    padding:30px 30px 30px 30px;
    
}
#app{
    display: flex;
    flex-direction: row;
    flex-wrap: wrap;
    justify-content: space-around;
    align-items: center;
    margin-top:40px!important;
}
#app2{
    display: flex;
    flex-direction: row;
    justify-content: space-between;
    align-items: center;
    margin-top:40px!important;
	background: #fff;
}
.app-m-card{
	border-radius: 3px;
	box-shadow: 0px 0px 10px #666;
}
.m-center{
	display: flex;
	flex-direction: row;
	flex-wrap: wrap;
	justify-content: center;
	align-items: center;
	margin-top:40px!important;
    height: 100px;
}
.m-center div{
    display: flex;
    flex-direction: row;
    justify-content: center;
    margin-top: 20px;
}
.m-banner{
	margin: 0 auto;
	display: flex;
	flex-direction: row;
	justify-content: center;
	align-items:flex-start;
}
.project-btn{
	width: 100%;
	height: 100%;
	display: flex;
	flex-direction: row;
	flex-wrap: nowrap;
	justify-content: flex-start;
	align-items: center;
	margin-top: 60px;
}
.project{
	width: 90%;
	display: flex;
	flex-direction: row;
	flex-wrap: wrap;
	justify-content: space-around;
	align-items: center;
	margin: 0 auto;
	margin-top: 30px;
}
.project .project-item{
	padding-left: 30px;
	margin-top: 30px;
}
.project .project-item .m-img2:hover{
	cursor: pointer;
}
.more{
	background-color: #f4f6f8;
	color: black;
	border-radius: 10px;
}
.moret{
	background-color: #f4f6f8;
	color: black;
	border-radius: 10px;
}
.frends{
	display: flex;
	flex-direction: row;
	flex-wrap: wrap;
	justify-content: space-around;
	align-items: center;
	margin: 0 auto;
	margin-top: 70px;
}
.frends .frends-item{
	padding-left: 66px;
	margin-top: 30px;
}
.frends .frends-item .m-img2:hover{
	cursor: pointer;
	display: block;
}
.footer{
	height: 230px;
	background-color: rgb(85,85,85);
	margin-top: 160px;
}

.type{
	border: 1px solid #eee;
	border-radius: 2px;
	background-clip: padding-box;
	margin-bottom: 30px;
	background-color: #fff;
	padding: 10px 0;
	width: 87%;
	margin-left: 7.5%;
	margin-top: 40px;
}

.type ul{
	list-style: none;
	padding: 0;
	margin: 0 0 0 80px;
}

.type ul li{
	float: left;
	padding: 15px 20px;
	color: #919191;
	font-size: 14px;
}

.type ul li:hover{
	color: #43bc60;
	cursor: pointer;
}

.type ul li:nth-child(1){
	color: #43bc60;
}


.type .tabs-group{
	padding: 0;
	position: relative;
	overflow-y: hidden;
}

.type .tabs-group .title{
	float: left;
	padding: 15px 0;
	width: 40px;
	display: block;
	overflow: hidden;
	text-overflow: ellipsis;
	white-space: nowrap;
	word-wrap: normal;
	text-align: right;
	font-size: 14px;
	margin-left: 30px;
}
.page{
	position: absolute;
	right: 66px;
	margin-top: 40px;
}
.project-type{
	display: flex;
	flex-direction: column;
	flex-wrap: wrap;
	justify-content: space-around;
	align-items: center;
	height: 350px;
	position: fixed;
	top: 30%;
	background-color: #fff;
	padding: 10px;
	left: -89px;
}
.project-type .project-name{
	font-size: 14px;
	width: 60px;
	height: 60px;
	margin-left: 10px;
}
.project-type .project-name:first-child{
	margin-top: 20px;
}
#wxmin{
	margin-top: 60px;
}
.project-type .project-name a:hover{
	font-size: 18px;
	color: green;
}
.left{
	width: 700px;
	height: auto;
	background-color: #fff;
	display:block;
	word-break: break-all;
	word-wrap: break-word;
	padding: 50px;
	margin-left: 50px;
}
img,image{
	width: 100%;
	height: 100%;
}
.right{
	width: 200px;
	background-color: #fff;
	height: auto;
    right: 93px;
	padding: 50px;
}
.main{
	display: flex;
	flex-direction: row;
	justify-content: space-around;
	align-items: flex-start;
	margin-top: 50px;
}
