/* 这个文件从网易云课堂引进 2024.3 */
/* 1. 公共页面背景色 ------------------------------------------*/
.aiv-page{
	/* 整个AIV页面底色: */
	background-color: #fdefff;
	/* #ifndef APP-PLUS-NVUE */
	min-height: 100vh;
	height: auto;
	/* #endif */
	/* #ifdef APP-PLUS-NVUE */
	flex: 1;
	/* #endif */
}

/* 在全局样式中设置滚动条显示样式(测试H5下有效),如果要全局不显示滚动条,只要修改 display为none即可 2024.3 */
::-webkit-scrollbar {
	/* 在App下,就不显示滚动条了(滚动条的位置也删除)；在H5下,鼠标移上去就显示滚动条(滚动条的位置一直预留) */
	display: none;
	/* width: 8px; */
	/* background: rgba(239, 239, 255, 0.5); */
}
::-webkit-scrollbar-track {
  background: rgba(170, 170, 255, 0.3);
} 

::-webkit-scrollbar-thumb {
  background: #aaaaff;
}

::-webkit-scrollbar-thumb:hover {
  background: #555;
}
/* 以上是滚动条的全局样式(需要时把注释拿掉即可) 2024.3 --------------------------------- */


/* 设置具体某个元素的滚动条样式(H5下测试有效,但宽度width还是没生效)-----------2024.3----------- */
/* 在aiv-agi.vue中使用该样式 2024.3 */
.scrollStyle {
  /*overflow: auto;  允许元素滚动 */
  /*scrollbar-width: 5px;  设置滚动条宽度 (仅Firefox浏览器中得到支持 )*/
  scrollbar-color: transparent transparent;  /*设置滚动条颜色为透明 (在chrome中有效, 会导致 ::-webkit-scrollbar中的width失效,不明原因2024.3) */
}

.scrollStyle::-webkit-scrollbar {
  /*width: 2px;  设置滚动条宽度 */
}

.scrollStyle::-webkit-scrollbar-thumb {
  /*background: transparent;  设置滚动条拖动区域背景色为透明 */
}

.scrollStyle:hover {
  /* width: 2px; */
  scrollbar-color: rgba(170, 170, 255, 0.3) transparent;  /*设置鼠标悬停时的滚动条颜色,鼠标移走是透明色(测试H5下有效) */
}
/* 以上是具体元素的滚动条显示(测试H5下有效) 2024.3 -------- */

/*2024.3
	如果您希望在设置了padding边距后不改变内容的位置，使用CSS的box-sizing属性。
	默认情况下，CSS的box-sizing属性的值是content-box，这意味着padding和border都会增加元素的总宽度和高度。
	要防止内容被padding挤出去，您可以将box-sizing属性的值设置为border-box。 */
.box {
  box-sizing: border-box;
  /* overflow 可以防止设置margin边距后,把内容挤出去 */
  overflow: auto;
}

/* 2. 主背景色（原谅绿） */
.main-bg-color{
	background-color: #08C060;
}
.main-bg-hover-color{
	background-color: #08d869;
}
/* 3. 主文字色（原谅绿） */
.main-text-color{
	color: #08C060;
}

.border-main{
	border-color: #08C060!important;
}

.bg-chat-item{
	background-color: #cac6ff;
}
.text-chat-item{
	color: #cac6ff;
}
/* 以上是页面的公共配置部份 2024.3 ----------------------------- */



/* 图标 对应 aiv-agi/common/css/iconfont.ttf 或网络iconfont.cn 的网址*/
.iconfont{
	font-family:iconfont;
}

.view,.text{
	font-size:30px; 
	line-height:1.8; 
	color:#0E151D;
}
/* 宽度 */
/* 宽度 */
.w-10 {width: 10%;}
.w-20 {width: 20%;}
.w-25 {width: 25%;}
.w-30 {width: 30%;}
.w-40 {width: 40%;}
.w-50 {width: 50%;}
.w-60 {width: 60%;}
.w-70 {width: 70%;}
.w-75 {width: 75%;}
.w-80 {width: 80%;}
.w-90 {width: 90%;}

/* #ifdef APP */
.w-100{ width: 750px; }
/* #endif */
/* #ifdef H5 */
.w-100{ width: 100%; }
/* #endif */

/* 宽度按 px 设置------------2024.6*/
.w-10p {width: 10px;}
.w-20p {width: 20px;}
.w-30p {width: 30px;}
.w-40p {width: 40px;}
.w-50p {width: 50px;}
.w-60p {width: 60px;}
.w-70p {width: 70px;}
.w-75p {width: 75px;}
.w-80p {width: 80px;}
.w-90p {width: 90px;}
.w-100p {width: 100px;}
.w-150p {width: 150px;}
.w-200p {width: 200px;}
.w-250p {width: 250px;}
.w-300p {width: 300px;}
.w-350p {width: 350px;}
.w-400p {width: 400px;}
.w-450p {width: 450px;}
.w-500p {width: 500px;}
.w-550p {width: 550px;}
.w-600p {width: 600px;}
.w-650p {width: 650px;}
.w-700p {width: 700px;}

.row {
  margin-right: -20px;
  margin-left: -20px;
  /* #ifndef APP-PLUS-NVUE */
  display: flex;
  /* #endif */
  flex-wrap: wrap;
  flex-direction: row;
}

.flex-wrap {
    flex-wrap: wrap !important
}

.flex-nowrap {
    flex-wrap: nowrap !important
}

.col-1,
.col-2,
.col-3,
.col-4,
.col-5,
.col-6,
.col-7,
.col-8,
.col-9,
.col-10,
.col-11,
.col-12{
  position: relative;
  padding-right: 20px;
  padding-left: 20px;
}
.col-12 { width: 750px;}
.col-11 { width: 687.5px; }
.col-10 { width: 625px; }
.col-9 { width: 562.5px; }
.col-8 { width: 500px; }
.col-7 { width: 437.5px; }
.col-6 { width: 375px; }
.col-5 { width: 312.5px;}
.col-4 {width: 250px;}
.col-3 {width: 187.5px;}
.col-2 {width: 125px;}
.col-1 {width: 62.5px;}

.col-offset-12 { margin-left: 750px;}
.col-offset-11 { margin-left: 687.5px; }
.col-offset-10 { margin-left: 625px; }
.col-offset-9 { margin-left: 562.5px; }
.col-offset-8 { margin-left: 500px; }
.col-offset-7 { margin-left: 437.5px; }
.col-offset-6 { margin-left: 375px; }
.col-offset-5 { margin-left: 312.5px;}
.col-offset-4 {margin-left: 250px;}
.col-offset-3 {margin-left: 187.5px;}
.col-offset-2 {margin-left: 125px;}
.col-offset-1 {margin-left: 62.5px;}
.col-offset-0 {margin-left: 0;}

/* flex 布局 */
.flex{
	/* #ifndef APP-PLUS-NVUE */
	display:flex;
	/* #endif */
	flex-direction:row;
}

/* flex居中 2024.3 */
.flex-center{
	/* #ifndef APP-PLUS-NVUE */
	display:flex;
	/* #endif */
	flex-direction:row;
	align-items: center; 
	justify-content:center;
}

.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-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; }
/* #ifndef APP-PLUS-NVUE */
.content-start {align-content: flex-start;}
.content-end {align-content: flex-end;}
.content-center {align-content: center;}
.content-between {align-content: space-between;}
.content-around {align-content: space-around;}
.content-stretch {align-content: stretch;}
/* #endif */
.flex-1{ flex: 1; }
.flex-2{ flex: 2; }
.flex-3{ flex: 3; }
.flex-4{ flex: 4; }
.flex-5{ flex: 5; }
/* #ifndef APP-PLUS-NVUE */
.flex-shrink{ flex-shrink: 0; }
/* #endif */

.container {
  padding-right: 20px;
  padding-left: 20px;
}
/*  -- 内外边距 -- */
.m-0 { margin: 0; }
/* #ifndef APP-PLUS-NVUE */
.m-auto{ margin: auto; }
/* #endif */
.m-1 { margin: 10px; }
.m-2 { margin: 20px; }
.m-3 { margin: 30px; }
.m-4 { margin: 40px; }
.m-5 { margin: 50px; }
.mt-0 { margin-top: 0; }
/* #ifndef APP-PLUS-NVUE */
.mt-auto { margin-top: auto; }
/* #endif */
.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; }
/* #ifndef APP-PLUS-NVUE */
.mb-auto { margin-bottom: auto; }
/* #endif */
.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; }
/* #ifndef APP-PLUS-NVUE */
.ml-auto { margin-left: auto; }
/* #endif */
.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; }
/* #ifndef APP-PLUS-NVUE */
.mr-auto { margin-right: auto; }
/* #endif */
.mr-05 { margin-right: 5px; }
.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; }
/* #ifndef APP-PLUS-NVUE */
.my-auto { margin-top: auto; margin-bottom: auto; }
/* #endif */
.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; }

/* #ifndef APP-PLUS-NVUE */
.mx-auto { margin-left: auto; margin-right: auto; }
/* #endif */
.mx-0 { margin-left: 0; margin-right: 0; }
.mx { margin-left: 5px; margin-right: 5px;}
.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;}

.h {height: 5px;}
.h-1 {height: 10px;}
.h-2 {height: 20px;}
.h-3 {height: 30px;}
.h-4 {height: 40px;}
.h-5 {height: 50px;}
.h-6 {height: 60px;}
.h-7 {height: 70px;}
.h-8 {height: 80px;}
.h-9 {height: 90px;}
.h-10 {height: 100px;}
.h-11 {height: 110px;}
.h-12 {height: 110px;}
.h-13 {height: 130px;}
.h-14 {height: 140px;}
.h-15 {height: 150px;}
.h-20 {height: 200px;}
.h-25 {height: 250px;}
.h-30 {height: 300px;}
.h-35 {height: 350px;}
.h-40 {height: 400px;}
.h-45 {height: 450px;}
.h-50 {height: 500px;}
.h-55 {height: 550px;}
.h-60 {height: 600px;}
.h-65 {height: 650px;}
.h-70 {height: 700px;}
.h-75 {height: 750px;}
.h-80 {height: 800px;}
.h-85 {height: 850px;}
.h-90 {height: 900px;}
.h-95 {height: 950px;}

/* 这里 h-100 是100%, 特别的 2024.8 */
.h-100 {height: 100%;}

.p-0 { padding: 0; }
.p { padding: 5px; }
.p-1 { padding: 10px; }
.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; }
.pl-0 { padding-left: 0; }
.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; }
.py-6 { padding-top: 60px; padding-bottom: 60px; }
.py-7 { padding-top: 70px; padding-bottom: 70px; }
.py-8 { padding-top: 80px; padding-bottom: 80px; }
.py-9 { padding-top: 90px; padding-bottom: 90px; }
.py-10 { padding-top: 100px; padding-bottom: 100px; }

/* 左右边距 2024.8 */
.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;}
.px-10 { padding-left: 100px; padding-right: 100px;}
.px-15 { padding-left: 150px; padding-right: 150px;}
.px-20 { padding-left: 200px; padding-right: 200px;}
.px-25 { padding-left: 250px; padding-right: 250px;}
.px-30 { padding-left: 300px; padding-right: 300px;}
.px-35 { padding-left: 350px; padding-right: 350px;}
.px-40 { padding-left: 400px; padding-right: 400px;}
.px-45 { padding-left: 450px; padding-right: 450px;}
.px-50 { padding-left: 500px; padding-right: 500px;}
.px-55 { padding-left: 550px; padding-right: 550px;}
.px-60 { padding-left: 600px; padding-right: 600px;}
.px-65 { padding-left: 650px; padding-right: 650px;}
.px-70 { padding-left: 700px; padding-right: 700px;}
.px-75 { padding-left: 750px; padding-right: 750px;}
.px-80 { padding-left: 800px; padding-right: 800px;}
.px-85 { padding-left: 850px; padding-right: 850px;}
.px-90 { padding-left: 900px; padding-right: 900px;}
.px-95 { padding-left: 950px; padding-right: 950px;}
.px-100 { padding-left: 1000px; padding-right: 1000px;}
/* 文字大小 */
.font-small { font-size: 20upx;}
.font-sm { font-size: 25upx;}
.font { font-size: 30upx;}
.font-md { font-size: 35upx;}
.font-lg { font-size: 40upx;}
.font-xlg { font-size: 50upx;}
.font-xxl { font-size: 60upx;}
.font-xxx { font-size: 70upx;}
.font-80 { font-size: 80upx;}
.font-90 { font-size: 90upx;}
.font-100 { font-size: 100upx;}
/* 文字大小 */
.font-10 {font-size: 10px;}
.font-12 {font-size: 12px;}
.font-14 {font-size: 14px;}
.font-16 {font-size: 16px;}
.font-18 {font-size: 18px;}
.font-20 {font-size: 20px;}
.font-22 {font-size: 22px;}
.font-24 {font-size: 24px;}
.font-30 {font-size: 30px;}

.h1{font-size:80upx; line-height:1.8;}
.h2{font-size:60upx; line-height:1.8;}
.h3{font-size:45upx; line-height:1.8;}
.h4{font-size:32upx; line-height:1.8;}
.h5{font-size:30upx; line-height:1.8;}
.h6{font-size:28upx; line-height:1.8;}

/* 行高 */
.lh-100 {line-height: 1 !important}
.lh-125 {line-height: 1.25 !important}
.lh-150 {line-height: 1.5 !important}
.lh-200 {line-height: 2 !important}


/* 文字缩进 */
/* #ifndef APP-PLUS-NVUE */
.text-indent{text-indent:2;}
/* #endif */
/* 文字划线 */
.text-through{text-decoration:line-through;}
/* 文字对齐 */
.text-justify {text-align: justify}
/* 文字对齐 */
.text-left { text-align: left;}
.text-start {text-align: left;}
.text-right { text-align: right;}
.text-end {text-align: right;}
.text-center { text-align: center;}
/* 文字换行溢出处理 */
.text-ellipsis {
	/* #ifndef APP-PLUS-NVUE */
	overflow: hidden;text-overflow: ellipsis;white-space: nowrap;
	/* #endif */
	/* #ifdef APP-PLUS-NVUE */
	lines: 1;
	/* #endif */
}

/* 文字换行溢出处理 */
.text-ellipsis-1 {
    overflow: hidden;
    display: -webkit-box;
    -webkit-line-clamp: 1;
    /*第几行裁剪*/
    -webkit-box-orient: vertical;
}

.text-ellipsis-2 {
    overflow: hidden;
    display: -webkit-box;
    -webkit-line-clamp: 2;
    /*第几行裁剪*/
    -webkit-box-orient: vertical;
}

.text-ellipsis-3 {
    overflow: hidden;
    display: -webkit-box;
    -webkit-line-clamp: 3;
    /*第几行裁剪*/
    -webkit-box-orient: vertical;
}

/* 文字粗细和斜体 */
.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-weight-bolder { font-weight: bold;} /*更粗*/
.font-italic { font-style: italic;} /*斜体*/
.fw-300 {font-weight: 300 !important}
.fw-400 {font-weight: 400 !important}
.fw-600 {font-weight: 600 !important}
.fw-bolder {font-weight: bolder !important}

/* 灰色的字体颜色 */
.text-gary-100 {color: #f8f9fa;}
.text-gary-200 {color: #e9ecef;}
.text-gary-300 {color: #dee2e6;}
.text-gary-400 {color: #ced4da;}
.text-gary-500 {color: #adb5bd;}
.text-gary-600 {color: #6c757d;}
.text-gary-700 {color: #495057;}
.text-gary-800 {color: #343a40;}
.text-gary-900 {color: #212529;}

/* 文字颜色 */
/* Aiv以purple为主色 2024.3 */
.text-purple-10 {color: #fdf5ff;}
.text-purple-50 {color: #fdefff;}
.text-purple-100 {color: #f3e5f5;}
.text-purple-200 {color: #e1bee7;}
/* app 顶部导航栏底色 2023.10 */
.text-purple-250 {color: #a594ca}
.text-purple-300 {color: #ce93d8;}
.text-purple-400 {color: #ba68c8;}
.text-purple-500 {color: #ab47bc;}
.text-purple-600 {color: #8e24aa;}
.text-purple-700 {color: #7b1fa2;}
.text-purple-800 {color: #6a1b9a}
.text-purple-900 {color: #4a148c;}
/* 主色 purple 结束 */


.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);}

/* 背景颜色 */

/* Aiv以purple为主色 2024.3 */
.bg-purple-5 {background-color: #fffaff;}
.bg-purple-10 {background-color: #fdf5ff;}
.bg-purple-50 {background-color: #fdefff;}
.bg-purple-100 {background-color: #f3e5f5;}
.bg-purple-200 {background-color: #e1bee7;}
/* app 顶部导航栏底色 2023.10 */
.bg-purple-250 {background-color: #a594ca}
.bg-purple-300 {background-color: #ce93d8;}
.bg-purple-400 {background-color: #ba68c8;}
.bg-purple-500 {background-color: #ab47bc;}
.bg-purple-600 {background-color: #8e24aa;}
.bg-purple-700 {background-color: #7b1fa2;}
.bg-purple-800 {background-color: #6a1b9a}
.bg-purple-900 {background-color: #4a148c;}
.bg-purple-1000 {background-color: #4d415c;}



.bg-blue { background-color: #5f6ed4;}
.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-move-danger:hover { background-color: #dc3545;}
.bg-hover-danger{ background-color: #bd2130;}
.bg-light { background-color: #f8f9fa;}
.bg-hover-light{ background-color: #dae0e5;}
.bg-hover-purple{ background-color: #f3e5f5;}
.bg-dark { background-color: #343a40;}
.bg-hover-dark { background-color: #1d2124;}
.bg-white { background-color: #ffffff;}
.bg-transparent { background-color: transparent;}
.bg-black {background-color: #000000;}


/* 各种渐变色: 2024.5 */

/* 渐变颜色做底色,45deg是角度 2024.4 aiv-data.js中使用 */
.bg-purple-gradient {background-image: linear-gradient(45deg, #322b39, #592b62)}
/* 主色 purple 结束 */

/* 生成一个科幻的背景(AGI 大头像使用) 2024.5 (有一个带光圈的圆环)适用 190px的图标， box-shadow可以生成光晕效果 */
.bg-aiv-gradient2 {
  background: linear-gradient(135deg, #00dbde, #fc00ff,#0055ff);
  box-shadow: 0 0 10px 5px #00ffff, 0 0 10px 8px #fc00ff;
}

/* 生成一个科幻的背景(AGI 小头像使用) 2024.5 (有一个带光圈的圆环) 适用90px的图标 box-shadow可以生成光晕效果 */
.bg-aiv-gradient {
  background: linear-gradient(135deg, #00dbde, #fc00ff,#0055ff);
  box-shadow: 0 0 5px 2px #00ffff, 0 0 5px 3px #fc00ff;
}


/* aiv使用的颜色 */
.text-color-hover1:hover {color: #A9A5A0;}
.text-color-hover2:hover {color: #717e8b;}
.text-dao-success:hover {color: #28a745;}
.text-dao-success {color: #1e7e34;}
.text-member-purple:hover {color: #e1bee7;}
.text-member-purple {color: #a594ca;}

.bg-dao-light3:hover {background-color: #dae0e5;}

/* 这个是负责输入框的底色 , 鼠标划过，输入框底色稍微调亮 */
.bg-channel-input:hover { background-color: #5a6169; color: #dae0e5;}
.bg-channel-input { background-color: #545b62; color: #dae0e5;}

.bg-aiv-pay:hover { background-color: #343a40; color: #ffc107;}
.bg-aiv-pay { background-color: #343a40; color: #ba8b00;}


/* 主要是图标被点击后，显示的底色 (亮灰色) */
.bg-dao-light2 {background-color: #717e8b;}

/* 下面这两个是 鼠标移上去，底色变亮 */
.bg-dao-light:hover {background-color: #5b6670;}
.bg-dao-light {background-color: #303236;}

/* 下面这两个是 移鼠标上去，字体颜色变亮 (对于文字栏有效) */
/* .bg-dao-dialog-main:hover {background-color:#545b62; color: #f8f9fa;} */
.bg-dao-dialog-main {background-color: #545b62; color: #A9A5A0;}


/* 这是Aiv-agi项目使用最底层，最黑的颜色, 只用在最外框，2024.3, 为了营造层次感 aiv-left.vue最左边大约10px */
.bg-dao-dark {background-color: #1b1c20;}

/* 这是第二黑色,包裹在bg-dao-dark 里面（像Dao社区的垂直列表的底色就是这个, aiv-left.vue中)  */
/* 分隔线也是用这个颜色  aiv-left-channel.vue的分隔线 */
.bg-dao-dark-2 {background-color: #292B2F;}

/* 这是第三黑色,包裹在bg-dao-dark-2 里面（像channel频道的垂直列表的底色就是这个, aiv-left-channel.vue中, 对话框的底色也是这个，aiv-dialog.vue)  */
/* 这个颜色是整个Aiv-agi 的主色,UI界面大部份底色都是这个颜色 */
.bg-dao-dark-3 {background-color: #373a40;}

/* 当文字栏被点击后, 激活的底色和文字颜色 在 aiv-left-channel.vue 的频道栏被点击后,显示此样式 */
.bg-dao-active {background-color:#545b62; color:#f8f9fa}

/* 这个主要是用于文字栏, 当鼠标划过，底色变亮，文字颜色也变亮 */
.bg-dao-dark-3-hover:hover { background-color: #454951; color: #dae0e5;}
.bg-dao-dark-3-hover {background-color: #373a40;}

.bg-dao-dark-35 {background-color: #454951;}

.bg-dao-dark-4 {background-color: #545b62; color: #c5c1bc;}
/* 这个主要是用于文字栏, 当鼠标划过，底色变亮，文字颜色也变亮 */
/* 这个比 bg-dao-dark-3-hover 底色更亮一些 2024.3 ，鼠标离开时与 bg-dao-dark-3底色一致  */
.bg-dao-dark-4-hover:hover { background-color: #545b62; color: #dae0e5;}
.bg-dao-dark-4-hover {background-color: #545b62; color: #c5c1bc;}

.bg-dao-dark-5 { background-color: #93a0aa;}

.bg-dao-disabled {background-color: #cadbeb; color: #c5c1bc;}



/* 边框 */
.border { border-width: 1px;border-style: solid;border-color: #dee2e6;}
.aiv-border { border-width: 1px;border-style: solid;border-color: #6c757d;}
.aiv-border-success { border-width: 1px;border-style: solid;border-color: #1e7e34;}
.aiv-border-success-5 { border-width: 5px;border-style: solid;border-color: #1e7e34;}
.aiv-border-blue { border-width: 1px;border-style: solid;border-color: #5f6ed4;}

.border-top {
  border-top-width: 1px;
  border-top-style: solid;
  border-top-color: #dee2e6;
}
.border-right {
  border-right-width: 1px;
  border-right-style: solid;
  border-right-color: #dee2e6;
}
.border-bottom {
  border-bottom-width: 1px;
  border-bottom-style: solid;
  border-bottom-color: #dee2e6;
}
.border-left {
  border-left-width: 1px;
  border-left-style: solid;
  border-left-color: #dee2e6;
}
.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: #717e8b;}
.border-white {border-color: #FFFFFF;}
.border-aiv {border-color: #ab47bc;}
.border-aiv-250 {border-color: #a594ca;}
.border-dark-2 {border-color: #373a40;}
.border-black {border-color: #1b1c20;}
/* 圆角 */
.rounded { border-radius: 8px;}
.rounded-16 { border-radius: 16px;}
.rounded-top {
  border-top-left-radius: 8px;
  border-top-right-radius: 8px;
}
.rounded-top-16 {
  border-top-left-radius: 16px;
  border-top-right-radius: 16px;
}
.rounded-right {
  border-top-right-radius: 8px;
  border-bottom-right-radius: 8px;
}
.rounded-right-16 {
  border-top-right-radius: 16px;
  border-bottom-right-radius: 16px;
}
.rounded-bottom {
  border-bottom-right-radius: 8px;
  border-bottom-left-radius: 8px;
}
.rounded-bottom-16 {
  border-bottom-right-radius: 16px;
  border-bottom-left-radius: 16px;
}
.rounded-left {
  border-top-left-radius: 8px;
  border-bottom-left-radius: 8px;
 }
 .rounded-left-16 {
   border-top-left-radius: 16px;
   border-bottom-left-radius: 16px;
  }
.rounded-circle { border-radius: 100px;}
.rounded-0 { border-radius: 0;}

/* 鼠标放上去显示圆角 2024.3 */
/* .hover-rounded:hover{ border-radius: 16px;} */
/* 显示 */
/* #ifndef APP-PLUS-NVUE */
.d-none{ display: none; }
.d-inline-block{ display: inline-block; }
.d-block{ display: block; }
/* #endif */
/* 内容溢出 */
.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: 101;
}
/* 定位 - 固定底部 */
.fixed-bottom {
  position: fixed;
  right: 0;
  bottom: 0;
  left: 0;
  z-index: 101;
}

.z-index-center{
	z-index: 202;
}

.z-index-max{
	z-index: 205;
}

/* 显示一个手势光标 2024.5 */
.cursor-point{
	cursor: pointer;
}

.top-0 { top: 0; }
.left-0 { left: 0; }
.right-0 { right: 0; }
.bottom-0 { bottom: 0; }

/* 阴影 */
/* #ifndef APP-PLUS-NVUE */
.shadow { box-shadow: 0 2upx 12upx rgba(0, 0, 0, 0.15);}
.shadow-lg { box-shadow: 0upx 40upx 100upx 0upx rgba(0, 0, 0, 0.175);}
.shadow-none { box-shadow: none !important;}
/* #endif */


