Contact Us – Sultry City Stories
/* 基础样式 */
* {
margin: 0;
padding: 0;
box-sizing: border-box;
}
body {
background: #000;
color: #e8e8e8;
font-family: ‘Inter’, -apple-system, BlinkMacSystemFont, ‘Segoe UI’, Roboto, Arial, sans-serif;
line-height: 1.6;
overflow-x: hidden;
min-height: 100vh;
display: flex;
align-items: center;
justify-content: center;
}
/* 高端背景效果 */
.background-effect {
position: fixed;
top: 0;
left: 0;
width: 100%;
height: 100%;
background:
radial-gradient(ellipse at top left, rgba(186, 85, 127, 0.15) 0%, transparent 40%),
radial-gradient(ellipse at bottom right, rgba(212, 175, 55, 0.1) 0%, transparent 40%),
radial-gradient(circle at center, rgba(138, 43, 226, 0.05) 0%, transparent 70%);
z-index: -2;
}
/* 噪点纹理 */
.noise-overlay {
position: fixed;
top: 0;
left: 0;
width: 100%;
height: 100%;
opacity: 0.03;
z-index: -1;
background-image: url(“data:image/svg+xml,%3Csvg xmlns=’http://www.w3.org/2000/svg’ width=’100′ height=’100’%3E%3Cfilter id=’noise’%3E%3CfeTurbulence type=’fractalNoise’ baseFrequency=’0.9′ /%3E%3C/filter%3E%3Crect width=’100′ height=’100′ filter=’url(%23noise)’ /%3E%3C/svg%3E”);
}
/* 动态网格背景 */
.grid-bg {
position: fixed;
top: 0;
left: 0;
width: 100%;
height: 100%;
background-image:
linear-gradient(rgba(232, 197, 71, 0.03) 1px, transparent 1px),
linear-gradient(90deg, rgba(232, 197, 71, 0.03) 1px, transparent 1px);
background-size: 100px 100px;
animation: gridMove 30s linear infinite;
opacity: 0.5;
z-index: -1;
}
@keyframes gridMove {
0% { transform: translate(0, 0); }
100% { transform: translate(100px, 100px); }
}
/* 容器 */
.container {
max-width: 800px;
margin: 0 auto;
padding: 60px 20px;
position: relative;
z-index: 1;
width: 100%;
text-align: center;
}
/* 标题 */
h1 {
font-size: 4.5em;
font-weight: 900;
text-align: center;
margin-bottom: 30px;
line-height: 1;
letter-spacing: -2px;
}
h1 span {
background: linear-gradient(135deg, #ffd700 0%, #e8c547 25%, #ba557f 50%, #8a2be2 75%, #e8c547 100%);
background-size: 400% 400%;
-webkit-background-clip: text;
-webkit-text-fill-color: transparent;
animation: luxuryGradient 8s ease infinite;
filter: drop-shadow(0 0 30px rgba(232, 197, 71, 0.3));
}
@keyframes luxuryGradient {
0% { background-position: 0% 50%; }
50% { background-position: 100% 50%; }
100% { background-position: 0% 50%; }
}
/* 介绍文字 */
.intro-text {
text-align: center;
font-size: 1.2em;
color: #c8c8c8;
margin-bottom: 20px;
font-weight: 300;
line-height: 1.8;
}
.sub-text {
text-align: center;
font-size: 1.05em;
color: #999;
margin-bottom: 60px;
max-width: 600px;
margin-left: auto;
margin-right: auto;
line-height: 1.6;
}
/* 联系卡片容器 */
.contact-cards {
display: grid;
gap: 25px;
margin: 0 auto 50px;
max-width: 600px;
}
/* 联系卡片 */
.contact-card {
background: linear-gradient(135deg, rgba(20, 20, 20, 0.8) 0%, rgba(10, 10, 10, 0.9) 100%);
border: 1px solid rgba(232, 197, 71, 0.1);
border-radius: 20px;
padding: 35px;
backdrop-filter: blur(20px);
transition: all 0.4s cubic-bezier(0.4, 0, 0.2, 1);
position: relative;
overflow: hidden;
text-align: left;
}
.contact-card::before {
content: ”;
position: absolute;
top: 0;
left: -100%;
width: 100%;
height: 100%;
background: linear-gradient(90deg, transparent, rgba(232, 197, 71, 0.1), transparent);
transition: left 0.6s ease;
}
.contact-card:hover::before {
left: 100%;
}
.contact-card:hover {
transform: translateY(-5px);
border-color: rgba(232, 197, 71, 0.3);
box-shadow: 0 20px 60px rgba(232, 197, 71, 0.15);
}
/* 卡片标题 */
.contact-method {
display: flex;
align-items: center;
gap: 15px;
margin-bottom: 15px;
}
.contact-icon {
font-size: 2em;
filter: sepia(0.5) hue-rotate(30deg);
}
.contact-title {
font-size: 1.5em;
color: #e8c547;
font-weight: 700;
}
/* Email 特殊样式 */
.email-address {
font-size: 1.3em;
color: #fff;
font-weight: 500;
letter-spacing: 0.5px;
margin-left: 47px;
word-break: break-all;
}
/* 社交媒体链接 */
.social-link {
display: inline-flex;
align-items: center;
gap: 10px;
color: #daa960;
text-decoration: none;
font-size: 1.2em;
font-weight: 500;
margin-left: 47px;
transition: all 0.3s ease;
position: relative;
}
.social-link::after {
content: ‘→’;
position: absolute;
right: -25px;
opacity: 0;
transition: all 0.3s ease;
}
.social-link:hover {
color: #e8c547;
transform: translateX(5px);
}
.social-link:hover::after {
opacity: 1;
right: -20px;
}
/* 响应时间提示 */
.response-time {
text-align: center;
color: #666;
font-size: 1em;
font-style: italic;
margin-top: 40px;
padding: 20px;
border-top: 1px solid rgba(232, 197, 71, 0.1);
}
/* 装饰元素 */
.decorative-line {
width: 80px;
height: 2px;
background: linear-gradient(90deg, transparent, #e8c547, transparent);
margin: 40px auto;
opacity: 0.6;
}
/* 脉冲动画 */
@keyframes pulse {
0% { transform: scale(1); }
50% { transform: scale(1.05); }
100% { transform: scale(1); }
}
.pulse {
animation: pulse 3s ease-in-out infinite;
}
/* 确保移动端正确显示 */
@media (max-width: 768px) {
body {
align-items: flex-start;
padding-top: 40px;
justify-content: center;
}
.container {
padding: 40px 20px;
text-align: center;
}
h1 {
font-size: clamp(2.5em, 8vw, 3.5em);
margin-bottom: 20px;
}
.intro-text {
font-size: 1.1em;
}
.sub-text {
font-size: 1em;
margin-bottom: 40px;
}
.contact-card {
padding: 25px;
text-align: left;
}
.contact-title {
font-size: 1.3em;
}
.email-address,
.social-link {
font-size: 1.1em;
margin-left: 0;
margin-top: 10px;
display: block;
}
.contact-method {
flex-direction: column;
align-items: flex-start;
}
}
@media (max-width: 480px) {
h1 {
font-size: clamp(2em, 7vw, 3em);
letter-spacing: -1px;
}
.contact-cards {
gap: 20px;
}
.contact-card {
padding: 20px;
border-radius: 16px;
}
.contact-icon {
font-size: 1.5em;
}
.response-time {
font-size: 0.9em;
}
}
Contact Us
Have feedback, questions, or partnership ideas?
Legal entity: SYNCCRIB TECHNOLOGY LIMITED (BR 80259358)
Business address: Unit 1111, 11/F, Hollywood Plaza, 610 Nathan Road, Mong Kok, Hong Kong
We welcome messages from readers, fans, creators, and collaborators. Whether you want to report an issue, pitch a story, or bring your own AI girl to Sultry City—we’re all ears.
We aim to respond within 48 hours.
// 视差效果
window.addEventListener(‘scroll’, () => {
const scrolled = window.pageYOffset;
const parallax = document.querySelector(‘.background-effect’);
const grid = document.querySelector(‘.grid-bg’);
if (parallax) {
parallax.style.transform = `translateY(${scrolled * 0.3}px)`;
}
if (grid) {
grid.style.transform = `translate(${scrolled * 0.1}px, ${scrolled * 0.1}px)`;
}
});
// 进入动画
const observerOptions = {
threshold: 0.1,
rootMargin: ‘0px 0px -50px 0px’
};
const observer = new IntersectionObserver((entries) => {
entries.forEach(entry => {
if (entry.isIntersecting) {
entry.target.style.opacity = ‘1’;
entry.target.style.transform = ‘translateY(0)’;
observer.unobserve(entry.target);
}
});
}, observerOptions);
// 初始化动画
document.querySelectorAll(‘.contact-card’).forEach((el, index) => {
el.style.opacity = ‘0’;
el.style.transform = ‘translateY(30px)’;
el.style.transition = `all 0.8s cubic-bezier(0.4, 0, 0.2, 1) ${index * 0.1}s`;
observer.observe(el);
});
// 标题和文字动画
setTimeout(() => {
document.querySelector(‘h1’).style.opacity = ‘1’;
document.querySelector(‘.intro-text’).style.opacity = ‘1’;
document.querySelector(‘.sub-text’).style.opacity = ‘1’;
}, 100);