html,body {
  height: 100%;
  width: 100%;
  padding: 0;
  margin: 0;
  border: 0;
  /* background: linear-gradient(rgb(139, 119, 244), rgb(255 255 255), rgb(237 237 237)); */
  background-repeat: no-repeat;
  background-position: top, bottom;
}
html{
  touch-action: manipulation;
  font-size: 100px;
}
body {
  zoom: 1; /* 默认为100% */
  place-items:unset!important;
  background-color: #fff;
  scrollbar-width: none;
  scrollbar-color: transparent transparent;
  overscroll-behavior: none; /* 禁用弹性滚动效果 */
}
:root {
  --top-header-height: 48px;
  --table-header-tr:#f5f7fa;
}
*{
  font-size: 0.14rem;
  color: #D2DFE5;
  font-weight: normal;
  outline:none!important;
  border: 0;
	-webkit-user-select:none;/*谷歌 /Chrome*/
	-moz-user-select:none; /*火狐/Firefox*/
	-ms-user-select:none;    /*IE 10+*/
	user-select:none;
  padding: 0;
  margin: 0;
  outline: none!important;
}
b{
  font-weight: bold;
}
::-webkit-scrollbar {
  display: none;
  scrollbar-width: none;
  -ms-overflow-style: none;
}
a{
  text-decoration: none;
  position: relative;
  text-transform:none!important;
}
a:hover{
  color:#D2DFE5;
}

img {
  border: 0;
  outline: none;
}
input:focus {
  outline: none;
}
input::-webkit-input-placeholder {
    color: transparent; /* 隐藏光标 */
}
li {
  list-style: none!important;
}
::-webkit-scrollbar-track {
  background: transparent;
  opacity: 0;
}
::-webkit-scrollbar {
  display: none;
  scrollbar-width: none;
  -ms-overflow-style: none;
}

input:-webkit-autofill,
input:-webkit-autofill:hover,
input:-webkit-autofill:focus,
input:-webkit-autofill:active {
  -webkit-transition-delay: 111111s;
  -webkit-transition: color 11111s ease-out, background-color 111111s ease-out;
}
button {
  border: 0;
  outline: none!important;
}

button:focus { outline: none!important;border:0!important; }
div:focus{ outline: none!important;border:0!important; }
body::-webkit-scrollbar {
  display: none;
}

#app {
  margin: 0 auto;
  padding: 0;
  position: relative;
  background:linear-gradient(to bottom,#1b2043,#191b30);
}
.w-100 {
  width: 100%;
  height: 100%;
}
.w-90{
  width: 90%;
  position: relative;
  margin: 0 auto;
}

/* flex 布局 */
.flex{
	display:flex;
	flex-direction:row;
}

.flex-row{ flex-direction:row!important; }
.flex-column{ flex-direction:column!important; }
.flex-row-reverse{ flex-direction:row-reverse!important; }
.flex-column-reverse{ flex-direction:column-reverse!important; }
.flex-wrap{ flex-wrap:wrap;}
.flex-nowrap{ flex-wrap:nowrap;}
.justify-start{justify-content:flex-start;}
.justify-end{justify-content:flex-end;}
.justify-between{justify-content:space-between;}
.justify-around{justify-content:space-around;}
.justify-center{justify-content:center;}
.align-center{ align-items: center; }
.align-stretch{ align-items: stretch; }
.align-start{ align-items: flex-start; }
.align-end{ align-items: flex-end; }

.flex-1{ flex: 1; }
.flex-2{ flex: 2; }
.flex-3{ flex: 3; }
.flex-4{ flex: 4; }
.flex-5{ flex: 5; }

.sg2{color:#88FADF}
.sg {color:#D0D2E7}
.green {color: #18721b;}
.red{color:#ff0000}
.white{color:#ffffff}
.hfont{color:#6c707c}
.container {
  width: 100%;
  height: 100%;
}
/*  -- 内外边距 -- */
.m-0 { margin: 0; }

.m-1 { margin: 10px; }
.m-2 { margin: 20px; }
.m-3 { margin: 30px; }
.m-4 { margin: 40px; }
.m-5 { margin: 50px; }
.mt { margin-top: 5px; }
.mt-0 { margin-top: 0; }
.mt-1 { margin-top: 10px; }
.mt-2 { margin-top: 20px; }
.mt-3 { margin-top: 30px; }
.mt-4 { margin-top: 40px; }
.mt-5 { margin-top: 50px; }
.mb-0 { margin-bottom: 0; }
.mb { margin-bottom: 5px; }
.mb-1 { margin-bottom: 10px; }
.mb-2 { margin-bottom: 20px; }
.mb-3 { margin-bottom: 30px; }
.mb-4 { margin-bottom: 40px; }
.mb-5 { margin-bottom: 50px; }
.ml-0 { margin-left: 0; }
.ml-22{margin-left: 22px;}
.ml-24{margin-left: 24px;}
.ml-1 { margin-left: 10px; }
.ml-2 { margin-left: 20px; }
.ml-3 { margin-left: 30px; }
.ml-4 { margin-left: 40px; }
.ml-5 { margin-left: 50px; }
.mr-0 { margin-right: 0; }

.mr-1 { margin-right: 10px; }
.mr-2 { margin-right: 20px; }
.mr-3 { margin-right: 30px; }
.mr-4 { margin-right: 40px; }
.mr-5 { margin-right: 50px; }
.my-0 { margin-top: 0; margin-bottom: 0; }

.my-1 { margin-top: 10px; margin-bottom: 10px; }
.my-2 { margin-top: 20px; margin-bottom: 20px; }
.my-3 { margin-top: 30px; margin-bottom: 30px; }
.my-4 { margin-top: 40px; margin-bottom: 40px; }
.my-5 { margin-top: 50px; margin-bottom: 50px; }
.mx-0 { margin-left: 0; margin-right: 0; }

.mx-1 { margin-left: 10px; margin-right: 10px;}
.mx-2 { margin-left: 20px; margin-right: 20px;}
.mx-3 { margin-left: 30px; margin-right: 30px;}
.mx-4 { margin-left: 40px; margin-right: 40px;}
.mx-5 { margin-left: 50px; margin-right: 50px;}

.p-0 { padding: 0; }
.p { padding: 5px; }
.p-1 { padding: 10px; }
.p-12 { padding: 12px; }
.p-15 { padding: 15px; }
.p-2 { padding: 20px; }
.p-3 { padding: 30px; }
.p-4 { padding: 40px; }
.p-5 { padding: 50px; }
.pt-0 { padding-top: 0; }
.pt { padding-top: 5px; }
.pt-1 { padding-top: 10px; }
.pt-2 { padding-top: 20px; }
.pt-3 { padding-top: 30px; }
.pt-4 { padding-top: 40px; }
.pt-5 { padding-top: 50px; }
.pb-0 { padding-bottom: 0; }
.pb-1 { padding-bottom: 10px; }
.pb { padding-bottom: 5px; }
.pb-2 { padding-bottom: 20px; }
.pb-3 { padding-bottom: 30px; }
.pb-4 { padding-bottom: 40px; }
.pb-5 { padding-bottom: 50px; }
.pb-6 { padding-bottom: 60px; }
.pb-7 { padding-bottom: 70px; }
.pb-8 { padding-bottom: 80px; }
.pl-0 { padding-left: 0; }
.pl-s{padding-left: 3px;}
.pl { padding-left: 5px; }
.pl-1 { padding-left: 10px; }
.pl-2 { padding-left: 20px; }
.pl-3 { padding-left: 30px; }
.pl-4 { padding-left: 40px; }
.pl-5 { padding-left: 50px; }
.pr-0 { padding-right: 0; }
.pr { padding-right: 5px; }
.pr-1 { padding-right: 10px; }
.pr-2 { padding-right: 20px; }
.pr-3 { padding-right: 30px; }
.pr-4 { padding-right: 40px; }
.pr-5 { padding-right: 50px; }
.py-0 { padding-top: 0; padding-bottom: 0; }
.py { padding-top: 5px; padding-bottom: 5px; }
.py-1 { padding-top: 10px; padding-bottom: 10px; }
.py-2 { padding-top: 20px; padding-bottom: 20px; }
.py-3 { padding-top: 30px; padding-bottom: 30px; }
.py-4 { padding-top: 40px; padding-bottom: 40px; }
.py-5 { padding-top: 50px; padding-bottom: 50px; }
.px-0 { padding-left: 0; padding-right: 0; }
.px-1 { padding-left: 10px; padding-right: 10px;}
.px { padding-left: 5px; padding-right: 5px;}
.px-2 { padding-left: 20px; padding-right: 20px;}
.px-3 { padding-left: 30px; padding-right: 30px;}
.px-4 { padding-left: 40px; padding-right: 40px;}
.px-5 { padding-left: 50px; padding-right: 50px;}
/* 文字大小 */
.font-s { font-size: 12px;}
.font-ss { font-size: 13px;}
.font-sb { font-size: 14px;font-weight: bold;}
.font-smaller { font-size: 14px;}
.font-m { font-size: 15px;}
.font-small { font-size: 16px;}
.font-sm { font-size: 25px;}
.font { font-size: 30px;}
.font-md { font-size: 35px;}
.font-lg { font-size: 40px;}
.h1{font-size:80px; line-height:1.8;}
.h2{font-size:60px; line-height:1.8;}
.h3{font-size:45px; line-height:1.8;}
.h4{font-size:32px; line-height:1.8;}
.h5{font-size:30px; line-height:1.8;}
.h6{font-size:28px; line-height:1.8;}
/* 文字划线 */
.text-through{text-decoration:line-through;}
/* 文字对齐 */
.text-left { text-align: left;}
.text-right { text-align: right;}
.text-center { text-align: center;}
/* 文字换行溢出处理 */
.text-ellipsis {
	overflow: hidden;text-overflow: ellipsis;white-space: nowrap;
}
.text-wrap {
  width: 100%;
  word-wrap: break-word;
}
/* 文字粗细和斜体 */
.font-weight-light {font-weight: 300;}      /*细*/
.font-weight-lighter {font-weight: 100;}/*更细*/
.font-weight-normal { font-weight: 400;}    /*正常*/
.font-weight-bold { font-weight: 700;}      /*粗*/
.font-b { font-weight: bold;} /*更粗*/
.font-italic { font-style: italic;} /*斜体*/
/* 文字颜色 */
.text-h7a{color:#7a8794}
.text-white {color: #ffffff;}
.text-primary {color: #007bff;}
.text-hover-primary { color: #0056b3;}
.text-secondary {color: #6c757d;}
.text-hover-secondary { color: #494f54;}
.text-success {color: #28a745;}
.text-hover-success{color: #19692c;}
.text-info { color: #17a2b8;}
.text-hover-info {color: #0f6674;}
.text-warning {color: #ffc107;}
.text-hover-warning { color: #ba8b00;}
.text-danger { color: #dc3545;}
.text-hover-danger { color: #a71d2a;}
.text-light { color: #f8f9fa;}
.text-hover-light { color: #cbd3da;}
.text-dark { color: #343a40;}
.text-hover-dark{ color: #121416;}
.text-body { color: #212529;}
.text-muted { color: #6c757d;}
/* 浅灰色 */
.text-light-muted { color: #A9A5A0;}
.text-light-black { color: rgba(0, 0, 0, 0.5);}
.text-light-white { color: rgba(255, 255, 255, 0.5);}

/* 背景颜色 */
.bg-primary { background-color: #007bff;}
.bg-hover-primary:hover{ background-color: #0062cc;}
.bg-secondary { background-color: #6c757d;}
.bg-hover-secondary:hover{ background-color: #545b62;}
.bg-success { background-color: #28a745;}
.bg-hover-success { background-color: #1e7e34;}
.bg-info { background-color: #17a2b8;}
.bg-hover-info { background-color: #117a8b;}
.bg-warning { background-color: #ffc107;}
.bg-hover-warning { background-color: #d39e00;}
.bg-danger { background-color: #dc3545;}
.bg-hover-danger{ background-color: #bd2130;}
.bg-light { background-color: #f8f9fa;}
.bg-hover-light{ background-color: #dae0e5;}
.bg-dark { background-color: #343a40;}
.bg-hover-dark { background-color: #1d2124;}
.bg-white { background-color: #ffffff;}
.bg-transparent { background-color: transparent;}
/* 边框 */
.border { border-width: 1px;border-style: solid;border-color: #e4e7ed;}
.border-top {
  border-top-width: 1px;
  border-top-style: solid;
  border-top-color: #e4e7ed;
}
.border-right-dashed {
  border-right-width: 1px;
  border-right-style: dashed;
  border-right-color: #e4e7ed;
}
.border-right {
  border-right-width: 1px;
  border-right-style: solid;
  border-right-color: #e4e7ed;
}
.border-bottom {
  border-bottom-width: 1px;
  border-bottom-style: solid;
  border-bottom-color: #e4e7ed;
}
.border-bottom-dashed{
  border-bottom-width: 1px;
  border-bottom-style: dashed;
  border-bottom-color: #e4e7ed;
}
.border-top-dashed{
  border-top-width: 1px;
  border-top-style: dashed;
  border-top-color: #e4e7ed;
}
.border-left {
  border-left-width: 1px;
  border-left-style: solid;
  border-left-color: #e4e7ed;
}
.border-0 { border-width: 0!important;}
.border-top-0 { border-top-width: 0!important;}
.border-right-0 {border-right-width: 0!important;}
.border-bottom-0 {border-bottom-width: 0!important;}
.border-left-0 {border-left-width: 0!important;}
.border-primary { border-color: #007bff;}
.border-secondary {border-color: #6c757d;}
.border-light-secondary {border-color: #E9E8E5;}
.border-success {border-color: #28a745;}
.border-info {border-color: #17a2b8;}
.border-warning {border-color: #ffc107;}
.border-danger {border-color: #dc3545;}
.border-light {border-color: #f8f9fa;}
.border-dark {border-color: #343a40;}
.border-white {border-color: #FFFFFF;}
/* 圆角 */
.rounded-5 { border-radius: 5px;}
.rounded { border-radius: 8px;}
.rounded-top {
  border-top-left-radius: 8px;
  border-top-right-radius: 8px;
}
.rounded-right {
  border-top-right-radius: 8px;
  border-bottom-right-radius: 8px;
}
.rounded-bottom {
  border-bottom-right-radius: 8px;
  border-bottom-left-radius: 8px;
}
.rounded-left {
  border-top-left-radius: 8px;
  border-bottom-left-radius: 8px;
 }
.rounded-circle { border-radius: 100px;}
.rounded-0 { border-radius: 0;}
/* 显示 */
.d-none{ display: none; }
.d-inline-block{ display: inline-block; }
.d-block{ display: block; }
/* 内容溢出 */
.overflow-hidden { overflow: hidden;}
/* 定位 */
.position-relative { position: relative;}
.position-absolute { position: absolute;}
.position-fixed { position: fixed;}
/* 定位 - 固定顶部 */
.fixed-top {
  position: fixed;
  top: 0;
  right: 0;
  left: 0;
  z-index: 1030;
}
/* 定位 - 固定底部 */
.fixed-bottom {
  position: fixed;
  right: 0;
  bottom: 0;
  left: 0;
  z-index: 1030;
}
.top-0 { top: 0; }
.left-0 { left: 0; }
.right-0 { right: 0; }
.bottom-0 { bottom: 0; }

/* 阴影 */
.shadow { box-shadow: 0 2rpx 12rpx rgba(0, 0, 0, 0.15);}
.shadow-lg { box-shadow: 0rpx 40rpx 100rpx 0rpx rgba(0, 0, 0, 0.175);}
.shadow-none { box-shadow: none !important;}

.el-button--success{
  background-color: #1ec761!important;
  border-color: #1ec761!important;
}

/* dialog 重寫樣式 */
.el-dialog {
  padding: 0!important;
}
.el-dialog__header{
  padding: 10px!important;
  background-color: #eff1f5!important;
}
.el-dialog__body,.el-dialog__footer {
  padding: 16px 25px!important;
}
.setting_title {
  border-bottom: 1px dashed #e6eaee;
  color: #000;
  font-size: 14px;
  font-weight: 700;
  margin-bottom: 12px;
  padding-bottom: 8px;
}
.setting_title span{
  color: #7a8794;
  font-weight: 400;
  margin-left: 4px;
}
.manage_container {
  padding: 20px;
}
.el-table thead tr{
  background-color: #121416;
}

/* 针对Chrome浏览器的样式覆盖 */
input::-webkit-outer-spin-button,
input::-webkit-inner-spin-button {
  -webkit-appearance: none;
  margin: 0;
}

input[type="number"] {
  -moz-appearance: textfield; /* 针对Firefox */
}
.el-dialog {
  overflow: hidden;
  border-radius: 5px!important;
}

.el-tabs__nav-wrap::after{
  height: 1px!important;
}
.cursor {
  cursor: pointer;
}
input:-internal-autofill-selected {
background-color: unset!important;
}
.table_row {
  cursor: pointer;
}
.el-select__suffix{
  display: none!important;
}
.w100 {
  width: 100%;
}
.h100{
  height: 100%;
}
.main_left{
  width: 320px;
  border-left:1px #e4e7ed solid;
  border-right: 1px #e4e7ed solid;
  box-sizing: border-box;
}
.main_left_search {
  border-bottom: 1px #e4e7ed solid;
  height: 54px;
}
.main_left_title {
  font-size: 14px;
  font-weight: bold;
  border-bottom: 1px #e4e7ed solid;
}
.main_left_content {
  height: calc(100% - 140px);
  overflow: auto;
}
.main_left_title .select_date {
  width: 86px!important;
}
.main_left_title .select_date .el-input__inner {
    cursor: pointer;
}
.main_left_content li{
  cursor: pointer;
  border-bottom: 1px #e4e7ed dashed;
}
.main_left_content .unpaid{
  color: #40acff;
}
.main_left_content .user_filled {
  position: relative;
  top: 2px;
  padding-right: 5px;
}
.main_left_content .el-icon{
  font-size: 15px;
}
.main_left_content li.active{
  background-color: #40acff!important;
  border-radius: 5px;
  color: #fff;
}
.main_left_content .active .unpaid{
  color: #fff!important;
}
.main_left_content li.active .user_filled_svg{
  color: #fff!important;
}
.main_left_title .select_date .el-input__wrapper{
  box-shadow:unset!important;
}
.main_content{
  box-sizing: border-box;
  flex: 1;
  min-width: 800px;
}
.main_right{
  width: 400px;
}
.main_left_title .el-badge__content{
  right: 0!important;
  top: 3px!important;
}
.main_content_header {
  height: 54px;
}
.main_container {
  height: calc(100% - 60px);
  overflow: auto;
  background-color: #F5F5F5;
}
.appointment_records {
  max-height: calc(100% - 120px);
  overflow: auto;
}
.el-input.is-disabled .el-input__wrapper {
  background-color: #fff!important;
}

.el-input__wrapper,.el-textarea,.el-textarea__inner {
  background-color: rgba(159, 181, 236, 0.12)!important;
  box-shadow: unset!important;
}
.el-input__inner,.el-textarea__inner {
  color:#D2DFE5!important;
}
.el-divider--horizontal{
  margin: 10px 0!important;
}
/* 加載中，頭密度 */
.el-loading-mask{
  background-color: rgb(0 0 0 / 60%)!important;
}
.el-button.is-disabled, .el-button.is-disabled:hover {
  background-color: #ccc!important;
}
.pay_button {
    background-color: #D24264;
    border-radius: 15px;
    padding: 7px 12px;
    color: #fff;
    font-size: 13px;
}
.common_btn {
  display: block;
  margin: 0 auto;
  margin-top: 20px;
  width: 100%;
  height: 40px!important;
  background: linear-gradient(165.71deg, rgba(78, 223, 255, 1) 0%, rgba(47, 87, 231, 1) 100%);
  border: 0!important;
}
.common_btn span {
  font-size: .15rem!important;
  color: #fff!important;
}
.hint {
  color: #D24264;
}
/* 打印去掉頁眉頁腳 */
@page {
  size: auto;
  margin: 0mm;
}
.print_header {
  font-size: 16px;
  width: 100%;
  text-align: center;
}
.lang_bottom_select {
  width: 100%;
}
.lang_bottom_select li {
  font-size: 0.15rem;
  text-align: center;
  border-bottom: 1px #33353f dashed;
  padding:15px 0;
}
.lang_bottom_select li:last-child {
  border-bottom: 0!important;
}
.lang_icon {
  font-size: 28px!important;
  position: relative;
  top: 1px;
}
.recharge_loading .el-loading-text{
  color: #ff6d6d!important;
}
.provider {
  height: 10px;
  width: 100%;
  background-color: #f6f6f6;
}
.container_top {
  padding-top: 46px;
}
.drawl_bottom {
  background-color: #21212d!important;
}
.drawl_bottom .el-drawer__body {
  padding: 15px 15px 0 15px!important;
}
.drawl_bottom .el-drawer__footer .el-button {
  width: 200px;
  height: 45px;
}
/* 针对 Webkit 浏览器，如 Chrome、Safari */
.hide-scrollbar ::-webkit-scrollbar {
  display: none;
}

.hide-scrollbar {
  -ms-overflow-style: none; /* 针对 IE 和 Edge */
  scrollbar-width: none; /* 针对 Firefox */
}
.el-scrollbar__bar.is-horizontal {
  height: 0!important;
}
.a_button {
  width: 60%!important;
  height: 40px!important;
}
.font-color {
  color: #8b77f4!important;
}
.el-loading-spinner .path {
  stroke: #8b77f4!important;
}
.el-statistic__content {
  color: #fff!important;
}
.divide_line {
  background-color: #f0f4f7;
  height: 5px;
  width: 100%;
}
.p_bg{
  width: 100%;
  height: 100%;
  background: linear-gradient(rgb(169 157 231),#f1f6ff,#f8f8f8);
  background-repeat: no-repeat;
  background-position: top, bottom;
}

.common_button {
  background: linear-gradient(165.71deg, rgba(78, 223, 255, 1) 0%, rgba(47, 87, 231, 1) 100%)!important;
  border: 0!important;
}

.p_button{
  background: linear-gradient(90deg,#c6a8ff,#8c75f1)!important;
  color: #fff!important;
  border: 0!important;
  width: 100%;
  height: 45px!important;
  border-radius: 45px!important;
}
.p_input .el-input__wrapper{
  width: 45px;
  border-radius: 45px;
  display: block;
  line-height: 45px;
}
.p_gg {
  background: linear-gradient(#8b77f4,#fff);
  width: 100%;
  height: 100%;
}

.my_menus {
    margin: 0 20px;
    background-color: #fff;
    border-radius: 8px;
}
.my_menus li{
    display: flex;
    justify-content: space-between;
    align-items: center;
}
.my_menus li{
    padding: 25px 20px;
    border-bottom: 1px #f0f4f7  solid;
}
.my_menus li:last-child{
    border-bottom: 0;
}
.p_input .el-form-item{
    height: 50px;
    border-radius: 50px;
}
.p_input .el-input-group__append{
  border-top-right-radius: 45px;
  border-bottom-right-radius: 45px;
}
.p_input  input {
  padding-left:10px;
}
.el-drawer{
  background-color: #2e3668!important;
}
.custom-drawer {
  height: 150px!important;
}
.menu_icon {
    position: relative;
    top: -5px;
}
.menu_icon::before {
    position: absolute;
    content: "";
    width: 20px;
    height: 2px;
    background-color: #fff;
    top: 0;
    left: 0;
}
.menu_icon::after {
    position: absolute;
    content: "";
    width: 10px;
    height: 2px;
    background-color: #fff;
    top: 8px;
    left: 0;
}
.el-message .el-button span,.el-message-box span{
  color:#5E6B8F!important;
}

.el-message-box .el-button>span {
  color:#5E6B8F!important;
}
.el-message .el-button--primary span,.el-message-box .el-button--primary>span {
  color:#ffffff!important;
}

.el-message .el-message-box__status.el-message-box-icon--warning,.el-message-box p,.el-message-box__status svg {
  color:#5E6B8F!important;
}

.app_login {
  background-color: #000!important;
}

.el-message .el-message-icon--success {
  color: #67c23a!important;
}
.back_icon {
  color: #fff;
  font-size: 25px;
}
.b_container {
  opacity: 1;
  border-radius: 12px;
  background: rgba(36, 39, 67, 1);
  border: 1px solid rgba(116, 127, 155, 1);
}
.b_con{
  opacity: 1;
  border-radius: 12px;
  background: rgba(36, 39, 67, 1);
}
.add-color {
  color: #67c23a;
}
.plus-color {
  color: #C65633;
}

.el-popper.is-light span{
  color:#4d4d4d!important;
}
.el-drawer__header {
  margin-bottom: 0!important;
}
.el-drawer__title {
  font-size: 15px!important;
  text-align: center;
}
.footer_container {
  width:100%;
  height: calc(100% - 60px);
}
.el-collapse {
  border: 0!important;
}

.capital_container {
  width: 100%;
  height: 100%;
}
.my-order-ul {
  overflow: auto;
}
.over_flow {
  overflow: auto;
}
.swiper-pagination-bullet {
  opacity: 0.5!important;
}
.swiper-pagination-bullet-active {
  background-color: #ffffff!important;
  opacity: 1 !important;
}