123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596979899100101102103104105106107108109110111112113114115116117118119120121122123124125126127128129130131132133134135136137138139140141142143144145146147148149150151152153154155156157158159160161162163164165166167168169170171172173174175176177178179180181182183184185186187188189190191192193194195196197198199200201202203204205206207208209210211212213214215216217218219220221222223224225226227228229230231232233234235236237238239240241242243244245246247248249250251252253254255256257258259260261262263264265266267268269270271272273274 |
- .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;
- }
|