﻿﻿﻿﻿﻿﻿﻿﻿﻿﻿﻿﻿﻿﻿﻿﻿﻿﻿﻿﻿﻿﻿﻿﻿﻿﻿﻿﻿﻿﻿﻿﻿﻿﻿﻿﻿﻿﻿


html,
body {
    margin: 0;
    padding: 0;
    width: 100%;
    -webkit-tap-highlight-color: rgba(0, 0, 0, 0);
}




:root {
    --simple-color: #4CAF50;
    --simple-hover: #ac1e23;
    --simple-body-bg-color: #f5f5f5;
    --simple-card-bg-color: #ffffff;
    --simple-card-white-bg-color: #ffffff;
    --simple-card-grey-bg-color: #f1f2f3;
    --simple-transparent-bg-color: #684df412;
    --simple-header-height: 55px;
    --simple-footer-height: 50px;
    --simple-black-color: #000000;
    --simple-grey-color: #878787;
    --simple-white-color: #ffffff;
    --simple-main-max-width: 1300px;
    --simple-border-radius-s: 4px;
    --simple-border-radius-m: 8px;
    --simple-border-radius-l: 4px;
    --simple-border-radius-xl: 8px;
}

*,
::after,
::before {
    box-sizing: border-box;
}

h1,
h2,
h3,
h4,
h5,
h6,
p,
form,
button,
input {
    margin: 0;
    padding: 0;
}

a,
a:hover,
a:active {
    outline: none;
    text-decoration: none;
}

a:hover {
    color: var(--simple-hover);
}

a {
    color: var(--simple-color);
}

img {
    vertical-align: middle;
    border: none;
}


input,
input:focus {
    outline: none;
    border: 0;
}

button {
    background: unset;
    border: 0;
    outline: none;
    -webkit-appearance: none;
    cursor: pointer;
}

button:focus-visible,
button:focus {
    outline: 0;
}

ul,
li {
    margin: 0;
    padding: 0;
    list-style: none;
}

/*公共样式*/
.d-flex {
    display: flex;
}

.d-block {
    display: block;
}

.d-grid {
    display: grid;
}

.d-none {
    display: none;
}

.d-initial {
    display: initial;

}

.m-1 {
    margin: 5px;
}

.m-2 {
    margin: 10px;
}

.m-3 {
    margin: 15px;
}

.m-4 {
    margin: 20px;
}

.mt-1 {
    margin-top: 5px;
}

.mt-2 {
    margin-top: 10px;
}

.mt-3 {
    margin-top: 15px;
}

.mt-4 {
    margin-top: 20px;
}

.mr-1 {
    margin-right: 5px;
}

.mr-2 {
    margin-right: 10px;
}

.mr-3 {
    margin-right: 15px;
}

.mr-4 {
    margin-right: 20px;
}

.mb-1 {
    margin-bottom: 5px;
}

.mb-2 {
    margin-bottom: 10px;
}

.mb-3 {
    margin-bottom: 15px;
}

.mb-4 {
    margin-bottom: 20px;
}

.ml-1 {
    margin-left: 5px;
}

.ml-2 {
    margin-left: 10px;
}

.ml-3 {
    margin-left: 15px;
}

.ml-4 {
    margin-left: 20px;
}

.p-1 {
    padding: 5px;
}

.p-2 {
    padding: 10px;
}

.p-3 {
    padding: 15px;
}

.p-4 {
    padding: 20px;
}

.pt-1 {
    padding-top: 5px;
}

.pt-2 {
    padding-top: 10px;
}

.pt-3 {
    padding-top: 15px;
}

.pt-4 {
    padding-top: 20px;
}

.pr-1 {
    padding-right: 5px;
}

.pr-2 {
    padding-right: 10px;
}

.pr-3 {
    padding-right: 15px;
}

.pr-4 {
    padding-right: 20px;
}

.pb-1 {
    padding-bottom: 5px;
}

.pb-2 {
    padding-bottom: 10px;
}

.pb-3 {
    padding-bottom: 15px;
}

.pb-4 {
    padding-bottom: 20px;
}

.pl-1 {
    padding-left: 5px;
}

.pl-2 {
    padding-left: 10px;
}

.pl-3 {
    padding-left: 15px;
}

.pl-4 {
    padding-left: 20px;
}

.p-relative {
    position: relative;
}

.p-absolute {
    position: absolute;
}

.p-sticky {
    position: sticky;
}

.align-items-center {
    align-items: center;
}

.flex-direction-column {
    flex-direction: column;
}

.text-align-center {
    text-align: center;
}

.justify-content-center {
    justify-content: center;
}

.overflow-auto {
    overflow: auto;
}

.overflow-hidden {
    overflow: hidden;
}

body {
    background: var(--simple-body-bg-color);
}

#main {
    min-height: calc(100vh - var(--simple-header-height) - var(--simple-footer-height) - 20px);
}

/*主体内容*/
.collect-card {
    width: 100%;
    background-color: var(--simple-card-bg-color);
    border-radius: var(--simple-border-radius-xl);
}

.collect-card-header {
    display: flex;
    align-items: center;
}

.collect-card-header h3 {
    font-size: 16px;
    font-weight: 600;
}

.term-separator {
    margin: 0 5px 0 15px;
    height: 10px;
    width: 2.5px;
    border-radius: 2px;
    background-color: var(--simple-color);
}

.term-tab {
    display: flex;
    flex: 1;
    overflow-x: overlay;
    overflow-y: hidden;
    height: 28px;
    align-items: center;
}
.term-tab::-webkit-scrollbar {
    height: 0;
}
.term-tab-item{
    flex-shrink: 0;
}
.term-tab-item a {
    display: block;
    position: relative;
    font-size: 14px;
    line-height: 16px;
    padding: 0 8px;
    color: var(--simple-black-color);
}

.term-active {
    color: var(--simple-color) !important;
    background-color: rgba(76, 175, 80, 0.1);
    padding: 4px 12px;
    border-radius: 4px;
}

.term-active:after {
    content: '';
    position: absolute;
    width: 15px;
    height: 2.5px;
    left: 50%;
    bottom: -6px;
    transform: translateX(-50%);
    z-index: 1;
    border-radius: 2px;
    background-color: var(--simple-color);
}

.collect-card-content {
    width: 100%;
}

.collect-card-tab {
    display: none;
    flex-wrap: wrap;
}

.tab-active {
    display: flex;
}

/*网址默认风格*/
.site-def-card-item {
    width: 16.6666%;
}
.site-def-url-body {
    color: var(--simple-black-color);
    border: 1px solid #e0e0e0;
    border-radius: var(--simple-border-radius-l);
    padding-top: 10px !important;
    padding-bottom: 10px !important;
    padding-left: 10px !important;
    padding-right: 10px !important;
}
.site-def-card-item:hover .site-def-go a {
    color: var(--simple-color);
}
.site-def-url-img {
    display: flex;
    height: 40px;
    width: 40px;
    margin: 0 8px 0 3px;
    align-items: center;
    justify-content: center;
    border-radius: 50%;
    overflow: hidden;
}
.site-def-url-img img{
    width: 100%;
    height: 100%;
    object-fit: cover;
}

/* 卡片背景右侧添加旋转45度的logo图片 */
.site-def-url-card {
    position: relative;
    overflow: hidden;
    display: block;
}

.site-def-url-info {
    flex: 1;
    width: 0;
    position: relative;
    z-index: 1;
}
.site-def-url-title {
    font-size: 16px;
    color: var(--simple-black-color);
    font-weight: 600;
    overflow: hidden;
    text-overflow: ellipsis;
    white-space: nowrap;
    margin-bottom: 4px;
}
.site-def-url-desc p{
    font-size: 13px;
    color: var(--simple-grey-color);
    overflow: hidden;
    text-overflow: ellipsis;
    white-space: nowrap;
}
.site-def-tool {
    display: none;
}
.site-def-go a {
    color: var(--simple-card-grey-bg-color);
}

@media (max-width: 991px) {

    /*网址风格二、软件风格三、软件风格一*/
    .site-def-card-item,
    .site-two-card-item,
    .site-thr-card-item,
    .software-one-card-item {
        width: 33.3333%
    }
}

@media (max-width: 767px) {

    /*网址风格二、软件风格三、软件风格一*/
    .site-def-card-item,
    .site-two-card-item,
    .site-thr-card-item,
    .software-one-card-item {
        width: 50%
    }
}

/* 从index.html转移的样式 */
/* 背景样式 */
body {
	background: #f5f5f5;
	color: #333;
	margin: 0;
	padding: 0;
}

/* 主内容区 */
.main-content {
	display: flex;
	align-items: center;
	justify-content: space-between;
	padding: 20px;
	background: white;
	box-shadow: 0 2px 10px rgba(0,0,0,0.05);
	margin: 0 auto 20px !important;
	margin-top: 0 !important;
	width: 95%;
	max-width: 1200px;
	box-sizing: border-box;
	border-radius: 8px;
}

/* 左侧标志 */
.logo-section {
	display: flex;
	flex-direction: column;
	margin-right: 20px;
	flex-shrink: 0;
}

.logo-main {
	display: flex;
	align-items: center;
	margin-bottom: 15px;
}

.logo-icon {
	margin-right: 10px;
}

.logo-text {
	font-size: 20px;
	font-weight: bold;
	color: #333;
}

/* 图标部分 */
.logo-icons {
	display: flex;
	gap: 10px;
	margin-top: 10px;
}

.icon-item {
	display: flex;
	flex-direction: column;
	align-items: center;
	gap: 4px;
	font-size: 12px;
	color: #000 !important;
	cursor: pointer;
	text-align: center;
}

.icon-item:link,
.icon-item:visited {
	color: #000 !important;
}

.icon-item:hover {
	color: #4CAF50;
}

.icon-item img {
	vertical-align: middle;
}

/* 搜索区域 */
.search-section {
	flex: 1;
	min-width: 0;
	max-width: 900px;
	margin-left: 0;
}

/* 搜索选项 */
.search-options {
	margin-bottom: 10px;
}

.option-item {
	color: #333 !important;
	text-decoration: none;
	margin-right: 15px;
	font-size: 14px;
}

.option-item:link,
.option-item:visited {
	color: #333 !important;
}

.option-item:hover {
	color: #4CAF50;
}

.option-item.active {
	color: #4CAF50 !important;
	background-color: rgba(76, 175, 80, 0.1);
	padding: 4px 12px;
	text-decoration: none;
	position: relative;
}

.option-item.active:after {
	content: '';
	position: absolute;
	width: 15px;
	height: 2.5px;
	left: 50%;
	bottom: -2px;
	transform: translateX(-50%);
	z-index: 1;
	border-radius: 2px;
	background-color: #4CAF50;
}

.option-item.active:link,
.option-item.active:visited {
	color: #4CAF50 !important;
}

/* 搜索框 */
.search-box-wrapper {
	display: flex;
	align-items: center;
	gap: 20px;
	margin-bottom: 10px;
}

.search-box {
	display: flex;
	flex: 1;
}

/* 时间和日期显示 */
.datetime-display {
	display: flex;
	flex-direction: column;
	align-items: center;
	justify-content: center;
	padding-left: 15px;
	border-left: 1px solid #e0e0e0;
	min-width: 100px;
}

.datetime-display .time {
	font-size: 28px;
	font-weight: bold;
	color: #4CAF50;
	line-height: 1.2;
}

.datetime-display .date {
	font-size: 12px;
	color: #666;
	margin-top: 2px;
}

.search-box input {
			flex: 1;
			padding: 12px 15px;
			border: 2px solid #4CAF50;
			border-radius: 4px 0 0 4px;
			font-size: 16px;
			outline: none;
			background-color: white;
		}

.search-box button {
	background-color: #4CAF50;
	color: white;
	border: none;
	padding: 12px 30px;
	border-radius: 0 4px 4px 0;
	font-size: 16px;
	font-weight: bold;
	cursor: pointer;
}

.search-box button:hover {
	background-color: #45a049;
}

/* 公告栏 */
.announcement {
	background-color: rgba(76, 175, 80, 0.1);
	padding: 10px 15px;
	border-radius: 4px;
	display: flex;
	align-items: center;
	font-size: 14px;
	overflow: hidden;
	position: relative;
}

.announcement-icon {
	margin-right: 10px;
	color: #4CAF50;
}

.announcement-container {
	position: relative;
	width: 100%;
	height: auto;
	min-height: 20px;
	overflow: hidden;
}

.announcement-text {
	color: #666;
	display: block;
	width: 100%;
	text-decoration: none;
	transition: opacity 0.5s ease;
	line-height: 1.5;
	padding: 2px 0;
}

.announcement-text:hover {
	color: #4CAF50;
	text-decoration: underline;
}

/* 主要内容 */
.mainContainer {
	background-color: white;
	margin: 0 auto 20px;
	width: 95%;
	max-width: 1200px;
	border-radius: 8px;
	padding: 5px;
	box-shadow: 0 2px 10px rgba(0,0,0,0.05);
	box-sizing: border-box;
}

/* 手机端自适应布局 */
@media (max-width: 768px) {
	.main-content {
		flex-direction: column;
		align-items: stretch;
		padding: 15px;
		margin: 0 auto 20px !important;
		margin-top: 0 !important;
	}

	.logo-section {
		flex-direction: row;
		justify-content: space-between;
		align-items: center;
		margin-right: 0;
		margin-bottom: 15px;
	}

	.logo-main {
		margin-bottom: 0;
	}

	.logo-icon img {
		content: url('../images/logo2.png');
		height: 40px;
	}

	.logo-slogan {
		display: none;
	}

	.logo-icons {
		margin-top: 0;
		gap: 5px;
	}

	.icon-item {
		font-size: 11px;
		display: flex;
		align-items: center;
		gap: 4px;
		text-align: center;
	}

	.icon-item img {
		width: 24px;
		height: 24px;
	}

	.search-section {
		max-width: 100%;
		margin-left: 0;
	}

	.search-options {
		margin-bottom: 10px;
	}

	.option-item {
		font-size: 12px;
		margin-right: 10px;
	}

	.search-box input {
		padding: 10px 12px;
		font-size: 14px;
	}

	.search-box button {
		padding: 10px 20px;
		font-size: 14px;
	}

	/* 手机端隐藏时间日期显示 */
	.datetime-display {
		display: none;
	}

	.search-box-wrapper {
		gap: 0;
	}

	.announcement {
		font-size: 12px;
		padding: 8px 12px;
	}
	
	.announcement-container {
		height: auto;
		min-height: 16px;
	}
	
	.announcement-text {
		line-height: 1.4;
		padding: 1px 0;
	}
}

/* =====================================================
   从index.html转移的内联样式
   ===================================================== */

/* -----------------------------------------------------
   自定义字体样式
   功能：加载阿里图标库的自定义字体，用于页面显示
   ----------------------------------------------------- */
@font-face {
	font-family: 'CustomFont';
	src: url('https://at.alicdn.com/wf/webfont/31wM1BKHT2Sg/uhlYJT5xKpey.woff2') format('woff2');
	font-weight: normal;
	font-style: normal;
}

/* -----------------------------------------------------
   全局字体设置
   功能：为整个页面设置默认字体为自定义字体
   ----------------------------------------------------- */
body {
	font-family: 'CustomFont', sans-serif;
}

/* -----------------------------------------------------
   加载动画容器样式
   功能：页面加载时显示的全屏加载动画容器
   位置：固定在视口顶部，覆盖整个页面
   ----------------------------------------------------- */
#loading-container {
	position: fixed;
	top: 0;
	left: 0;
	width: 100%;
	height: 100%;
	background-color: white;
	display: flex;
	justify-content: center;
	align-items: center;
	z-index: 9999;
	transition: opacity 0.5s ease;
}

/* -----------------------------------------------------
   加载动画图片样式
   功能：设置加载动画中GIF图片的尺寸
   ----------------------------------------------------- */
#loading-image {
	width: 100px;
	height: 100px;
}

/* -----------------------------------------------------
   收藏提示响应式样式
   功能：在移动设备上隐藏收藏提示
   断点：屏幕宽度小于等于768px时生效
   ----------------------------------------------------- */
@media (max-width: 768px) {
	#bookmark-tip {
		display: none !important;
	}
}

/* -----------------------------------------------------
   返回顶部按钮样式
   功能：页面右下角的返回顶部悬浮按钮
   位置：固定在页面右下角，距离底部80px
   ----------------------------------------------------- */
.back-to-top {
	position: fixed;
	bottom: 80px;
	right: 30px;
	width: 40px;
	height: 40px;
	border-radius: 50%;
	background-color: #ffffff;
	color: #666666;
	border: none;
	font-size: 20px;
	font-weight: bold;
	cursor: pointer;
	box-shadow: 0 2px 8px rgba(0, 0, 0, 0.1);
	transition: all 0.3s ease;
	z-index: 1000;
	display: flex;
	align-items: center;
	justify-content: center;
}

/* -----------------------------------------------------
   返回顶部按钮悬停效果
   功能：鼠标悬停时按钮上移并增加阴影
   ----------------------------------------------------- */
.back-to-top:hover {
	background-color: #f5f5f5;
	color: #333333;
	transform: translateY(-2px);
	box-shadow: 0 4px 12px rgba(0, 0, 0, 0.2);
}

/* -----------------------------------------------------
   返回顶部按钮点击效果
   功能：鼠标点击时按钮恢复原位
   ----------------------------------------------------- */
.back-to-top:active {
	transform: translateY(0);
}

/* -----------------------------------------------------
   分享按钮样式
   功能：页面右下角的分享悬浮按钮
   位置：固定在页面右下角，距离底部30px
   ----------------------------------------------------- */
.share-btn {
	position: fixed;
	bottom: 30px;
	right: 30px;
	width: 40px;
	height: 40px;
	border-radius: 50%;
	background-color: #ffffff;
	color: #666666;
	border: none;
	font-size: 16px;
	cursor: pointer;
	box-shadow: 0 2px 8px rgba(0, 0, 0, 0.1);
	transition: all 0.3s ease;
	z-index: 1000;
	display: flex;
	align-items: center;
	justify-content: center;
}

/* -----------------------------------------------------
   分享按钮悬停效果
   功能：鼠标悬停时按钮上移并增加阴影
   ----------------------------------------------------- */
.share-btn:hover {
	background-color: #f5f5f5;
	color: #333333;
	transform: translateY(-2px);
	box-shadow: 0 4px 12px rgba(0, 0, 0, 0.2);
}

/* -----------------------------------------------------
   分享按钮点击效果
   功能：鼠标点击时按钮恢复原位
   ----------------------------------------------------- */
.share-btn:active {
	transform: translateY(0);
}

/* -----------------------------------------------------
   复制成功提示样式
   功能：复制成功后显示的提示信息
   位置：固定在页面右下角
   ----------------------------------------------------- */
.copy-success {
	position: fixed;
	bottom: 80px;
	right: 80px;
	padding: 10px 15px;
	background-color: rgba(102, 204, 102, 0.8);
	color: white;
	border-radius: 4px;
	font-size: 14px;
	box-shadow: 0 2px 8px rgba(0, 0, 0, 0.2);
	z-index: 1001;
	transition: all 0.3s ease;
}

/* -----------------------------------------------------
   网站卡片优化样式
   功能：减小网站卡片的尺寸，让页面更紧凑
   ----------------------------------------------------- */

/* 减小网站卡片之间的间距 */
.simple-site {
	margin-bottom: 3px !important;
}

/* 减小网站卡片内容区域的内边距 */
.site-def-url-body {
	padding-top: 4px !important;
	padding-bottom: 4px !important;
	padding-left: 5px !important;
	padding-right: 5px !important;
}

/* 调整网站标题的字体大小和下边距 */
.site-def-url-title {
	font-size: 15px !important;
	margin-bottom: 2px !important;
}

/* 调整网站描述的字体大小和下边距 */
.site-def-url-desc p {
	font-size: 12px !important;
	margin-bottom: 0 !important;
}

/* 调整网站图标的尺寸 */
.site-def-url-img img {
	width: 40px !important;
	height: 40px !important;
}

/* -----------------------------------------------------
   友情链接和版权信息样式
   功能：页面底部的友情链接和版权信息区域
   ----------------------------------------------------- */
.footer {
	background-color: white;
	margin: 0 auto 20px;
	width: 95%;
	max-width: 1200px;
	border-radius: 8px;
	padding: 15px;
	box-shadow: 0 2px 10px rgba(0,0,0,0.05);
	box-sizing: border-box;
	font-size: 14px;
	color: #666;
}

.footer-title {
	font-size: 16px;
	font-weight: bold;
	color: #333;
	margin-bottom: 10px;
	padding-bottom: 8px;
	border-bottom: 1px solid #f0f0f0;
}

.footer-links {
	margin-bottom: 15px;
}

.footer-link {
	color: #888 !important;
	text-decoration: none;
	margin: 0 15px 8px 0;
	font-size: 12px;
	display: inline-block;
}

.footer-link:link,
.footer-link:visited {
	color: #999 !important;
}

.footer-link:hover {
	color: #4CAF50 !important;
}

.footer-copyright {
	font-size: 12px;
	color: #999;
	margin-top: 10px;
	padding-top: 10px;
	border-top: 1px solid #f0f0f0;
	text-align: center;
}
