.getsolution-main{
	width:100%;
}
/* 方案容器 */
.getsolution-container {
    display: flex;
    gap: 16px;
    align-items: stretch;
}

/* 左侧盒子 */
.getsolution-left {
    flex: 1;
    background: linear-gradient(135deg, #FF700A 21%, #FFFFFF 100%);
    border-radius: 16px;
    background-image: url('/static/index/images/bg-pattern.png');
    background-size: cover;
    background-position: center;
    background-repeat: no-repeat;
    display: flex;
    flex-direction: column;
    min-height: 500px;
    position: relative;
    overflow: hidden;
}

/* 左侧上半部分 */
.getsolution-top {
    flex: 1 1 45%;
    min-height: 200px;
    padding: 30px;
    display: flex;
	flex-direction: column;
    align-items: flex-start;
    justify-content: center;
    border-bottom: 1px solid rgba(255, 255, 255, 0.1);
}

.getsolution-top .getsolution-left-title{
	font-family: Microsoft YaHei, Microsoft YaHei;
	font-weight: 700;
	font-size: 32px;
	color: #FFFFFF;
	line-height: 42px;
	margin:20px 0px ;
}

.getsolution-top .getsolution-left-subtitle{
	font-family: Microsoft YaHei, Microsoft YaHei;
	font-weight: 400;
	font-size: 18px;
	color: #FFFFFF;
	line-height: 32px;
}

/* 左侧下半部分 */
.getsolution-bottom {
    flex: 1 1 55%;
    min-height: 250px;
    padding: 30px;
    display: flex;
    align-items: flex-end;
}
.getsolution-bottom .feature-item{
	margin:10px 0px;
}
/* 右侧盒子 */
.getsolution-right {
    flex: 1;
    border-radius: 16px;
    padding: 40px;
    position: relative;
}

/* 表单容器 */
.getsolution-form {
    width: 100%;
	display: flex;
	flex-direction: column;
	justify-content: center;
	align-items: center;
}

/* 表单标题 */
.form-title {
    font-weight: 400;
    font-size: 32px;
    color: #FFFFFF;
    margin-bottom: 16px;
    line-height: 1.2;
	text-align: center;
}

/* 表单副标题 */
.form-subtitle {
    font-weight: 400;
    font-size: 14px;
    color: #FFFFFF;
    margin-bottom: 12px;
	text-align: center;
}

/* 表单描述 */
.form-description {
    font-weight: 290;
    font-size: 14px;
    color: #8A8E94;
    margin-bottom: 30px;
    line-height: 1.5;
	text-align: center;
}

/* 联系表单 */
.contact-form {
    width: 80%;
	text-align: center;
}

/* 表单组 */
.form-group {
    margin-bottom: 20px;
    position: relative;
}

/* 输入框 */
.form-group input {
    width: 100%;
    padding: 15px 20px;
    background: rgba(255, 255, 255, 0.1);
    border: 1px solid rgba(255, 255, 255, 0.2);
    border-radius: 2px;
    color: #FFFFFF;
    font-size: 14px;
    transition: all 0.3s ease;
    outline: none;
}

.form-group input::placeholder {
    color: rgba(255, 255, 255, 0.6);
}

.form-group input:focus {
    border-color: #FF6B00;
    background: rgba(255, 107, 0, 0.1);
    box-shadow: 0 0 0 3px rgba(255, 107, 0, 0.1);
}

/* 验证码组 */
.captcha-group {
    display: flex;
    gap: 10px;
}

.captcha-group input {
    flex: 1;
}

.captcha-img {
    width: 100px;
    height: 50px;
    border-radius: 4px;
    cursor: pointer;
    border: 1px solid rgba(255, 255, 255, 0.2);
    transition: all 0.3s ease;
}

.captcha-img:hover {
    border-color: #FF6B00;
}

/* 验证码按钮 */
.captcha-btn {
    background: #22242B;
    border-radius: 2px;
    border: 1px solid #FF6B00;
    color: #FFFFFF;
    padding: 15px 20px;
    font-size: 14px;
    cursor: pointer;
    transition: all 0.3s ease;
    white-space: nowrap;
    min-width: 120px;
}

.captcha-btn:hover {
    background: #FF6B00;
    color: #FFFFFF;
    transform: translateY(-1px);
    box-shadow: 0 4px 12px rgba(255, 107, 0, 0.3);
}

.captcha-btn:active {
    transform: translateY(0);
}

/* 左侧盒子标题样式 */
.solution-left-title {
    font-family: Microsoft YaHei, Microsoft YaHei;
    font-weight: 600;
    font-size: 28px;
    color: #FFFFFF;
    line-height: 36px;
    margin-bottom: 15px;
}

.solution-left-subtitle {
    font-family: Microsoft YaHei, Microsoft YaHei;
    font-weight: 400;
    font-size: 16px;
    color: rgba(255, 255, 255, 0.8);
    line-height: 24px;
}

/* 特点列表容器 */
.solution-features {
    display: flex;
    flex-direction: column;
    
    padding: 20px 0;
}

/* 特点项 */
.feature-item {
    display: flex;
    align-items: center;
    gap: 15px;
}

/* 特点图标 */
.feature-icon {
    width: 18px;
    height: 18px;
    background: #FFFFFF;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    flex-shrink: 0;
}

/* 对勾图标 */
.check-icon {
    color: #FF6B00;
    font-size: 12px;
    font-weight: bold;
    line-height: 1;
}

/* 特点文字 */
.feature-text {
    font-family: Microsoft YaHei, Microsoft YaHei;
    font-weight: 400;
    font-size: 18px;
    color: #FFFFFF;
    line-height: 32px;
    flex: 1;
}

/* 提交按钮 */
.submit-btn {
    width: 100%;
    padding: 15px 20px;
    background: #FF6B00;
    border-radius: 2px;
    border: none;
    color: #FFFFFF;
    font-size: 16px;
    font-weight: 500;
    cursor: pointer;
    transition: all 0.3s ease;
    margin-top: 10px;
}

.submit-btn:hover {
    background: #FF8533;
    transform: translateY(-2px);
}