/*
 * @Author: happiness roray@126.com
 * @Date: 2024-12-02 11:33:50
 * @LastEditors: happiness roray@126.com
 * @LastEditTime: 2025-01-03 16:24:54
 * @FilePath: \GTShow\css\index.css
 * @Description: 这是默认设置,请设置`customMade`, 打开koroFileHeader查看配置 进行设置: https://github.com/OBKoro1/koro1FileHeader/wiki/%E9%85%8D%E7%BD%AE
 */
/* This file is used to style the HTML content of the GTShow website */
/* Add your CSS code here */
@charset "UTF-8";

:root {
    /* 基础颜色 */
    --basic-color: #722F92;
    --danger-color: #ff5722;
    --success-color: #4caf50;
    --warning-color: #ffeb3b;
    --info-color: #949596;
    --light-color: #f2f2f2;
    --dark-color: #333;
    /* 文本颜色 */
    ---text-color: #333;
    /* 边框颜色 */
    --border-color: #ccc;
    /* 背景颜色 */
    --bg-color: #fff;
    /* 主体颜色 */
    --body-color: #eee;
    /* 弹层 */
    --model-bg-color: rgba(0, 0, 0, 0.7);
    --model-text-color: #fff;
    --model-border-color: #ccc;
    --model-shadow-color: rgba(0, 0, 0, 0.5);
    --model-border-radius: 0;
    --model-padding: 1rem;
    --model-box-shadow: 0 0 10px rgba(0, 0, 0, 0.5);
    /* 按钮样式 */
    --btn-border-radius: 0;
    --btn-height: 40px;
    /* 表单组件高度 */
    --form-control-height: 40px;
    /* 页脚 */
    --footer-bg-color: #f5f5f5;
    --footer-text-color: #fff;
    /* 导航按钮 */
    --icon-fill: none;
    --icon-stroke: #722F92;
    /* card 样式 */
    --card-bg-color: #fafafa;
    /* 页面宽度 */
    --page-frame-width: 1024px;
    --page-width: 94%;
    /* 底部导航高度 */
    --footerHeight:60px;
}

@media (min-width: 992px) {
    :root {
        --page-width: 480px;
    }
}

body {
    width: 100vw;
    height: 100vh;
    padding: 0;
    margin: 0;
    display: flex;
    justify-content: center;
    align-items: center;
    position: relative;
    background-color: var(--body-color) !important;
}

/**

 * 布局
 */
container {
    padding: 0;
    margin: 0;
    background-color: var(--bg-color);
    width: var(--page-frame-width);
    height: 100dvh;
    overflow: hidden;
    position: relative;
    display: flex;
    flex-direction: column;
}

#header {
    width: 100%;
    /* width: calc(100% + 2rem);
    margin-left: -1rem !important;
    margin-top: -1rem !important; */
    background-color: transparent;
    overflow: hidden;
}

main {
    width: 100%;
    height: 100%;
    padding-bottom: 90px;
    padding: 1rem;
    overflow: hidden;
    overflow-y: auto;
}

footer {
    width: 100%;
    height: var(--footerHeight);
    min-height: 60px;
    background-color: var(--footer-bg-color);
    overflow: hidden;
}
.btn{
    cursor: pointer !important;
}
footer .btn {
    color: var(--footer-text-color)
}

.navTitle {
    margin-top: 1px;
    font-size: 11px;
    color: #A6AAB2
}

.footerContent {
    color: var(--info-color)
}

@media (max-width: 991px) {
    container {
        height: 100vh;
        width: 100vw;
        overflow: hidden;
    }

}

/**

 * 滚动条

 */
*::-webkit-scrollbar {
    width: 3px;
    height: 3px;
}

*::-webkit-scrollbar-thumb,
*::-webkit-scrollbar-track {
    border-radius: 2px;
    box-shadow: inset 0 0 1px var(--light-color);
}

*::-webkit-scrollbar-thumb {
    background: var(--basic-color);
}

/**

 * 自适应定位

 */
.flex-x-cc {
    display: flex;
    justify-content: center;
    align-items: center;
}

.flex-y-cc {
    display: flex;
    justify-content: center;
    align-items: center;
    flex-direction: column;
}

.flex-x-bc {
    display: flex;
    justify-content: space-between;
    align-items: center;
}

.flex-x-sc {
    display: flex;
    justify-content: flex-start;
    align-items: center;
}

/**

 * 轮播

 */
#carouselExample {
    width: 100%;
    height: auto;
}

.carousel-item img {
    width: 100%;
    height: auto;
    object-fit: cover;
}

/**

 * 弹出浮层

 */

.modal-content {
    background-color: var(--model-bg-color);
    color: var(--model-text-color);
    border-radius: var(--model-border-radius);
}

.modal-dialog-centered {
    width: 90%;
    margin-left: 5%;
    display: flex !important;
}

#homeModal {
    display: flex !important;
    justify-content: center;
    align-items: center;
    flex-direction: column;
}

.modal-header {
    padding: .7rem;
}

.modal-header .modal-title {
    font-size: 22px;
    font-weight: 700;
}

.modal-header span {
    font-size: 16px;
}

.modal-body {
    padding: var(--model-padding);
    height: auto;
    overflow: hidden;
    overflow-y: auto;
    text-align: justify;
    text-align-last: left;
}

.modal-body {
    min-height: 90px;
    max-height: 500px;
}


.modal-footer {
    padding: var(--model-padding) !important;
}

.modal-footer .btn {
    height: 44px;
}

@media (min-width: 768px) {
    #homeModal .modal-dialog {
        max-width: 600px;
    }
}

@media (max-width: 768px) {

    .modal-body,
    .modal-footer {
        padding: 1rem;
    }

    .modal-dialog-centered .modal-dialog {
        width: 100%;
    }
}

/**

 * 按钮

 */
.btn {
    border-radius: var(--btn-border-radius);
    color: var(--model-text-color);
    background-color: var(--basic-color);
    height: var(--btn-height);
}

.btn.btn-fill {
    width: 100%;
    background-color: var(--basic-color) !important;
    color: var(--model-text-color);
}

.btn-radio {
    padding: .25rem !important;
    margin: 0;
    width: 24px;
    height: 24px;
    min-height: 24px;
    min-width: 24px;
    border-radius: 50%;
    background-color: #fff;
    border: 1px solid var(--basic-color) !important;
    display: flex;
    justify-content: center;
    align-items: center;
    cursor: pointer;
}

.btn-radio i {
    display: none;
}

.btn-radio.active {
    background-color: var(--basic-color);
    color: #fff;
}

.btn-radio.active i {
    display: block;
    font-size: 16px;
}

.btn-half {
    width: 46%;
    background-color: var(--basic-color);
}

.btn-bg-info {
    background-color: var(--info-color);
}

.btn-gender {
    background-color: transparent !important;
    width: calc(100% - 110px);
    border: 0 !important;
    color: var(--basic-color) !important;
}

.genderOpen {
    width: 32px !important;
}

.text-color-info {
    color: var(--info-color) !important;
}
.btn-primary{
    background-color: var(--basic-color) !important;
}
/*

* toast 提示

*/
.toast {
    width: 100%;
    background-color: #dd7f7e;
    color: #fff;
    border: none !important;
    border-radius: 0 !important;
    position: fixed;
    top: 0;
    left: 0;
}

/**

 * SVG 导航图标

 */
.st0 {
    fill:  #A6AAB2;
    /* stroke: var(--icon-stroke); */
    stroke-width: 2px;
}

.st0.active {
    fill: var(--icon-stroke);
    stroke: none
}
.navTitle.active{
    color:var(--icon-stroke);
}
/**

 * Title 页面标题

 */
#pageTitle {
    width: var(--page-width);
    margin: 1rem auto;
    margin-top: 1.5rem;
    text-align: center;
    color: var(--basic-color);
    padding-bottom: 1rem;
}

#pageTitle h1 {
    font-weight: 900;
    margin-bottom: 0;
    font-size: 20px;
}

#pageTitle p {
    font-size: 14px !important;
    margin: 0 !important;
    bottom: 0 !important;
}

/**

 * Tabs 标签

 */

#navTabs {
    padding-top: .5rem;
    width: var(--page-width);
    margin: 1rem auto;
}

.nav-tabs {
    border-bottom: 1px solid var(--basic-color);
}

.nav-link {
    color: var(--model-text-color);
    background-color: var(--basic-color);
    padding: 0.5rem 1.5rem;
    border-top-left-radius: 1rem !important;
    border-top-right-radius: 1rem !important;
}

.nav-link:first-of-type {
    margin-right: .7rem;
}

.nav-link:last-of-type {
    margin-left: .7rem;
}

.nav-link.active {
    border-color: transparent !important;
    background-color: var(--light-color) !important;
    color: var(--basic-color) !important;
    border-bottom: 1px solid var(--basic-color) !important;
}

.tab-content {
    margin-top: 2rem;
    width: var(--page-width);
    margin: 2rem auto;
}

.tab-content .btn {
    height: var(--btn-height);
    /* width: auto; */
}

.tab-content .btn-fill {
    margin-top: 1.5rem;
}

/**

 * Form 表单

 */

.form-group {
    margin-top: 1.5rem;
}

.form-group .form-control {
    border: none;
    border-radius: var(--btn-border-radius);
    border: 1px solid var(--basic-color);
    height: var(--form-control-height);
}

.form-group .form-control::placeholder {
    color: var(--info-color);
    font-size: 14px;
}

.reg-form {
    width: var(--page-width);
    margin: 1rem auto;
}

/**

 * Upload 上传按钮

 */

.btn-upload {
    width: 100%;
    background-color: var(--bg-color);
    color: var(--basic-color);
    border: 1px solid var(--basic-color) !important;
    border-radius: var(--btn-border-radius);
    height: var(--form-control-height);
    padding: 0 1rem;
}

.btn-upload .custom-file-input {
    display: none;
}

.input-group .card-body,
.form-group .card-body {
    padding: 0 !important;
    margin-top: .5rem;
}

.card-upload {
    height: 150px;
    overflow: hidden;
    display: flex;
    justify-content: center;
    align-items: center;
}

.card-upload .img-card {
    width: auto;
    height: 150px;
    display: block;
    object-fit: cover;
}

/* 上传头像 */
.btn-upload-photo {
    width: 200px;
    height: 200px;
    min-height: 200px;
    min-width: 200px;
    border-radius: 50%;
    background-color: var(--light-color);
    border: 1px solid var(--basic-color);
    display: flex;
    justify-content: center;
    align-items: center;
    overflow: hidden;
}

#Photo,
.btn-upload-Photo .custom-file-input {
    display: none !important;
}

.btn-upload-Photo .custom-file-label {
    width: 100%;
    height: 100%;
    border-radius: 50%;
    overflow: hidden;
    display: flex;
    justify-content: center;
    align-items: center;
    overflow: hidden;
}

.img-fluids {
    width: 200px;
    height: auto;
    object-fit: cover;
}

.upload-photo-text {
    color: var(--basic-color);
}

/**

 * 表单组件

 */
.input-group {
    margin-top: .7rem;
}

.input-group {
    border-radius: var(--btn-border-radius);
    border: 1px solid var(--basic-color) !important;
}

.input-group .form-select,
.input-group .form-control {
    border: none;
    height: var(--form-control-height);
}

.input-group .input-group-text {
    border: none !important;
    color: var(--basic-color);
    background-color: transparent !important;
}

/* 无值时SELECT的提示 */
.first-select,
/* 无值时INPUT的提示 */
.input-group .form-control::placeholder {
    color: var(--info-color);
    font-size: 14px;
}

.input-group .form-select {
    border: none;
    border-right: 0 !important;
    height: var(--form-control-height);
}

.input-group .form-select::placeholder,
.input-group .form-control::placeholder {
    color: var(--info-color);
    font-size: 14px;
}

.input-text .form-control {
    border: none !important;
    text-align: center;
}

.input-text .form-control::placeholder {
    text-align: center;
}

.input-group-text.disabled {
    background-color: var(--bs-secondary-bg);
}

.input-group:last-of-type {
    margin-bottom: 1rem;
}

/* 输入框，选择框 前面的提示宽度 */
.input-group-text {
    width: 110px;
}

/* Card */
.card {
    border-radius: var(--btn-border-radius);
    border-color: var(--basic-color);
}

.card .card-title {
    color: var(--basic-color);
    font-weight: 700;
}

.card .card-btn {
    display: flex;
    justify-content: flex-end;
    align-items: center;
}

.card-color-info {
    background-color: var(--card-bg-color);
}

.ticketCard .collapse .card-body {
    margin-top: .5rem;
    background-color: var(--card-bg-color);
}

  .card-info-list {
    width: 100%;
    margin: auto;
    height: var(--form-control-height);
    line-height: var(--form-control-height);
    text-align: center;
    border-bottom: 1px solid var(--basic-color);
    color: var(--basic-color);
    font-size: 16px;
}

 .collapse .card-info-list:first-of-type {
    color: var(--info-color) !important;
}

 .collapse .card-info-list:last-of-type {
    border-bottom: none;
}

.ticketCard .card-text {
    font-size: 14px;
    color: var(--info-color);
}

/* Radio */
.form-check-input {
    width: 1.2rem;
    height: 1.2rem;
    border: 1px solid var(--basic-color);
}

#invoiceForm * {
    color: var(--basic-color);
}

/**

* 支付

 */

.paymentArea {
    padding: 2rem 1rem;
    border-top: 1px solid var(--basic-color);
    border-bottom: 1px solid var(--basic-color);
}
#paymentForm{
    width: var(--page-width);
    margin:  auto;
}
.paymentCard .card-body {
    padding: 0.5rem !important;
}

.paymentCard .card-title span {
    font-size: 18px;
}

.countFee {
    text-align: center;
    font-size: 16px;
}

.countFee h5 {
    font-size: 18px;
    color: var(--basic-color);
    font-weight: 700;
}

.countFee .fee {
    color: var(--basic-color);
    font-weight: 700;
}

/*  */
.border-none {
    border: none !important;
}

/* 票证相关信息 输入框文字以暗色 */
#ticketUserForm input,
#ticketUserForm select {
    color: var(--basic-color) !important;
}

/* 富文本 */
.editorArea {
    width: var(--page-width);
    margin: 1rem auto;
    padding: 1rem 0;
}

.editor-title {
    color: var(--basic-color);
    font-weight: 700;
    text-align: center;
}

/* 二维码 */
#carouselCode{
    width: var(--page-width);
    margin: auto;
    padding: 1rem;
    display: flex;
    justify-content: center;
    align-items: center;
    flex-direction: column;
    position: relative;
}

.qrcodeArea {
    width: 180px !important;
    height: 180px !important;
    object-fit: cover;
    display: flex;
    justify-content: center;
    align-items: center;
    position: relative;
}
.qrcodeImg{
    width: 180px !important;
    height: 180px !important;
}
.isUse .qrcodeImg {
    opacity: 0.2;
    filter: blur(5px);
    -webkit-filter: blur(5px);
} 
 .qrcode-state {
    position: absolute;
    width: 65px;
    height: 65px;
    display: flex;
    font-weight: 700;
    justify-content: center;
    align-items: center;
    background-color: var(--basic-color);
    color: #fff;
}
.cursor-pointer{
    cursor: pointer !important;
}
.qrcodeInfo{
    margin-top: 1rem;
    text-align: center;
    font-size: 16px;
}
.qrcodeInfo h5{
    font-weight: 700;
    color: var(--basic-color);
}
/* 底部按钮 */
.bottomBtn {
    width: var(--page-width);
    margin: auto;
    padding: 1rem 0;
}

/* 伸缩卡片 */
.flexibleCard {
    width: var(--page-width);
    padding-bottom: 1rem;
    margin: auto;
}

.upgrade-price {
    font-weight: 700;
    color: var(--basic-color);
    padding-right: 1rem;
}

/* 表格 */
#orderListTable {
    width: var(--page-width);
    margin: auto;
}

.thead {
    border-top: 1px solid var(--basic-color);
    border-bottom: 1px solid var(--basic-color);
    padding: .7rem 0;
    font-weight: 900;
    background-color: #f3f8ff;
}

.tbody {
    border-bottom: 1px solid var(--basic-color);
    font-size: 14px;
}

/* 下拉 */
.dropdown-toggle {
    background-color: transparent !important;
    color: var(--basic-color) !important;
    font-size: 14px;
}

/* 身份类型 / 资质证明 */
.identityCard,
#qualification {
    width: var(--page-width);
    margin: auto;
}

/* 问卷 */
.firstWord {
    width: 32px;
    height: 32px;
    min-width: 32px;
    min-height: 32px;
    background-color: var(--basic-color);
    color: #fff;
    display: flex;
    justify-content: center;
    align-items: center;
}

.question {
    font-size: 14px;
    color: var(--basic-color);
    margin-left: .7rem;
}

.questionOption {
    margin-left: 2rem;
}

.questionOptionChild {
    margin-left: 1.5rem;
}

.form-check-input:checked[type=radio] {
    --bs-form-check-bg-image: url("data:image/svg+xml,%3csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 20 20'%3e%3cpath fill='none' stroke='%23fff' stroke-linecap='round' stroke-linejoin='round' stroke-width='3' d='m6 10 3 3 6-6'/%3e%3c/svg%3e");
}

.border-color-basic {
    border-color: var(--basic-color) !important;
}

.border-input-bottom {
    border: none !important;
    border-bottom: 1px solid var(--basic-color) !important;
    border-radius: 0 !important;
    box-shadow: none !important;
    -webkit-border-radius: 0 !important;
    -moz-border-radius: 0 !important;
    -ms-border-radius: 0 !important;
    -o-border-radius: 0 !important;
}

#optionModal .form-control {
    background-color: transparent !important;
    color: #fff !important;
}

#optionModal .form-control::placeholder {
    color: #eee !important;
}

.w-48 {
    width: 48% !important;
}

.iconJumpTo{
    width: 26px;
    height: 28px;
   position: relative;
}
.iconJumpTo::after{
    content: '';
    width: 100%;
    height: 100%;
    position: absolute;
    top: 0;
    left: 0;
    z-index:9999;
}
.form-control.bd-input{
    border-radius: 0 !important;
    border: 1px solid var(--basic-color) !important;
    -webkit-border-radius: 0 !important;
    -moz-border-radius: 0 !important;
    -ms-border-radius: 0 !important;
    -o-border-radius: 0 !important;
}
.btn-nav{
    background-color: #f5f5f5;
}
.pageHeader{
    font-weight: 900;
    text-align: center;
    padding: .5rem;
}