/* ================================================================
   wenzhang.css - 有时会得（温州）文化传媒有限公司 文档页面样式
   重写日期: 2026-07-15
   设计风格: 现代简约 / 宽敞布局 / 玫红主色调
   ================================================================ */

/* ===== 全局重置 ===== */
* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

/* ===== 基础样式 ===== */
html, body {
    font-family: -apple-system, BlinkMacSystemFont, 'Microsoft YaHei', 'PingFang SC', 'Helvetica Neue', Arial, sans-serif;
    background: #f0f2f5;
    color: #333;
    line-height: 1.8;
    font-size: 15px;
    -webkit-font-smoothing: antialiased;
    -moz-osx-font-smoothing: grayscale;
}

ul, li { list-style: none; }

a {
    color: #d6426d;
    text-decoration: none;
    transition: color 0.3s ease;
}
a:hover { color: #b03556; }

a:link, a:visited, a:active {
    color: #d6426d;
    text-decoration: none;
}

img { max-width: 100%; height: auto; }

/* ===== 容器 ===== */
.container {
    max-width: 1000px;
    margin: 0 auto;
    padding: 0 24px;
}

/* ===== 顶部 Logo 区 ===== */
#top {
    background: #fff;
    border-bottom: 1px solid #ececec;
}

#top .topContainer {
    padding: 28px 0;
    text-align: center;
}

#top .topContainer a {
    display: inline-block;
}

#top .topContainer a img {
    max-height: 56px;
    width: auto;
}

/* ===== 内容主区域（第二个 #top） ===== */
#top + #top {
    background: #f0f2f5;
    padding: 40px 0 60px;
    border-bottom: none;
}

.main, .wp {
    width: 100%;
    max-width: 1000px;
}

/* ===== 标题栏 ===== */
.m-tit1 {
    position: relative;
    background: #fff;
    border-radius: 12px;
    padding: 28px 36px;
    margin-bottom: 24px;
    box-shadow: 0 2px 16px rgba(0, 0, 0, 0.06);
    overflow: hidden;
}

.m-tit1 .tit-info {
    float: left;
}

.m-tit1 .tit-info h4 {
    color: #2c2c2c;
    font-size: 24px;
    font-weight: 600;
    letter-spacing: 1px;
    line-height: 1.5;
}

.m-tit1 .tit-info h4 span {
    display: inline-block;
    vertical-align: middle;
}

/* 返回按钮 */
.goback {
    float: right;
    display: inline-flex;
    align-items: center;
    padding: 8px 22px;
    background: #d6426d;
    color: #fff!important;
    font-size: 14px;
    border-radius: 8px;
    transition: all 0.3s ease;
    line-height: 1.5;
    font-weight: 400;
}

.goback:hover {
    background: #b03556;
    color: #fff;
    transform: translateX(-3px);
    box-shadow: 0 4px 12px rgba(214, 66, 109, 0.3);
}

/* 清除浮动 */
.c { clear: both; }
.clearfix::after {
    content: '';
    display: block;
    clear: both;
}

/* ===== 内容信息卡片 ===== */
.m-infor1 {
    background: #fff;
    border-radius: 12px;
    box-shadow: 0 2px 16px rgba(0, 0, 0, 0.06);
    overflow: hidden;
}

/* 默认内容区 */
.default {
    padding: 40px 48px;
    font-size: 15px;
    line-height: 2;
    color: #444;
}

/* 内容区段落 */
.default p {
    margin-bottom: 14px;
    text-align: justify;
}

.default p:last-child {
    margin-bottom: 0;
}

.default span {
    line-height: 2;
}

.default div {
    margin-bottom: 10px;
}

.default div:last-child {
    margin-bottom: 0;
}

.default h3,
.default h4,
.default h5 {
    margin: 20px 0 10px;
    color: #2c2c2c;
    font-weight: 600;
}

.default b,
.default strong {
    color: #2c2c2c;
    font-weight: 600;
}

.default img {
    display: block;
    margin: 20px auto;
    max-width: 100%;
    border-radius: 8px;
}

/* .content 类（shzd.html 中使用） */
.content {
    font-size: 15px;
    line-height: 2;
    padding: 0;
    color: #444;
}

.content p {
    margin-bottom: 14px;
    text-align: justify;
}

/* .announcecontent 类（wzjgjz.html 中使用） */
.announcecontent {
    font-size: 15px;
    line-height: 2;
    color: #444;
}

.announcecontent span {
    display: inline;
}

/* .single-content 类（zcxy.html 中使用） */
.single-content {
    font-size: 15px;
    line-height: 2.2;
    color: #444;
}

/* pre 标签（yszc.html 中使用） */
pre {
    font-family: 'Microsoft YaHei', 'PingFang SC', Consolas, monospace;
    font-size: 15px;
    line-height: 2;
    white-space: pre-wrap;
    word-wrap: break-word;
    color: #444;
    margin: 0;
}

/* ===== 页脚 ===== */
.footer {
    background: #2c2c2c;
    color: #999;
    padding: 36px 0;
}

.footer .bottom {
    text-align: center;
    max-width: 1000px;
    margin: 0 auto;
    padding: 0 24px;
}

.footer .bottom p {
    font-size: 13px;
    color: #999;
    line-height: 2.2;
    margin: 0;
}

.footer .bottom p a {
    color: #999;
    margin: 0 5px;
}

.footer .bottom p a:hover {
    color: #d6426d;
}

.footer .bottom p.p {
    margin: 12px 0 0;
}

/* ===== 响应式适配 ===== */
@media (max-width: 768px) {
    .container {
        padding: 0 16px;
    }

    #top .topContainer {
        padding: 20px 0;
    }

    #top + #top {
        padding: 24px 0 40px;
    }

    .m-tit1 {
        padding: 20px 24px;
        border-radius: 8px;
    }

    .m-tit1 .tit-info {
        float: none;
    }

    .m-tit1 .tit-info h4 {
        font-size: 20px;
    }

    .goback {
        float: none;
        margin-top: 12px;
        display: inline-flex;
    }

    .default {
        padding: 24px 20px;
        font-size: 14px;
    }

    .footer {
        padding: 28px 0;
    }

    .footer .bottom p {
        font-size: 12px;
    }
}
