/* ========================= */
/* 全局基础样式 */
/* ========================= */

* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

body {
    background-color: #f8fafc;
    font-family: -apple-system, BlinkMacSystemFont, 'Helvetica Neue', Helvetica, 'Segoe UI', Arial, Roboto, 'PingFang SC', 'miui', 'Hiragino Sans GB', 'Microsoft Yahei', sans-serif;
    font-size: 14px;
    color: #1f2937;
    line-height: 1.6;
}

#app {
    width: 100%;
    min-height: 100vh;
    position: relative;
    padding-bottom: 60px;
}

/* ========================= */
/* 工具类 */
/* ========================= */

.flex {
    display: flex;
    align-items: center;
}

.box-size {
    box-sizing: border-box;
}

.page-container {
    padding-top: 5px;
    padding-bottom: 34px;
}

/* ========================= */
/* 导航栏样式 */
/* ========================= */

.custom-navbar {
    position: fixed;
    top: 0;
    left: 0;
    right: 0;
    height: 50px;
    background: linear-gradient(135deg, #1E3A8A 0%, #3B82F6 100%);
    display: flex;
    align-items: center;
    justify-content: center;
    z-index: 9999;
    box-shadow: 0 2px 10px rgba(30, 58, 138, 0.2);
}

.custom-navbar .navbar-title {
    font-size: 18px;
    font-weight: 600;
    color: #ffffff;
}

.page-safe-padding {
    padding-top: 60px;
}

/* ========================= */
/* 轮播图模块 */
/* ========================= */

.banner {
    border-radius: 8px;
    overflow: hidden;
    height: 180px;
    margin: 10px 15px;
    box-shadow: 0 4px 20px rgba(30, 58, 138, 0.1);
}

.banner .swiper-container {
    width: 100%;
    height: 100%;
    position: relative;
}

.banner .swiper-slide {
    width: 100%;
    height: 100%;
}

.banner .swiper-slide img {
    width: 100%;
    height: 100%;
    object-fit: cover;
}

/* ========================= */
/* 投诉按钮 */
/* ========================= */

.tousu {
    width: 70px;
    height: 30px;
    text-align: center;
    background: linear-gradient(135deg, #1e40af, #3b82f6);
    font-size: 14px;
    line-height: 30px;
    color: #ffffff;
    border-radius: 15px;
    position: fixed;
    top: 8px;
    right: 5px;
    font-weight: 500;
    box-shadow: 0 4px 12px rgba(30, 58, 138, 0.4);
    z-index: 1000;
    cursor: pointer;
}

/* ========================= */
/* 企业认证 & 公告卡片 */
/* ========================= */

.container {
    margin: 0 15px 15px 15px;
    padding: 15px;
    background-color: #ffffff;
    border-radius: 8px;
    box-shadow: 0 4px 20px rgba(0, 0, 0, 0.06);
    border: 1px solid #f3f4f6;
}

.gong {
    background-color: #ffffff;
    margin: 0 15px 15px 15px;
    border-radius: 8px;
    box-shadow: 0 4px 20px rgba(0, 0, 0, 0.06);
    border: 1px solid #f3f4f6;
    overflow: hidden;
    padding: 15px;
}

.gong .tit {
    display: flex;
    align-items: center;
    padding: 15px 15px 10px;
    font-size: 18px;
    font-weight: 600;
    color: #1f2937;
}

.gong .tit img {
    width: 16px;
    height: 16px;
    margin-right: 8px;
}

.gong .list {
    padding: 0 15px 15px;
}

.gong .list .items {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 12px 0;
    border-bottom: 1px solid #f3f4f6;
    font-size: 15px;
    cursor: pointer;
}

.gong .list .items:last-child {
    border-bottom: none;
}

.gong .list .items .left {
    flex: 1;
    font-size: 15px;
    color: #1f2937;
}

.gong .list .items .right {
    font-size: 13px;
    color: #999;
}

.tit {
    display: flex;
    align-items: center;
    font-size: 19px;
    font-weight: 600;
    color: #1f2937;
    margin-bottom: 10px;
}

.tit img {
    width: 16px;
    height: 16px;
    margin-right: 10px;
}

.des {
    text-align: center;
    margin: 15px 0;
    font-size: 14px;
    color: #6b7280;
}

.des span {
    color: #3b82f6;
    font-weight: 600;
}

.ge {
    background-color: #e5e7eb;
    height: 10px;
    width: 100%;
}

/* ========================= */
/* 搜索框 */
/* ========================= */

.ipt-box {
    display: flex;
    align-items: center;
    justify-content: center;
    background-color: #ffffff;
    border: 1px solid #e5e7eb;
    border-radius: 8px;
    margin: 0 15px 15px 15px;
    box-shadow: 0 2px 8px rgba(0, 0, 0, 0.04);
    padding: 0 15px;
    height: 48px;
}

.ipt-box input {
    flex: 1;
    height: 32px;
    font-size: 15px;
    color: #1f2937;
    padding: 0 10px;
    border: 1px solid #e5e7eb;
    border-radius: 16px;
    background-color: #f9fafb;
    margin-right: 10px;
    max-width: calc(100% - 90px);
    outline: none;
}

.ipt-box .btn {
    width: 60px;
    height: 32px;
    line-height: 32px;
    text-align: center;
    background: linear-gradient(135deg, #1e40af, #3b82f6);
    color: #ffffff;
    font-size: 14px;
    border-radius: 16px;
    font-weight: 500;
    box-shadow: 0 2px 8px rgba(30, 58, 138, 0.3);
    flex-shrink: 0;
    cursor: pointer;
    border: none;
}

/* ========================= */
/* 弹窗样式 */
/* ========================= */

.modal-overlay {
    position: fixed;
    z-index: 9999;
    top: 0;
    left: 0;
    width: 100%;
    height: 100vh;
    background-color: rgba(30, 58, 138, 0.6);
    display: flex;
    align-items: center;
    justify-content: center;
    padding: 10px;
    box-sizing: border-box;
}

.modal-content {
    width: 340px;
    max-width: 90%;
    min-width: 300px;
    max-height: 80vh;
    overflow-y: auto;
    background-color: #ffffff;
    border-radius: 12px;
    box-shadow: 0 16px 48px rgba(0, 0, 0, 0.2);
    margin: 0 auto;
    display: flex;
    flex-direction: column;
}

.modal-header {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 20px 20px 10px 20px;
    border-bottom: 1px solid #eee;
}

.modal-title {
    font-size: 18px;
    font-weight: 600;
    color: #1f2937;
}

.modal-close {
    width: 20px;
    height: 20px;
    cursor: pointer;
}

.modal-body {
    padding: 20px;
    display: flex;
    flex-direction: column;
}

.modal-footer {
    margin-top: auto;
    padding: 0 20px 20px;
}

.modal-button {
    margin-top: 20px;
    height: 50px;
    background: linear-gradient(135deg, #1e40af, #3b82f6);
    color: #ffffff;
    font-size: 17px;
    font-weight: 500;
    border-radius: 25px;
    display: flex;
    align-items: center;
    justify-content: center;
    box-shadow: 0 6px 20px rgba(30, 58, 138, 0.3);
    cursor: pointer;
    border: none;
}

/* ========================= */
/* 输入框优化 */
/* ========================= */

.input-group {
    display: flex;
    align-items: center;
    border: 1px solid #e5e7eb;
    border-radius: 25px;
    background-color: #f9fafb;
    margin-bottom: 15px;
    padding: 0 17px;
    height: 50px;
    box-sizing: border-box;
    transition: border-color 0.3s ease;
}

.input-group:focus-within {
    border-color: #1e40af;
}

.input-icon {
    width: 20px;
    height: 20px;
    margin-right: 10px;
}

.input-group input {
    flex: 1;
    height: 100%;
    font-size: 16px;
    color: #1f2937;
    border: none;
    outline: none;
    background: transparent;
}

/* ========================= */
/* 协议复选框 */
/* ========================= */

.agreement {
    display: flex;
    align-items: center;
    font-size: 12px;
    color: #6b7280;
    line-height: 1.4;
    flex-wrap: wrap;
    gap: 4px;
}

.agreement text:first-of-type {
    margin-right: 4px;
    flex-shrink: 0;
}

.agreement .link {
    color: #3b82f6;
    text-decoration: underline;
    font-size: 12px;
    font-weight: 500;
    flex-shrink: 0;
    cursor: pointer;
}

.agreement .checkbox {
    width: 22px !important;
    height: 22px !important;
    min-width: 22px !important;
    min-height: 22px !important;
    border: 1px solid #e5e7eb !important;
    border-radius: 50% !important;
    margin-right: 6px !important;
    background-color: #ffffff !important;
    flex-shrink: 0 !important;
    display: inline-flex !important;
    align-items: center !important;
    justify-content: center !important;
    box-sizing: border-box !important;
    cursor: pointer;
}

.agreement image, .agreement img {
    width: 16px !important;
    height: 16px !important;
    margin-right: 4px !important;
    flex-shrink: 0 !important;
}

/* ========================= */
/* 在线客服按钮 */
/* ========================= */

.img-plus-style {
    height: 75px;
    width: 75px;
    position: fixed;
    bottom: 15%;
    right: 15px;
    opacity: 0.7;
    border-radius: 50%;
    box-shadow: 0 4px 16px rgba(0, 0, 0, 0.15);
    z-index: 100;
}

.zindex100 {
    z-index: 100;
}

.yc {
    opacity: 0;
    pointer-events: none;
}

/* ========================= */
/* 底部 TabBar 样式 */
/* ========================= */

.tabBar {
    width: 100%;
    position: fixed;
    bottom: 0;
    z-index: 999;
    font-size: 10px;
    color: #8A8A8A;
    background: #fff;
    box-shadow: 0px 1px 3px rgba(0, 0, 0, 0.3);
}

.tabBar .cont {
    margin-top: 5px;
    padding: 0;
    z-index: 0;
    height: 55px;
    padding-bottom: 5px;
    display: flex;
}

.tabBar .cont .item {
    font-size: 12px;
    position: relative;
    flex: 1;
    text-align: center;
    padding: 0;
    display: block;
    height: auto;
    line-height: 1;
    margin: 0;
    background-color: inherit;
    overflow: initial;
    justify-content: center;
    align-items: center;
    cursor: pointer;
}

.tabBar .cont .item .ico {
    width: 23px;
    height: 23px;
    margin: auto;
}

.tabBar .cont .item .txt {
    margin-top: 4px;
    color: #777777;
}

.tabBar .cont .item .selectedColor {
    color: #1E90FF;
}

/* ========================= */
/* 订单页面样式 */
/* ========================= */

.order-container {
    padding: 15px 12px;
}

.order-item {
    margin-bottom: 12px;
    background-color: #fff;
    border-radius: 8px;
    padding-top: 16px;
    padding-bottom: 6px;
}

.order-item .top {
    justify-content: space-between;
    padding: 0 16px;
    padding-bottom: 14px;
    border-bottom: 1px solid #eeeeee;
}

.order-item .top .le {
    font-size: 14px;
    color: #000000;
}

.order-item .top .ri {
    font-size: 14px;
    color: #1E90FF;
}

.order-item .top .c1 {
    color: #999999;
}

.order-item .top .ch {
    color: #eb8989;
}

.order-item .des {
    margin-top: 17px;
    padding: 0 16px;
}

.order-item .ts {
    margin-bottom: 17px;
}

.order-item .ts .left {
    font-size: 14px;
    color: #777777;
}

.order-item .ts .right {
    font-size: 14px;
    color: #000000;
}

.order-item .ts .color {
    color: #ff7200;
    font-weight: bold;
}

.order-item .bot {
    padding: 0 15px;
    justify-content: flex-end;
}

.order-item .bot .btn {
    color: #ffffff;
    font-size: 14px;
    text-align: center;
    border-radius: 15px;
    height: 30px;
    line-height: 30px;
    width: 90px;
    background: linear-gradient(to bottom, #1E90FF, #6ba1d3);
    cursor: pointer;
    margin-left: 10px;
    display: inline-block;
}

/* ========================= */
/* 详情页面样式 */
/* ========================= */

.detail-container {
    padding: 15px;
}

.detail-items {
    background-color: #fff;
    border-radius: 8px;
    padding: 15px;
    margin-bottom: 15px;
}

.detail-items .title {
    font-size: 18px;
    font-weight: bold;
    padding: 10px 0;
    border-bottom: 1px solid #eee;
    margin-bottom: 10px;
}

.detail-items .xinyong {
    padding: 10px;
    background-color: #f9fafb;
    border-radius: 4px;
    margin-bottom: 10px;
}

.detail-items .xinyong .txt {
    font-size: 13px;
    color: #666;
}

.detail-items .xinyong .txt1 {
    font-size: 14px;
    font-weight: 500;
}

.detail-items .des {
    display: flex;
    gap: 15px;
    margin-top: 10px;
}

.detail-items .des .it {
    flex: 1;
}

.detail-items .des .itt {
    font-size: 12px;
    color: #666;
    margin-bottom: 5px;
}

.detail-items .des .name {
    font-size: 14px;
    font-weight: 500;
}

.detail-items .detail {
    padding: 10px 0;
    line-height: 1.8;
}

.detail-items .box {
    background-color: #f9fafb;
    padding: 15px;
    border-radius: 4px;
    margin-top: 10px;
}

.detail-items .box .ti {
    padding: 8px 0;
    font-size: 14px;
}

.detail-items .box .ti .left {
    color: #666;
    margin-right: 10px;
}

.detail-items .box .ti .right {
    color: #333;
    font-weight: 500;
}

.detail-items .box .ti .color {
    color: #ff7200;
    font-weight: bold;
}

.fixed-bottom {
    position: fixed;
    bottom: 60px;
    left: 0;
    right: 0;
    background: #fff;
    padding: 10px 15px;
    box-shadow: 0 -2px 10px rgba(0,0,0,0.1);
    z-index: 998;
}

.fixed-bottom .f-l {
    flex: 1;
    justify-content: center;
    cursor: pointer;
    color: #666;
}

.fixed-bottom .f-l img {
    width: 20px;
    margin-right: 5px;
}

.fixed-bottom .f-r {
    flex: 2;
    background: linear-gradient(135deg, #1e40af, #3b82f6);
    color: #fff;
    text-align: center;
    padding: 12px;
    border-radius: 25px;
    cursor: pointer;
    font-weight: 500;
}

/* 确认订单弹窗 */

.fixed {
    position: fixed;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: rgba(0,0,0,0.5);
    z-index: 9999;
    display: flex;
    align-items: flex-end;
}

.fixed .cont {
    background: #fff;
    width: 100%;
    border-radius: 15px 15px 0 0;
    padding: 20px;
    max-height: 70vh;
    overflow-y: auto;
}

.fixed .cont .tit {
    font-size: 18px;
    font-weight: 600;
    margin-bottom: 15px;
    display: flex;
    justify-content: space-between;
    align-items: center;
}

.fixed .cont .tit img {
    width: 20px;
    cursor: pointer;
}

.fixed .cont .btns {
    background: linear-gradient(135deg, #1e40af, #3b82f6);
    color: #fff;
    text-align: center;
    padding: 12px;
    border-radius: 25px;
    margin-top: 15px;
    cursor: pointer;
    font-weight: 500;
}

.fixed .cont .xieyi {
    margin-top: 10px;
    font-size: 12px;
    color: #666;
}

.fixed .cont .xieyi .quan {
    width: 18px;
    height: 18px;
    border: 1px solid #ddd;
    border-radius: 50%;
    margin-right: 5px;
    cursor: pointer;
    display: inline-block;
}

.fixed .cont .xieyi img {
    width: 16px;
    height: 16px;
    vertical-align: middle;
    margin-right: 5px;
}

.fixed .cont .xieyi text, .fixed .cont .xieyi span {
    color: #3b82f6;
    cursor: pointer;
}

/* ========================= */
/* 协议页面样式 */
/* ========================= */

.agreement-container {
    padding: 15px;
    background: #fff;
    min-height: calc(100vh - 60px);
}

.agreement-container .tit {
    text-align: center;
    font-size: 20px;
    font-weight: 600;
    margin-bottom: 20px;
}

.agreement-container .test {
    line-height: 1.8;
    padding: 10px 0;
}

/* ========================= */
/* 投诉页面样式 */
/* ========================= */

.tousu-container {
    padding: 15px;
    background: #f8fafc;
    min-height: calc(100vh - 60px);
}

.tousu-container .item {
    background: #fff;
    padding: 15px;
    margin-bottom: 10px;
    border-radius: 8px;
    display: flex;
    align-items: center;
}

.tousu-container .item .left {
    font-size: 14px;
    color: #333;
    min-width: 80px;
}

.tousu-container .item .right {
    flex: 1;
}

.tousu-container .picker {
    display: flex;
    justify-content: space-between;
    align-items: center;
    cursor: pointer;
    font-size: 14px;
    color: #333;
}

.tousu-container .picker img {
    width: 12px;
    height: 12px;
}

.tousu-container .bot {
    padding: 10px 15px;
    background: #fff;
    border-radius: 0 0 8px 8px;
}

.tousu-container .bot textarea {
    width: 100%;
    min-height: 80px;
    border: 1px solid #eee;
    border-radius: 4px;
    padding: 10px;
    font-size: 14px;
    resize: none;
    outline: none;
}

.tousu-container .upload {
    display: flex;
    flex-wrap: wrap;
    gap: 10px;
    padding: 10px 15px;
    background: #fff;
    border-radius: 0 0 8px 8px;
}

.tousu-container .upload img {
    width: 80px;
    height: 80px;
    object-fit: cover;
    border-radius: 4px;
    border: 1px solid #eee;
}

.tousu-container .button {
    background: linear-gradient(135deg, #1e40af, #3b82f6);
    color: #fff;
    text-align: center;
    padding: 12px;
    border-radius: 25px;
    margin-top: 20px;
    cursor: pointer;
    font-weight: 500;
}

/* ========================= */
/* 订单详情页面样式 */
/* ========================= */

.orderdetail-container {
    padding: 15px;
    background: #f8fafc;
    min-height: calc(100vh - 60px);
}

.orderdetail-box {
    background: #fff;
    border-radius: 8px;
    overflow: hidden;
}

.orderdetail-box .flex {
    display: flex;
}

.orderdetail-box .left {
    background: #f0f0f0;
    padding: 12px 10px;
    font-size: 13px;
    color: #666;
    min-width: 100px;
}

.orderdetail-box .right {
    flex: 1;
    padding: 12px 10px;
    font-size: 14px;
    background: #fff;
}

.orderdetail-box .bg1 { background: #e8f4f8; }
.orderdetail-box .bg2 { background: #f8f8f8; }
.orderdetail-box .bg3 { background: #e8f4f8; }

.orderdetail-box .pl {
    padding: 10px;
    border-bottom: 1px solid #eee;
}

.orderdetail-box .its {
    display: flex;
    align-items: center;
}

.orderdetail-box input {
    flex: 1;
    border: 1px solid #ddd;
    padding: 5px 8px;
    border-radius: 4px;
    font-size: 13px;
    outline: none;
}

.orderdetail-box .ri {
    background: #1E90FF;
    color: #fff;
    padding: 5px 12px;
    border-radius: 4px;
    margin-left: 8px;
    cursor: pointer;
    font-size: 12px;
}

.orderdetail-box img {
    width: 90px;
    height: 90px;
    object-fit: cover;
    border: 1px solid #eee;
    border-radius: 4px;
}

/* ========================= */
/* 回执页面样式 */
/* ========================= */

.receipt-container {
    padding: 15px;
    background: #f8fafc;
    min-height: calc(100vh - 60px);
}

.receipt-container .box {
    background: #fff;
    padding: 15px;
    border-radius: 8px;
}

.receipt-container .box img {
    width: 100%;
    margin-bottom: 10px;
}

/* ========================= */
/* Toast 提示样式 */
/* ========================= */

.toast {
    position: fixed;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    background: rgba(0, 0, 0, 0.8);
    color: #fff;
    padding: 12px 24px;
    border-radius: 6px;
    font-size: 14px;
    z-index: 10000;
    animation: fadeInOut 2s ease-in-out;
}

@keyframes fadeInOut {
    0%, 100% { opacity: 0; }
    10%, 90% { opacity: 1; }
}

/* ========================= */
/* Modal 对话框样式 */
/* ========================= */

.modal-dialog {
    position: fixed;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: rgba(0, 0, 0, 0.5);
    display: flex;
    align-items: center;
    justify-content: center;
    z-index: 10000;
}

.modal-dialog .modal-content-box {
    background: #fff;
    width: 280px;
    border-radius: 12px;
    padding: 20px;
    text-align: center;
}

.modal-dialog .modal-content-box .title {
    font-size: 16px;
    font-weight: 600;
    margin-bottom: 15px;
}

.modal-dialog .modal-content-box .message {
    font-size: 14px;
    color: #666;
    margin-bottom: 20px;
}

.modal-dialog .modal-content-box .buttons {
    display: flex;
    justify-content: center;
    gap: 10px;
}

.modal-dialog .modal-content-box .buttons button {
    padding: 8px 20px;
    border-radius: 20px;
    border: none;
    cursor: pointer;
    font-size: 14px;
}

.modal-dialog .modal-content-box .buttons .confirm-btn {
    background: #1E90FF;
    color: #fff;
}

.modal-dialog .modal-content-box .buttons .cancel-btn {
    background: #f0f0f0;
    color: #666;
}

/* ========================= */
/* 移动端响应式适配 (≤768px) */
/* ========================= */

@media screen and (max-width: 768px) {
    
    /* ========== 全局基础 ========== */
    body {
        font-size: 13px;
        -webkit-text-size-adjust: 100%;
        -webkit-tap-highlight-color: transparent;
    }
    
    #app {
        padding-bottom: 55px;
        overflow-x: hidden;
    }
    
    /* ========== 轮播图 ========== */
    .banner {
        margin: 8px 10px;
        height: 150px;
        border-radius: 6px;
    }
    
    /* ========== 容器/卡片 ========== */
    .container,
    .gong,
    .items,
    .detail-items,
    .order-item {
        margin: 0 10px !important;
        padding: 12px !important;
        border-radius: 6px !important;
    }
    
    /* ========== 搜索框 ========== */
    .ipt-box {
        margin: 0 10px 10px 10px !important;
        height: 42px;
        padding: 0 10px !important;
    }
    
    .ipt-box input {
        font-size: 13px;
        max-width: calc(100% - 70px);
    }
    
    .ipt-box .btn {
        width: 55px;
        height: 28px;
        font-size: 13px;
        line-height: 28px;
    }
    
    /* ========== 标题文字 ========== */
    .tit {
        font-size: 16px !important;
        margin-bottom: 8px !important;
    }
    
    .tit img {
        width: 14px !important;
        height: 14px !important;
        margin-right: 6px !important;
    }
    
    .des {
        font-size: 12px !important;
    }
    
    /* ========== 登录弹窗 ========== */
    .modal-overlay {
        padding: 15px !important;
        align-items: flex-end;
    }
    
    .modal-content {
        width: 100% !important;
        min-width: auto !important;
        max-width: none !important;
        border-radius: 12px 12px 0 0 !important;
        max-height: 85vh;
        padding: 20px 15px !important;
    }
    
    .modal-header {
        padding: 15px 15px 10px !important;
    }
    
    .modal-title {
        font-size: 17px !important;
    }
    
    .modal-close {
        width: 18px !important;
        height: 18px !important;
    }
    
    .modal-body {
        padding: 15px 0 !important;
    }
    
    .input-group {
        height: 44px !important;
        padding: 0 12px !important;
        margin-bottom: 12px !important;
    }
    
    .input-icon {
        width: 18px !important;
        height: 18px !important;
        margin-right: 8px !important;
    }
    
    .input-group input {
        font-size: 14px !important;
    }
    
    .modal-button {
        height: 44px !important;
        font-size: 16px !important;
        border-radius: 22px !important;
        margin-top: 15px !important;
    }
    
    .modal-footer {
        padding: 0 0 15px 0 !important;
    }
    
    .agreement {
        font-size: 11px !important;
        flex-wrap: wrap !important;
    }
    
    .agreement .checkbox {
        width: 18px !important;
        height: 18px !important;
        margin-right: 5px !important;
    }
    
    .agreement image,
    .agreement img {
        width: 14px !important;
        height: 14px !important;
    }
    
    .agreement .link {
        font-size: 11px !important;
    }
    
    /* ========== Toast提示 ========== */
    .toast {
        font-size: 13px !important;
        padding: 10px 20px !important;
        border-radius: 6px !important;
    }
    
    /* ========== 投诉按钮 ========== */
    .tousu {
        width: 60px !important;
        height: 26px !important;
        font-size: 12px !important;
        line-height: 26px !important;
        border-radius: 13px !important;
        top: 5px !important;
        right: 3px !important;
    }
    
    /* ========== 客服悬浮按钮 ========== */
    .img-plus-style {
        width: 55px !important;
        height: 55px !important;
        bottom: 12% !important;
        right: 10px !important;
    }
    
    /* ========== TabBar ========== */
    .tabBar .cont {
        height: 50px !important;
        padding-bottom: 3px !important;
    }
    
    .tabBar .cont .item .ico {
        width: 21px !important;
        height: 21px !important;
    }
    
    .tabBar .cont .item .txt {
        font-size: 9px !important;
        margin-top: 2px !important;
    }
    
    /* ========== 订单列表 ========== */
    .order-container {
        padding: 10px 0 !important;
    }
    
    .order-item .top {
        padding: 0 12px !important;
        padding-bottom: 12px !important;
    }
    
    .order-item .top .le,
    .order-item .top .ri {
        font-size: 13px !important;
    }
    
    .order-item .des {
        margin-top: 14px !important;
        padding: 0 12px !important;
    }
    
    .order-item .ts {
        margin-bottom: 12px !important;
    }
    
    .order-item .ts .left,
    .order-item .ts .right {
        font-size: 13px !important;
    }
    
    .order-item .bot {
        padding: 0 12px !important;
    }
    
    .order-item .bot .btn {
        width: 75px !important;
        height: 27px !important;
        line-height: 27px !important;
        font-size: 12px !important;
        border-radius: 14px !important;
        margin-left: 6px !important;
    }
    
    /* ========== 详情页 ========== */
    .detail-container {
        padding: 10px !important;
    }
    
    .detail-items {
        padding: 12px !important;
        border-radius: 6px !important;
    }
    
    .detail-items .title {
        font-size: 16px !important;
        padding: 10px 0 !important;
    }
    
    .detail-items .xinyong {
        margin-left: 12px !important;
        margin-bottom: 14px !important;
    }
    
    .detail-items .xinyong .txt,
    .detail-items .xinyong .txt1 {
        font-size: 11px !important;
        padding: 0 6px !important;
        height: 16px !important;
    }
    
    .detail-items .des {
        margin-top: 10px !important;
    }
    
    .detail-items .des .it .itt {
        font-size: 11px !important;
        margin-bottom: 10px !important;
    }
    
    .detail-items .des .it .name {
        font-size: 13px !important;
    }
    
    .detail-items .box {
        padding: 0 12px !important;
        margin-top: 8px !important;
    }
    
    .detail-items .box .ti {
        margin-bottom: 12px !important;
    }
    
    .detail-items .box .ti .left {
        font-size: 13px !important;
        min-width: 70px !important;
    }
    
    .detail-items .box .ti .right {
        font-size: 13px !important;
    }
    
    .fixed-bottom {
        height: 50px !important;
        padding: 0 12px !important;
    }
    
    .fixed-bottom .f-l {
        font-size: 14px !important;
    }
    
    .fixed-bottom .f-l img {
        width: 17px !important;
        margin-right: 6px !important;
    }
    
    .fixed-bottom .f-r {
        width: 110px !important;
        height: 36px !important;
        line-height: 36px !important;
        font-size: 14px !important;
        border-radius: 18px !important;
    }
    
    /* ========== 确认订单弹窗（详情页） ========== */
    .detail-fixed .detail-cont {
        padding: 20px 15px !important;
        border-radius: 12px 12px 0 0 !important;
        max-height: 80vh;
        width: 100% !important;
        max-width: none !important;
    }
    
    .detail-tit {
        font-size: 17px !important;
        margin-bottom: 25px !important;
    }
    
    .detail-tit img {
        width: 14px !important;
        top: -8px !important;
    }
    
    .detail-cont .btns {
        width: 100% !important;
        max-width: none !important;
        height: 42px !important;
        line-height: 42px !important;
        font-size: 15px !important;
        border-radius: 21px !important;
        margin-bottom: 15px !important;
    }
    
    .detail-xieyi {
        font-size: 11px !important;
        gap: 2px !important;
        line-height: 1.4 !important;
    }
    
    .detail-xieyi span {
        word-break: break-all;
    }
    
    /* ========== 企业认证列表页 ========== */
    .authentication-container .items {
        padding-top: 14px !important;
    }
    
    .authentication-container .items .title {
        font-size: 16px !important;
        padding: 0 12px !important;
        margin-bottom: 12px !important;
    }
    
    .authentication-container .xinyong {
        margin-left: 12px !important;
        margin-bottom: 14px !important;
    }
    
    .authentication-container .xinyong .txt,
    .authentication-container .xinyong .txt1 {
        font-size: 11px !important;
        padding: 0 6px !important;
        height: 16px !important;
    }
    
    .authentication-container .des {
        margin-left: 12px !important;
    }
    
    .authentication-container .des .it {
        border-right: 1px solid #eeeeee !important;
    }
    
    .authentication-container .des .it .itt {
        font-size: 11px !important;
        margin-bottom: 10px !important;
    }
    
    .authentication-container .des .it .name {
        font-size: 13px !important;
        word-break: break-word;
    }
    
    .authentication-container .b-b {
        margin-top: 14px !important;
        padding-bottom: 6px !important;
    }
    
    .authentication-container .b-b .btns {
        width: 75px !important;
        height: 27px !important;
        line-height: 27px !important;
        font-size: 12px !important;
        border-radius: 14px !important;
        margin-top: 10px !important;
        margin-right: 8px !important;
    }
    
    /* ========== 服务选择弹窗 ========== */
    .authentication-container .fixed .cont {
        padding: 20px 15px !important;
        border-radius: 12px 12px 0 0 !important;
        width: 100% !important;
        max-width: none !important;
    }
    
    .authentication-container .fixed .cont .tit1 {
        font-size: 17px !important;
        margin-bottom: 25px !important;
    }
    
    .authentication-container .fixed .cont .tit1 img {
        width: 14px !important;
        top: -8px !important;
    }
    
    .authentication-container .fixed .cont .items1 {
        height: 40px !important;
        border-radius: 20px !important;
        margin-bottom: 12px !important;
        padding: 0 15px !important;
    }
    
    .authentication-container .fixed .cont .items1 .quan {
        width: 17px !important;
        height: 17px !important;
        margin-right: 8px !important;
    }
    
    .authentication-container .fixed .cont .items1 .txt2 {
        font-size: 14px !important;
        margin-left: 8px !important;
    }
    
    .authentication-container .fixed .cont .btns1 {
        width: 100% !important;
        max-width: none !important;
        height: 42px !important;
        line-height: 42px !important;
        font-size: 15px !important;
        border-radius: 21px !important;
        margin-bottom: 15px !important;
    }
    
    /* ========== 订单详情页 ========== */
    .orderdetail-container {
        padding: 10px !important;
    }
    
    .orderdetail-box {
        font-size: 12px !important;
    }
    
    .orderdetail-box .left,
    .orderdetail-box .right {
        font-size: 12px !important;
        padding: 8px 6px !important;
    }
    
    .orderdetail-box input {
        font-size: 12px !important;
        padding: 4px 6px !important;
    }
    
    .orderdetail-box .ri {
        padding: 4px 10px !important;
        font-size: 11px !important;
    }
    
    .orderdetail-box img {
        width: 70px !important;
        height: 70px !important;
    }
    
    /* ========== 回执页 ========== */
    .receipt-container {
        padding: 10px !important;
    }
    
    .receipt-container .box {
        padding: 10px !important;
        border-radius: 6px !important;
    }
    
    .receipt-container .box img {
        width: 100% !important;
        height: auto !important;
    }
    
    /* ========== 协议页 ========== */
    .agreement-container {
        padding: 12px !important;
    }
    
    .agreement-container .tit {
        font-size: 18px !important;
        margin-bottom: 15px !important;
    }
    
    .agreement-container .test {
        font-size: 13px !important;
        line-height: 1.7 !important;
        word-wrap: break-word;
        overflow-wrap: break-word;
    }
    
    .agreement-container .test img {
        max-width: 100% !important;
        height: auto !important;
    }
    
    /* ========== 投诉页 ========== */
    .tousu-container {
        padding: 10px !important;
    }
    
    .tousu-container .item {
        padding: 12px 10px !important;
        border-radius: 6px !important;
        margin-bottom: 8px !important;
    }
    
    .tousu-container .item .left {
        font-size: 13px !important;
        min-width: 70px !important;
    }
    
    .tousu-container .item .right input {
        font-size: 13px !important;
    }
    
    .tousu-container .picker {
        font-size: 13px !important;
    }
    
    .tousu-container .bot textarea {
        font-size: 13px !important;
        min-height: 70px !important;
        padding: 8px !important;
    }
    
    .tousu-container .upload {
        padding: 10px !important;
        gap: 8px !important;
    }
    
    .tousu-container .upload img {
        width: 65px !important;
        height: 65px !important;
    }
    
    .tousu-container .button {
        padding: 12px !important;
        font-size: 15px !important;
        border-radius: 22px !important;
        margin-top: 15px !important;
    }
    
    /* ========== Modal对话框 ========== */
    .modal-dialog .modal-content-box {
        width: 90% !important;
        max-width: 320px !important;
        padding: 18px !important;
        border-radius: 10px !important;
    }
    
    .modal-dialog .modal-content-box .title {
        font-size: 16px !important;
        margin-bottom: 12px !important;
    }
    
    .modal-dialog .modal-content-box .message {
        font-size: 13px !important;
        margin-bottom: 15px !important;
    }
    
    .modal-dialog .modal-content-box .buttons button {
        padding: 8px 18px !important;
        font-size: 13px !important;
        border-radius: 18px !important;
    }
}

/* ========================= */
/* 小屏幕手机适配 (≤375px) */
/* ========================= */

@media screen and (max-width: 375px) {
    
    body {
        font-size: 12px;
    }
    
    .container,
    .gong,
    .items,
    .detail-items,
    .order-item {
        margin: 0 8px !important;
        padding: 10px !important;
    }
    
    .ipt-box {
        margin: 0 8px 8px 8px !important;
        height: 38px;
    }
    
    .ipt-box input {
        font-size: 12px;
    }
    
    .ipt-box .btn {
        width: 50px;
        height: 26px;
        font-size: 12px;
        line-height: 26px;
    }
    
    .tit {
        font-size: 15px !important;
    }
    
    .modal-content {
        padding: 15px 12px !important;
    }
    
    .input-group {
        height: 40px !important;
        padding: 0 10px !important;
    }
    
    .input-group input {
        font-size: 13px !important;
    }
    
    .modal-button {
        height: 40px !important;
        font-size: 15px !important;
    }
    
    .tabBar .cont {
        height: 48px !important;
    }
    
    .tabBar .cont .item .ico {
        width: 20px !important;
        height: 20px !important;
    }
    
    .tabBar .cont .item .txt {
        font-size: 8px !important;
    }
    
    .order-item .bot .btn {
        width: 68px !important;
        height: 25px !important;
        line-height: 25px !important;
        font-size: 11px !important;
    }
    
    .fixed-bottom {
        height: 46px !important;
        padding: 0 10px !important;
    }
    
    .fixed-bottom .f-r {
        width: 100px !important;
        height: 34px !important;
        line-height: 34px !important;
        font-size: 13px !important;
    }
    
    .detail-fixed .detail-cont .btns,
    .authentication-container .fixed .cont .btns1 {
        height: 40px !important;
        line-height: 40px !important;
        font-size: 14px !important;
    }
    
    .authentication-container .fixed .cont .items1 {
        height: 38px !important;
        border-radius: 19px !important;
    }
    
    .authentication-container .b-b .btns {
        width: 68px !important;
        height: 25px !important;
        line-height: 25px !important;
        font-size: 11px !important;
    }
}
