        body,
        html {
            margin: 0;
            padding: 0;
            font-family: Arial, sans-serif;
        }
        
        a,a:hover {
            text-decoration: none;
        }

        .container {
            max-width: 1400px;
            margin: auto;
        }

        .navbar {
            position: sticky;
            top: 0;
            width: 100%;
            background-color: #fff;
            color: black;
            display: flex;
            justify-content: space-between;
            align-items: center;
            padding: 20px 20px;
            z-index: 1000;
            /* 确保导航栏在其他内容之上 */

        }

        .navbar-container {
            display: flex;
            justify-content: space-between;
            align-items: center;
            width: 100%;
            max-width: 1200px;
            margin: 0 auto;
            flex-wrap: wrap;
            /* 允许子元素换行 */

        }

        .navbar-logo {
            color: black;
            text-decoration: none;
            font-weight: bold;
            flex: 1;
            /* 让logo占据剩余空间（在桌面端） */
            text-align: left;
            /* 在桌面端左对齐 */
            display: flex;
        }

        .navbar-logo img {
            height: 40px;
            width: auto;
        }

        .navbar-menu {
            list-style: none;
            display: flex;
            margin: 0;
            padding: 0;
            flex: 2;
            /* 让菜单占据更多空间（在桌面端） */
            justify-content: center;
            /* 在桌面端居中对齐菜单 */
        }

        .navbar-menu li {
            margin: 0 10px;
            align-content: center;
            /* 调整菜单项之间的间距 */
        }

        .navbar-menu a {
            color: black;
            text-decoration: none;
            padding: 10px 15px;
            display: block;
        }

        .navbar-menu a:hover {
            background-color: #575757;
            color: white;
            border-radius: 5px;
        }

        .navbar-buttons {
            display: flex;
            gap: 10px;
            flex: 1;
            /* 让按钮区域占据剩余空间（在桌面端） */
            justify-content: flex-end;
            /* 在桌面端将按钮区域对齐到右侧 */
        }

        .navbar-button {
            color: white;
            text-decoration: none;
            padding: 10px 15px;
            background-color: #e6322e;
            border-radius: 5px;
            display:flex;
            cursor: pointer;
        }

        .navbar-button:hover {
            background-color: #bf1d1d;
        }

        .content {
            padding: 20px;
        }

        /* 手机端自适应样式 */
        @media (max-width: 768px) {
            .container {
                width: 100%;
                max-width: 100%;
                /* 移除最大宽度限制，以适应任何屏幕尺寸 */
                margin: 0 auto;
                /* 虽然这里设置了自动外边距，但由于宽度是100%，所以不会有水平居中效果 */
            }

            .navbar {
                padding: 30px 0;
            }

            .navbar-container {
                flex-direction: column;
                /* 垂直布局 */
                align-items: flex-start;
                /* 顶部对齐 */
            }

            .navbar-logo {
                flex: none;
                /* logo不再占据剩余空间 */
                margin-bottom: 10px;
                /* 添加底部间距 */
                text-align: center;
                /* 在手机端居中对齐 */
                width: 100%;
                /* 让logo占据整行宽度 */
            }

            .navbar-menu {
                flex: none;
                /* 菜单不再占据更多空间 */
                width: 100%;
                /* 让菜单占据整行宽度 */
                justify-content: center;
                /* 在手机端居中对齐菜单项 */
            }

            .navbar-menu li {
                margin: 5px 0;
                /* 调整菜单项之间的垂直间距 */
                width: 100%;
                /* 让每个菜单项占据整行宽度 */
                text-align: center;
                /* 菜单项内容居中对齐 */
            }

            .navbar-buttons {
                flex: none;
                /* 按钮区域不再占据剩余空间 */
                width: 100%;
                /* 让按钮区域占据整行宽度 */
                justify-content: center;
                /* 在手机端居中对齐按钮 */
                margin-top: 10px;
                /* 添加顶部间距 */
            }

            .content {
                padding: 0px;
            }

        }

        /* 图片模块样式 */
        .image-module {
            text-align: center;
            /* 使内容（在这里是图片）居中 */
            margin: auto;
            /* 添加一些顶部和底部的外边距，并水平居中 */
            max-width: 1400px;
            /* 限制模块的最大宽度 */
            width: 100%;
            /* 使模块在较小的屏幕上占据全部可用宽度 */
        }

        .image-module img {
            max-width: 100%;
            /* 图片的最大宽度为模块的100% */
            height: auto;
            /* 图片的高度自动调整以保持宽高比 */
            display: block;
            /* 移除图片底部的默认间隙 */
            margin: 0 auto;
            /* 水平居中图片（尽管在text-align: center;的父元素中已经居中） */
        }

        footer {
            background-color: #f5f5f5;
            /* 设置背景颜色 */
            padding: 20px 0;
            /* 添加内边距 */
            text-align: center;
            /* 文本居中 */
        }

        .footer-top {
            margin-bottom: 15px;
            /* 添加底部外边距以分隔上下两部分 */
        }

        .footer-menu {
            list-style: none;
            /* 移除列表项前的默认标记 */
            padding: 0;
            /* 移除默认的内边距 */
            margin: 0;
            /* 移除默认的外边距 */
            display: flex;
            /* 使用Flexbox布局 */
            justify-content: center;
            /* 水平居中菜单项 */
        }

        .footer-menu li {
            margin: 0 10px;
            align-content: center;
            /* 添加列表项之间的间距 */
        }

        .footer-menu a {
            text-decoration: none;
            /* 移除链接的下划线 */
            color: #333;
            /* 设置链接文字颜色 */
        }

        .footer-menu a:hover {
            text-decoration: underline;
            /* 鼠标悬停时添加下划线 */
        }

        .footer-bottom {
            font-size: 14px;
            /* 设置文字大小 */
            color: #666;
            /* 设置文字颜色 */
        }

        .copyright,
        .address {
            margin: 0;
            /* 移除默认的外边距 */
        }

        @media (min-width:1100px) {
            .footer-menu li {
                margin: 0 40px;
            }
        }

        /* 表单样式 */
        .info-form {
            display: flex;
            flex-direction: column;
            /* 垂直排列表单项 */
        }

        /* 表单项样式 */
        .form-group {
            margin-bottom: 15px;
            /* 每个表单项之间的间距 */
        }

        /* 标签和输入字段样式 */
        label {
            font-size: 16px;
            /* 标签文字大小 */
            margin-bottom: 5px;
            /* 标签和输入字段之间的间距 */
        }

        input {
            width: 100%;
            /* 输入字段宽度占满容器 */
            padding: 10px;
            /* 内边距 */
            font-size: 16px;
            /* 输入文字大小 */
            border: 1px solid #ccc;
            /* 边框 */
            border-radius: 4px;
            /* 圆角 */
            box-sizing: border-box;
            /* 包括内边距和边框在内计算元素的总宽度和高度 */
        }

        /* 提交按钮样式 */
        button {
            padding: 10px;
            /* 内边距 */
            font-size: 16px;
            /* 文字大小 */
            border: none;
            /* 移除边框 */
            border-radius: 4px;
            /* 圆角 */
            background-color: #007bff;
            /* 背景颜色 */
            color: #fff;
            /* 文字颜色 */
            cursor: pointer;
            /* 鼠标悬停时显示手指图标 */
            transition: background-color 0.3s ease;
            /* 背景颜色过渡效果 */
        }

        button:hover {
            background-color: #0056b3;
            /* 鼠标悬停时背景颜色变化 */
        }

        /* 响应式设计 */
        @media (max-width: 480px) {
            .container {
                padding: 15px;
                /* 较小屏幕上的内边距调整 */
            }

            input,
            button {
                font-size: 14px;
                /* 较小屏幕上的文字大小调整 */
                padding: 8px;
                /* 较小屏幕上的内边距调整 */
            }
        }

        .form-container {
            max-width: 1420px;
            width: 100%;
            height: 140px;
            display: flex;
            justify-content: center;
            align-items: flex-end;
            padding: 0 20px;
            box-sizing: border-box;
            background-color: rgba(255, 255, 255, 0.7);
            background-image: url("../img/tkt5.jpg");
            background-size: cover;
            background-position: center;
            padding-bottom: 20px;
        }

        .input-field {
            width: 300px;
            height: 60px;
            font-size: 16px;
            padding: 10px;
            box-sizing: border-box;
            border: 1px solid #ccc;
            border-radius: 4px;
        }

        .submit-button {
            width: 243px;
            height: 60px;
            background-color: #e6322e;
            /* 绿色背景 */
            color: white;
            /* 白色文字 */
            font-size: 16px;
            border: none;
            border-radius: 4px;
            cursor: pointer;
            transition: background-color 0.3s ease;
            /* 平滑的过渡效果 */
        }

        .submit-button:hover {
            background-color: #bf1d1d;
            /* 鼠标悬停时改变背景颜色 */
        }

        @media (max-width:1430px) {
            .form-container {
                max-width: 100%;
            }
        }

        .content-info {
            padding: 2.5em;
        }

        .content-info .content-info-title {
            font-size: 30px;
            line-height: 30px;
            text-align: center;
            color: #333;
            padding-bottom: 37px;
        }

        .content-info .form-item {
            display: grid;
            align-items: center;
            width: 100%;
            grid-template-columns: 50% 50%;
            grid-column-gap: 6px;
            grid-row-gap: 20px;
            width: 790px;
            margin: auto;
        }

        .content-info .form-box {
            height: 84px;
            /* width: 290px;
    margin: 0 auto 20px; */
        }

        .content-info .form-name {
            margin-bottom: 10px;
        }

        .content-info .form-label {
            font-size: 18px;
            line-height: 18px;
            color: #999;
        }

        .content-info .required {
            font-size: 18px;
            line-height: 18px;
            color: #ff1212;
        }

        .content-info .input-container {
            position: relative;
            display: inline-block;
            box-sizing: border-box;
            line-height: 60px;
            width: 100%;
            height: 60px;
            padding-left: 20px;
            background-color: #f5f5f5;
            cursor: pointer;
            color: #333;
            border-radius: 2px;
        }

        .content-info .input-container input {
            padding-right: 1.25em;
            outline: none;
            border: 0;
            background-color: transparent;
            box-sizing: border-box;
            position: absolute;
            width: 100%;
            height: 100%;
            left: 0;
            top: 0;
            z-index: 1;
            padding: 0 20px;
            font-size: 18px;
            color: #000;
            caret-color: #e6322e;
            cursor: pointer;
        }

        .content-info .select-container {
            position: relative;
            display: inline-block;
            box-sizing: border-box;
            line-height: 60px;
            width: 100%;
            height: 60px;
            background-color: #f5f5f5;
            border-radius: 2px;
            color: #333;
            border: 0;
        }

        .content-info .select-container select {
            cursor: pointer;
            background-color: transparent;
            padding-left: 20px;
            line-height: 60px;
            width: calc(100% - 20px);
            height: 60px;
            border: none;
            color: #000;
            font-size: 18px;
            outline: none;
        }

        .content-info .select-container:hover,
        .content-info .input-container:hover {
            background-color: #eee;
        }

        .content-info .form-error {
            animation: show 0.5s;
            position: absolute;
            z-index: 1100;
        }

        .content-info .error-container {
            position: relative;
            padding: 10px 14px;
            font-size: 18px;
            line-height: 1.5;
            color: #ff1212;
            background-color: #fff;
            border: 1px solid #d8d8d8;
            border-radius: 2px;
            margin-top: 14px;
            width: max-content;
        }

        .content-info .error-container span {
            font-size: 18px;
            line-height: 1.5;
            color: #ff1212;
        }

        .content-info .error-tips-arrow {
            position: absolute;
            top: 0;
            left: 50%;
            transform: translate(-50%, -50%) rotate(45deg);
            border-left: 1px solid #d8d8d8;
            border-top: 1px solid #d8d8d8;
            width: 14px;
            height: 14px;
            background-color: #fff;
        }

        .content-info .submit {
            width: 490px;
            background-color: #e6322e;
            text-align: center;
            height: 60px;
            line-height: 60px;
            color: #fff;
            margin: auto;
            margin-top: 40px;
            cursor: pointer;
        }
        .hidden {
            display: none;
        }

        .content-info .redBg {
            background-color: #fff3f2;
        }

        .faq {
            width: 100%;
            min-width: 850px;
        }

        .faq .faq-title {
            text-align: center;
            padding-top: 40px;
            padding-bottom: 40px;
            color: #333;
            font-size: 30px;
            font-weight: 500;
        }

        .faq .faq-content {
            position: relative;
            box-sizing: border-box;
            border: 1px solid #ebebeb;
            border-radius: 6px;
            display: flex;
            margin-bottom: 30px;
        }

        .faq .faq-img {
            width: 100%;
        }

        .faq .faq-left {
            width: 400px;
            background-color: #f8f8f8;
            box-sizing: border-box;
        }

        .faq .faq-left ul {
            height: 100%;
            list-style: none;
        }

        .faq .faq-left ul li {
            display: flex;
            align-items: center;
            color: #666;
            padding: 14px;
            margin-bottom: 0.5625em;
        }

        .faq .faq-left ul li span {
            font-weight: 600;
            font-size: 21px;
            color: #666;
        }

        .faq .faq-left ul li div {
            padding-left: 20px;
            font-size: 18px;
            font-weight: 400;
        }

        .faq .faq-left ul li:first-child span {
            color: #ff4542;
        }

        .faq .faq-left ul li:nth-child(2) span {
            color: #ff6600;
        }

        .faq .faq-left ul li:nth-child(3) span {
            color: #ffa866;
        }

        .faq .hover-class {
            background-color: #fff;
            color: #333;
            cursor: pointer;
            border-top-left-radius: 2px;
            border-bottom-left-radius: 2px;
        }

        .faq .faq-question-answer {
            padding: 32px;
            flex: 1;
            position: relative;
        }

        .faq .faq-question {
            display: flex;

        }

        .faq .faq-question div:first-child {
            line-height: 36px;
            width: 36px;
            height: 36px;
            border-radius: 4px;
            text-align: center;
            font-size: 18px;
            background-color: #ffdad6;
            color: #e6322e;
        }

        .faq .faq-question div:nth-child(2) {
            margin-left: 16px;
            width: calc(100% - 50px);
            line-height: 36px;
            padding-top: 0.19047619em;
            overflow: hidden;
            text-align: justify;
            text-overflow: ellipsis;
            display: -webkit-box;
            -webkit-line-clamp: 2;
            -webkit-box-orient: vertical;
            font-size: 21px;
            font-weight: 600;

        }

        .faq .faq-answer {
            display: flex;
            position: absolute;
            top: 100px;
            height: calc(100% - 120px);
        }

        .faq .faq-answer div {
            width: 2em;
            height: 2em;
            line-height: 2em;
            border-radius: 0.33333333em;
            text-align: center;
            font-size: 18px;
            background-color: #e6322e;
            color: #fff;
        }

        .faq .faq-answer pre {
            margin-left: 16px;
            margin-top: 0;
            width: calc(100% - 90px);
            white-space: pre-wrap;
            word-wrap: break-word;
            font-size: 18px;
            text-align: justify;
            font-weight: 400;
            color: #333333;
            line-height: 2;
            overflow: hidden;
            text-overflow: ellipsis;
            display: -webkit-box;
            -webkit-line-clamp: 4;
            -webkit-box-orient: vertical;
            margin-bottom: 0;
        }

        .opera {
            font-size: 12px;
            position: fixed;
            right: 1.25em;
            top: 55%;
            z-index: 1100;
            box-shadow: 0 2px 8px 0 rgba(0, 0, 0, 0.06);
            background-color: #fff;
            border-radius: 2px;
        }

        .opera>div {
            height: 60px;
            width: 60px;
            color: #666;
            display: flex;
            flex-direction: column;
            justify-content: center;
            align-items: center;
            cursor: pointer;
        }

        .opera>div:hover {
            background-color: #e6322e;
            color: #fff;
            padding: var(--groot-ui-spacing-unit-1);
        }

        .opera img {
            height: 20px;
            width: 20px;
            margin-bottom: 4px;
        }

        .dialog {
            background-color: rgba(0, 0, 0, 0.6);
            position: fixed;
            left: 0;
            right: 0;
            bottom: 0;
            top: 0;
            z-index: 1100;
        }

        .dialog .dialog-content {
            left: 50%;
            top: 50%;
            height: 266px;
            overflow: hidden;
            width: 660px;
            box-shadow: 0 2px 4px 0 rgba(0, 0, 0, 0.04);
            border-radius: 4px;
            background-color: #fff;
            display: block;
            position: absolute;
            box-sizing: border-box;

            background-image: url("../img/kf.png");
            background-size: contain;
            background-repeat: no-repeat;
            background-position-x: right;
            transform: translate(-50%, -50%);
        }

        .dialog .dialog-left {
            width: 398px;
            padding: 40px 20px 40px 40px;
        }

        .dialog .code-title {
            color: #282c33;
            font-size: 24px;
            font-weight: 500;
        }

        .dialog .code-tip {
            color: #848b99;
            font-size: 14px;
            font-weight: 400;
        }

        .dialog .code-info {
            display: flex;
            margin-top: 16px;
        }

        .dialog .phone {
            display: flex;
            width: 229px;
            height: 48px;
            border-radius: 6px;
            color: #fff;
            background-color: #1a6eff;
        }

        .dialog .phone div:first-child {
            display: flex;
            justify-content: center;
            align-items: center;
            width: 48px;
            height: 48px;
            border-radius: 6px;
            background-color: #0054e6;
        }

        .dialog .phone div:last-child {
            display: flex;
            justify-content: center;
            align-items: center;
            flex: 1;
        }

        .dialog .phone img {
            width: 16px;
            height: 16px;
        }

        .dialog .code-left {}

        .dialog .code-right {
            position: relative;
            display: flex;
            flex-direction: column;
            justify-content: center;
            align-items: center;
            margin-left: 10px;
            width: 96px;
            height: 113px;
            padding: 4px;
            border-radius: 6px;
            background: #f2f7ff;
            border: 1px solid #4d79ff;
        }

        .dialog .code-right::after {
            content: '';
            position: absolute;
            top: 20%;
            left: 0;
            transform: translate(-60%, -60%) rotate(45deg);
            width: 8px;
            height: 8px;
            background: #f2f7ff;
            border: 1px solid #4d79ff;
            border-style: none none solid solid;
        }

        .dialog .code-right img {
            width: 80px;
            height: 80px;
        }

        .dialog .code-right div {
            margin-top: 4px;
            font-size: 12px;
            font-weight: 400;
            color: #848b99;
        }

        .dialog .time {
            display: flex;
            align-items: center;
            margin-top: 20px;
            margin-right: 4px;
            color: #282c33;
            font-size: 14px;
            font-weight: 500;
        }

        .dialog .unit {
            font-size: 16px;
        }

        .dialog .minute,
        .dialog .seconds {
            margin: 0 4px;
            font-size: 14px;
            color: #f27318;
        }

        .dialog .close {
            width: 20px;
            height: 20px;
            position: absolute;
            top: 6px;
            right: 6px;
            cursor: pointer;
        }

        .qr-dialog {
            position: fixed;
            border: 1px solid #e4e4e4;
            box-shadow: 0 2px 7px 0 rgba(0, 0, 0, 0.13);
            border-radius: 9px;
            animation: show 0.5s;
            z-index: 1100;
            top: 53%;
            right: 90px;
            background-color: #fff;
        }

        .qr-dialog::before {
            border-left: none;
            border-bottom: none;
            border: 1px solid #d8d8d8;
            visibility: visible;
            content: '';
            transform: rotate(45deg);
            position: absolute;
            width: 12px;
            height: 12px;
            background: #fff;
            right: -6px;
            top: 50%;
            margin-top: -12px;
            border-style: solid solid none none;
        }

        .qr-dialog img {
            padding: 12px;
            width: 168px;
            height: 168px;
        }

        .qr-dialog div {
            text-align: center;
            padding: 0 10px 10px;
            box-sizing: border-box;
        }
        .qr-left {
            position: fixed;
            border: 1px solid #e4e4e4;
            padding: 4px;
            border-radius: 9px;
            z-index: 1100;
            top: 30%;
            left: 0;
            background-color: #fff;
        }
        .qr-left img{
            width: 140px;
            height: 140px;
        }
        .bottom-container {
            display: flex;
            position: fixed;
            bottom: 0;
            right: 20px;
            z-index: 1100;
            width: max-content;
            box-shadow: 0 -2px 8px 0 rgba(0, 0, 0, 0.06);
        }
        .bottom-container .bottom-left {
            text-align: right;
            background-color: #fff;
            padding: 10px 15px;
            border-radius: 2px;
        }
        .bottom-container .bottom-right {
            display: flex;
            background-color: #e6322e;
            padding: 20px 40px;
            border-radius: 2px;
            color: #fff;
            cursor: pointer;
        }
        .bottom-container .bottom-right img {
            width: 18px;
            height: 18px;
            margin-right: 16px;
        }
        .error {
            border: 2px solid red;
        }
        .error-message {
            color: red;
            font-size: 12px;
        }
        .form-container .form-error {
            animation: show 0.5s;
            position: absolute;
            z-index: 1100;
        }

        .form-container .error-container {
            position: relative;
            padding: 10px 14px;
            font-size: 18px;
            line-height: 1.5;
            color: #ff1212;
            background-color: #fff;
            border: 1px solid #d8d8d8;
            border-radius: 2px;
            margin-top: 14px;
            width: max-content;
        }

        .form-container .error-container span {
            font-size: 18px;
            line-height: 1.5;
            color: #ff1212;
        }

        .form-container .error-tips-arrow {
            position: absolute;
            top: 0;
            left: 50%;
            transform: translate(-50%, -50%) rotate(45deg);
            border-left: 1px solid #d8d8d8;
            border-top: 1px solid #d8d8d8;
            width: 14px;
            height: 14px;
            background-color: #fff;
        }

        .form-container.redBg {
            background-color: #fff3f2;
        }
        
        .dialog_get {
            background-color: rgba(0, 0, 0, 0.6);
            position: fixed;
            left: 0;
            right: 0;
            bottom: 0;
            top: 0;
            z-index: 1100;
        }

        .dialog_get .dialog-content {
            left: 50%;
            top: 50%;
            height: 400px;
            overflow: hidden;
            width: 800px;
            box-shadow: 0 2px 4px 0 rgba(0, 0, 0, 0.04);
            border-radius: 4px;
            background-color: #fff;
            display: block;
            position: absolute;
            box-sizing: border-box;
            transform: translate(-50%, -50%);
        }

        .dialog_get .close {
            width: 20px;
            height: 20px;
            position: absolute;
            top: 6px;
            right: 6px;
            cursor: pointer;
        }
        
        
        .content-info-popup {
            padding: 2.5em;
        }

        .content-info-popup .content-info-title {
            font-size: 30px;
            line-height: 30px;
            text-align: center;
            color: #333;
            padding-bottom: 37px;
        }

        .content-info-popup .form-item {
            display: grid;
            align-items: center;
            width: 100%;
            grid-template-columns: 50% 50%;
            grid-column-gap: 6px;
            grid-row-gap: 20px;
            width: 790px;
            margin: auto;
            margin-top: 50px;
            margin-bottom: 70px;    
        }

        .content-info-popup .form-box {
            height: 84px;
            /* width: 290px;
    margin: 0 auto 20px; */
        }

        .content-info-popup .form-name {
            margin-bottom: 10px;
        }

        .content-info-popup .form-label {
            font-size: 18px;
            line-height: 18px;
            color: #999;
        }

        .content-info-popup .required {
            font-size: 18px;
            line-height: 18px;
            color: #ff1212;
        }

        .content-info-popup .input-container {
            position: relative;
            display: inline-block;
            box-sizing: border-box;
            line-height: 60px;
            width: 80%;
            height: 60px;
            padding-left: 20px;
            background-color: #f5f5f5;
            cursor: pointer;
            color: #333;
            border-radius: 2px;
        }

        .content-info-popup .input-container input {
            padding-right: 1.25em;
            outline: none;
            border: 0;
            background-color: transparent;
            box-sizing: border-box;
            position: absolute;
            width: 100%;
            height: 100%;
            left: 0;
            top: 0;
            z-index: 1;
            padding: 0 20px;
            font-size: 18px;
            color: #000;
            caret-color: #e6322e;
            cursor: pointer;
        }

        .content-info-popup .select-container {
            position: relative;
            display: inline-block;
            box-sizing: border-box;
            line-height: 60px;
            width: 100%;
            height: 60px;
            background-color: #f5f5f5;
            border-radius: 2px;
            color: #333;
            border: 0;
        }

        .content-info-popup .select-container select {
            cursor: pointer;
            background-color: transparent;
            padding-left: 20px;
            line-height: 60px;
            width: calc(100% - 20px);
            height: 60px;
            border: none;
            color: #000;
            font-size: 18px;
            outline: none;
        }

        .content-info-popup .select-container:hover,
        .content-info-popup .input-container:hover {
            background-color: #eee;
        }

        .content-info-popup .form-error {
            animation: show 0.5s;
            position: absolute;
            z-index: 1100;
        }

        .content-info-popup .error-container {
            position: relative;
            padding: 10px 14px;
            font-size: 18px;
            line-height: 1.5;
            color: #ff1212;
            background-color: #fff;
            border: 1px solid #d8d8d8;
            border-radius: 2px;
            margin-top: 14px;
            width: max-content;
        }

        .content-info-popup .error-container span {
            font-size: 18px;
            line-height: 1.5;
            color: #ff1212;
        }

        .content-info-popup .error-tips-arrow {
            position: absolute;
            top: 0;
            left: 50%;
            transform: translate(-50%, -50%) rotate(45deg);
            border-left: 1px solid #d8d8d8;
            border-top: 1px solid #d8d8d8;
            width: 14px;
            height: 14px;
            background-color: #fff;
        }

        .content-info-popup .submit {
            width: 490px;
            background-color: #e6322e;
            text-align: center;
            height: 60px;
            line-height: 60px;
            color: #fff;
            margin: auto;
            margin-top: 40px;
            cursor: pointer;
        }

        .content-info-popup .redBg {
            background-color: #fff3f2;
        }