body {
    background: #ffffff;
    color: #303133;
}
.ordercar-modal {
    display: none; /* 默认隐藏 */
    position: fixed;
    bottom: 0;
    left: 0;
    right: 0;
    height: 50%; /* 占屏幕一半 */
    background: white;
    box-shadow: 0 -2px 10px rgba(0,0,0,0.3);
    border-radius: 20px 20px 0 0; /* 圆角效果 */
    transition: transform 0.3s ease, box-shadow 0.3s ease;
    transform: translateY(100%); /* 初始位置移出屏幕 */
    z-index: 999999;
}
.ordercar-modal.show {
    display: block;
    transform: translateY(0); /* 显示时移入屏幕 */
    box-shadow: 0 -5px 20px rgba(0,0,0,0.5); /* 增强阴影效果 */
}

.order-modal {
    display: none; /* 默认隐藏 */
    position: fixed;
    bottom: 0;
    left: 0;
    right: 0;
    height: 50%; /* 占屏幕一半 */
    background: white;
    box-shadow: 0 -2px 10px rgba(0,0,0,0.3);
    border-radius: 20px 20px 0 0; /* 圆角效果 */
    transition: transform 0.3s ease, box-shadow 0.3s ease;
    transform: translateY(100%); /* 初始位置移出屏幕 */
    z-index: 999999;
}
.order-modal.show {
    display: block;
    transform: translateY(0); /* 显示时移入屏幕 */
    box-shadow: 0 -5px 20px rgba(0,0,0,0.5); /* 增强阴影效果 */
}
/* 基础样式，增加了圆角 */
.info-item {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 10px 20px; /* 增加了左右内边距以提供更好的空间感 */
    border-bottom: 1px solid #eaeaea;
    border-radius: 8px; /* 增加了圆角 */
    transition: background-color 0.3s ease; /* 添加了背景颜色渐变动画 */
}

/* 移除最后一个元素的边框，并增加一些内边距 */
.info-item:last-child {
    border-bottom: none;
    padding-bottom: 20px; /* 可选，为了视觉上的平衡 */
}

/* 为.span-margin增加了鼠标悬停时的下划线特效 */
.span-margin {
    margin: 0 5px;
    text-decoration: none;
    transition: text-decoration 0.3s ease;
}

.span-margin:hover {
    text-decoration: underline;
}

/* 增加了p标签的文本阴影 */
.info-item p {
    margin: 0;
    flex-basis: 40%;
    text-shadow: 1px 1px 2px rgba(0, 0, 0, 0.1); /* 添加了轻微的文本阴影 */
}

/* 美化.flex-row，增加了背景渐变和阴影 */
.flex-row {
    display: flex;
    justify-content: space-between;
    align-items: center;
    margin-bottom: 10px;
    padding: 10px 20px;
    background: linear-gradient(135deg, #f8f9fa, #f8f9fa); 
    box-shadow: 0 2px 4px rgba(0, 0, 0, 0.1); /* 添加了阴影 */
    border-radius: 8px; /* 增加了圆角 */
}




/* 使.flex-label的文本更加突出 */
.flex-label {
    white-space: nowrap;
    font-weight: bold; /* 增加了字体粗细 */
    color: #333; /* 使文本颜色更深一些 */
}

/* 为.flex-input增加了内边距和圆角 */
.flex-input {
    flex: 0 1 auto;
    padding: 5px 10px;
    border-radius: 4px;
    background-color: #f8f9fa; /* 确保背景为白色，增加对比度 */
}

/* 美化输入框，增加了阴影和圆角 */
.layui-input {
    width: 150px;
    padding: 8px 12px;
    border: 1px solid #ddd;
    border-radius: 4px;
    box-shadow: inset 0 1px 2px rgba(0, 0, 0, 0.05);
    transition: border-color 0.3s ease, box-shadow 0.3s ease;
}

.layui-input:focus {
    border-color: #007bff;
    box-shadow: 0 0 5px rgba(0, 123, 255, 0.5);
}



/* From Uiverse.io by Cobp */ 
.container-card-charts {
  position: relative;
  width: 380px;
  height: 200px;
  margin-left: auto;
  margin-right: auto;
  background: linear-gradient(to top, rgb(17 46 235), rgb(207 94 13 / 10%));
 
  border-radius: 32px;
  padding: 1.6px;
  box-shadow: 0 0px 80px -10px rgba(0, 0, 0, 0.15);
}
.container-card-charts::before {
  position: absolute;
  content: "";
  bottom: -40px;
  left: 50%;
  transform: translateX(-50%);
  width: 80px;
  height: 80px;
  background-color: #777777;
  z-index: -10;
  filter: blur(70px);
}
.card-charts {
  width: 100%;
  height: 100%;
  background: radial-gradient(ellipse at center, #2657e7, #2657e7);
  border-radius: 32px;
  display: flex;
  flex-direction: column;
  overflow: hidden;
}
.charts-lines {
  position: relative;
  width: 100%;
  height: 100%;
}
.charts-lines i {
  position: absolute;
  inset: 0;
  display: flex;
  width: 100%;
  height: 100%;
}
.lines {
  position: absolute;
  inset: 0;
  display: flex;
  justify-content: space-between;
}
.lines span {
  width: 1.5px;
  height: 100%;
  margin: 0 18px;
  background: linear-gradient(
    to top,
    rgba(255, 255, 255, 0) 0%,
    rgba(255, 255, 255, 0.025) 50%,
    rgba(255, 255, 255, 0) 100%
  );
}
.tags-card {
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 5px;
}
.tags-card .radio {
  position: relative;
  display: flex;
  align-items: center;
  justify-content: center;
  width: 40px;
  border-radius: 12px;
  color: #a7a7a7;
  font-family: "Segoe UI", Tahoma, Geneva, Verdana, sans-serif;
  font-size: 8px;
  font-weight: 600;
  cursor: pointer;
}
.tags-card .radio:hover {
  color: #ffffff;
}
.tags-card .radio input {
  display: none;
}

.tags-card .radio .name {
  width: 100%;
  padding: 6px;
  display: flex;
  align-items: center;
  justify-content: center;
  border-radius: 12px;
  z-index: 1;
}

.tags-card .radio input:checked + .name {
  color: #ffffff;
  background: linear-gradient(15deg, #898989, #181818, #000000);
  transform: scale(1.1);
}

.tags-card .radio input:checked + .name::before {
  position: absolute;
  background-color: #212121;
  content: "";
  inset: 1px;
  z-index: -1;
  border-radius: 12px;
}

.main-texts {
  display: flex;
  flex-direction: column;
  padding: 0 20px;
  font-weight: 500;
}
.main-texts .title {
  background-image: linear-gradient(to top left, #92400e, #f9d86d, #a6a6a6);
  background-clip: text;
  -webkit-background-clip: text;
  color: transparent;
}
.main-texts .change {
  background-image: linear-gradient(to right, #e9e9e9, #ffffff, #ffffff);
  background-clip: text;
  -webkit-background-clip: text;
  color: transparent;
}
.charts-lines path {
  opacity: 0;
}
.card-charts svg {
  transition: transform 0.5s ease;
}
.card-charts:hover svg {
  transform: scale(1.5);
}
.icon-week path {
  animation: draw 8s ease infinite;
}
.icon-month path {
  animation: draw 8s 3s ease infinite;
}
.icon-monthsp path {
  animation: draw 8s 6s ease infinite;
}
@keyframes draw {
  0% {
    stroke-dashoffset: 1500;
    opacity: 0.8;
  }
  50% {
    stroke-dashoffset: 0;
  }
  100% {
    stroke-dashoffset: -1500;
    opacity: 0.8;
  }
}




.layui-tab-title {
    list-style: none; 
    display: flex; /* 使所有按钮横向排列 */
    padding: 0; /* 去掉默认的内边距 */
    margin: 0; /* 去掉默认的外边距 */
    border-bottom: 2px solid #ddd; /* 添加底部边框 */
    background-color: #f8f9fa; /* 设置背景颜色 */
}
.order-go-button {
    display: inline-block;
    padding: 5px 10px;
 
    background-color: #4CAF50;
    color: white;
    text-decoration: none;
    border: none;
    border-radius: 5px;
    font-size: 12px;
    cursor: pointer;
    transition: background-color 0.3s;
}
  

.order-go-button:hover {  
    background-color: #45a049;  
}
.layui-col-space30 {
    margin: 28px;
}

 .xiantiao{
     cursor:pointer;border-bottom: 1px solid #f8f9fa; padding: 10px 0;
 }

  .overlay {  
    display: none;   
    position: fixed;   
    top: 0;   
    left: 0;   
    width: 100%;   
    height: 100%;   
    background-color: rgba(0, 0, 0, 0.5);   
    z-index: 999;   
}  
  
.ls_zui {  
    display: none;   
    border: 1px solid #ccc;   
    padding: 1px;   
    position: fixed;  
    background-color: white;   
    z-index: 1000;   
    top: 50%;   
    left: 50%;   
    transform: translate(-50%, -50%);   
    max-width: 100%;   
    box-shadow: 0 2px 10px rgba(0, 0, 0, 0.3);   
  
    max-height: 50%; 
    overflow-y: auto;  /* 允许垂直滚动 */  
}
        .close-button {
            cursor: pointer; 
            color: red; 
            font-size: 14px; 
            float: right; 
        }
        

        .layui-tab-titless {
            display: flex; /* 使用 Flexbox 布局 */
            justify-content: center; /* 水平居中 */
            margin: 20px 0; /* 上下外边距 */
        }
        .layui-tab-titless button {
            background-color: #4CAF50; /* 按钮背景色 */
            color: white; /* 字体颜色 */
            border: none; /* 无边框 */
            padding: 10px 20px; /* 内边距 */
            margin: 0 10px; /* 水平间距 */
            border-radius: 5px; /* 圆角 */
            cursor: pointer; /* 手型光标 */
            transition: background-color 0.3s; /* 背景颜色渐变 */
        }
        .layui-tab-titless button:hover {
            background-color: #45a049; 
        }
        

        .content-container {
            padding: 20px; 
            max-width: 600px; 
            margin: auto; /* 水平居中 */
            background-color: #f9f9f9; 
            border-radius: 10px; /* 圆角效果 */
            box-shadow: 0 2px 5px rgba(0, 0, 0, 0.1); /* 阴影效果 */
        }

    
    
.header,.header .layui-nav {
    background: #ffffff;
    color: #303133;
}
.header .layui-nav-item a,body a {
    color: #303133;
}
.header .layui-nav .layui-nav-child {
    border: 1px solid #f6f8fc;
    background-color: #f6f8fc;
}
.a-header a{
    color:#303133;
}
.a-box{
    background:#ffffff;
}
.footer{
    background:#ffffff;
}
.footer p{
    background:#ffffff;
    color: #303133;
}
.footer{
    border-top: 1px solid #e7fdf9;
}
.fox-user-left {
    background: #ffffff !important;
    box-shadow: 1px 1px 50px #f2f5fa !important;
}
.layui-border-blue {
    border-color: #1E9FFF!important;
    color: #1E9FFF!important;
    background-color: #ffffff !important;
}
.new-bg {
    background: #ffffff !important;
}
.a-header{
    background: #ffffff !important;
    color: #444;
}
.notice{
    background: #ffffff !important;
}
.center-banner {
    margin: 10px 0;
    background: unset;
    box-shadow:0 1px 25px 0 rgb(76 202 169 / 30%)
}
.box-shadow-a{
	box-shadow: 0 1px 5px 0 rgb(76 202 169 / 10%);
}
.a-table {
    background: #ffffff;
}
.a-table .layui-table tr {
    border-bottom: 0px solid #ddd;
}
.a-box-left {
    background: #ffffff;
}

.link-a{color: #303133;}
.link-b{color: #303133;}
.link-c{color: #303133;}
.table-span{
	width: 96%;
    height: 24px;
    margin: 0 auto;
    display: inline-block;
	color: #202020;
    background-color: #f8f9fa;
    border-radius: 10px;
    display: -webkit-box;
    display: -webkit-flex;
    display: flex;
    -webkit-box-pack: center;
    -webkit-justify-content: center;
    justify-content: center;
    -webkit-box-align: center;
    -webkit-align-items: center;
    align-items: center;
	font-size: 12px;
}
.user-box-center .user-info {
    background-image: url("../imgn/user_bg_white.png");
}
.login-bg {
    background: #ffffff;
}
.wicket-btn-box {
    background: #f8f9fa !important;
}
input::placeholder {
	color: #c0c4cc;
}
.login-box .layui-input, .login-box .layui-select, .login-box .layui-textarea {
    background: #f8f9fa;
    border-color: #d5f3ed;
    border:0;
}
.login-box .layui-input, .login-box .layui-select, .login-box .layui-textarea {
    color: #444444;
}
.wicket-btn-box .btn-this {
    background: -webkit-linear-gradient(bottom,#2657e7,#2657e7);
    background: linear-gradient(0deg,#2657e7,#2657e7);
}
.login-logo {
    background: -webkit-linear-gradient(bottom,#ffffff,#e7fdf9);
    background: linear-gradient(0deg,#ffffff,#ffffff);
    border-radius: 6px;
}
.foot-boxs {
    border-top: 1px solid #2bd4ac;
}
.login-box .layui-form h5 {
    margin-bottom: 5px;
}
.a-table h4 span {
    border-bottom: 2px solid #2bd4ac;
    color: #2bd4ac;
}
.assets-bottom .layui-table tr td {
    background: #ffffff;
    border-top: 8px solid #f8f9fa;
    border-radius: 4px;
    font-size: 12px;
}
.a-form .layui-input {
    background: #f8f9fa;
    color: #5a5a5a;
    border-color: #e6e6e6;
    border:0;
}
.assets-bottom .layui-table tr th {
    background: unset;
    border-top: 8px solid #ffffff;
    border-radius: 4px;
}
.layui-table tbody tr:hover, .layui-table thead tr, .layui-table-click, .layui-table-header, .layui-table-hover, .layui-table-mend, .layui-table-patch, .layui-table-tool, .layui-table-total, .layui-table-total tr, .layui-table[lay-even] tr:nth-child(even) {
    background-color: #e7fdf9;
}
.login-phone {
    color: #999;
}
.layui-input, .layui-select, .layui-textarea{
    background: #f8f9fa;
    color:#5a5a5a;
    border:0;
}
.account-body li, .deal-top-left .layui-table thead tr, .deal-bottom-left .layui-table thead tr, .deal-top-center-title, .deal-top-right-box h5, .new-table .layui-table tr, .layui-tab-title, .lever-bottom-left .layui-table thead tr, .seconds-left-bottom .layui-table thead tr, .log-table .layui-table tr{
    border-bottom: 1px solid #409789;
}
.assets-bottom .layui-table tbody tr:hover, .assets-bottom .layui-table[lay-even] tr:nth-child(even){
    background: unset;
}
.white-box,.coinwin-bottom{
    background: #ffffff;
}
.coinwin-bottom .layui-table thead tr {
    background: #ffffff;
    color: #2bd4ac;
}
.coinwin-bottom .layui-table[lay-even] tr:nth-child(even) {
    background: #f8f9fa;
}
.sfz-box img {
    border: 1px solid #f8f9fa;
    padding: 10px;
    border-radius: 2px;
    max-width: 88px;
}
.first_box {
    background: #ffffff;
}
.depth-box {
    text-align: center;
    font-size: 14px !important;
    padding: 10px !important;
    color: rgba(122, 226, 207, 0.78) !important;
    background-color: #ffffff !important;
}
.deal-price-input {
    line-height: 38px;
    font-size: 14px;
    background: #f8f9fa;
    padding-left: 8px;
}
.deal-bg {
    background: #ffffff;
}

.deal-top-left .layui-table tbody .active {
    background: #dafcef;
}
.table-span-list{
	width: 100%;
    height: 24px;
    margin: 10px auto;
    display: inline-block;
	color: #303133;
    background-color: #f8f9fa;
    border-radius: 10px;
    display: -webkit-box;
    display: -webkit-flex;
    display: flex;
    -webkit-box-pack: center;
    -webkit-justify-content: center;
    justify-content: center;
    -webkit-box-align: center;
    -webkit-align-items: center;
    align-items: center;
	font-size: 12px;
}
.fox-table thead tr{
	border-bottom: 0px solid #66e3b4 !important;
}
.fox-table tbody tr{
	border-top: 1px solid #f8f9fa !important;
}
.fox-form .layui-form-radio {
	background: -webkit-linear-gradient(bottom,#a4bfba,#bfc0c0);
    background: linear-gradient(0deg,#a4bfba,#bfc0c0);
	border-color: #888;
}
.fox-form .layui-form-radioed { 
	background: -webkit-linear-gradient(bottom,#3cbc98,#a3eed2);
    background: linear-gradient(0deg,#3cbc98,#a3eed2);
	border-color: #2bd4ac;
}
.footer-seconds .footer-box {
    background: #ffffff;
}
.order-box .closea a{
	color: #e01c1c;
}
.order-box{
	border-top: 1px solid #5bcba9;
}
.login-wrap{
    color: #22415e;
}
.header .layui-nav .layui-nav-child {
    border: 1px solid #ffffff;
    background-color: #ffffff;
    box-shadow: none;
}
.show-deal td {
    background: #f4fffd !important;
    font-size: 12px;
}
.layui-nav .layui-nav-item a:hover, .layui-nav .layui-this a {
    color: #666;
}
.header .layui-nav .layui-nav-child a {
    color: #666;
}
.ieo-body ,.ieo-body .layui-panel, .ieo-bottom, .ieo-oper{
    background: #ffffff;
}
.ieo-top{
    background: unset;
}
.ieo-body .layui-panel {
    background: #ecfcf6;
}
.ieo-bottom .layui-tab-title {
    border-color: #409789;
}
.ieo-top p {
    border-top: 1px solid #409789;
}
.up-top {
    width: unset;
    background: linear-gradient(#ecfdf0,#c7f8da);
    color: #444;
    text-align: center;
    margin: 20px;
}
.coinwin-header .layui-col-xs6 {
    background: #ffffff;
}
.coinwin-header {
    background: #ffffff;
    position: relative;
    border-top: 1px solid #68e8c3;
    border-radius: 0;
    padding: 40px 5px 0 5px;
}
.coinwin-body .layui-panel {
    background: #e9fdef;
}
.form-bg {
    background: #fcfffe;
}
.a-form .layui-form-select dl {
    background: #ffffff;
    border: 1px solid #ffffff;
}
.a-form .layui-form-select dl dd.layui-this, .a-form .layui-form-select dl dd:hover {
    background-color: #3f958a;
}
.finance-box{
	padding-bottom: 15px !important;
	color:#444;
}
.finance-bg{
	background: #ffffff !important;
}


    .finance-container {  
        display: flex;  
        justify-content: center;  
        align-items: center;  
        height: 150px;  
        background-color: #fff;  
    }  
    .finance-box {  
        background: linear-gradient(135deg, #ff7e5f, #feb47b);  
        border-radius: 10px;  
        padding: 20px;  
        width: 300px;  
        text-align: left;  
        color: white;  
        box-shadow: 0 4px 8px rgba(0, 0, 0, 0.1);  
    }  
    .finance-nav .beautiful-text {  
        font-size: 20px;  
        font-weight: bold;  
    }  
    .content {  
        margin-top: 15px;  
    }  
    .mt-10 {  
        margin-top: 10px;  
        font-size: 16px;  
    }  
    .mt-10-uid {  
        display: block;  
        margin-top: 5px; /* Adjusted margin for better spacing */  
    } 




.finance-box span{font-size:18px}
.v-charge-head,.v-charge-head .head-item {
    background-color: #f8f9fa !important;
}
.dealings-bg {
    background: #ffffff;
}

.i5scroll-con .content li a{
    color: #303133;
}

.left-user-box i{
    color: #303133;
}

.tradeMenu{
    border:1px solid #f8f9fa;
    display: flex;
    border-radius: 5px;
}

.tradeMenu .active{
    background-color: #f8f9fa;
}
.finance-card-container{
    background-color: #fff !important;
}
.finance-card-container .finance-content{
    background-color: #ffffff;   
    border: 1px solid #ffab20;
}

.finance-card-container .content .content-main .line-item .right{
    color: #202020;
}

.finance-card-container .finance-content .tips {
    font-size: 13px;
    color: #202020;
    padding: 20px 0;
    text-align: center;
}

.finance-card-container .finance-head{
    background-color: #ffab20;
    color: #ffffff;
}

.financeReport .top-card{
    background-color: #ffffff !important;
    box-shadow: 0 2px 18px 0 rgb(17 5 10 / 14%);
    background-size: 100% 100%;
}

.header .headerTop{
    border-bottom:0px !important;
}

.header .headerBottom .line{
    background-color: #ffffff !important;
}
.SbuTitle{
    
}
.SbuTitle span{
    color: #000;
}

.content-main{
    background-color: #ffffff !important;    
}

.balanceDetail .balanceItem .balanceItemTitle{
    color: #000;    
}

.table-span-hd{
    color: #000 !important;
}

.mining-page .head-wrap{
    background-color: #f7a602 !important;
}

.head-wrap .mining-title{
    color: #000 !important;
}

.head-wrap .mining-head-text{
    color: #000 !important;
}

.status-footer{
   background-color: #f3f4f7 !important;   
}

.mining-content .listview{
    box-shadow: 0 3px 7px 0 rgb(0 0 0 / 8%);
    background-color: #ffffff !important;
}

.mining-content .ming-info{
    background-color: #f3f4f7;
    color: #62676f;
}

.content-card-head{
    color: #000 !important;
}
.rule-content-item{
    background-color: rgba(254,219,161,.20784313725490197);
}
.quickStockHq .stockBox .stockBoxItem .stockPrice{
    color: #303133;
    font-size: 16px;
    font-weight: bold;
    padding: 5px 0;
}
.exchangePannel{
    background-color: #ffffff !important;
    color: #000;
}

.coinSelect .coinList .coinItem{
    background-color: #ffffff !important;
    color: #000;
}

.coinSelect .coinList .coinItem .coinInfo .coinName{
    color: #000;
}

.transaction-history-container{
    background-color: #ffffff !important;
}

.history-item-head {
    padding: 10px;
    display: flex;
    color: #8e8d92;
    background-color: #ecebef !important;
}
.history-item-content {
    background-color: #f6fefc;
    color: #8e8d92;
}

.transaction-history-head-left{
    color: #000;    
}

