110 lines
1.7 KiB
CSS
110 lines
1.7 KiB
CSS
.content {
|
|
padding: 0 16px;
|
|
padding-bottom: 100px;
|
|
}
|
|
|
|
.image-gallery {
|
|
display: flex;
|
|
gap: 8px;
|
|
overflow-x: auto;
|
|
padding: 8px 0 16px;
|
|
-webkit-overflow-scrolling: touch;
|
|
}
|
|
|
|
.image-gallery::-webkit-scrollbar {
|
|
display: none;
|
|
}
|
|
|
|
.image-item {
|
|
position: relative;
|
|
width: 80px;
|
|
height: 80px;
|
|
border-radius: 8px;
|
|
overflow: hidden;
|
|
flex-shrink: 0;
|
|
}
|
|
|
|
.image-item img {
|
|
width: 100%;
|
|
height: 100%;
|
|
object-fit: cover;
|
|
}
|
|
|
|
.image-item .delete-btn {
|
|
position: absolute;
|
|
top: 4px;
|
|
right: 4px;
|
|
cursor: pointer;
|
|
z-index: 1;
|
|
}
|
|
|
|
.image-item.add-btn {
|
|
background: #F5F5F5;
|
|
display: flex;
|
|
align-items: center;
|
|
justify-content: center;
|
|
cursor: pointer;
|
|
}
|
|
|
|
.image-item.add-btn img {
|
|
width: 24px;
|
|
height: 24px;
|
|
}
|
|
|
|
.article-section {
|
|
padding-top: 8px;
|
|
}
|
|
|
|
.article-title {
|
|
font-size: 17px;
|
|
font-weight: 600;
|
|
color: #333;
|
|
margin-bottom: 16px;
|
|
line-height: 1.4;
|
|
}
|
|
|
|
.article-content {
|
|
font-size: 15px;
|
|
color: #333;
|
|
line-height: 1.8;
|
|
}
|
|
|
|
.article-content p {
|
|
margin-bottom: 12px;
|
|
}
|
|
|
|
.article-content .section-title {
|
|
margin-top: 16px;
|
|
font-weight: 500;
|
|
}
|
|
|
|
.bottom-actions {
|
|
position: fixed;
|
|
bottom: 34px;
|
|
left: 50%;
|
|
transform: translateX(-50%);
|
|
width: 100%;
|
|
max-width: 375px;
|
|
padding: 0 16px;
|
|
display: flex;
|
|
gap: 12px;
|
|
background: #fff;
|
|
padding-top: 12px;
|
|
}
|
|
|
|
.btn-outline {
|
|
flex: 1;
|
|
padding: 14px;
|
|
font-size: 17px;
|
|
font-weight: 500;
|
|
color: #333;
|
|
background: #fff;
|
|
border: 1px solid #E5E5E5;
|
|
border-radius: 8px;
|
|
cursor: pointer;
|
|
}
|
|
|
|
.bottom-actions .green-btn {
|
|
flex: 1;
|
|
}
|