.max-w-4xl { max-width: 56rem; margin: 0 auto; } .p-6 { padding: 1.5rem; } .relative { position: relative; } /* .bg-\[\#1d1e3a\] { background-color: #1d1e3a; } */ .text-white { color: white; } .p-4 { padding: 1rem; } .rounded-t-lg { border-top-left-radius: 0.5rem; border-top-right-radius: 0.5rem; } .flex { display: flex; } .justify-between { justify-content: space-between; } .items-center { align-items: center; } .text-sm { font-size: 0.875rem; } .bg-white { background-color: white; } .rounded-b-lg { border-bottom-left-radius: 0.5rem; border-bottom-right-radius: 0.5rem; } .shadow-lg { box-shadow: 0 10px 15px -3px rgba(0, 0, 0, 0.1), 0 4px 6px -2px rgba(0, 0, 0, 0.05); } .mb-8 { margin-bottom: 2rem; } .pb-4 { padding-bottom: 1rem; } .border-b { border-bottom-width: 1px; border-bottom-style: solid; border-bottom-color: #e5e7eb; } /* .space-x-4 > * + * { margin-left: 1rem; } */ .w-20 { width: 5rem; } .h-20 { height: 5rem; } .bg-gray-200 { background-color: #e5e7eb; } .rounded-lg { border-radius: 0.5rem; } .overflow-hidden { overflow: hidden; } .w-full { width: 100%; } .h-full { height: 100%; } .object-cover { object-fit: cover; } .text-2xl { font-size: 1.5rem; } .font-bold { font-weight: bold; } .text-gray-600 { color: #4b5563; } .text-right { text-align: right; } .text-4xl { font-size: 2.25rem; } .text-yellow-500 { color: #f59e0b; } .ml-1 { margin-left: 0.25rem; } .text-base { font-size: 1rem; } .grid { display: grid; } .grid-cols-1 { grid-template-columns: repeat(1, minmax(0, 1fr)); } .grid-cols-2 { grid-template-columns: repeat(2, minmax(0, 1fr)); } .grid-cols-3 { grid-template-columns: repeat(3, minmax(0, 1fr)); } .gap-4 { gap: 1rem; } .gap-2 { gap: 0.5rem; } .gap-8 { gap: 2rem; } .text-xl { font-size: 1.25rem; } .mb-6 { margin-bottom: 1.5rem; } .mb-4 { margin-bottom: 1rem; } .mb-2 { margin-bottom: 0.5rem; } /* .space-y-6 > * + * { margin-top: 1.5rem; } .space-y-4 > * + * { margin-top: 1rem; } .space-y-8 > * + * { margin-top: 2rem; } */ .w-32 { width: 8rem; } .text-red-500 { color: #ef4444; } .text-green-500 { color: #10b981; } .text-sm { font-size: 0.875rem; } .font-semibold { font-weight: 600; } .mt-2 { margin-top: 0.5rem; } .text-gray-500 { color: #6b7280; } .mt-4 { margin-top: 1rem; } .video-container { position: relative; width: 100%; max-width: 240px; aspect-ratio: 3/4; margin: 0 auto; background: #000; border-radius: 12px; overflow: hidden; } .justify-end { justify-content: flex-end; } .text-blue-500 { color: #3b82f6; } .text-lg { font-size: 1.125rem; } .bg-gray-50 { background-color: #f9fafb; } .aspect-square { aspect-ratio: 1 / 1; } .bg-gray-100 { background-color: #f3f4f6; } .form-item { margin-bottom: 1.5rem; } .border { border-width: 1px; border-style: solid; border-color: #e5e7eb; } .rounded { border-radius: 0.25rem; } .bg-blue-500 { background-color: #3b82f6; } .px-4 { padding-left: 1rem; padding-right: 1rem; } .py-2 { padding-top: 0.5rem; padding-bottom: 0.5rem; } .fixed-buttons { position: fixed; right: 2rem; bottom: 6rem; display: flex; flex-direction: column; gap: 1rem; z-index: 100; } .action-button { width: 40px; height: 40px; border-radius: 50%; background-color: #3b82f6; color: white; display: flex; align-items: center; justify-content: center; box-shadow: 0 4px 6px -1px rgba(0, 0, 0, 0.1), 0 2px 4px -1px rgba(0, 0, 0, 0.06); } /* 为了模拟图标,你可能需要引入字体图标或使用其他方式 */ @font-face { font-family: "iconfont"; src: url('data:font/woff2;charset=utf-8;base64,...') format('woff2'); } .iconfont { font-family: "iconfont" !important; font-style: normal; -webkit-font-smoothing: antialiased; -moz-osx-font-smoothing: grayscale; } /* 媒体查询适配移动端 */ @media (max-width: 768px) { .p-6 { padding: 1rem; } .fixed-buttons { right: 1rem; } } .custom-column { flex-direction: column; }