
        * {
            margin: 0;
            padding: 0;
            box-sizing: border-box;
        }

        body {
            font-family: Arial, sans-serif;
            line-height: 1.6;
            color: #333;
            background-color: #f5f9ff;
            font-size: 16px;
        }

        /* 顶部导航栏 */
        .navbar {
            background-color: #2098a6;
            color: white;
            padding: 0;
            position: relative;
        }

        .navbar-container {
            max-width: 1200px;
            margin: 0 auto;
            display: flex;
            justify-content: space-between;
            align-items: center;
            height: 50px;
            padding: 0 20px;
        }

        .nav-links {
            display: flex;
            list-style: none;
            width: 100%;
            justify-content: space-between;
        }

        .nav-links li {
            margin: 0;
        }

        .nav-links a {
            color: white;
            text-decoration: none;
            font-size: 20px;
            font-weight: 500;
            padding: 15px 10px;
            display: block;
        }

        .nav-links a:hover {
            color: #f0f0f0;
        }

        .nav-links .active  a {
            color: #2098a6;
            font-weight: bold;
            background-color: white;
            border-radius: 20px;
            padding: 2px 30px;
            margin: 12px 0;
        }

        /* 汉堡菜单按钮 */
        .menu-toggle {
            display: none;
            cursor: pointer;
        }

        .menu-toggle .bar {
            display: block;
            width: 25px;
            height: 3px;
            margin: 5px auto;
            transition: all 0.3s ease;
            background-color: white;
        }

        /* 响应式设计 - 汉堡菜单 */
        @media (max-width: 768px) {
            .menu-toggle {
                display: block;
            }

            .nav-links {
                position: fixed;
                left: -100%;
                top: 50px;
                flex-direction: column;
                background-color: #2098a6;
                width: 100%;
                text-align: center;
                transition: 0.3s;
                box-shadow: 0 10px 27px rgba(0, 0, 0, 0.05);
                z-index: 999;
            }

            .nav-links.active {
                left: 0;
            }

            .nav-links li {
                margin: 1.5rem 0;
            }

            .nav-links li:first-child a {
                margin: 0;
                display: inline-block;
            }

            .menu-toggle.active .bar:nth-child(2) {
                opacity: 0;
            }

            .menu-toggle.active .bar:nth-child(1) {
                transform: translateY(8px) rotate(45deg);
            }

            .menu-toggle.active .bar:nth-child(3) {
                transform: translateY(-8px) rotate(-45deg);
            }
        }

        /* 头部横幅 */
        .header-banner {
            background-image: url('../img/banner.png');
            padding: 30px 20px;
            position: relative;
            overflow: hidden;
        }

        .header-container {
            max-width: 1200px;
            margin: 0 auto;
            display: flex;
            justify-content: space-between;
            align-items: flex-start;
        }

        .header-left {
            flex: 1;
            min-height: 260px;
        }

        .header-title {
            margin-bottom: 10px;
            display: flex;
            align-items: center;
            margin-top: 0;
        }

        .header-title img {
            max-width: 100%;
            height: auto;
            margin-top: 5px;
        }

        .header-subtitle {
            font-size: 14px;
            color: #666;
            margin-bottom: 20px;
        }

        /* 助企环保一件事横幅 */
        .zq-banner {
            height: 140px;
            width: 100%;
            max-width: 406px;
            margin-top: 40px;
            padding: 20px;
            border: 1px solid #e0e0e0;
            border-radius: 8px;
            box-shadow: 0 4px 12px rgba(1, 128, 142, 0.5);
            background-image: url('../img/zq.png');
            background-size: 100% calc(100% - 40px);
            background-position: center 20px;
            background-repeat: no-repeat;
        }

        .zq-banner h3 {
            color: #0e6873;
            font-size: 36px;
            font-weight: bold;
            font-style: italic;
            font-family: "优设标题黑";
            margin-left: 100px;
            margin-top: 0;
            margin-bottom: -5px;
        }

        .zq-banner p {
            color: #20737d;
            font-size: 16px;
            margin-left: 100px;
            margin-top: 0;
        }



        .header-right {
            display: flex;
            gap: 15px;
        }

        .login-box {
            background-color: white;
            border: 1px solid #e0e0e0;
            border-radius: 8px;
            box-shadow: 0 4px 12px rgb(1 128 142);
            padding: 0 20px;
            width: 360px;
        }

        /* 登录框标题容器 */
        .login-title-container {
            position: relative;
            display: flex;
            justify-content: center;
            align-items: center;
            margin-bottom: 10px;
            height: 40px;
        }

        /* 登录框标题背景 */
        .login-title-bg {
            position: absolute;
            top: 0;
            left: 50%;
            transform: translateX(-50%);
            width: 250px;
            height: 40px;
            background-color: #2098a6;
            clip-path: polygon(0 0, 100% 0, 85% 100%, 15% 100%);
            border-radius: 8px;
            z-index: 0;
        }

        /* 登录框标题 */
        .login-title {
            position: relative;
            z-index: 1;
            color: white;
            font-size: 16px;
            font-weight: bold;
            margin: 0;
            display: flex;
            align-items: center;
        }

        .login-title img {
            width: 20px;
            height: 20px;
            margin-right: 8px;
        }

        /* 输入框容器 */
        .input-container {
            position: relative;
            margin-bottom: 10px;
        }

        .input-container img {
            position: absolute;
            left: 12px;
            top: 40%;
            transform: translateY(-50%);
            width: 16px;
            height: 16px;
        }

        .input-container input {
            height: 40px;
            padding-left: 35px;
            border: 1px solid #5fb7c2;
            border-radius: 4px;
            width: 100%;
            box-sizing: border-box;
        }

        /* 验证码容器 */
        .captcha {
            display: flex;
            margin-bottom: 10px;
        }

        .captcha .input-container {
            flex: 1;
            margin-right: 10px;
            margin-bottom: 0;
        }

        /* 获取验证码按钮 */
        .get-code-btn {
            background-color: #2098a6;
            color: white;
            border: none;
            border-radius: 4px;
            width: 100%;
            padding: 10px;
            font-size: 14px;
            cursor: pointer;
            white-space: nowrap;
            margin-bottom: 0 !important;
        }

        /* 登录按钮 */
        .login-box button {
            background-color: #2098a6;
            color: white;
            border: none;
            border-radius: 4px;
            padding: 10px;
            width: 100%;
            font-size: 16px;
            cursor: pointer;
            margin-bottom: 10px;
        }



        /* 个人版获取验证码按钮 
        .personal-login .get-code-btn {
            background-color: #55b2c0a6;
        }
		*/

        /* 验证码容器样式 */
        .captcha {
            display: flex;
            align-items: center;
        }

        /* 登录链接 */
        .login-links {
            display: flex;
            justify-content: space-between;
            font-size: 14px;
            margin: 6px 0 10px;
        }

        .login-links a {
            color: #2098a6;
            text-decoration: none;
        }

        /* 个人版登录框样式 */
        /*.personal-bg {
            background-color: #55b2c0a6;
        }

        .personal-btn {
            background-color: #55b2c0a6;
        }
		*/

        .personal-btn:hover {
            background-color: #4a9fa8;
        }

        .login-box button:hover {
            background-color: #55b0b7;
        }

        .login-box .forgot {
            font-size: 12px;
            color: #666;
            text-align: right;
            margin-top: 5px;
        }

        /* 流程步骤 */
        .process-steps {
            margin-top: 20px;
        }

        .process-container {
            width: 1321px;
            margin: 0 auto;
            background-image: url('../img/jtbg.png');
            background-size: 1321px auto;
            background-position: center top;
            background-repeat: no-repeat;
        }

        .process-content {
            width: 1200px;
            margin: 0 auto;
            display: flex;
            align-items: flex-start;
        }

        .process-title {
            flex: 0 0 130px;
            font-size: 20px;
            font-weight: bold;
            color: #2098a6;
            margin-right: 20px;
            margin-top: 22px;
        }

        .steps {
            flex: 1;
            max-width: 1070px;
            display: flex;
            align-items: flex-start;
        }

        .step {
            flex: 1;
            text-align: center;
        }

        .step-icon {
            position: relative;
            margin-bottom: 10px;
        }

        .step-icon img {
            width: 84px;
            height: 84px;
            border-radius: 50%;
            cursor: pointer;
        }

        .step.active .step-icon img {
            border: 5px solid #2098a6;
            animation: pulse-border 2s ease-in-out infinite;
        }

        @keyframes pulse-border {
            0%, 100% {
                box-shadow: 0 0 0 0 rgba(32, 152, 166, 0.7);
                transform: scale(1);
            }
            50% {
                box-shadow: 0 0 0 8px rgba(32, 152, 166, 0);
                transform: scale(1.05);
            }
        }

        .step-content {
            display: flex;
            align-items: flex-start;
            justify-content: center;
        }

        .step-number {
            width: 41px;
            height: 41px;
            margin-right: 5px;
        }

        .step-info {
            text-align: left;
        }

        .step-title {
            font-weight: bold;
            margin-bottom: 5px;
            color: #0e6873;
        }

        .step-desc {
            font-size: 14px;
            color: #20737d;
        }

        .step-arrow {
            display: flex;
            align-items: center;
            position: relative;
            margin: 28px 0;
        }

        .step-arrow img {
            width: 30px;
            height: 24px;
        }

        /* 主要内容区域 */
        .main-content {
            max-width: 1200px;
            margin: 0 auto;

        }

        .content-section {
            background-color: white;
            border-radius: 8px;
            padding: 20px;
            margin-bottom: 20px;
            box-shadow: 0 2px 5px rgba(0, 0, 0, 0.05);
        }

        /* AI在线问答 */
        #doctor {
            margin: 20px 0;
            background-color: white;
            border-radius: 8px;
            box-shadow: 0 2px 5px rgba(0, 0, 0, 0.05);

        }

        .ai-section {
            display: flex;
            gap: 30px;
        }

        .ai-chat {
            flex: 1;
        }

        .ai-chat h3 {
            font-size: 16px;
            font-weight: bold;
            color: #333;
            margin-bottom: 15px;
        }

        .ai-avatar {
            display: flex;
            align-items: flex-start;
            gap: 10px;
            margin-bottom: 20px;
        }

        .ai-avatar img {
            width: 60px;
            height: 60px;
            border-radius: 50%;
            background-color: #e6f3ff;
        }

        .ai-message {
            background-color: #f5f9ff;
            padding: 10px;
            border-radius: 8px;
            font-size: 14px;
            flex: 1;
        }

        .ai-input {
            margin-top: 20px;
        }

        .ai-input input {
            width: 100%;
            padding: 10px;
            border: 1px solid #ddd;
            border-radius: 4px;
            font-size: 14px;
        }

        .ai-buttons {
            display: flex;
            gap: 10px;
            margin-top: 10px;
        }

        .ai-buttons button {
            padding: 8px 16px;
            border: 1px solid #ddd;
            border-radius: 4px;
            background-color: white;
            font-size: 12px;
            cursor: pointer;
        }

        .ai-buttons button:hover {
            background-color: #f5f5f5;
        }

        .hot-questions {
            flex: 1;
        }

        .hot-questions h3 {
            font-size: 16px;
            font-weight: bold;
            color: #333;
            margin-bottom: 15px;
            display: flex;
            justify-content: space-between;
            align-items: center;
        }

        .hot-questions h3 span {
            font-size: 12px;
            font-weight: normal;
            color: #666;
        }

        .question-list {
            list-style: none;
        }

        .question-list li {
            margin-bottom: 10px;
            font-size: 14px;
        }

        .question-list a {
            color: #333;
            text-decoration: none;
        }

        .question-list a:hover {
            color: #00a676;
        }

        .hot-tag {
            background-color: #ff4757;
            color: white;
            padding: 2px 6px;
            font-size: 10px;
            border-radius: 10px;
            margin-left: 5px;
        }

        /* 门诊分类 */
        .clinic-section h3 {
            font-size: 16px;
            font-weight: bold;
            color: #333;
            margin-bottom: 20px;
        }

        .clinics {
            display: grid;
            grid-template-columns: repeat(5, 1fr);
            gap: 20px;
        }

        .clinic-card {


            text-align: center;
            transition: transform 0.2s;

        }

        .clinic-card:hover {
            transform: translateY(-5px);
            box-shadow: 0 5px 15px rgba(0, 0, 0, 0.1);
        }

        .clinic-icon {
            width: 100%;
            height: 100px;
            background-size: cover;
            background-position: center;
            background-repeat: no-repeat;
            border-radius: 0 20px 0 0;
        }

        /* 不同门诊的背景图片 */
        .clinic-card.atmosphere .clinic-icon {
            background-image: url('../img/dq.png');
        }

        .clinic-card.water .clinic-icon {
            background-image: url('../img/st.png');
        }

        .clinic-card.project .clinic-icon {
            background-image: url('../img/jsxm.png');
        }

        .clinic-card.ecology .clinic-icon {
            background-image: url('../img/shengtai.png');
        }

        .clinic-card.comprehensive .clinic-icon {
            background-image: url('../img/zh.png');
        }

        .clinic-title {
            font-weight: bold;
            color: white;
            margin-bottom: 10px;
            line-height: 5.5;
            padding-left: 20px;
            position: relative;
            text-align: left;
        }

        .clinic-title::before {
            content: '';
            position: absolute;
            left: 0;
            top: 50%;
            transform: translateY(-50%);
            width: 4px;
            height: 20px;
            background-color: white;
            border-radius: 2px;
        }

        .clinic-services {
            padding-top: 20px;
            text-align: left;
            border: 1px solid #ddd;
            border-radius: 0 0 8px 8px;
            min-height: 145px;
        }

        .clinic-services li {
            margin-bottom: 5px;
            background-image: url('../img/point.png');
            background-size: 10px 10px;
            background-position: left center;
            background-repeat: no-repeat;
            padding-left: 15px;
            margin-left: 15px;
        }

        /* 政策法规和环保科普 */
        .info-sections {
            display: flex;
            gap: 30px;
        }

        .info-section {
            flex: 1;
        }

        .info-section h3 {

            font-weight: bold;
            color: #333;
            margin-bottom: 15px;
            display: flex;
            justify-content: space-between;
            align-items: center;
            position: relative;
            padding-left: 15px;
        }

        .info-section h3:before {
            content: '';
            position: absolute;
            left: 0;
            top: 50%;
            transform: translateY(-50%);
            width: 4px;
            height: 16px;
            background-color: #2098a6;
            border-radius: 2px;
        }

        .info-section h3 span {
            font-size: 12px;
            font-weight: normal;
            color: #666;
        }

        .info-list {
            list-style: none;
        }

        .info-list li {
            margin-bottom: 10px;
            display: flex;
            justify-content: space-between;
            max-width: 100%;
            padding-left: 15px;
            position: relative;
        }

        .info-list li::before {
            content: '';
            position: absolute;
            left: 0;
            top: 50%;
            transform: translateY(-50%);
            width: 6px;
            height: 6px;
            background-color: #2098a6;
        }

        .info-list a {
            color: #333;
            text-decoration: none;
            flex: 1;
            display: block;
            overflow: hidden;
            text-overflow: ellipsis;
            max-width: calc(100% - 80px);
        }

        .info-list a:hover {
            color: #00a676;
        }

        .info-date {
            font-size: 12px;
            color: #999;
            margin-left: 10px;
        }

        /* 环保视频 */
        .video-section h3 {

            font-weight: bold;
            color: #333;
            margin-bottom: 20px;
            display: flex;
            justify-content: space-between;
            align-items: center;
            position: relative;
            padding-left: 15px;
        }

        .video-section h3:before {
            content: '';
            position: absolute;
            left: 0;
            top: 50%;
            transform: translateY(-50%);
            width: 4px;
            height: 16px;
            background-color: #2098a6;
            border-radius: 2px;
        }

        .video-section h3 span {
            font-size: 12px;
            font-weight: normal;
            color: #666;
        }

        .videos {
            display: grid;
            grid-template-columns: repeat(3, 1fr);
            gap: 20px;
        }

        .video-card {
            background-color: #f9f9f9;
            border-radius: 8px;
            overflow: hidden;
            transition: transform 0.2s;
        }

        .video-card:hover {
            transform: translateY(-5px);
            box-shadow: 0 5px 15px rgba(0, 0, 0, 0.1);
        }

        .video-thumbnail {
            height: 200px;
            background-color: #e6f3ff;
            display: flex;
            align-items: center;
            justify-content: center;
            font-size: 48px;
            color: #00a676;
        }

        .video-info {
            padding: 10px;
        }

        .video-title {
            font-size: 16px;
            font-weight: bold;
            color: #333;
            margin-bottom: 5px;
        }

        .video-date {
            color: #999;
        }

        /* 底部 */
        .footer {
            background-color: #333;
            color: white;
            padding: 30px 20px;
            margin-top: 30px;
        }

        .footer-container {
            max-width: 1200px;
            margin: 0 auto;
        }

        .footer-top {
            display: flex;
            justify-content: space-between;
            margin-bottom: 20px;
        }

        .footer-left {
            flex: 1;
        }

        .footer-logo {
            font-size: 20px;
            font-weight: bold;
            margin-bottom: 10px;
        }

        .footer-info {
            font-size: 12px;
            line-height: 1.5;
        }

        .footer-links {
            display: flex;
            gap: 40px;
        }

        .footer-links h4 {
            font-size: 14px;
            margin-bottom: 10px;
        }

        .footer-links ul {
            list-style: none;
        }

        .footer-links li {
            margin-bottom: 5px;
        }

        .footer-links a {
            color: #ccc;
            text-decoration: none;
            font-size: 12px;
        }

        .footer-links a:hover {
            color: white;
        }

        .footer-bottom {
            border-top: 1px solid #555;
            padding-top: 20px;
            font-size: 12px;
            text-align: center;
            color: #999;
        }

        /* 响应式设计 */
        @media (max-width: 768px) {
            .header-container {
                flex-direction: column;
                text-align: center;
            }

            .header-right {
                margin-top: 20px;
            }

            .steps {
                flex-direction: column;
                gap: 20px;
            }

            .step-arrow {
                transform: rotate(90deg);
            }

            .ai-section {
                flex-direction: column;
            }

            .clinics {
                grid-template-columns: 1fr;
            }

            .info-sections {
                flex-direction: column;
            }

            .videos {
                grid-template-columns: 1fr;
            }

            .footer-top {
                flex-direction: column;
                gap: 20px;
            }

            .footer-links {
                flex-direction: column;
                gap: 20px;
            }

            /* 响应式 - Logo大小 */
            .header-title img {
                max-width: 80%;
                height: auto;
            }
        }

        /* AI在线问答 */
        .container_inner {
            width: 100%;
            max-width: 1200px;
            height: 430px;
            display: flex;
            margin: 0 auto;
        }

        .left {
            width: 68%;
            position: relative;
            display: flex;
            flex-direction: column;
            padding: 20px;
        }

        .message {
            height: 350px;
            padding-left: 210px;
            overflow-y: scroll;
            scrollbar-width: thin;
        }

        .message::-webkit-scrollbar {
            width: 5px;
        }

        .message::-webkit-scrollbar-thumb {
            background-color: #888;
        }

        .message::-webkit-scrollbar-thumb:hover {
            background-color: #555;
        }

        .message-item {
            display: flex;
            align-items: flex-start;
            margin: 10px;
        }

        .message-item img {
            width: 100%;
        }

        .avatar {
            width: 40px;
            height: 40px;
            background-color: #ccc;
            border-radius: 50%;
            margin-right: 10px;
        }

        .text {
            padding: 10px;
            border-radius: 10px;
            background-color: #f1f1f1;
        }

        .message-item-left .text {
            background-color: #e1f7d5;
            min-width: 86%;
            max-width: calc(100% - 100px);
        }

        .message-item-right .text {
            background-color: #f7e5d5;
            max-width: calc(100% - 100px);
        }

        .question {
            align-self: flex-start;
        }

        .answer {
            align-self: flex-end;
        }

        .input-container {
            /* display: flex; */
            align-items: center;
            justify-content: space-between;
            box-sizing: border-box;
        }

        .layui-input-wrap {
            position: unset;
        }

        .input {
            width: 90%;
            height: 60px;
            border: none;
            outline: none;
        }

        .send-button {
            padding: 10px;
            background-color: #55b0b7;
            color: #fff;
            border: none;
            border-radius: 5px;
            cursor: pointer;
        }

        .right {
            width: 36%;
        }

        .right #record {
            background-color: #ffffff;
            width: 100%;
            height: 270px;
            border-radius: 0 0 8px 8px;
        }

        .right h1 {

            font-weight: bold;
            padding: 10px;
            margin: 0;
            text-align: center;
        }

        .message-item-left {
            justify-content: flex-start;
            position: relative;
        }

        .message-item-right {
            justify-content: flex-end;
            margin: 45px 10px 10px 10px;
        }

        .message-item-right .avatar {
            margin-right: 0;
            margin-left: 10px;
        }

        .message-item-left .text {
            white-space: pre-line;
        }

        .message-item-left .text ul li {
            padding: 10px;
            cursor: pointer;
        }

        .message-item-right .text {
            order: -1;
        }

        h1 {
            color: #333;
            font-size: 18px;
            padding: 10px;
        }

        h2,
        h3,
        h4,
        h5,
        h6 {
            color: #333;
            font-size: 18px;
        }

        ul {
            list-style-type: none;
            padding: 0;
        }

        .right li {
            padding: 5px 10px;
            position: relative;
            overflow: hidden;
            cursor: pointer;
            border-bottom: 1px solid rgb(240, 236, 236);
        }

        .right li:hover {
            background-color: rgb(240, 236, 236);
        }

        .right .title {
            float: left;
            white-space: nowrap;
            overflow: hidden;
            text-overflow: ellipsis;
        }

        .right .description {
            width: 100%;
            color: gray;
            clear: both;
            white-space: nowrap;
            overflow: hidden;
            text-overflow: ellipsis;
            font-size: 12px;
            padding-top: 10px;
        }

        .pl {
            position: absolute;
            right: 80px;
            bottom: -28px;
        }

        .pl span {
            cursor: pointer;
        }

        .pl span.active {
            color: #1e9fff;
        }

        .audioBox {
            position: absolute;
            left: 0px;
            width: 100%;
            height: 30px;
            bottom: 0px;
        }

        .xjljs {
            position: relative;
            background: #fff;
            margin: 0;
        }

        .xjljs img {
            width: 90%;
            margin: 0 5%;
        }

        .leftest {
            background: #fff;
            width: 210px;
            position: absolute;
            top: 90px;
            left: 10px;
        }

        .clinic-tabs {
            display: flex;
            flex-wrap: wrap;
            gap: 8px;
            margin-bottom: 15px;
        }

        .clinic-tab {
            padding: 0px 12px;
            background: #f5f5f5;
            border-radius: 4px;
            cursor: pointer;
            font-size: 16px;
            transition: all 0.3s;
            border: 1px solid #e6e6e6;
        }

        .clinic-tab:hover {
            background: #e8f4ff;
            border-color: #1e9fff;
        }

        .clinic-tab.active {
            background: #55b0b7;
            color: #fff;
            border-color: #55b0b7;
        }

        /* 通用标题样式 */
        .section-title {
            font-weight: bold;
            color: #333;
            position: relative;
            padding-left: 15px;
        }

        .section-title:before {
            content: '';
            position: absolute;
            left: 0;
            top: 50%;
            transform: translateY(-50%);
            width: 4px;
            height: 16px;
            background-color: #2098a6;
            border-radius: 2px;
        }

        /* AI在线问答标题 */
        .ai-section-title {

            margin-bottom: 15px;
            margin: 0 0 15px 0;
        }

        /* 常用话题标题容器 */
        .topics-header {
            display: flex;
            justify-content: space-between;
            align-items: center;

            padding: 10px;
            margin: 0;
        }

        /* 常用话题标题 */
        .topics-title {
            font-size: 18px;
            margin: 0;
        }

        /* 换一换按钮 */
        #refreshBtn {
            margin: 0;
        }

        /* 功能按钮容器 */
        .function-buttons {
            display: flex;
            justify-content: space-between;
            margin-top: 20px;
            padding: 0 15px 0 0;
        }

        /* 功能按钮项 */
        .function-button-item {
            flex: 1;
            text-align: center;
            margin: 0 5px;
        }

        /* 功能按钮 */
        .function-button {
            width: 100%;
            border: none;
            background: #f5f5f5;
            border-radius: 4px;
            padding: 10px;
            cursor: pointer;
            display: flex;
            flex-direction: column;
            align-items: center;
        }

        /* 功能按钮图标 */
        .function-button img {
            width: 40px;
            height: 40px;
            margin-bottom: 5px;
        }

        /* 功能按钮文字 */
        .function-button span {

            color: #333;
        }

        /* 响应式设计 - 助企环保一件事标题 */
        @media (max-width: 768px) {
		.footer-wrap .footer-box .webs-box {display:none;}
		.footer-wrap .footer-box .webs-about {padding:0;}
		 .company-info-row {
                flex-direction: column;
            }

            .qyxx {
                width: 100% !important;
                margin-right: 0 !important;
                margin-bottom: 20px;
            }

            .tszl {
                width: 100% !important;
            }
		.header-left {
                flex-direction: column;
                align-items: center;
                text-align: center;
            }

            .zq-banner {
                margin-left: 0 !important;
                margin-top: 10px !important;
            }

            .zq-banner img {
                margin: 10px 0 !important;
            }
            .zq-banner h3 {
                font-size: 24px;
                margin-left: 20px;
            }

            .zq-banner p {
                font-size: 14px;
                margin-left: 20px;
            }

            /* 调整登录框排列方式 */
            .header-right {
                flex-direction: column;
                gap: 10px;
                width: 100%;
            }

            .login-box {
                width: 100%;
                margin: 0 auto;
            }

            /* 优化流程图在手机端的显示 */
            .process-container {
                width: 100%;
                background-size: auto 100%;
                background-position: left center;
                padding: 20px 0;
            }

            .process-content {
                flex-direction: column;
                align-items: center;
                width: 100%;
                padding: 0 20px;
            }

            .process-title {
                margin-bottom: 0px;
                margin-right: 0;
                text-align: center;
            }

            .steps {
                flex-direction: column;
                align-items: center;
                max-width: 100%;
            }

            .step {
                margin-bottom: 0px;
                display: flex;
                flex-direction: row;
                align-items: center;
                width: 100%;
                text-align: left;
            }

            .step-icon {
                margin-bottom: 0;
                margin-right: 15px;
            }

            .step-content {
                flex: 1;
            }

            .step-arrow {
                transform: rotate(90deg);
                margin: 10px 0;
            }

            /* 优化AI在线问答在手机端的显示 */
            #doctor .container_inner {
                flex-direction: column;
                height: auto;
                min-height: 430px;
            }

            #doctor .left {
                width: 100%;
                margin-bottom: 20px;
                height: auto;
                min-height: 350px;
            }

            #doctor .right {
                width: 100%;
                background-color: white;
            }

            #doctor .message {
                height: 250px;
                padding-left: 80px;
            }

            #doctor .topics-header {
                flex-direction: row;
                justify-content: space-between;
                align-items: center;
            }

            #doctor .topics-title {
                font-size: 16px;
            }

            #doctor #refreshBtn {
                font-size: 12px;
                padding: 4px 8px;
                margin-top: 0;
            }

            .leftest {
                width: 120px;
            }

            .right #record {

                height: 270px;
            }

            .header-banner {

                background-repeat: no-repeat;
                background-size: contain;
                padding: 20px;
            }
        }

        @media screen and (min-resolution: 120dpi) and (max-resolution: 124dpi) {
            html {
                zoom: 0.76 !important;
            }
        }

        @media screen and (min-width: 1152px) and (max-width: 1920px) {
            html {
                zoom: 0.89;
            }
        }

        /* 150% 缩放适配 */
        /* @media screen and (min-resolution: 144dpi) {
  html { zoom: 0.67 !important;; }
}
     */


	  /* 退出登录按钮样式 */
        .logout-section {
            position: absolute;
            right: 0;
        }

        .logout-btn {
            color: #fff !important;
            font-weight: 500;
            padding: 15px 10px;
            text-decoration: none;
            font-size: 18px;
        }

        .logout-btn:hover {
            color: #f0f0f0 !important;
            text-decoration: underline;
        }
   