﻿@charset "utf-8";

/*全局样式*/
html, body, ul, li, ol, dl, dd, dt, p, h1, h2, h3, h4, h5, h6, form, fieldset, legend, img {
    margin: 0;
    padding: 0;
}

* {
    box-sizing: border-box;
    margin: 0;
    padding: 0;
}

table.noBorderTable td,
table.noBorderTable th,
table.noBorderTable caption {
    border: 1px dashed #ddd;
}

table {
    margin-bottom: 10px;
    border-collapse: collapse;
    display: table;
    width: 100%;
    margin: 0 auto;
}

td,
th {
    word-wrap: break-word;
    word-break: break-all;
    padding: 5px;
    border: 1px solid #DDD;
}

th {
    border-top: 2px solid #BBB;
    background: #f7f7f7;
}

td p {
    margin: 0;
    padding: 0;
    width: auto;
    height: auto;
}

ul, li {
    list-style: none;
}

a {
    text-decoration: none;
}

.clear {
    clear: both;
}

/* 固定顶部区域 */
.head_div {
    width: 100%;
    position: fixed;
    top: 0;
    left: 0;
    z-index: 1000;
    background: white;
    padding: 5px 0; /* 调整上下间距为5px */
}

    .head_div.menu_div {
        top: 80px; /* 根据调整后的高度重新计算 */
        padding: 0; /* 菜单区域不需要额外内边距 */
    }

/* 主要内容区域 */
.main_div {
    width: 1200px;
    margin: 0 auto;
}

/* 为内容区域添加顶部边距，避免被固定头部遮挡 */
.content-wrapper {
    margin-top: 140px; /* 根据固定头部总高度调整 */
    overflow-y: auto;
    height: calc(100vh - 180px);
}

.logo_div {
    margin: 5px 0; /* 调整上下间距为5px */
    float: left;
}

.head_logo {
    width: auto;
    height: 60px; /* 适当减小高度 */
    background: #F0F0F0;
    float: left;
}

.web_title {
    width: auto;
    height: 50px; /* 适当减小高度 */
    margin-top: 5px; /* 调整间距 */
    float: left;
    margin-left: 10px; /* 减小左边距 */
}

.search_input {
    width: 436px;
    height: 50px; /* 适当减小高度 */
    background: #F2F2F2;
    border-radius: 8px;
    float: right;
    margin-top: 5px; /* 调整间距 */
    border: 0;
    outline: 0;
    padding-left: 63px;
    color: #999;
    font-size: 16px;
    background-image: url("/Images/search_icon.png");
    background-repeat: no-repeat;
    background-position-x: 20px;
    background-position-y: 10px; /* 调整图标位置 */
    background-size: 25px; /* 适当减小图标大小 */
}

.menu_div {
    /*background: #7CA9FF;*/
    /*background: #347AFF;*/
    background: #0FA2F9;
}

.menu_div_li {
    width: 171px;
    line-height: 50px; /* 减小行高 */
    float: left;
    color: #000653;
    font-size: 18px; /* 适当减小字体大小 */
    height: 50px; /* 减小高度 */
    text-align: center;
}

    .menu_div_li a {
        display: block;
        color: #000653;
    }

.menu_active {
    background: #347AFF;
    border-bottom: 3px solid #FF9C29; /* 减小边框厚度 */
    height: 50px;
    color: #fff !important;
}

    .menu_active a {
        color: #fff !important;
    }

.menu_div_li a:hover {
    background: #347AFF;
    border-bottom: 3px solid #FF9C29; /* 减小边框厚度 */
    color: #fff !important;
    height: 50px;
}

/* 其余样式保持不变 */
.index_top_div {
    margin-top: 16px;
    margin-bottom: 28px;
}

.index_slide {
    float: left;
    width: 551px;
    height: 367px;
    position: relative;
    border-radius: 8px;
}

.swiper-slide img {
    width: 100%;
    height: auto;
}

.index_slide_title {
    width: 100%;
    height: 62px;
    position: absolute;
    bottom: 0;
    left: 0;
    background: rgba(0,0,0,1);
    opacity: 0.72;
    border-radius: 0px 0px 8px 8px;
    font-size: 16px;
    color: #fff;
    padding-left: 17px;
    line-height: 62px;
}

.index_top_news {
    margin-left: 40px;
    float: left;
    margin-top: 29px;
    width: 600px;
}

.index_top_news_li {
    /*margin-bottom: 23px;*/
    /*float: left;*/
}

.index_top_news_li_p {
    margin-bottom: 23px;
    float: left;
}

.index_top_news_li_a {
    width: 506px;
    height: 24px;
    line-height: 22px;
    overflow: hidden;
    color: #333;
    font-size: 16px;
    text-align: left;
    float: left;
}

.index_top_news_li_span {
    float: right;
    font-size: 15px;
    color: #999;
}

.release_div {
    margin-bottom: 28px;
    height: 70px;
}

.release {
    width: 285px;
    height: 70px;
    background-repeat: no-repeat;
    float: left;
    text-align: center;
    color: #fff;
    font-size: 18px;
    line-height: 70px;
    position: relative;
    padding-left: 20px;
    border-radius: 8px;
    display: flex;
    align-items: center;
    justify-content: flex-start;
    transition: all 0.3s ease;
}

    .release:hover {
        transform: translateY(-2px);
        box-shadow: 0 4px 8px rgba(0,0,0,0.2);
    }

.release1 {
    background: linear-gradient(135deg, #FF6B6B, #FF8E8E);
    margin-right: 20px;
}

.release2 {
    background: linear-gradient(135deg, #4ECDC4, #6EE7E7);
    margin-right: 20px;
}

.release3 {
    background: linear-gradient(135deg, #FFA726, #FFC107);
    margin-right: 20px;
}

.release4 {
    background: linear-gradient(135deg, #45B7D1, #67D7F5);
}

.release span {
    font-size: 36px;
    margin-right: 10px;
    font-weight: bold;
}

.notice_big_div {
    margin-top: 28px;
}

.notice_div {
    width: 50%;
    float: left;
}

.notice_title {
    width: 559px;
    height: 60px;
    background: #92d2fa;
    border-radius: 8px;
    color: #333;
    font-size: 20px;
    line-height: 60px;
    padding-left: 17px;
    /*border-left: 10px solid #347AFF;*/
}

    .notice_title a {
        font-size: 16px;
        margin-right: 17px;
        float: right;
        color: #333;
    }

.notice_ul {
    width: 559px;
    float: left;
    min-height: 394px;
}

.notice_li {
    width: 100%;
    margin-top: 20px;
    float: left;
}

    .notice_li a {
        width: 450px;
        height: 22px;
        font-size: 16px;
        font-family: PingFang SC;
        font-weight: 400;
        line-height: 22px;
        color: rgba(51,51,51,1);
        opacity: 1;
        overflow: hidden;
        float: left;
    }

    .notice_li span {
        float: right;
        text-align: center;
        width: 100px;
        height: 21px;
        font-size: 15px;
        font-family: PingFang SC;
        font-weight: 400;
        line-height: 21px;
        color: rgba(153,153,153,1);
        opacity: 1;
    }
/*底部*/
.footer {
    width: 100%;
    min-height: 247px;
    /*background:#999999;*/
    background: #999;
    opacity: 1;
    margin-top: 20px;
}

.friends_links_div {
}

    .friends_links_div li {
        float: left;
        width: 200px;
        height: 75px;
        overflow: hidden;
        box-sizing: border-box;
        border: 1px solid #f8f8f8;
        padding: 5px;
    }

        .friends_links_div li img {
            width: 100%;
            height: 65px;
            line-height: 65px;
        }

.footer_erweima {
    width: 159px;
    height: 159px;
    margin-top: 37px;
    background: #999999;
    padding: 8px;
    float: left;
}

    .footer_erweima img {
        border: 5px solid #DDDDDD;
        width: 133px;
        height: 133px;
    }

.footer_menu {
    float: left;
    margin-top: 31px;
}

    .footer_menu li {
        float: left;
        margin-left: 53px;
        line-height: 28px;
        font-size: 20px;
    }

        .footer_menu li a {
            color: #ffffff;
        }

.footer_web_info {
    width: 280px;
    margin: 0 auto;
    color: #ffffff;
}

.footer_page {
    width: 100%;
    margin-top: 21px;
    float: left;
    margin-bottom: 12px;
    text-align: center;
}

    .footer_page a {
        color: #ffffff;
        text-decoration: underline;
        padding-bottom: 2px;
    }

.footer_web_info_p {
    margin-bottom: 12px;
    font-size: 14px;
    float: left;
    text-align: center;
    width: 100%;
}

    .footer_web_info_p a {
        color: #ffffff;
    }

.footer_p_info {
    width: 840px;
    margin: 0 auto;
    color: #ffffff;
}

.footer_p_info_p {
    margin-bottom: 12px;
    font-size: 14px;
    float: left;
    text-align: center;
    width: 100%;
}

    .footer_p_info_p a {
        color: #ffffff;
    }
/*单页、详情页*/
.nowvisiting {
    color: #333333;
    font-size: 14px;
    margin: 24px auto;
    margin-left:20px;
}

    .nowvisiting a {
        color: #333333;
    }

.page_content_div {
    width: 100%;
    /*background:rgba(248,248,248,1);*/
    background: #fff;
    opacity: 1;
    border-radius: 8px;
    padding: 22px;
    min-height: 420px;
}

.page_title {
    font-size: 24px;
    color: #333;
    text-align: center;
    margin-top: 24px;
}

.page_time {
    font-size: 14px;
    color: #999;
    text-align: center;
    margin-top: 9px;
    margin-bottom: 28px;
}

.page_content {
    font-size: 16px;
    line-height: 30px;
    color: #333;
}
/*列表页*/
.info_list_ul {
    width: 100%;
}

.info_list_li {
    float: left;
    width: 100%;
    margin-bottom: 20px;
}

    .info_list_li a {
        width: 948px;
        height: 22px;
        overflow: hidden;
        float: left;
        color: #333;
        font-size: 16px;
        line-height: 22px;
        font-weight: 400;
    }

    .info_list_li span {
        font-size: 15px;
        color: #999;
        float: right;
    }
/*分页*/
.page {
    line-height: 2;
    text-align: right;
    padding: 10px 0;
}

.pagination {
    display: inline-block;
    font-size: 0;
    padding-left: 10px;
}

    .pagination li {
        display: inline-block;
    }

        .pagination li.disabled span {
            border: 1px solid #ccc;
            background-color: #ccc;
            color: #999;
            cursor: no-drop;
        }

        .pagination li.active span,
        .pagination li a:hover {
            background-color: #7CA9FF;
            color: #fff;
        }

        .pagination li a,
        .pagination li span {
            display: block;
            width: 30px;
            line-height: 30px;
            font-size: 13px;
            transition: all .3s linear;
            text-align: center;
            box-sizing: border-box;
            border: 1px solid #7CA9FF;
            color: #7CA9FF;
        }

/*分页*/
/*搜索页面*/
.search_btn {
    width: 100%;
    display: flex;
    justify-content: space-around;
    box-shadow: 0 1px 0 rgba(0,55,88,.1);
}

.spanList {
    text-align: center;
    width: 115px;
    padding: 22px 0 11px 0;
    height: 55px;
    font-size: 16px;
    line-height: 22px;
    color: #333333;
}

.search_active {
    border-bottom: 4px solid #0FA2F9;
}
/*发布页面*/
.message_form {
    width: 760px;
    margin: 70px auto;
}

.form_input_div {
    width: 100%;
    margin-bottom: 23px;
}

    .form_input_div label {
        width: 80px;
        height: 22px;
        font-size: 16px;
        font-weight: 500;
        line-height: 22px;
        color: #333;
        opacity: 1;
    }

    .form_input_div .form_input_title {
        width: 654px;
        height: 44px;
        background: rgba(255,255,255,1);
        border: 1px solid rgba(221,221,221,1);
        opacity: 1;
        border-radius: 8px;
        outline: none;
        padding-left: 10px;
    }

.form_input_tips {
    width: 150px;
    height: 20px;
    font-size: 14px;
    font-weight: 400;
    line-height: 20px;
    color: rgba(153,153,153,1);
    opacity: 1;
    margin-left: 85px;
    margin-top: 4px;
}

.form_input_div textarea {
    width: 654px;
    height: 344px;
    background: rgba(255,255,255,1);
    border: 1px solid rgba(221,221,221,1);
    opacity: 1;
    border-radius: 8px;
    outline: none;
    resize: none;
}

.choose_time {
    width: 130px;
    color: red;
    border: 0;
    outline: none;
}

    .choose_time::-webkit-input-placeholder { /* WebKit browsers 适配谷歌 */
        color: #FF0000;
    }

    .choose_time:-moz-placeholder { /* Mozilla Firefox 4 to 18 适配火狐 */
        color: #FF0000;
    }

    .choose_time::-moz-placeholder { /* Mozilla Firefox 19+ 适配火狐 */
        color: #FF0000;
    }

    .choose_time:-ms-input-placeholder { /* Internet Explorer 10+  适配ie*/
        color: #FF0000;
    }

.xieyi_p {
    font-size: 16px;
    color: #333;
    width: 100%;
    float: left;
}

    .xieyi_p a {
        color: #3E80FF;
    }

.is_xieyi {
    width: 22px;
    height: 22px;
    background: #fff;
    border: 1px solid rgba(112,112,112,1);
    opacity: 1;
    margin-left: 0px;
    float: left;
    margin-right: 17px;
}

    .is_xieyi.checked {
        background: #f00;
    }

        .is_xieyi.checked:after {
            content: "√";
        }

.form_preview {
    width: 260px;
    height: 70px;
    border-radius: 8px;
    border: 0;
    background: url("/Images/release4.png");
    background-size: 100%;
    margin-left: 80px;
    margin-right: 130px;
    margin-top: 32px;
    font-size: 22px;
    color: #fff;
    float: left;
    text-align: center;
    line-height: 70px;
}

.form_submit {
    width: 260px;
    height: 70px;
    background: url("/Images/release5.png");
    opacity: 1;
    border-radius: 8px;
    border: 0;
    background-size: 100%;
    margin-top: 32px;
    font-size: 22px;
    color: #fff;
}

/* 修改预览弹窗样式 - 添加到 index.css */
.message_frame_div {
    position: fixed;
    top: 0;
    left: 0;
    /*width: 100%;*/
    height: 100%;
    background: rgba(0,0,0,0.7);
    display: none;
    z-index: 9999;
}

.message_frame {
    position: fixed;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    width: 70%;
    height: 100%;
    background: #fff;
    border-radius: 8px;
    display: flex;
    flex-direction: column;
    box-shadow: 0 0 20px rgba(0,0,0,0.3);
}

.preview_header {
    padding: 20px;
    border-bottom: 1px solid #eee;
    background: #f8f8f8;
    border-radius: 8px 8px 0 0;
    flex-shrink: 0;
}

.preview_content {
    flex: 1;
    overflow-y: auto;
    padding: 20px;
}

.message_frame .page_title {
    font-size: 24px;
    color: #333;
    text-align: center;
    margin-bottom: 10px;
    margin-top: 0;
}

.message_frame .page_time {
    font-size: 14px;
    color: #999;
    text-align: center;
    margin-top: 0;
    margin-bottom: 0;
}

.message_frame .page_content {
    font-size: 16px;
    line-height: 30px;
    color: #333;
}

.message_frame_close {
    position: absolute;
    top: 10px;
    right: 10px;
    width: 30px;
    height: 30px;
    cursor: pointer;
    z-index: 10000;
}

.message_frame_div {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: rgba(0,0,0,0.7);
    display: none;
    z-index: 9999;
}
/*留言后付款页面*/
.pay_div {
    width: 400px;
    margin: 5px auto;
}

    .pay_div img {
        width: 79px;
        height: 79px;
        float: left;
    }

    .pay_div span {
        color: #333;
        font-size: 49px;
        margin-left: 29px;
        float: left;
    }

.pay_money_p {
    width: 350px;
    margin: 0 auto;
    margin-top: 46px;
    text-align: center;
    color: #333;
    font-size: 20px;
    line-height: 22px;
}

    .pay_money_p span {
        color: #FF1D00;
        margin-left: 23px;
    }

.pay_erweima_div {
    width: 400px;
    margin: 14px auto;
}

    .pay_erweima_div img {
        width: 180px;
        height: 180px;
        padding: 15px;
        border: 1px solid #DDDDDD;
        margin: 0 auto;
        display: block;
    }

    .pay_erweima_div p {
        font-size: 16px;
        margin-top: 21px;
        color: #333;
        text-align: center;
        margin-bottom: 87px;
    }
/*付款后页面*/
.finish_div {
    margin-top: 139px;
}

.finish_a_div {
    width: 895px;
    margin: 83px auto 146px auto;
}

.finish_a {
    width: 260px;
    height: 70px;
    border-radius: 8px;
    float: left;
    text-align: center;
    line-height: 70px;
    font-size: 26px;
    margin-right: 56px;
}

.finish_a_blue {
    border: 1px solid #3E80FF;
    color: #3E80FF;
}

.finish_a_orange {
    border: 1px solid #FF9C29;
    color: #FF9C29;
}
/* 移动端适配样式 - 添加到index.css末尾 */
@media only screen and (max-width: 1024px) {
    /* 调整主容器宽度 */
    .main_div {
        width: 100%;
        padding: 0 15px;
        box-sizing: border-box;
    }

        .main_div[style*="margin-top: 140px"] {
            margin-top: 0 !important;
        }

        .main_div[style*="margin-top:140px"] {
            margin-top: 0 !important;
        }
    /* 取消移动端固定定位 - 让整个页面一起滚动 */
    .head_div {
        position: relative;
        padding: 5px 0;
        width: 100%;
        background: white;
    }

        .head_div.menu_div {
            position: relative;
            top: 0;
            padding: 0;
        }

    .logo_div {
        float: none;
        text-align: center;
        margin: 5px 0;
    }

    .head_logo, .web_title {
        float: none;
        display: inline-block;
        vertical-align: middle;
    }

    .web_title {
        margin-left: 10px;
    }

    .search_input {
        float: none;
        width: 100%;
        margin-top: 10px;
    }

    /* 菜单样式 */
    .menu_div_li {
        width: 100%;
        float: none;
        text-align: left;
        padding-left: 15px;
    }

    /* 调整内容区域 - 取消固定头部相关设置 */
    .content-wrapper {
        margin-top: 0;
        height: auto;
        overflow-y: visible;
    }

    /* 调整首页顶部布局 */
    .index_top_div {
        margin-top: 10px;
        margin-bottom: 20px;
    }

    .index_slide {
        float: none;
        width: 100%;
        height: auto;
    }

    .swiper-slide {
        height: auto !important;
    }

    .index_top_news {
        margin-left: 0;
        float: none;
        margin-top: 20px;
        width: 100%;
    }

    /* 调整发布按钮区域 */
    .release_div {
        height: auto;
        margin-bottom: 20px;
    }

    .release {
        width: 100%;
        margin-bottom: 10px;
        margin-right: 0;
    }

    /* 修复公告标题区域 - 移动端使用flex布局 */
    .notice_big_div {
        margin-top: 20px;
    }

    .notice_div {
        width: 100%;
        float: none;
        margin-bottom: 20px;
        padding-left: 0 !important;
    }

    .notice_title {
        width: 100%;
        display: flex;
        justify-content: space-between;
        align-items: center;
        padding: 0 15px;
    }

        .notice_title a {
            float: none;
            margin-right: 0;
            font-size: 14px;
            white-space: nowrap;
        }

    .notice_ul {
        width: 100%;
        float: none;
    }

    /* 调整友情链接 */
    .friends_links_div li {
        width: 50%;
        float: left;
    }

    /* 修复底部信息区域显示问题 */
    .footer {
        background: #999 !important;
        min-height: auto;
        padding: 20px 0;
        position: relative;
        overflow: visible;
    }

    .footer_erweima {
        float: none;
        margin: 20px auto;
        text-align: center;
        display: block;
    }

    .footer_menu {
        float: none;
        margin-top: 20px;
        text-align: center;
        display: block;
    }

        .footer_menu li {
            float: none;
            display: inline-block;
            margin: 0 10px 10px;
        }

    .footer_web_info, .footer_p_info {
        width: 100%;
        float: none;
        display: block;
        text-align: center;
        margin: 10px 0;
        color: #ffffff;
        position: relative;
        z-index: 1;
    }

    .footer_page {
        text-align: center;
        margin: 15px 0;
        color: #ffffff;
    }

        .footer_page a {
            color: #ffffff !important;
            display: inline-block;
            margin: 0 10px 5px;
            text-decoration: underline;
        }

    .footer_p_info_p, .footer_web_info_p {
        text-align: center;
        color: #ffffff !important;
        margin: 10px 0;
        font-size: 14px;
        line-height: 1.5;
        width: 100%;
        float: none;
    }

        .footer_p_info_p a, .footer_web_info_p a {
            color: #ffffff !important;
            display: block;
            margin: 5px 0;
            text-decoration: underline;
        }

        .footer_p_info_p img {
            vertical-align: middle;
            margin-right: 5px;
        }

    /* 确保底部内容不被隐藏 */
    .footer .main_div {
        position: relative;
        z-index: 2;
    }

    /* 单页和详情页样式调整 */
    .nowvisiting {
        margin: 15px auto;
        font-size: 14px;
        padding: 0 10px;
    }

    .page_content_div {
        padding: 15px;
        min-height: 300px;
    }

    .page_title {
        font-size: 20px;
        margin-top: 15px;
    }

    .page_time {
        margin-top: 5px;
        margin-bottom: 20px;
    }

    .page_content {
        font-size: 16px;
        line-height: 1.6;
    }

    /* 列表页样式调整 */
    .info_list_li a {
        width: 70%;
        font-size: 15px;
    }

    .info_list_li span {
        font-size: 13px;
        width: 30%;
        text-align: right;
    }

    /* 搜索页面样式调整 */
    .search_btn {
        flex-wrap: wrap;
    }

    .spanList {
        width: 50%;
        padding: 15px 0 8px 0;
        font-size: 14px;
    }

    /* 发布页面样式调整 */
    .message_form {
        width: 100%;
        margin: 30px auto;
        padding: 0 15px;
    }

    .form_input_div .form_input_title,
    .form_input_div textarea {
        width: 100%;
    }

    .form_input_tips {
        margin-left: 0;
    }

    .form_preview,
    .form_submit {
        width: 100%;
        margin: 15px 0;
        font-size: 18px;
    }

    .form_preview {
        margin-left: 0;
        margin-right: 0;
    }

    .xieyi_p {
        font-size: 14px;
        line-height: 1.5;
    }

    /* 预览弹窗移动端适配 */
    .message_frame {
        width: 95%;
        height: 90%;
    }

    .preview_header {
        padding: 15px;
    }

    .preview_content {
        padding: 15px;
    }

    .message_frame .page_title {
        font-size: 18px;
    }

    .message_frame .page_time {
        font-size: 13px;
    }

    .message_frame .page_content {
        font-size: 15px;
        line-height: 1.6;
    }

    /* 广告图片自适应 */
    .mobile-ad-container {
        width: 100% !important;
        margin: 20px 0 !important;
        text-align: center !important;
        display: block !important;
        float: none !important;
        clear: both !important;

    }

        .mobile-ad-container img {
            width: 100% !important;
            max-width: 100% !important;
            height: auto !important;
            border-radius: 8px !important;
            display: block !important;
        }
}

/* 针对小屏幕手机的额外调整 */
@media only screen and (max-width: 480px) {
    /* 广告图片自适应 */
    .mobile-ad-container {
        margin: 15px 0 !important;
    }

    .head_logo {
        height: 40px;
    }

    .web_title {
        height: 35px;
        margin-top: 2px;
    }

    .search_input {
        height: 40px;
        background-position-y: 8px;
        background-size: 20px;
        padding-left: 50px;
        font-size: 14px;
    }

    .menu_div_li {
        line-height: 40px;
        height: 40px;
        font-size: 16px;
    }

        .menu_active, .menu_div_li a:hover {
            height: 40px;
        }

    .index_slide_title {
        height: 50px;
        line-height: 50px;
        font-size: 14px;
        padding-left: 10px;
    }

    .index_top_news_li_a {
        width: 70%;
        font-size: 14px;
    }

    .index_top_news_li_span {
        font-size: 13px;
    }

    .release {
        height: 60px;
        font-size: 16px;
    }

        .release span {
            font-size: 28px;
        }

    .notice_title {
        height: 50px;
        line-height: 50px;
        font-size: 18px;
    }

        .notice_title a {
            font-size: 14px;
        }

    .notice_li a {
        width: 70%;
        font-size: 14px;
    }

    .notice_li span {
        font-size: 13px;
    }

    .friends_links_div li {
        width: 100%;
    }

    .footer_menu li {
        margin: 0 5px 10px;
        font-size: 16px;
    }

    .footer_p_info_p, .footer_web_info_p {
        font-size: 12px;
    }

    .footer_page a {
        display: block;
        margin-bottom: 5px;
    }

    .footer_p_info_p a, .footer_web_info_p a {
        font-size: 12px;
    }

    /* 发布页面小屏幕调整 */
    .form_input_div label {
        font-size: 15px;
    }

    .form_input_div .form_input_title {
        height: 40px;
        font-size: 15px;
    }

    .form_input_div textarea {
        height: 250px;
    }

    .form_preview, .form_submit {
        height: 60px;
        line-height: 60px;
    }
}

/* PC端样式 - 完全保持原有样式 */
@media only screen and (min-width: 1025px) {
    /* 恢复PC端公告标题的原始样式 */
    .notice_title {
        width: 559px;
        height: 60px;
        background: #92d2fa;
        border-radius: 8px;
        color: #333;
        font-size: 20px;
        line-height: 60px;
        padding-left: 17px;
        /*border-left: 10px solid #347AFF;*/
        display: block !important; /* 覆盖移动端的flex布局 */
    }

        .notice_title a {
            font-size: 16px;
            margin-right: 17px;
            float: right;
            color: #333;
        }

        .notice_title span {
            display: inline; /* 确保标题文本正常显示 */
        }

    /* 恢复PC端其他相关样式 */
    .notice_div {
        width: 50%;
        float: left;
    }

        .notice_div[style*="padding-left: 40px"] {
            padding-left: 40px !important;
        }

    .notice_ul {
        width: 559px;
        float: left;
        min-height: 394px;
    }

    /* 修复PC端文本编辑器布局问题 */
    .form_input_div {
        display: flex;
        align-items: flex-start;
        margin-bottom: 23px;
    }

        .form_input_div label {
            width: 80px;
            flex-shrink: 0;
            margin-top: 10px;
        }

        .form_input_div .form_input_title,
        .form_input_div textarea {
            width: 654px;
            margin-left: 0;
        }

    .form_input_tips {
        margin-left: 85px;
    }

    /* 确保文本编辑器与标签同行 */
    #content {
        display: inline-block;
        vertical-align: top;
    }

    /* 修复文本编辑器父容器布局 */
    .form_input_div:has(#content) {
        display: block;
    }

        .form_input_div:has(#content) label {
            float: left;
            width: 80px;
            margin-top: 0;
        }

        .form_input_div:has(#content) textarea {
            float: left;
            width: 654px;
            margin-left: 10px;
        }

    /* 清除浮动 */
    .form_input_div:after {
        content: "";
        display: table;
        clear: both;
    }
}
/* ********************************************************************************** */
/* 注册表单样式 - 添加到 index.css 末尾 */
.register_form {
    width: 760px;
    margin: 30px auto;
    background: #fff;
    border-radius: 8px;
    padding: 10px;
    box-shadow: 0 2px 10px rgba(0,0,0,0.1);
}

.register_title {
    font-size: 24px;
    color: #333;
    text-align: center;
    margin-bottom: 10px;
    font-weight: bold;
}

.form_group {
    margin-bottom: 20px;
    position: relative;
    display: flex;
    align-items: flex-start;
}

.form_label {
    width: 200px; /* 增加标签宽度 */
    flex-shrink: 0;
    margin-bottom: 0;
    font-size: 16px;
    color: #333;
    font-weight: 500;
    line-height: 44px;
    text-align: right;
    padding-right: 20px; /* 增加右边距 */
}

    .form_label.required:after {
        content: "*";
        color: #ff0000;
        margin-left: 4px;
    }

.form_input_container {
    flex: 1;
    position: relative;
    min-width: 0; /* 防止flex容器溢出 */
}

.form_input {
    width: 100%;
    height: 44px;
    background: #fff;
    border: 1px solid #ddd;
    border-radius: 8px;
    padding: 0 15px;
    font-size: 16px;
    color: #333;
    transition: all 0.3s;
}

    .form_input:focus {
        border-color: #0FA2F9;
        box-shadow: 0 0 5px rgba(15, 162, 249, 0.3);
        outline: none;
    }

.form_input_error {
    border-color: #ff0000;
}

.error_message {
    color: #ff0000;
    font-size: 14px;
    margin-top: 5px;
    display: none;
}

.code_input_group {
    display: flex;
    gap: 10px;
}

.code_input {
    flex: 1;
}

.get_code_btn {
    width: 140px;
    height: 44px;
    background: #0FA2F9;
    border: none;
    border-radius: 8px;
    color: #fff;
    font-size: 16px;
    cursor: pointer;
    transition: all 0.3s;
}

    .get_code_btn:hover {
        background: #0d8ed8;
    }

    .get_code_btn:disabled {
        background: #ccc;
        cursor: not-allowed;
    }

.file_input_group {
    display: flex;
    align-items: center;
}

.file_input {
    flex: 1;
    height: 44px;
    background: #fff;
    border: 1px solid #ddd;
    border-radius: 8px;
    padding: 0 15px;
    font-size: 16px;
    color: #333;
}

.file_upload_btn {
    width: 100px;
    height: 44px;
    background: #f0f0f0;
    border: 1px solid #ddd;
    border-radius: 8px;
    margin-left: 10px;
    font-size: 16px;
    cursor: pointer;
    display: flex;
    align-items: center;
    justify-content: center;
}

/* 密码强度指示器 */
.password_strength {
    margin-top: 5px;
    height: 4px;
    background: #f0f0f0;
    border-radius: 2px;
    overflow: hidden;
}

.strength_bar {
    height: 100%;
    width: 0;
    transition: all 0.3s;
    border-radius: 2px;
}

.strength_weak {
    background: #ff4d4f;
    width: 33%;
}

.strength_medium {
    background: #faad14;
    width: 66%;
}

.strength_strong {
    background: #52c41a;
    width: 100%;
}

.strength_text {
    font-size: 12px;
    color: #999;
    margin-top: 3px;
}

.password_toggle {
    position: absolute;
    right: 15px;
    top: 12px;
    background: none;
    border: none;
    cursor: pointer;
    color: #999;
    font-size: 14px;
    z-index: 1;
}

    .password_toggle:hover {
        color: #0FA2F9;
    }

.agreement_group {
    display: flex;
    align-items: flex-start;
    margin: 25px 0;
    padding-left: 200px; /* 与标签对齐 */
}

.agreement_checkbox {
    width: 20px;
    height: 20px;
    margin-right: 10px;
    margin-top: 2px;
}

.agreement_text {
    font-size: 16px;
    color: #333;
    line-height: 1.5;
}

    .agreement_text a {
        color: #0FA2F9;
        text-decoration: underline;
    }

.register_btn {
    width: 100%;
    height: 60px;
    background: linear-gradient(135deg, #0FA2F9, #347AFF);
    border: none;
    border-radius: 8px;
    color: #fff;
    font-size: 20px;
    font-weight: bold;
    cursor: pointer;
    transition: all 0.3s;
    margin-top: 10px;
}

    .register_btn:hover {
        background: linear-gradient(135deg, #0d8ed8, #2c68d9);
        transform: translateY(-2px);
        box-shadow: 0 4px 8px rgba(0,0,0,0.2);
    }

    .register_btn:disabled {
        background: #ccc;
        cursor: not-allowed;
        transform: none;
        box-shadow: none;
    }

/* 注册表单移动端适配 */
@media only screen and (max-width: 1024px) {
    .register_form {
        width: 100%;
        padding: 20px;
        margin: 20px auto;
    }

    .register_title {
        font-size: 20px;
        margin-bottom: 20px;
    }

    .form_group {
        margin-bottom: 15px;
        display: block; /* 移动端恢复垂直布局 */
    }

    .form_label {
        width: 100% !important; /* 使用 !important 确保覆盖PC端样式 */
        text-align: left;
        padding-right: 0;
        margin-bottom: 8px;
        line-height: 1.5;
    }

    .form_input_container {
        width: 100%;
    }

    .form_input {
        height: 40px;
        font-size: 15px;
    }

    .get_code_btn {
        width: 120px;
        height: 40px;
        font-size: 14px;
    }

    .file_upload_btn {
        width: 80px;
        height: 40px;
        font-size: 14px;
    }

    .agreement_group {
        padding-left: 0 !important; /* 移动端取消左边距 */
    }

    .agreement_text {
        font-size: 14px;
    }

    .register_btn {
        height: 50px;
        font-size: 18px;
    }

    .password_toggle {
        top: 10px;
    }
}

/* 针对小屏幕手机的额外调整 */
@media only screen and (max-width: 480px) {
    .register_form {
        padding: 15px;
    }

    .register_title {
        font-size: 18px;
    }

    .form_label {
        font-size: 14px;
    }

    .form_input {
        height: 38px;
        font-size: 14px;
    }

    .get_code_btn {
        width: 100px;
        height: 38px;
        font-size: 13px;
    }

    .file_upload_btn {
        width: 70px;
        height: 38px;
        font-size: 13px;
    }

    .agreement_text {
        font-size: 13px;
    }

    .register_btn {
        height: 45px;
        font-size: 16px;
    }

    .password_toggle {
        top: 9px;
        font-size: 12px;
    }
}

/* PC端样式 - 保持横向布局 */
@media only screen and (min-width: 1025px) {
    .form_group {
        display: flex;
        align-items: flex-start;
    }

    .form_label {
        width: 200px; /* PC端保持200px宽度 */
        text-align: right;
        padding-right: 20px;
        line-height: 44px;
    }

    .form_input_container {
        flex: 1;
    }

    .agreement_group {
        padding-left: 200px; /* PC端保持与标签对齐 */
    }
    
    /* 确保错误信息在PC端也有正确的左边距 */
    #agreementError {
        margin-left: 200px !important;
    }
}
/* 登录链接样式 */
/* 登录链接样式 */
.login_link_container {
    text-align: center;
    margin: 20px 0;
}

.login_link {
    color: #0FA2F9;
    font-size: 16px;
    text-decoration: none;
    transition: color 0.3s;
}

    .login_link:hover {
        color: #0d8ed8;
        text-decoration: underline;
    }

/* IP信息显示样式 */
.ip_info {
    text-align: center;
    margin-top: 20px;
    font-size: 14px;
    color: #666;
    padding: 10px 0;
    border-top: 1px solid #eee;
    background: #f9f9f9;
    border-radius: 4px;
}

    .ip_info span {
        margin: 0 5px;
        font-weight: bold;
        color: #333;
    }

/* 移动端适配 */
@media only screen and (max-width: 1024px) {
    .login_link {
        font-size: 15px;
    }

    .ip_info {
        font-size: 13px;
        margin-top: 15px;
        padding: 8px 0;
    }
}

@media only screen and (max-width: 480px) {
    .login_link {
        font-size: 14px;
    }

    .ip_info {
        font-size: 12px;
        margin-top: 10px;
        padding: 6px 0;
        display: flex;
        flex-direction: column;
        gap: 5px;
    }
}
/* 22222222222222222222222222222222222222*/
