:root {
    --primary-color: #487BFD;
    --danger-color: #ff4d4f;
    --text-color: #333;
    --text-secondary: #909DB9;
    --border-color: #eee;
    --bg-color: #f5f5f5;
    --card-bg: #fff;
    --person-bolor: #f8f9fa;
}
* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
    font-family: 'PingFang SC', 'Microsoft YaHei', sans-serif;
}
body {
    color: var(--text-color);
    line-height: 1.6;
    font-size: 14px;
}
.peron_main_container {
    display: flex;
    max-width: 1400px;
    margin: 0 auto;
    padding: 5px;
    gap: 20px;
    position: relative;
    top: 80px;
    min-height: 820px;
    max-height: 820px;
}
.sidebar {
    width: 20%;
    background-color: var(--person-bolor);
    border-radius: 8px;
    box-shadow: 0 2px 10px rgba(0, 0, 0, 0.05);
    padding: 15px 0;
    flex-shrink: 0;
}
.sidebar-header {
    padding: 0 20px 15px;
    border-bottom: 1px solid var(--border-color);
    margin-bottom: 10px;
}
.sidebar-header h3 {
    font-size: 16px;
    font-weight: 600;
}
.menu {
    list-style: none;
    padding: 5px;
}
.menu-item {
    padding: 15px 25px;
    cursor: pointer;
    transition: all 0.3s;
    display: flex;
    align-items: center;
}
.menu-item:hover, .menu-item.active {
    background-color: #f0f7ff;
    color: var(--primary-color);
}
.menu-item i {
    margin-right: 8px;
    font-size: 16px;
}
.qr-section {
    margin: 20px;
    padding: 15px;
    text-align: center;
    align-items: center;
    display: flex;
    flex-direction: column;
    position: absolute;
    bottom: 0;
}
.qr-section p {
    font-size: 12px;
    color: var(--text-secondary);
    margin-bottom: 10px;
}
.qr-code {
    width: 200px;
    height: 200px;
    background-color: #ddd;
    margin: 0 auto;
    display: flex;
    align-items: center;
    justify-content: center;
    color: var(--text-secondary);
    font-size: 12px;
}
.main-content {
    flex: 1;
    background-color: var(--person-bolor);
    border-radius: 8px;
    box-shadow: 0 2px 10px rgba(0, 0, 0, 0.05);
    padding: 20px;
}
.content-header {
    font-size: 18px;
    font-weight: 600;
    padding-bottom: 10px;
    border-bottom: 1px solid var(--border-color);
}
.profile-header {
    align-items: center;
    margin-bottom: 30px;
    text-align: center;
}
.avatar {
    width: 80px;
    height: 80px;
    border-radius: 50%;
    background-color: #eee;
    margin-right: 20px;
    overflow: hidden;
}
.avatar img {
    width: 100%;
    height: 100%;
    object-fit: cover;
}
.profile-info h2 {
    font-size: 20px;
    margin-bottom: 5px;
}
.profile-info p {
    color: var(--text-secondary);
    font-size: 14px;
}
.detail-item {
    display: flex;
    align-items: center;
    padding: 15px 0;
    border-bottom: 1px solid var(--border-color);
}
.detail-label {
    width: 100px;
    color: var(--text-secondary);
}
.detail-value {
    flex: 1;
    text-align: center;
}
.option-btn {
    width: 150px;
    text-align: end;
}
.edit-btn,.pwd-edit-btn,.mobile-edit-btn,.wechat-edit-btn,.logout-edit-btn {
    cursor: pointer;
    margin-left: 15px;
    font-size: 13px;
    text-align: end;
    display: inline-block;
    border: 1px solid #d1cece;
    padding: 2px 10px;
    border-radius: 10%;
    width: 50px;
}
.bind-btn {
    color: var(--border-color);
    background-color: var(--primary-color);
}
.unbind-btn {
    color: var(--border-color);
    background-color: var(--danger-color);
}
.cancel-btn {
    color: var(--border-color);
    background-color: var(--text-secondary);
    cursor: pointer;
    margin-left: 4px;
    font-size: 13px;
    width: 50px;
    text-align: start;
    display: none;
    border: 1px solid #d1cece;
    padding: 2px 10px;
    border-radius: 10%;
}
.account-settings {
    margin-top: 30px;
}
.account-settings h3 {
    font-size: 16px;
    margin-bottom: 15px;
    padding-bottom: 10px;
    border-bottom: 1px solid var(--border-color);
}
.delete-account {
    color: var(--danger-color);
}
.tab-content {
    display: none;
}
.tab-content.active {
    display: block;
}
.header-edit-btn {
    display: none;
    position: absolute;
    bottom: 0;
    right: 28px;
    padding: 1px 10px;
    background-color: rgba(0, 0, 0, 0.5);
    color: white;
    border-radius: 0 0 5px 0;
    cursor: pointer;
    font-size: 12px;
}
.profile-pic img {
    width: 100%;
    height: 100%;
    object-fit: cover;
}
.profile-pic {
    position: relative;
    width: 100px;
    height: 100px;
    border-radius: 50%;
    overflow: hidden;
    display: inline-block;
    margin-top: 20px;
}
.file-input {
    display: none;
}
.profile-pic:hover .header-edit-btn {
    display: block;
}
div {
    font-size: 16px;
}
.black-veil {
    display: none;
    left: 0;
    top: 0;
    position: absolute;
    background-color: #333435;
    filter: alpha(opacity = 25);
    opacity: 0.25;
    width: 100%;
    z-index: 523;
    height: 100%;
}
.footer-qr-section {
    display: none;
}
.scroll-indicator-left,
.scroll-indicator {
    display: none;
}
.btn-file-upload {
	position: relative;
	overflow: hidden;
}
.doc-multi-page {
	margin-bottom: 15px;
}
.tab-content {
	padding-top: 0px;
}
.doc-multi-page .tab-content>.active {
	border: 1px solid #ddd;
	border-bottom-left-radius: 4px;
	border-bottom-right-radius: 4px;
	border-top: none;
}
.tab-pane {
	padding: 10px 15px;
}
.btn-file-upload input[type=file] {
	position: absolute;
	top: 0;
	right: 0;
	min-width: 100%;
	min-height: 100%;
	text-align: right;
	opacity: 0;
	background: none repeat scroll 0 0 transparent;
	cursor: inherit;
	display: block;
}
.bs-box {
	position:relative;
	padding-top:3px;
	padding-left: 2px;
	padding-bottom:5px;
	padding-right:5px;
	border-color:#c9c9c9;
	border-style:solid;
	background-color: #fff;
	border-width:1px;
	border-bottom-right-radius:4px;
	border-bottom-left-radius:4px;
	border-top-left-radius:4px;
	border-top-right-radius:4px;
	font-size:16px;
	min-height:100px;
}
.bs-box ul {
	list-style: none;
	padding:0;
	margin:0;
}
.bs-box li {
	margin:0;
	padding-left:10px;
	padding-right:5px;
	padding-top:2px;
	padding-bottom:5px;
}
.bs-docs-footer {
    padding-top: 10px;
    padding-bottom: 20px;
    margin-top: 20px;
    color: #000;
    text-align: center;
    border-top: 0px solid #e5e5e5;
}
.cu_msg-box * {
	box-sizing: border-box;
}
.cu_msg-box{
	height: 100%;
}
.cu_msg_container {
	height: 100%;
	overflow: auto;
	padding: 0 10px;
}
.cu_msg-box.cu_msg-has-input .cu_msg_container{
	height: calc(100% - 115px);
}
.cu_msg-group{
	margin-bottom: 10px;
}
.cu_msg-created-time {
	text-align: center;
}
.cu_msg-created-time span{
	font-size: 14px;
	color: rgb(123,126,127);
	display: inline-block;
	padding: 2px 5px 1px;
}
.cu_msg-created-by {
	font-size: 14px;
	color: rgb(130,130,130);
}
.cu_msg-content div{
	display: inline-block;
	padding: 8px 8px;
}
.cu_msg-content span{
	line-height: 1.5em;
	font-size: 14px;
}
.cu_msg-by-me .cu_msg-content,.cu_msg-by-me .cu_msg-created-by{
	text-align: right;
}
.cu_msg-by-me .cu_msg-content div{
	background: rgb(18, 183, 245);
	color: #ffffff;
}
.cu_msg-by-other .cu_msg-content{
	text-align: left;
}
.cu_msg-by-other .cu_msg-content div{
	background: rgb(207, 207, 207);
	color: #000000;
}
.cu_msg-has-input .cu_msg-textarea-box{
	position: absolute;
	bottom: 0;
	height: 110px;
	width: 100%;
}
.cu_msg-has-input .cu_msg-textarea {
	position: absolute;
	top: 0;
	border: 0;
	bottom: 25px;
	width: 100%;
	resize: none;
	border-top: solid 1px rgb(188,188,188);
	outline: none;
	padding: 5px 0!important;
}
.cu_msg-has-input .cu_msg-bottoms {
	position: absolute;
	bottom: 0;
	right: 0;
}
.cu_msg-has-input .cu_msg-btn-send {
	background: rgb(245,245,245);
	padding: 5px 12px;
	font-size: 14px;
	display: inline-block;
	cursor: pointer;
	user-select: none;
}
.cu_msg-has-input .cu_msg-btn-send:hover{
	background: rgb(16, 147, 199);
	color: #ffffff;
}
label {
    display: inline-block;
    max-width: 100%;
    margin-bottom: 5px;
    font-weight: bold;
}
.phone-code-modal,
.person-edit-modal,
.new-password-modal,
.password-visible-modal,
.bind-wechat-modal {
    max-width: 350px !important;
    width: auto !important;
    height: auto !important;
    position: absolute;
    background-color: #FFF;
    z-index: 999;
    display: none;
    border: solid 1px #eee;
    border-radius: 16px;
    top: 100px;
    left: 0;
    right: 0;
    margin: auto;
    box-shadow: 1px 5px 4px rgba(0, 0, 0, 0.1);
}
.radio-label {
    float: none !important;
}
.imgVerify {
    top: 192px;
}
@keyframes spin {
    0% {
        transform: rotate(0deg);
    }
    100% {
        transform: rotate(360deg);
    }
}
.order_detail {
    background-color: #f8f9fa;
    max-height: 900px;
    min-height: 750px;
    position: relative;
    overflow: auto;
}
.order_grid {
    position: absolute;
    top: 0;
    left: 0;
    bottom: 0;
    right: 0;
    margin: 60px 30px 30px 30px;
}
#member_benefits {
    top: 380px;
    position: absolute;
    display: none;
}
#member_benefits .member_benefits_content_wrapper {
    display: flex;
}
.member_benefits_content {
    width: 100%;
    max-width: 280px;
    min-height: 280px;
    margin: 20px 10px;
    background-color: #fff;
    border: 1px solid #eee;
    border-radius: 8px;
    box-shadow: 1px 5px 4px rgba(0, 0, 0, 0.1);
    overflow: hidden;
    padding: 20px;
}
.member_benefits_content .member_benefits_content_title {
    display: flex;
    flex-direction: column;
    margin-bottom: 15px;
}
.member_benefits_content .member_benefits_content_title_top {
    display: flex;
    flex-direction: column;
    border-bottom: 2px solid #d0d0d0;
}
.member_benefits_content .member_benefits_content_title_top img {
    width: 120px;
    height: 40px;
    margin-right: 10px;
}
.member_benefits_content .member_benefits_content_title_top_text {
    display: flex;
    flex-direction: column;
}
.member_benefits_content .member_benefits_content_title_top_text_title {
    font-size: 1.00em;
    color: #333;
    margin-top: 10px;
    font-weight: 600;
}
.member_benefits_content .member_benefits_content_title_bottom {
    text-align: center;
    display: flex;
    flex-direction: column;
}
.member_benefits_content .member_benefits_content_title_bottom .member_benefits_content_title_bottom_text {
    padding: 15px 0 0 0;
}
@keyframes spin {
    0% {
        transform: rotate(0deg);
    }
    100% {
        transform: rotate(360deg);
    }
}
.container {
    max-width: 1200px;
    margin: 0 auto;
    background-color: #f8f9fa;
    border-radius: 8px;
}
h1 {
    font-size: 18px;
    margin-bottom: 24px;
    color: #333;
    font-weight: 600;
    padding-bottom: 12px;
    border-bottom: 1px solid #f0f0f0;
}
.points-header {
    display: flex;
    align-items: center;
    margin-bottom: 30px;
    flex-wrap: wrap;
    gap: 24px;
}
.points-header>.points-item:nth-child(2) {
    padding: 0 0 60px 20px;
}
.points-item {
    display: flex;
    align-items: center;
    font-size: 15px;
    padding: 0 50px 0 50px;
    color: #333;
    gap: 8px;
}
.points-item img {
    width: 16px;
    height: 16px;
    object-fit: contain;
}
.points-label {
    color: #666;
    font-weight: 400;
}
.points-value {
    font-weight: 600;
    margin-right: 8px;
}
.recharge-btn {
    box-shadow: 0px 10px 30px 0px rgba(0, 62, 204, 0.2);
    background-image: linear-gradient(90deg,
            #45bcfa 0,
            #45bcfa 0,
            #0096ff 100%,
            #0096ff 100%);
    color: white;
    border: none;
    padding: 6px 12px;
    border-radius: 5px;
    cursor: pointer;
    font-size: 18px;
    font-weight: 400;
    white-space: nowrap;
}
.recharge-btn:hover {
    background: #157cf6;
    color: white;
}
.points-instructions {
    background-color: #fafafa;
    border-radius: 4px;
    padding: 16px;
    margin-bottom: 30px;
    border: 1px solid #f0f0f0;
}
.points-instructions h2 {
    font-size: 15px;
    margin-bottom: 12px;
    font-weight: 600;
    color: #333;
}
.points-instructions ul {
    list-style-type: none;
    padding-left: 5px;
}
.points-instructions li {
    position: relative;
    padding-left: 20px;
    margin-bottom: 8px;
    font-size: 13px;
    color: #666;
    line-height: 1.6;
}
.points-instructions li:before {
    content: "●";
    position: absolute;
    left: 0;
    color: #1677ff;
    font-size: 12px;
}
.points-record h2 {
    font-size: 15px;
    margin-bottom: 16px;
    font-weight: 600;
    color: #333;
    padding-bottom: 12px;
    border-bottom: 1px solid #f0f0f0;
}
.tab-content.active {
    display: block;
    background-color: white;
}
.table-container {
    overflow-x: auto;
    margin-bottom: 20px;
    background-color: #fff;
    border-radius: 4px;
    box-shadow: 0 1px 3px rgba(0, 0, 0, 0.05);
    height: 300px;
    display: flex;
    flex-direction: column;
    padding: 0 30px;
}
#earn-table {
    flex: 1;
    overflow-y: auto;
}
.points-table {
    width: 100%;
    border-collapse: separate;
    border-spacing: 0;
    font-size: 14px;
    table-layout: fixed; /* 固定表格布局 */
}
.points-table thead {
    position: sticky;
    top: 0;
    z-index: 10;
}
.points-table th {
    background-color: #fff;
    color: #666;
    font-weight: 700;
    padding: 12px 16px;
    text-align: left;
    border-bottom: 1px solid #e9ecef;
    position: sticky;
    top: 0;
}
.points-table td {
    padding: 12px 16px;
    color: #333;
    border-bottom: 1px solid #e9ecef;
    background-color: #fff;
}
.points-table tr:last-child td {
    border-bottom: none;
}
.points-table tr:hover td {
    background-color: #f8f9fa;
}
.positive {
    color: #52c41a !important;
    font-weight: 500;
}
.negative {
    color: #f5222d !important;
    font-weight: 500;
}
.pagination {
    display: flex;
    align-items: center;
    justify-content: center;
    margin-top: 20px;
    gap: 8px;
}
.pagination button {
    background-color: #f8f9fa;
    border: 1px solid #d9d9d9;
    color: #333;
    padding: 6px 12px;
    border-radius: 4px;
    cursor: pointer;
    transition: all 0.3s;
}
.pagination button:hover {
    background-color: #1677ff;
    color: #fff;
    border-color: #1677ff;
}
.pagination button:disabled {
    opacity: 0.5;
    cursor: not-allowed;
}
.pagination #earn-pages {
    display: flex;
    gap: 8px;
}
.pagination #earn-pages button {
    min-width: 32px;
}
.pagination #earn-pages button.active {
    background-color: #1677ff;
    color: #fff;
    border-color: #1677ff;
}
.page-info {
    text-align: center;
    margin-top: 8px;
    color: #666;
    font-size: 13px;
}
.loading {
    text-align: center;
    padding: 20px;
    color: #666;
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    z-index: 5;
    background-color: rgba(255, 255, 255, 0.8);
    width: 100%;
    display: flex;
    align-items: center;
    justify-content: center;
}
.loading[style*="display: none"] {
    display: none !important;
}
.remainder_point_img {
    width: 90px;
    border: 1px solid #e1e3e5;
    border-radius: 16px;
    padding: 5px;
}
@keyframes spin {
    0% {
        transform: rotate(0deg);
    }
    100% {
        transform: rotate(360deg);
    }
}
@media (max-width: 768px) {
    .points-item {
        white-space: nowrap;
    }
}
.message_detail {
    background-color: #f8f9fa;
    max-height: 900px;
    min-height: 750px;
    position: relative;
    overflow: auto;
}
.message_release{
    display: flex;
    flex-direction: column;
    max-height: 670px;
    position: relative;
    overflow: auto;
}
.message_release_item {
    background: #fff;
    padding: 15px;
    box-shadow: 0px 0px 1px 0 rgba(0, 0, 0, 0.3);
    margin: 10px;
}
.message_release_item_content {
    font-weight: 600;
    margin: 0 0 15px 0;
}
.message_release_url_time {
    font-size: 14px;
    color: #ab9e9e;
    display: flex;
    justify-content: space-between;
}
.message_release_time {
    width: 25%;
}
li {
    list-style-type: none;
}
@media (max-width: 768px) {
    .message_detail {
        background-color: #f8f9fa;
        max-height: 900px;
        min-height: 350px;
    }
}
@keyframes spin {
    0% {
        transform: rotate(0deg);
    }
    100% {
        transform: rotate(360deg);
    }
}
.app-container {
    max-width: 1200px;
    overflow: hidden;
}
.top-nav {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 16px 0;
    border-bottom: 1px solid #eaeef2;
    position: relative;
}
.app-title {
    font-size: 22px;
    font-weight: 600;
    color: #1f2d3d;
    display: flex;
    align-items: center;
}
.app-title i {
    margin-right: 12px;
    color: #409eff;
}
.top-actions {
    display: flex;
    gap: 16px;
    align-items: center;
}
.top-btn {
    padding: 10px 20px;
    border-radius: 8px;
    border: none;
    font-size: 14px;
    cursor: pointer;
    transition: all 0.2s;
    display: flex;
    align-items: center;
    gap: 8px;
}
.top-btn:hover {
    transform: translateY(-2px);
    box-shadow: 0 4px 12px rgba(0, 0, 0, 0.1);
}
.batch-btn {
    background: #f0f5ff;
    color: #409eff;
}
.batch-btn:hover {
    background: #409eff;
    color: #fff;
}
.create-btn {
    background: #409eff;
    color: #fff;
}
.create-btn:hover {
    background: #66b1ff;
}
.delete-btn {
    background: #fef0f0;
    color: #f56c6c;
}
.delete-btn:hover {
    background: #f56c6c;
    color: #fff;
}
.batch-actions-dropdown {
    padding: 12px 20px;
    margin-left: 16px;
}
.batch-actions-dropdown.active {
    display: flex;
    animation: fadeIn 0.3s ease;
}
.move-select {
    padding: 8px 16px;
    border-radius: 6px;
    border: 1px solid #dcdfe6;
    background: #fff;
    color: #606266;
    font-size: 14px;
    cursor: pointer;
    min-width: 150px;
}
.confirm-btn {
    background: #409eff;
}
.confirm-btn:hover {
    background: #66b1ff;
}
.delete-confirm-btn {
    background: #f56c6c;
}
.delete-confirm-btn:hover {
    background: #f78989;
}
.collect-main-content {
    display: flex;
    height: 700px;
}
.collect-sidebar {
    width: 260px;
    background: #fafbfc;
    border-right: 1px solid #eaeef2;
    padding: 0;
    display: flex;
    flex-direction: column;
}
.collect-sidebar-header {
    padding: 20px;
    font-weight: 600;
    color: #1f2d3d;
    border-bottom: 1px solid #eaeef2;
}
.favorite-list {
    list-style: none;
    flex-grow: 1;
    overflow-y: auto;
    padding: 16px;
}
.favorite-item {
    display: flex;
    align-items: center;
    padding: 12px 15px;
    cursor: pointer;
    transition: background-color 0.3s;
    position: relative;
}
.favorite-item:hover {
    background-color: #f5f7fa;
}
.favorite-item.active {
    background-color: #ecf5ff;
    color: #409eff;
}
.folder-name {
    flex: 1;
    margin-left: 10px;
    font-size: 14px;
    white-space: nowrap;
    overflow: hidden;
    text-overflow: ellipsis;
}
.folder-actions {
    display: none;
    transition: opacity 0.3s ease, visibility 0.3s ease;
    padding-left: 10px;
}
.favorite-item:hover .folder-actions {
    opacity: 1;
    display: inline-flex;
}
.favorite-item.active .folder-actions {
    display: inline-flex;
    opacity: 1;
}
.favorite-item i {
    font-size: 16px;
    width: 20px;
    text-align: center;
}
.folder-actions button {
    background: none;
    border: none;
    cursor: pointer;
    padding: 5px;
    border-radius: 4px;
    display: flex;
    align-items: center;
    justify-content: center;
    transition: background-color 0.3s;
    width: 24px;
    height: 24px;
}
.folder-actions button:hover {
    background-color: #e4e7ed;
}
.edit-folder-btn {
    color: #67c23a;
}
.delete-folder-btn {
    color: #f56c6c;
}
.folder-actions .fas {
    font-size: 12px;
}
.collect-content {
    flex: 1;
    padding: 0;
    display: flex;
    flex-direction: column;
    overflow: hidden;
}
.collect-content-header {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 20px 24px;
    border-bottom: 1px solid #eaeef2;
}
.collect-content-title {
    font-size: 18px;
    font-weight: 600;
    color: #1f2d3d;
}
.selected-count {
    color: #409eff;
    font-size: 14px;
    font-weight: 500;
}
.items-container {
    flex-grow: 1;
    overflow-y: auto;
    padding: 16px 24px;
    background: #f9fafc;
}
.collection-item {
    display: flex;
    align-items: center;
    padding: 16px;
    background: #fff;
    border-radius: 10px;
    margin-bottom: 12px;
    box-shadow: 0 2px 8px rgba(0, 0, 0, 0.04);
    transition: all 0.2s;
    position: relative;
    cursor: pointer;
}
.collection-item:hover {
    transform: translateY(-2px);
    box-shadow: 0 4px 12px rgba(0, 0, 0, 0.08);
}
.item-checkbox {
    margin-right: 16px;
    width: 18px;
    height: 18px;
    cursor: pointer;
    display: none;
}
.item-checkbox.visible {
    display: block;
}
.item-content {
    flex-grow: 1;
}
.item-title {
    font-size: 16px;
    margin-bottom: 6px;
    color: #1f2d3d;
    font-weight: 500;
}
.item-source {
    font-size: 13px;
    color: #909399;
    display: flex;
    align-items: center;
}
.item-source i {
    margin-right: 6px;
    font-size: 12px;
}
.empty-state {
    text-align: center;
    color: #909399;
    padding: 80px 20px;
    border-radius: 12px;
    margin-top: 20px;
}
.empty-state i {
    font-size: 64px;
    margin-bottom: 20px;
    color: #c0c4cc;
}
.empty-state p {
    font-size: 16px;
    margin-top: 16px;
}
.switch {
    position: relative;
    display: inline-block;
    width: 40px;
    height: 20px;
}
.switch input {
    opacity: 0;
    width: 0;
    height: 0;
}
.switch span {
    position: absolute;
    cursor: pointer;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background-color: #ccc;
    transition: .4s;
    border-radius: 34px;
}
.switch span:before {
    position: absolute;
    content: "";
    height: 16px;
    width: 16px;
    left: 2px;
    bottom: 2px;
    background-color: white;
    transition: .4s;
    border-radius: 50%;
}
.switch input:checked+span {
    background-color: #2196F3;
}
.switch input:checked+span:before {
    transform: translateX(20px);
}
.switch-label {
    font-size: 12px;
    color: #666;
    margin-left: 8px;
}
@media (max-width: 900px) {
    .collect-main-content {
        flex-direction: column;
        height: auto;
    }
    .collect-sidebar {
        width: 100%;
        border-right: none;
        border-bottom: 1px solid #eaeef2;
    }
    .collect-content {
        height: 500px;
    }
    .top-actions {
        flex-wrap: wrap;
        justify-content: flex-end;
    }
    .batch-actions-dropdown {
        margin-top: 12px;
        margin-left: 0;
        width: 100%;
        order: 3;
    }
}
@keyframes fadeIn {
    from {
        opacity: 0;
        transform: translateY(-10px);
    }
    to {
        opacity: 1;
        transform: translateY(0);
    }
}
@keyframes itemRemoved {
    to {
        opacity: 0;
        transform: translateX(100px);
    }
}
.favorite-item,
.collection-item {
    animation: fadeIn 0.3s ease;
}
.removing {
    animation: itemRemoved 0.5s ease forwards;
}
.selection-mode {
    display: none;
    align-items: center;
    background: #ecf5ff;
    color: #409eff;
    padding: 8px 16px;
    border-radius: 6px;
    font-size: 14px;
    margin-right: 12px;
}
.selection-mode.active {
    display: flex;
}
.edit-mode .collection-item {
    padding-left: 20px;
}
.batch-action-buttons {
    display: none;
    gap: 12px;
    margin-left: 16px;
}
.batch-action-buttons.active {
    display: flex;
}
.batch-action-btn {
    padding: 8px 16px;
    border-radius: 6px;
    border: none;
    font-size: 14px;
    cursor: pointer;
    display: flex;
    align-items: center;
    gap: 6px;
    transition: all 0.2s;
}
.batch-move-btn {
    background: #f0f5ff;
    color: #409eff;
}
.batch-move-btn:hover {
    background: #409eff;
    color: #fff;
}
.batch-delete-btn {
    background: #fef0f0;
    color: #f56c6c;
}
.batch-delete-btn:hover {
    background: #f56c6c;
    color: #fff;
}
@keyframes spin {
    0% {
        transform: rotate(0deg);
    }
    100% {
        transform: rotate(360deg);
    }
}
@media (max-width: 768px) {
    .top-nav {
        white-space: nowrap;
    }
}
.share-container {
    max-width: 1300px;
    margin: 0 auto;
    background-color: #f8f9fa;
    border-radius: 8px;
    padding: 24px;
}
header {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding-bottom: 15px;
}
h1 {
    font-size: 18px;
    margin-bottom: 24px;
    color: #333;
    font-weight: 600;
    padding-bottom: 12px;
    border-bottom: 1px solid #f0f0f0;
}
h1 small {
    font-size: 16px;
    font-weight: normal;
    color: #7a8aa0;
}
.search-box {
    display: flex;
    width: 350px;
    background: white;
    border-radius: 6px;
    box-shadow: 0 2px 6px rgba(0, 0, 0, 0.08);
    overflow: hidden;
}
.search-box input {
    flex: 1;
    padding: 12px 15px;
    border: none;
    outline: none;
    font-size: 14px;
}
.search-box button {
    padding: 0 15px;
    background: #4a6cf7;
    color: white;
    border: none;
    cursor: pointer;
}
.controls {
    display: flex;
    justify-content: space-between;
    margin-bottom: 20px;
    align-items: center;
}
.left-controls {
    display: flex;
    gap: 15px;
    align-items: center;
}
.select-box {
    position: relative;
    width: 180px;
}
.select-box select {
    width: 100%;
    padding: 10px 15px;
    border: 1px solid #e0e6ed;
    border-radius: 6px;
    background: white;
    appearance: none;
    font-size: 14px;
    cursor: pointer;
}
.select-box::after {
    content: "";
    position: absolute;
    right: 15px;
    top: 50%;
    transform: translateY(-50%);
    width: 0;
    height: 0;
    border-left: 5px solid transparent;
    border-right: 5px solid transparent;
    border-top: 5px solid #7a8aa0;
    pointer-events: none;
}
.batch-actions {
    display: flex;
    gap: 10px;
}
.batch-btn {
    padding: 8px 15px;
    background: white;
    border: 1px solid #e0e6ed;
    border-radius: 4px;
    cursor: pointer;
    font-size: 14px;
    display: flex;
    align-items: center;
    gap: 5px;
    transition: all 0.2s;
}
.batch-btn.delete {
    color: #ff4d4f;
}
.batch-btn:hover {
    background: #f8fafd;
}
.batch-btn.delete:hover {
    background: #fef0f0;
}
.share-table {
    background: white;
    border-radius: 8px;
    box-shadow: 0 4px 12px rgba(0, 0, 0, 0.05);
    overflow: hidden;
    margin-bottom: 20px;
}
.share-table table {
    width: 100%;
    border-collapse: collapse;
}
.share-table thead {
    background: #f8fafd;
}
.share-table th {
    padding: 16px 20px;
    text-align: left;
    font-weight: 500;
    color: #5a6c85;
    font-size: 14px;
    border-bottom: 1px solid #e0e6ed;
}
.share-table td {
    padding: 10px 14px;
    border-bottom: 1px solid #e0e6ed;
    font-size: 14px;
}
.share-table tr:last-child td {
    border-bottom: none;
}
.share-table .row-checkbox {
    margin-left: 7px;
}
.share-table .share_fileName {
    display: inline-block;
    max-width: 280px;
    text-overflow: ellipsis;
    white-space: nowrap;
    overflow: hidden;
}
.share-table .show-qrcode {
    display: inline-block;
    margin-bottom: 0;
    font-weight: normal;
    text-align: center;
    vertical-align: middle;
    touch-action: manipulation;
    cursor: pointer;
    background-image: none;
    border: 1px solid transparent;
    white-space: nowrap;
    padding: 3px 12px;
    font-size: 16px;
    -webkit-user-select: none;
    -moz-user-select: none;
    -ms-user-select: none;
    user-select: none;
    color: var(--bs-btn-color);
    background-color: var(--bs-btn-bg);
}
.share-table .status {
    display: inline-block;
    padding: 4px 10px;
    border-radius: 20px;
    font-size: 12px;
    font-weight: 500;
}
.share-table .status-active {
    background: #e6f7ee;
    color: #00a65c;
}
.share-table .status-expired {
    background: #cccccc;
    color: #8c8787;
}
.share-table .status-closed {
    background: #fef0f0;
    color: #ff4d4f;
}
.share-table .status-switch {
    display: flex;
    gap: 10px;
}
.share-table .switch {
    position: relative;
    display: inline-block;
    width: 50px;
    height: 26px;
}
.share-table .switch input {
    opacity: 0;
    width: 0;
    height: 0;
}
.slider {
    position: absolute;
    cursor: pointer;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background-color: #ccc;
    transition: .4s;
    border-radius: 34px;
}
.slider:before {
    position: absolute;
    content: "";
    height: 18px;
    width: 18px;
    left: 4px;
    bottom: 4px;
    background-color: white;
    transition: .4s;
    border-radius: 50%;
}
input:checked+.slider {
    background-color: #4a6cf7;
}
input:checked+.slider:before {
    transform: translateX(24px);
}
.switch-label {
    font-size: 13px;
    color: #5a6c85;
    margin-top: 3px;
}
.pagination-controls {
    display: flex;
    gap: 8px;
}
.checkbox-cell {
    width: 40px;
    text-align: center;
}
input[type="checkbox"] {
    width: 18px;
    height: 18px;
    cursor: pointer;
}
.action-buttons {
    display: flex;
    gap: 10px;
}
.action-btn {
    padding: 6px 10px;
    background: #f8fafd;
    border: 1px solid #e0e6ed;
    border-radius: 4px;
    cursor: pointer;
    font-size: 13px;
    color: #5a6c85;
    display: flex;
    align-items: center;
    gap: 4px;
    transition: all 0.2s;
}
.action-btn:hover {
    background: #edf2f7;
    border-color: #d0d9e4;
}
.action-btn.view {
    color: #4a6cf7;
}
.action-btn.edit {
    color: #00a65c;
}
.dataTables_wrapper {
    position: relative;
}
.dataTables_filter {
    display: none;
}
.dataTables_length {
    margin-bottom: 15px;
}
.dataTables_info {
    padding-top: 15px;
    padding-left: 70px;
    white-space: nowrap;
    color: #7a8aa0;
}
.dataTables_paginate {
    padding-top: 15px;
}
.page-item.active .page-link {
    background-color: #4a6cf7;
    border-color: #4a6cf7;
}
.page-link {
    color: #4a6cf7;
}
.content-url-text {
    white-space: normal;
}
.dataTables_wrapper .status-toggle-container {
    display: flex;
    align-items: center;
    gap: 8px;
    flex-wrap: nowrap;
    min-width: 120px;
}
.dataTables_wrapper .disabled-row {
    opacity: 0.6;
}
.dataTables_wrapper .disabled-row a,
.dataTables_wrapper .disabled-row button,
.dataTables_wrapper .disabled-row input[type="checkbox"] {
    user-select: none;
}
table.dataTable {
    margin-top: auto !important;
}
.dataTables_wrapper .dataTables_scrollBody {
    overflow-x: auto;
}
.dataTables_wrapper .dataTables_scrollBody::-webkit-scrollbar {
    height: 8px;
}
.dataTables_wrapper .dataTables_scrollBody::-webkit-scrollbar-track {
    background: #f1f1f1;
}
.dataTables_wrapper .dataTables_scrollBody::-webkit-scrollbar-thumb {
    background: #888;
    border-radius: 4px;
}
.dataTables_wrapper .dataTables_scrollBody::-webkit-scrollbar-thumb:hover {
    background: #555;
}
.dataTables_wrapper .dataTables_paginate .paginate_button {
    padding: 8px 14px;
    margin-left: 5px;
    background: white;
    border: 1px solid #e0e6ed;
    border-radius: 4px;
    cursor: pointer;
    font-size: 14px;
    color: #5a6c85;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    transition: all 0.2s;
    margin-bottom: 10px;
}
.dataTables_wrapper .dataTables_paginate .paginate_button:hover {
    background: #f8fafd;
    border-color: #d0d9e4;
    color: #4a6cf7 !important;
}
.dataTables_wrapper .dataTables_paginate .paginate_button.current,
.dataTables_wrapper .dataTables_paginate .paginate_button.current:hover {
    background: #4a6cf7;
    border-color: #4a6cf7;
    color: white !important;
}
.dataTables_wrapper .dataTables_paginate .paginate_button.disabled,
.dataTables_wrapper .dataTables_paginate .paginate_button.disabled:hover,
.dataTables_wrapper .dataTables_paginate .paginate_button.disabled:active {
    background: #f8f9fa;
    color: #c0c4cc !important;
    border-color: #ebeef5;
    cursor: not-allowed;
    opacity: 0.6;
}
.dataTables_wrapper .dataTables_paginate .paginate_button.first,
.dataTables_wrapper .dataTables_paginate .paginate_button.previous,
.dataTables_wrapper .dataTables_paginate .paginate_button.next,
.dataTables_wrapper .dataTables_paginate .paginate_button.last {
    padding: 8px 12px;
}
.dataTables_wrapper .dataTables_paginate {
    padding-top: 15px;
    display: flex;
    justify-content: center;
    align-items: center;
}
@keyframes spin {
    0% {
        transform: rotate(0deg);
    }
    100% {
        transform: rotate(360deg);
    }
}
@media (max-width: 768px) {
    .dataTables_wrapper .dataTables_paginate .paginate_button {
        padding: 6px 10px;
        font-size: 13px;
        margin-left: 3px;
    }
    .dataTables_wrapper .dataTables_paginate .paginate_button.first,
    .dataTables_wrapper .dataTables_paginate .paginate_button.previous,
    .dataTables_wrapper .dataTables_paginate .paginate_button.next,
    .dataTables_wrapper .dataTables_paginate .paginate_button.last {
        padding: 6px 8px;
    }
}
@media (max-width: 768px) {
    .share-container {
        padding: 5px;
    }
    .share-container h1 {
        font-size: 16px; 
    }
    .share-container h1 small{
        font-size: 14px;
    }
    .share-container .share-table {
        margin-bottom: 5px;
    }
    .share-container .share-table .share_fileName {
        display: inline-block;
        max-width: 100px;
        text-overflow: ellipsis;
        white-space: nowrap;
        overflow: hidden;
    }
    .share-container .controls {
        flex-direction: column;
        gap: 15px;
        align-items: flex-start;
    }
    .share-container .controls .search-box {
        width: 100%;
    }
    .share-container .controls .left-controls {
        flex-wrap: wrap;
    }
    .dataTables_wrapper .dataTables_info,
    .dataTables_wrapper .dataTables_paginate {
        text-align: center;
        float: none;
        margin-top: 10px;
    }
    .dataTables_wrapper .dataTables_paginate {
        margin-top: 15px;
    }
}
.comment_detail {
    background-color: #f8f9fa;
    max-height: 900px;
    min-height: 750px;
    position: relative;
    overflow: auto;
}
.comment_tab {
    display: flex;
    align-items: center;
    border-bottom: 1px solid #eeeeee;
}
.comment_tab_release,
.comment_tab_receive {
    padding: 3px 15px;
    cursor: pointer;
    font-size: 20px;
}
.comment_release,
.comment_receive {
    display: flex;
    flex-direction: column;
    margin: 10px;
    max-height: 670px;
    position: relative;
    overflow: auto;
}
.comment_receive {
    display: none;
}
.comment_release_item {
    background: #fff;
    box-shadow: 0 0 1px 0 rgba(0, 0, 0, 0.3);
    margin: 10px;
    border-radius: 5px;
}
.comment_release_item_content {
    font-weight: 100;
    margin: 0 0 15px 0;
    font-size: 16px;
    padding: 15px;
}
.comment_release_url_time {
    font-size: 14px;
    color: #ab9e9e;
    display: flex;
    background-color: #f4f4f4;
    padding: 15px;
    justify-content: space-between;
}
.comment_tab .active {
    background-color: #f0f7ff;
    color: #1890ff;
}
li {
    list-style-type: none;
}
@keyframes spin {
    0% {
        transform: rotate(0deg);
    }
    100% {
        transform: rotate(360deg);
    }
}
@media (max-width: 768px) {
    .comment_release_item_content {
        font-size: 14px;
    }
    .comment_release_url_time {
        white-space: nowrap;
    }
    .comment_release_time {
        width: 25%;
        white-space: nowrap;
    }
    .comment_release {
        margin: 0px;
    }
}
