@font-face {
    font-family: "default";
    src: url('../fonts/default.ttf');
}

/* font-spider  index.html */
@font-face {
    font-family: 'lingxin';
    src: url('../fonts/lingxin.ttf') format('truetype');
    font-weight: 600;
    font-style: normal;
}

@media (min-width: 1300px) {
    .container {
        max-width: 1200px;
    }
}

@media (min-width: 992px) {
    .container-fluid {
        max-width: 1920px;
        padding-left: 0;
        padding-right: 0;
    }

    .py-lg-100 {
        padding-top: 100px !important;
        padding-bottom: 100px !important;
    }

    .py-lg-50 {
        padding-top: 50px !important;
        padding-bottom: 50px !important;
    }

    .bg-lg-50 {
        padding-top: 50px !important;
        padding-bottom: 50px !important;
        margin-top: 50px !important;
        margin-bottom: 50px !important;
    }

    /* .page .container.py-lg-5.py-3 {
        padding-top: 30px !important;
    } */
}

* {
    color: #161c2d;
    --css-color: #0a85d2;
    line-height: 1;
    outline: none;
}

body {
    overflow-x: hidden;
    /* max-width: 1920px;
    margin: auto; */
}

h1,
h2,
h3,
h4,
h5,
h6,
p,
i,
b,
span {
    color: inherit;
}

ol,
ul {
    list-style: none;
    padding-left: 0;
}

a,
a:active,
a:hover,
a:link,
a:visited {
    color: inherit;
    text-decoration: none;
}

/* 清除bootstrap样式 */
.h1,
.h2,
.h3,
.h4,
.h5,
.h6,
h1,
h2,
h3,
h4,
h5,
h6,
p {
    margin-bottom: 0;
}

/* 清除fancybox样式 */
body.compensate-for-scrollbar {
    margin: 0 !important;
}

/* 清除苹果默认样式 */

/* input[type="text"],
input[type="button"],
input[type="submit"],
input[type="reset"],
select,
textarea,
button {
    -webkit-appearance: none;
} */

input:-webkit-autofill {
    -webkit-box-shadow: 0 0 0px 100px white inset;
}

.button {
    border-radius: 0;
}

/* 清除苹果默认样式 */
.bg-none {
    background: none !important;
}

.form-control:focus {
    box-shadow: none;
}

.img-content {
    overflow: hidden;
    position: relative;
    display: flex;
    justify-content: center;
    align-items: center;
    transition: all 0.3s;
}

.img-content img {
    width: 100%;
    height: 100%;
    color: #fff;
    object-fit: cover;
    transition: all 0.3s;
}

.img-content.img-top img {
    height: auto;
}

.img-content.img-auto img {
    width: auto;
    height: auto;
    max-width: 100%;
    max-height: 100%;
}

.img-content.img-oblong {
    padding: 66.6666% 0 0;
}

.img-content.img-square {
    padding: 100% 0 0;
}

.img-content.img-oblong img,
.img-content.img-square img {
    position: absolute;
    top: 0;
    bottom: 0;
    left: 0;
    right: 0;
    margin: auto;
}

.img-content.img-hover:hover img {
    transform: scale(1.1);
}


.page {
    min-height: calc(100vh - 800px);
}

/* swiper */
.swiper-pagination-bullet-active {
    background-color: var(--css-color);
}

/* 按钮 */
a.twinkleBtn {
    font-size: 12px;
    color: #fff;
    background-color: #333;
    padding: 12px 30px;
    display: inline-block;
    border: 1px solid #333;
    line-height: 1;
    border-radius: 2px;
    position: relative;
    margin-top: 2em;
    text-align: center;
    transition: all 0.3s;
}

.twinkleBtn:hover {
    background-color: #000;
    /* color: var(--css-color); */
    /* border-color: var(--css-color); */
}


/* 右侧菜单栏 */
#toolbar {
    width: 50px;
    position: fixed;
    top: 40%;
    right: 2px;
    z-index: 29;
    /* border-right: 1px solid var(--css-color); */
    /* padding: 11px 0 5px; */
    padding: 20px 0;
    border-radius: 50px;
    background-color: rgba(0, 0, 0, .4);
}

#toolbar>ul {
    position: relative;
    margin-bottom: 0;
}

#toolbar>ul>li {
    /* margin-bottom: 6px; */
    position: relative;
    /* right: -1px; */
    width: 100%;
    display: block;
}

#toolbar>ul>li>div {
    width: 50px;
    height: 50px;
    float: right;
    transition: all 0.6s ease;
    /* background-color: rgba(0, 0, 0, .4); */
    /* border: 1px solid var(--css-color); */
    position: relative;
    overflow: hidden;
}

#toolbar>ul>li>div i {
    width: 100%;
    font-size: 26px;
    color: #fff;
    text-align: center;
    cursor: pointer;
    float: right;
    margin-top: 10px;
}

#toolbar>ul>li>div i span {
    display: block;
    font-size: 14px;
    margin-top: 10px;
}

#toolbar>ul>li>div p {
    width: 140px;
    height: 100%;
    margin: 0;
    line-height: 48px;
    font-size: 16px;
    color: #fff;
    text-align: center;
    display: none;
    z-index: 2;
    position: absolute;
    left: 0;
    top: 0;
    overflow: hidden;
}

#toolbar>ul>li>div div.toolbarBg {
    width: 0%;
    height: 100%;
    background: var(--css-color);
    opacity: 0.8;
    position: absolute;
    left: 0;
    top: 0;
    z-index: 1;
    transition: all 0.8s ease;
}

#toolbar>ul>li>div img {
    width: 200px;
    position: absolute;
    right: 70px;
    bottom: 0;
    transition: all 0s;
    opacity: 0;
    border: 1px solid var(--css-color);
    user-select: none;
}

#toolbar>ul>li.active:hover>div {
    width: 150px;
    overflow: initial;
}

#toolbar>ul>li.active.w200:hover>div,
#toolbar>ul>li.w200>div p {
    width: 200px;
}

#toolbar>ul>li.active:hover>div i {
    display: none;
}

#toolbar>ul>li.active:hover>div p {
    display: block;
}

#toolbar>ul>li.active:hover>div img {
    right: 149px;
    transition: all 0.6s;
    opacity: 1;
}

#toolbar>ul>li.active:hover>div div.toolbarBg {
    width: 100%;
}

#toolbarB {
    position: fixed;
    top: 50%;
    right: 2px;
    transform: translateY(-50%);
    padding: 21px 0;
    border-radius: 50px;
    background-color: rgba(0, 0, 0, .6);
    z-index: 29;
}

#toolbarB li {
    position: relative;
    width: 50px;
    height: 50px;
    display: flex;
    justify-content: center;
    align-items: center;
    cursor: pointer;
}

#toolbarB li:hover {
    background-color: var(--css-color);
}

#toolbarB li i {
    font-size: 24px;
    color: #fff;
}

#toolbarB li>a {
    display: block;
    width: 100%;
    height: 100%;
    text-align: center;
    line-height: 55px;
}

#toolbarB li .box {
    position: absolute;
    top: 0;
    right: 50px;
    min-height: 50px;
    display: flex;
    justify-content: center;
    align-items: center;
    flex-direction: column;
    padding: 10px;
    transform: translateX(50px);
    -webkit-transform: translateX(50px);
    transition: all 0.3s ease-in 0s;
    -webkit-transition: all 0.3s ease-in 0s;
    opacity: 0;
    visibility: hidden;
}

#toolbarB li .box::before {
    content: "";
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background-color: var(--css-color);
    opacity: 0.8;
    z-index: -1;
}

#toolbarB li:hover .box {
    opacity: 1;
    transform: translateX(0%);
    -webkit-transform: translateX(0%);
    visibility: visible;
}

#toolbarB li .box p {
    white-space: nowrap;
    color: #fff;
    font-size: 14px;
}

#toolbarB li .box img {
    margin-bottom: 0.5em;
}

/* 手机菜单栏 */
.footMenu {
    display: flex;
    position: fixed;
    bottom: 0;
    width: 100%;
    color: #474747;
    border-top: 1px solid rgba(0, 0, 0, .1);
    background-color: #fff;
    z-index: 999;
}

.footMenu>div {
    padding: 5px 0 0;
    flex: 1;
}

.footMenu i {
    color: #666;
    font-size: 24px;
}

.footMenu p {
    color: #666;
    font-size: 12px;
    line-height: 2em;
    margin: 0;
}

.footMenu-inquiry {
    display: flex;
    align-self: center;
    justify-content: center;
    position: relative;
    top: -15px;
}

.footMenu-inquiry img {
    position: relative;
    color: #fff;
    font-size: 30px;
}

.footMenu-inquiry::after {
    content: "";
    width: 60px;
    height: 60px;
    line-height: 60px;
    border-radius: 100%;
    background-color: var(--css-color);
    position: absolute;
    left: 0;
    right: 0;
    top: -12px;
    margin: auto;
    z-index: -1;
}

.footMenu::after {
    content: "";
    width: 70px;
    height: 70px;
    line-height: 60px;
    border-radius: 100%;
    background-color: #fff;
    position: absolute;
    left: 0;
    right: 0;
    top: -20px;
    margin: auto;
    z-index: -2;
    border-top: 1px solid rgba(0, 0, 0, .2);
}

/* banner */

.banner .img-content,
.banner-nei .img-content {
    max-width: 1920px;
    margin: 0 auto;
}

/* 内页布局 */
.page-left {
    margin-top: 25px;
}

.page-left-title {
    padding: 15px;
    /* margin: 0 0 15px 0; */
    font-size: 20px;
    display: block;
    color: #fff;
    /* border-bottom: 1px solid #d9d9d9; */
    position: relative;
    background-color: rgba(0, 0, 0, .6);
}

/* .page-left-title::before {
    content: "";
    position: absolute;
    left: 0;
    top: 1px;
    width: 6px;
    height: 22px;
    background: var(--css-color);
} */

.page-left-nav {
    user-select: none;
    border-top: 2px solid transparent;
}

.page-left-nav>li {
    position: relative;
    border-bottom: 1px solid #f2f2f2;
}

.page-left-nav>li:nth-last-child(1) {
    border-bottom: 0;
}

.page-left-nav li {
    position: relative;
}

.page-left-nav>li>ul {
    margin-top: 8px;
    padding: 0;
    display: none;
}

.page-left-nav>li>ul>li {
    margin: 0px;
}

.page-left-nav a {
    display: block;
    font-size: 14px;
    font-weight: lighter;
    padding: 1em;
    background-color: rgba(10, 133, 210, 5%);
}

.page-left-nav li a::before {
    font-family: bootstrap-icons;
    content: "\f135";
    font-size: 12px;
    margin-right: 0.5em;
}

.page-left-nav>li.submenu::after {
    font-family: bootstrap-icons;
    content: "\f4fe";
    font-size: 16px;
    font-weight: bold;
    line-height: 20px;
    color: #333;
    margin: 0;
    position: absolute;
    right: 3px;
    top: 8px;
    cursor: pointer;
}

.page-left-nav>li.submenu.active::after {
    content: "\f2ea";
}

.page-left-nav a:hover,
.page-left-nav>li.active>a,
.page-left-nav>li>ul>li.active>a {
    color: #fff;
    background-color: var(--css-color);
}


.page-left-contact {
    padding: 1em 1em 1px;
    background-color: rgba(10, 133, 210, 5%);
}

.page-left-contact p {
    font-size: 14px;
    line-height: 20px;
    padding: 0;
    margin: 0 0 10px;
    font-weight: lighter;
    display: flex;
}

.page-left-contact p span {
    flex: 0 0 auto;
    line-height: 20px;
}

.page-left-phone {
    background: linear-gradient(to top left, #0a85d2, #79cbff);
    position: relative;
    display: flex;
    justify-content: flex-end;
    padding: 20px;
    margin-top: 3em;
}

.page-left-phone::before {
    content: url(../images/pageLeftPhone.png);
    position: absolute;
    left: -10px;
    bottom: -2px;
}

.page-left-phone p {
    font-size: 14px;
    color: #fff;
    line-height: 2;
}

.page-left-phone p span {
    font-size: 18px;
    display: block;
}

.page-right-heading {
    margin-bottom: 1em;
}

.page-right-heading h1 {
    font-size: 24px;
    font-weight: normal;
    margin: 0;
}

.page-right-heading p {
    font-size: 14px;
    padding: 0;
    margin: 5px 0 0;
}

.page-right-top {
    border-bottom: 1px solid #f0f0f0;
    margin-bottom: 1em;
}

.page-right-top h5 {
    font-size: 22px;
    display: block;
    line-height: 1;
    /* font-weight: bold; */
    display: inline-block;
    border-bottom: 2px solid var(--css-color);
    position: relative;
    bottom: -1px;
    padding: 0 0 15px;
}

.page-right-title h5 {
    font-weight: bold;
    padding: 0.5em;
    color: #333;
    border-bottom: 1px solid var(--css-color);
    margin-bottom: 1em;
}

.page-right-title p {
    letter-spacing: 2px;
    margin-bottom: 10px;
}

.page-right-tab {
    background-color: #f8f9fa;
    margin-top: 20px;
}

.page-right-tab p {
    display: inline-block;
    background-color: var(--css-color);
    color: #fff;
    padding: 0.5em 1em;
    margin: 0;
}

.page-right-text {
    min-height: 100px;
    padding: 10px;
}

.page-right-text * {
    line-height: 2;
    margin-bottom: 10px;
}

.page-right-text p {
    font-size: 16px;
}

.page-right-text img {
    max-width: 100%;
}

.page-right-map {
    line-height: 2;
    background: #f4f4f4;
    min-height: 300px;
}

.page-right-map h4 {
    color: var(--css-color);
    text-align: center;
    line-height: 1.5;
    padding: 10px 0;
    font-size: 18px;
    font-weight: bold;
}

.page-right-map p {
    padding: 0 15px 0 30px;
    display: flex;
    height: 30px;
    margin-bottom: 10px;
}

.page-right-map i {
    font-size: 20px;
    width: 30px;
    height: 30px;
    line-height: 30px;
    border-radius: 100%;
    text-align: center;
    display: inline-block;
    background: var(--css-color);
    color: #fff;
    margin-right: 10px;
}

.page-right-map span {
    display: inline-block;
    flex: none;
}

.page-right-map b {
    font-weight: normal;
    line-height: 20px;
    padding-top: 6px;
}

.page-right-form {
    /* background-color: #f4f4f4; */
    /* padding: 15px; */
}

.page-right-form .twinkleBtn {
    background: var(--css-color);
    color: #fff;
    opacity: 0.9;
}

.page-right-form .twinkleBtn:hover {
    opacity: 1;
}

.page-right-shareTo {
    display: flex;
    flex-direction: column;
}

.page-right-shareTo h2 {
    display: block;
    padding-top: 24px;
    padding-bottom: 6px;
    font-size: 14px;
    color: #999;
    text-align: center;
}

.page-right-shareTo a[onclick] {
    width: 50px;
    height: 50px;
    margin: 10px auto 0;
    border: 1px solid #eee;
    border-radius: 50%;
    display: flex;
    justify-content: center;
    align-items: center;
    transition: all 0.3s;
    position: relative;
}

.page-right-shareTo a[onclick]>img {
    width: 26px;
}

.page-right-shareTo a[onclick]:hover {
    background-color: rgba(2, 143, 64, 11%);
}

.shareTo_qrcode_wrap {
    position: absolute;
    left: -15px;
    top: 100%;
    width: 160px;
    /* height: 180px; */
    padding: 20px;
    background: #fff;
    border: 1px solid #ddd;
    border-radius: 4px;
    box-shadow: 0 3px 5px rgb(0 0 0 / 10%);
    display: none;
    margin-top: 10px;
}

.shareTo_qrcode_wrap.active {
    display: block;
}

.shareTo_qrcode_wrap::after {
    position: absolute;
    top: -0.5em;
    left: calc(50% - 0.5em);
    display: inline-block;
    content: "";
    border-top: 0;
    border-right: 0.5em solid transparent;
    border-bottom: 0.5em solid var(--css-color);
    border-left: 0.5em solid transparent;
}

.shareTo_qrcode_wrap canvas {
    width: 100%;
}

.shareTo_qrcode_wrap p {
    font-size: 12px;
    color: #999;
    line-height: 2;
}

.shareTo_qrcode_wrap i {
    width: 15px;
    height: 15px;
    position: absolute;
    right: 2px;
    top: 2px;
    cursor: pointer;
}

.form_field {
    display: flex;
    box-shadow: 1px 1px 5px #c3c3c3;
}

.form_field label {
    flex: 0 0 44px;
    text-align: center;
    color: #fff;
    background: #999;
}

.form_field i {
    line-height: 44px;
}

.form_field .position-relative {
    flex: auto;
}

.form_field .form-control {
    border: 0;
    padding: 10px;
}

/* 产品内页 */

.product-list-page {
    margin-bottom: 30px;
}

.product-list-page h3 {
    text-align: center;
    font-size: 16px;
    margin-top: 10px;
    overflow: hidden;
    text-overflow: ellipsis;
    white-space: nowrap;
}

.product-list-page img {
    transition: 0.3s;
}

.product-list-page.b {
    overflow: hidden;
    position: relative;
    border: 5px solid #f5f5f5;
    border-radius: 5px;
}

.product-list-page.b h3 {
    margin-top: 0;
    padding: 0 0.5em;
    line-height: 50px;
    position: absolute;
    bottom: -50px;
    left: 0;
    width: 100%;
    background-color: rgba(255, 255, 255, .8);
    transition: all 0.3s;
    overflow: hidden;
    text-overflow: ellipsis;
    white-space: nowrap;
}

.product-list-page.b:hover h3 {
    bottom: 0;
}

.product-list-page.b:hover img {
    transform: scale(1.2);
}

/* 新闻内页 */

.news-list-page {
    padding: 20px;
    background: #F7F7F7;
    margin: 0 0 20px;
}

.news-list-page h4 {
    font-size: 20px;
    line-height: 30px;
    font-weight: normal;
    position: relative;
    margin: 0;
    overflow: hidden;
    text-overflow: ellipsis;
    white-space: nowrap;
}

.news-list-page h4 span {
    display: block;
    font: 14px/20px Arial;
    color: #808080;
    margin: 0 0 5px;
}

.news-list-page .text {
    line-height: 24px;
    font-size: 14px;
    color: #666666;
    display: -webkit-box;
    -webkit-box-orient: vertical;
    -webkit-line-clamp: 3;
    overflow: hidden;
}

.news-list-page,
.news-list-page * {
    transition: all 0.3s;
}

.news-list-page:hover {
    background-color: var(--css-color);
}

.news-list-page:hover h4,
.news-list-page:hover h4 span,
.news-list-page:hover .text {
    color: #fff;
}

/* 联系我们 */

#imgCode {
    position: absolute;
    right: 16px;
    top: 0;
    bottom: 0;
    margin: auto;
}

.category ul {
    padding: 0;
    display: flex;
}

.category ul li {
    flex: 1;
    max-width: 200px;
    font-size: 20px;
    text-align: center;
    height: 58px;
    line-height: 58px;
    color: #939aac;
    border-radius: 5px;
    cursor: pointer;
}

.category ul li.active {
    color: #fff;
    background: var(--css-color);
}

/* 询价单 */
.inquirySheet-icon {
    width: 25px;
    height: 25px;
    position: relative;
    font-size: 25px;
}

.inquirySheet-icon::before {
    color: var(--css-color);
    position: absolute;
    top: 0;
    left: 0;
    text-shadow: 0 0 3px #fff;
}

.inquirySheet-icon::after {
    content: "";
    position: absolute;
    top: -5px;
    bottom: -5px;
    width: 17px;
    height: 17px;
    background-color: var(--css-color);
    border-radius: 100%;
    box-shadow: 0 0 3px #fff;
}

.inquirySheet-icon span {
    position: absolute;
    top: -5px;
    bottom: -5px;
    width: 17px;
    height: 17px;
    line-height: 17px;
    font-size: 12px;
    color: #fff;
    z-index: 1;
}

.inquirySheet-count {
    overflow: hidden;
    margin: 0;
    user-select: none;
    display: block;
}

.inquirySheet-count li {
    float: left;
}

.inquirySheet-count-jian,
.inquirySheet-count-num,
.inquirySheet-count-jia {
    display: inline-block;
    width: 28px;
    height: 28px;
    line-height: 28px;
    text-align: center;
    font-size: 18px;
    color: #999;
    cursor: pointer;
    border: 1px solid #e6e6e6;
}

.inquirySheet-count-num {
    width: 2em;
    height: 28px;
    color: #333;
    border-left: 0;
    border-right: 0;
}

.inquirySheet-count-num:focus {
    outline: none;
}

.inquirySheet-alert {
    position: fixed;
    left: 0;
    top: 0;
    z-index: 999999;
    width: 100%;
    text-align: center;
    color: #fff;
    background: var(--css-color);
    display: none;
}

.inquirySheet-alert p {
    padding: 0 0 0 50px;
    margin: 0;
    line-height: 44px;
    display: inline-block;
    background-position: 15px center;
    background-repeat: no-repeat;
    background-image: url(data:image/png;base64,iVBORw0KGgoAAAANSUhEUgAAABgAAAAYCAYAAADgdz34AAAAAXNSR0IArs4c6QAAAARnQU1BAACxjwv8YQUAAAAJcEhZcwAADsMAAA7DAcdvqGQAAADsSURBVEhLY2AYBfQMgf///3P8+/evAIgvA/FsIF+BavYDDWMBGroaSMMBiE8VC7AZDrIFaMFnii3AZTjUgsUUWUDA8OdAH6iQbQEhw4HyGsPEcKBXBIC4ARhex4G4BsjmweU1soIFaGg/WtoFZRIZdEvIMhxkCCjXIVsATV6gFGACs4Rsw0EGgIIH3QJYJgHSARQZDrWAB+jawzgs+Q2UO49D7jnRSRGoEFRILcdmEMWGI0cm0JJ2QpYA1RDvcmzJEWhABhD/pqrL0S0CWuABKgnRki9lLseS7g2AlqwHWQSKH4oKLrILpRGhEQCw2LiRUIa4lwAAAABJRU5ErkJggg==)
}

.inquirySheet-alert a {
    text-decoration: underline !important;
}

.inquirySheet-list .col {
    display: flex;
    align-items: center;
    justify-content: center;
}

.inquirySheet-list .col .bi-trash-fill {
    width: 40px;
    height: 40px;
    line-height: 40px;
    text-align: center;
    background: var(--css-color);
    border-radius: 100%;
    color: #fff;
    transition: all 0.3s;
}

.inquirySheet-list .col .bi-trash-fill:hover {
    background: #0a5786;
}

.inquirySheet-list-title {
    padding: 20px 0;
    border-top: 1px solid #eaeaea;
    border-bottom: 1px solid #eaeaea;
}

.inquirySheet-list-box {
    padding: 10px 0;
    border-bottom: 1px solid #eaeaea;
}

.inquirySheet-list-box .img-content {
    height: 110px;
}

@media (max-width:767px) {
    .inquirySheet-list-box .img-content {
        height: auto;
    }
}

.inquirySheet-list-none {
    margin: 3rem 0;
}

.inquirySheet-list-none i {
    color: #b0b0b0;
    font-size: 80px;
    line-height: 1;
    margin-right: 20px;
}

.inquirySheet-list-none h2 {
    color: #b0b0b0;
    font-size: 20px;
}

.inquirySheet-list-none a {
    margin-top: 10px;
    padding: 0 1em;
    line-height: 2.5;
}

.inquirySheet-list-none .box {
    display: flex;
}

.inquirySheet-list-none .box .box-left {
    flex: auto;
    text-align: right;
}

.inquirySheet-list-none .box .box-right {
    flex: auto;
}

.inquirySheet-delete {
    position: fixed;
    left: 0;
    top: 0;
    width: 100%;
    height: 100%;
    z-index: 100;
    display: none;
}

.inquirySheet-delete .inquirySheet-delete-shade {
    width: 100%;
    height: 100%;
    z-index: 1;
    background-color: #000;
    opacity: 0.3;
}

.inquirySheet-delete .inquirySheet-delete-page {
    z-index: 2;
    position: absolute;
    left: 0;
    top: 0;
    right: 0;
    bottom: 0;
    margin: auto;
    width: 250px;
    max-width: 100%;
    height: 130px;
    border-radius: 10px;
    background: #fff;
    text-align: center;
}

.inquirySheet-delete .inquirySheet-delete-page .inquirySheet-delete-close {
    position: absolute;
    right: 9px;
    top: 9px;
    height: 40px;
    width: 40px;
    line-height: 40px;
    text-align: center;
    cursor: pointer;
    transition: all 0.1s;
}

.inquirySheet-delete .inquirySheet-delete-page .inquirySheet-delete-close:hover {
    transform: rotate(90deg);
}

.inquirySheet-delete .inquirySheet-delete-page h2 {
    margin: 40px 0 20px;
    font-size: 14px;
    color: #444;
}

.inquirySheet-delete .inquirySheet-delete-page .inquirySheet-delete-btn {
    display: inline-block;
    background-color: #fff;
    color: var(--css-color);
    border: 1px solid var(--css-color);
    font-size: 12px;
    padding: 3px 10px;
    margin: 0;
    transition: all 0.1s;
    cursor: pointer;
}

.inquirySheet-delete .inquirySheet-delete-page .inquirySheet-delete-btn.true {
    color: #fff;
    background-color: var(--css-color);
}

.inquirySheet-delete .inquirySheet-delete-page .inquirySheet-delete-btn:hover {
    color: #fff;
    background-color: #0a5786;
}

/* 提交留言弹窗 */
#MsgUp {
    position: fixed;
    left: 0;
    top: 0;
    z-index: 999;
    width: 100%;
    height: 100%;
    overflow: hidden;
    display: none;
    transition: all 0.3s;
}

#MsgUp.on {
    display: block;
}

#MsgUp .shadow {
    position: absolute;
    left: 0;
    top: 0;
    width: 100%;
    height: 100%;
    background-color: rgba(0, 0, 0, 0.4);
}

#MsgUp .box {
    position: absolute;
    left: 0;
    top: 0;
    right: 0;
    bottom: 0;
    margin: auto;
    width: 250px;
    max-width: 100%;
    height: 130px;
    border-radius: 10px;
    background: #fff;
    overflow: hidden;
}

#MsgUp .box>div {
    height: 0;
    float: left;
    width: 100%;
    transition: all 0.3s;
    opacity: 0;
}

#MsgUp .box>.on {
    opacity: 1;
}

#MsgUp .box h2 {
    color: #444;
    font-size: 14px;
    text-align: center;
    font-weight: 600;
    text-transform: none;
    position: relative;
    margin: 20px 0 0;
    padding: 0;
    display: block;
}

#MsgUp .box .svg {
    margin: 30px auto 20px;
    width: 40px;
    height: 40px;
    border-radius: 4px;
}

#MsgUp .box .loding .svg {
    animation: fa-spin 2s infinite linear;
    background: url(../images/loding.svg) no-repeat center;
    background-size: cover;
}

#MsgUp .box .check .svg {
    background: url(../images/check.svg) no-repeat center;
    background-size: cover;
}

#MsgUp .box .fail .svg {
    background: url(../images/fail.svg) no-repeat center;
    background-size: cover;
}

/* 分页 */
.longtian {}

.longtian div {
    display: inline-flex;
    padding-left: 0;
    margin: 0;
}

.longtian div span {
    background-color: #FFF;
    border: 1px solid #DDD;
    color: inherit;
    float: none;
    line-height: 34px;
    min-width: 40px;
    text-align: center;
    margin-left: -1px;
    padding: 0;
    position: relative;
    text-decoration: none;
    border-radius: 0;
    cursor: pointer;
    display: block;
}

.longtian div span a {
    color: inherit;
    display: block;
    line-height: inherit;
}

.longtian div .current {
    background-color: var(--css-color);
    border-color: var(--css-color);
    color: #fff;
    cursor: default;
    z-index: 2;
}

.longtian div .disabled {
    cursor: not-allowed;
}
