
/* Contact Us 高级样式，适配Ueeshop且视觉质感拉满 */
.dizik-contact-wrap {
    width: 100% !important;
    max-width: 100% !important;
    box-sizing: border-box;
    font-family: 'Open Sans', sans-serif;
    font-weight: 400;
    color: #2C3E50; /* 高级深灰，替代普通黑色 */
    line-height: 1.8;
    font-size: 16px;
    margin: 0 auto;
    padding: 40px 0 60px; /* 增加上下留白，提升呼吸感 */
}

.dizik-contact-wrap h1 {
    color: #2e967F;
    font-size: 2.5rem;
    margin-bottom: 60px;
    text-align: center;
    font-weight: 600;
    letter-spacing: 0.5px; /* 字间距优化，更精致 */
    position: relative;
}

/* 标题下的精致分割线 */
.dizik-contact-wrap h1::after {
    content: "";
    display: block;
    width: 80px;
    height: 3px;
    background: #2e967F;
    margin: 15px auto 0;
    border-radius: 2px;
}

/* 双栏布局，高级间距+居中 */
.dizik-contact-container {
    display: flex;
    flex-wrap: wrap;
    gap: 60px; /* 加大卡片间距，更透气 */
    justify-content: center;
    max-width: 1200px; /* 限定最大宽度，避免拉伸 */
    margin: 0 auto 50px;
}

/* 高级卡片样式：轻阴影+圆角+渐变背景 */
.dizik-contact-card {
    flex: 1;
    min-width: 320px;
    max-width: 500px;
    padding: 40px 35px;
    border: none; /* 去掉边框，更简约 */
    border-radius: 12px; /* 大圆角，更现代 */
    background: linear-gradient(145deg, #ffffff, #f8f9fa); /* 微渐变，提升质感 */
    box-shadow: 0 8px 24px rgba(0, 0, 0, 0.05); /* 轻阴影，不厚重 */
    transition: all 0.3s ease; /* hover动效 */
}

/* 卡片hover微动效，提升交互质感 */
.dizik-contact-card:hover {
    transform: translateY(-5px);
    box-shadow: 0 12px 30px rgba(0, 0, 0, 0.08);
}

.dizik-contact-card h2 {
    color: #2C3E50; /* 深灰标题，更高级 */
    font-size: 1.6rem;
    margin-bottom: 30px;
    padding-bottom: 15px;
    border-bottom: 1px solid #e8f4f0; /* 浅色系分割线 */
    font-weight: 600;
    letter-spacing: 0.3px;
}

.dizik-contact-item {
    margin-bottom: 25px;
    display: flex;
    align-items: flex-start;
}

/* 图标优化：纯色+背景圆，更精致 */
.dizik-contact-item .icon {
    color: #2e967F;
    font-size: 1.1rem;
    margin-right: 18px;
    margin-top: 2px;
    min-width: 36px;
    height: 36px;
    display: flex;
    align-items: center;
    justify-content: center;
    background: #e8f4f0; /* 品牌色浅背景 */
    border-radius: 50%; /* 圆形图标背景 */
}

.dizik-contact-item p {
    margin: 0;
    font-size: 15px; /* 微调字号，更易读 */
}

/* 链接样式优化：无下划线+hover渐变 */
.dizik-contact-item a {
    color: #2e967F;
    text-decoration: none;
    font-weight: 500;
    position: relative;
}

.dizik-contact-item a::after {
    content: "";
    position: absolute;
    width: 0;
    height: 1px;
    bottom: -2px;
    left: 0;
    background: #2e967F;
    transition: width 0.3s ease;
}

.dizik-contact-item a:hover::after {
    width: 100%;
}

/* 移动端适配：优化间距和padding */
@media (max-width: 768px) {
    .dizik-contact-container {
        gap: 30px;
    }
    .dizik-contact-card {
        padding: 30px 25px;
    }
    .dizik-contact-wrap h1 {
        font-size: 2rem;
        margin-bottom: 40px;
    }
}

/* 强制适配，永不溢出（核心保障） */
.dizik-contact-wrap * {
    box-sizing: border-box;
    max-width: 100% !important;
    word-wrap: break-word !important;
    overflow-wrap: break-word !important;
    white-space: normal !important;
}
