173 lines
2.6 KiB
CSS
173 lines
2.6 KiB
CSS
h1 {
|
|
font-size: 40px;
|
|
/* font-weight: bold; */
|
|
}
|
|
|
|
h2 {
|
|
font-size: 32px;
|
|
}
|
|
|
|
h3 {
|
|
font-size: 24px;
|
|
}
|
|
|
|
h4 {
|
|
font-size: 22px;
|
|
}
|
|
|
|
h5 {
|
|
font-size: 20px;
|
|
}
|
|
|
|
.font-theme {
|
|
/* 全站主色:亮蓝偏青,科技感更强,和首页地球/轨迹保持一致 */
|
|
color: #38BDF8;
|
|
}
|
|
|
|
textarea {
|
|
resize: none;
|
|
}
|
|
|
|
body {
|
|
background-color: #FFFFFF;
|
|
color: rgba(0, 0, 0, 0.90);
|
|
font-size: 14px;
|
|
font-family: PingFang SC;
|
|
font-weight: 400;
|
|
}
|
|
|
|
input {
|
|
outline: none;
|
|
}
|
|
|
|
/* 盒子阴影 */
|
|
.box-shadow {
|
|
background: #FFFFFF;
|
|
box-shadow: 0px 0px 16px rgba(52, 52, 52, 0.16);
|
|
}
|
|
|
|
.box-shadow-light {
|
|
background: #FFFFFF;
|
|
box-shadow: 0px 0px 8px rgba(52, 52, 52, 0.08);
|
|
}
|
|
|
|
|
|
|
|
|
|
a {
|
|
color: #666;
|
|
cursor: pointer;
|
|
text-decoration: none;
|
|
}
|
|
|
|
a:hover {
|
|
color: rgba(56, 189, 248, 1) !important;
|
|
text-decoration: none !important;
|
|
}
|
|
|
|
.link-hover {
|
|
cursor: pointer;
|
|
}
|
|
|
|
.link-hover:hover {
|
|
color: rgba(56, 189, 248, 1) !important;
|
|
}
|
|
|
|
.title-desc {
|
|
color: rgba(0, 0, 0, 0.9);
|
|
font-size: 14px;
|
|
}
|
|
|
|
|
|
|
|
::-webkit-scrollbar-thumb {
|
|
background-color: rgba(0, 0, 0, 0.2);
|
|
border: 1px solid #fff;
|
|
border-radius: 10px;
|
|
}
|
|
|
|
::-webkit-scrollbar {
|
|
width: 6px;
|
|
height: 6px;
|
|
}
|
|
|
|
|
|
.animated {
|
|
animation-duration: .5s !important;
|
|
}
|
|
|
|
|
|
|
|
/* 按钮:统一改为无圆角,更贴近偏硬朗的科技风 */
|
|
.btn {
|
|
padding: 8px 20px;
|
|
opacity: 1;
|
|
border-radius: 0;
|
|
cursor: pointer;
|
|
}
|
|
|
|
.btn2 {
|
|
padding: 10px 40px;
|
|
opacity: 1;
|
|
border-radius: 0;
|
|
cursor: pointer;
|
|
}
|
|
|
|
.btn-s {
|
|
padding: 8px 32px;
|
|
}
|
|
|
|
.btn-normal {
|
|
color: #fff;
|
|
/* 主按钮使用轻微渐变与阴影,突出主召唤操作 */
|
|
background: linear-gradient(135deg, #38BDF8 0%, #6366F1 100%);
|
|
border: none;
|
|
box-shadow: 0 10px 30px rgba(56, 189, 248, 0.45);
|
|
}
|
|
|
|
.btn-normal:active {
|
|
background: linear-gradient(135deg, #0EA5E9 0%, #4F46E5 100%);
|
|
box-shadow: 0 6px 20px rgba(15, 23, 42, 0.45);
|
|
}
|
|
|
|
.btn-normal:hover {
|
|
color: #fff;
|
|
background: linear-gradient(135deg, #0EA5E9 0%, #4F46E5 100%);
|
|
box-shadow: 0 14px 36px rgba(56, 189, 248, 0.6);
|
|
}
|
|
|
|
.btn-normal:disabled {
|
|
opacity: 0.4;
|
|
}
|
|
|
|
.btn-normal-light {
|
|
color: rgba(15, 23, 42, 0.9);
|
|
background: rgba(255, 255, 255, 0.95);
|
|
border: 1px solid #E6EAED;
|
|
}
|
|
|
|
.btn-normal-light:hover {
|
|
border: 1px solid #38BDF8;
|
|
color: #38BDF8;
|
|
}
|
|
|
|
.btn-dark {
|
|
color: #fff;
|
|
background: rgba(15, 23, 42, 1);
|
|
}
|
|
|
|
.btn-dark:hover {
|
|
color: #fff;
|
|
background: #0F172A;
|
|
}
|
|
|
|
.btn-orgin {
|
|
color: rgba(255, 255, 255, 0.9);
|
|
background: #38BDF8;
|
|
}
|
|
|
|
.btn-orgin:hover {
|
|
color: #fff;
|
|
background: #0EA5E9;
|
|
}
|