.richContent{
	max-width: 1200px;
	margin: auto;
	padding: 20px 0px;
}
.rich-left-box{
	width:400px;
	float: left;
}
.rich-right-box{
	width: 700px;
	float: right;
}

 
.rich-left-box .iphone {
	width: 375px;
	height: 812px;
	background: #fff;
	border-radius: 50px;
	border: 14px solid #000;
	position: relative;
	margin: 20px auto;
	box-shadow: 0 5px 30px rgba(0,0,0,0.2);
	overflow: hidden;
}

/* 刘海屏 */
.rich-left-box .iphone:before {
	content: '';
	width: 150px;
	height: 30px;
	background: #000;
	position: absolute;
	top: 0;
	left: 50%;
	transform: translateX(-50%);
	border-bottom-left-radius: 20px;
	border-bottom-right-radius: 20px;
	z-index: 2;
}

/* 电池、信号等状态栏 */
.rich-left-box .iphone-status-bar {
	height: 44px;
	background: #fff;
	position: relative;
	display: flex;
	justify-content: space-between;
	align-items: center;
	padding: 0 15px;
	font-size: 12px;
	color: #000;
	z-index: 1;
}

.rich-left-box .iphone-status-bar .time {
	font-weight: 600;
}

.rich-left-box .iphone-status-bar .right {
	display: flex;
	align-items: center;
	gap: 5px;
}

/* 浏览器地址栏 */
.rich-left-box .iphone-browser-bar {
	height: 44px;
	background: #f5f5f5;
	border-bottom: 1px solid #ddd;
	display: flex;
	align-items: center;
	padding: 0 10px;
	position: sticky;
	top: 0;
	z-index: 1;
}

.rich-left-box .iphone-browser-address {
	flex: 1;
	height: 30px;
	background: #fff;
	border-radius: 15px;
	margin: 0 5px;
	display: flex;
	align-items: center;
	padding: 0 15px;
	font-size: 13px;
	color: #666;
}

.rich-left-box .iphone-screen {
	height: calc(100% - 88px); /* 减去状态栏和地址栏高度 */
	overflow-y: auto;
	background: #fff;
	-webkit-overflow-scrolling: touch;
}

.rich-left-box .iphone-title {
	font-size: 20px;
	font-weight: 600;
	padding: 15px;
	margin: 0;
	text-align: center;
	border-bottom: 1px solid #eee;
	background: #fff;
	position: sticky;
	top: 0;
}

.rich-left-box .iphone-content {
	padding: 15px;
	font-size: 15px;
	line-height: 1.6;
	color: #333;
}

.rich-left-box .iphone-content img {
	max-width: 100%;
	height: auto;
	display: block;
}

/* 自定义滚动条 */
.rich-left-box .iphone-screen::-webkit-scrollbar {
	width: 4px;
}

.rich-left-box .iphone-screen::-webkit-scrollbar-track {
	background: #f1f1f1;
}

.rich-left-box .iphone-screen::-webkit-scrollbar-thumb {
	background: #888;
	border-radius: 2px;
}

   
.editor-toolbar-container {
    margin: 15px 0;
    background: linear-gradient(135deg, #f6f8fa 0%, #f1f5f9 100%);
    padding: 15px;
    border-radius: 8px;
    box-shadow: 0 2px 4px rgba(0,0,0,0.05);
}

.el-button-group {
    display: flex;
    gap: 10px;
}

.el-button-group .el-button {
    background: white;
    border: 1px solid #e0e7ff;
    color: #4f46e5;
    transition: all 0.3s ease;
    border-radius: 6px !important;
    font-weight: 500;
}

.el-button-group .el-button:hover {
    background: #4f46e5;
    color: white;
    transform: translateY(-1px);
    box-shadow: 0 4px 6px rgba(79, 70, 229, 0.1);
}

.rich-right-box h3 {
    font-size: 24px;
    color: #1e293b;
    margin-bottom: 20px;
    position: relative;
    padding-bottom: 10px;
}

.rich-right-box h3:after {
    content: '';
    position: absolute;
    bottom: 0;
    left: 0;
    width: 60px;
    height: 3px;
    background: linear-gradient(90deg, #4f46e5, #818cf8);
    border-radius: 3px;
}

.el-form-item {
    margin-bottom: 20px;
}

.el-input {
    box-shadow: 0 2px 4px rgba(0,0,0,0.05);
    border-radius: 8px;
    transition: all 0.3s ease;
}

.el-input:focus-within {
    box-shadow: 0 4px 6px rgba(79, 70, 229, 0.1);
}

.iphone {
    transition: all 0.3s ease;
}

.iphone:hover {
    transform: translateY(-5px);
    box-shadow: 0 8px 30px rgba(0,0,0,0.15);
}

 