﻿/* 全局样式重置 */
* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

@font-face {
    font-family: 'SourceHanSansCN';
    src: url('fonts/SourceHanSansCN-Regular.otf') format('opentype');
    font-weight: normal;
    font-style: normal;
}

html, body {
    padding: 0;
    margin: 0;
    width: 100%;
    font-family: 'SourceHanSansCN', sans-serif;
    line-height:0;
}

/* 主容器 */
.main-container {
    min-height: 100vh;
    position: relative;
}

/* 顶部背景 */
.top-background {
    background: url('images/icon/bg_top.png') no-repeat center top;
    background-size: cover;
    min-height: 700px;
    position: relative;
    padding-top: 40px;
}

/* 底部背景 */
.bottom-background {
    background: url('images/icon/bg_bottom.png') no-repeat center bottom;
    background-size: cover;
    min-height: 400px;
    position: relative;
    padding-bottom:30px;
}

/* 头部 */
.header {
    width: 100%;
    margin: 0 auto;
    padding: 0 0 0 80px;
    margin-bottom: 90px;
}

/* Logo */
.logo {
    display: flex;
    align-items: center;
}

.logo img {
    height: 26px;
}

/* 主内容区 */
.content {
  display: grid;
  grid-template-columns: 2fr 1.3fr;
  gap: 20px;
  max-width: 1200px;
  width: 100%;
  margin: 0 auto;
  
}



/* 左侧内容 */
.left-content {
    /*width: 420px;*/
    height: 525px;
    /*border: 1px solid red*/
}

.left-content .title {
        color:#167bff;
        font-size:34px;
        line-height:48px;
        font-weight:bold;
        text-align:left;
}

/* 右侧表单 */
.right-content {
    width: 100%;
    max-width: 466px;
    height: 525px;
    border-radius: 16px;
}

.left-content,
.right-content {
  box-sizing: border-box;
}

/* 表单容器 */
.form-container {
    background: #F5FCFF;
    border-radius: 15px;
    padding: 40px;
    height: 100%;
}

/* 标题 */
.title {
    color: #333;
    font-size: 24px;
    font-weight: bold;
    text-align:center;
}

/* 列表 */
.benefits-list {
    margin-bottom: 32px;
}

.left-content .benefits-list {
    max-width: 420px;
    width: 100%;
}

.benefits-list ul {
    list-style: none;
    padding: 0;
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 15px;
}

.benefits-list li {
    color: #333;
    font-size: 16px;
    align-items: center;
    gap: 10px;
}

.benefits-list li img {
    width: 20px;
    height: 20px;
}

.content ul {
    text-indent: 0em; 
}

/* 客服信息 */
.customer-info {
    max-width: 420px;
    width: 100%;
    margin-bottom: 54px;
    font-size: 16px;
    line-height: 23px;
    color: #666;
    font-weight: 100;
    border: 1px solid #0068eb;
    padding: 10px;
    border-radius: 6px;
    text-align: center;
}

.customer-info .phone {
    color: #0068eb;
    font-size: 20px;
    font-weight: bolder;
    line-height: 1.5;
    font-family: inherit;
    margin-bottom: 0;
}

/* 公司信息 */
.company-info {
    margin-bottom: 0.5rem;
}

.company-info span {
    color: #333;
    font-size: 18px;
    margin-bottom: 20px;
    font-weight: bold;
}

/* 统计数据 */
.stats-grid {
    width:85%;
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 10px;
    margin-bottom: 30px;
}

.stat-item {
    background: rgba(245,252,255,0.6);
    padding: 15px;
    border-radius: 6px;
    border: 1px solid #FFFFFF;
}

.stat-item span {
    font-size: 20px;
    font-weight: bold;
    color: #333;
    line-height:30px;
    margin-bottom: 5px;
}

.stat-item p {
    font-size: 14px;
    color: #666;
    line-height:24px;
    margin: 0;
}

/* 表单标题 */
.form-title {
    text-align: center;
    color: #333;
    font-size: 22px;
    font-weight: bold;
    margin-bottom: 30px;
}

/* 品牌介绍 */
.brand-intro {
    text-align: center;
    padding-top:135px;
    margin-bottom:25px;
}

.brand-intro p {
    font-size: 25px;
    color: #333;
    margin-bottom: 0px;
}

.brand-intro .highlight {
    color: #0d68df;
    font-weight: bold;
}

/* 荣誉证书 */
.awards-section {
    max-width: 1200px;
    width: 100%;
    
    margin: 0 auto 60px;
    text-align: center;
}

.awards-image {
    width: 100%;
    height: auto;
    border-radius: 16px;
    box-shadow: 0 10px 30px rgba(0,0,0,0.1);
}

/* 页脚 */

.bot p {
    margin-bottom: 0px;
    text-align: center;
    font-size: 14px;
    color: #666;
}

.bot .warning {
    color: #ff4757;
    font-weight: bold;
}
/* 响应式设计 */
@media (max-width: 1024px) {
    .content {
        grid-template-columns: 1fr;
    }
}

@media (max-width: 768px) {
    .content {
        grid-template-columns: 1fr; 
    }
}