/* pages/artificial/artificial.wxss */
|
|
.artificial {
|
height: 100%;
|
display:flex;
|
flex-direction:column;
|
}
|
|
.artificial-info {
|
height: 90vh;
|
display: flex;
|
flex-direction: column;
|
}
|
|
.artificial-info-top {
|
font-size: 14px;
|
color: #333;
|
display: flex;
|
flex-direction: column;
|
padding: 2vh;
|
box-shadow: 0px 6px 6px 0 rgba(80, 119, 170, 0.06);
|
}
|
|
.artificial-info-top-title {
|
line-height: 24px;
|
}
|
|
.artificial-info-center {
|
overflow-x: hidden;
|
overflow-y: scroll;
|
display: flex;
|
flex-direction: column;
|
/* padding-bottom: 10vh; */
|
flex: 1;
|
}
|
|
.artificial-info-center::-webkit-scrollbar {
|
display: none;
|
}
|
|
.artificial-info-center-time {
|
font-size: 12px;
|
color: #999;
|
margin: 2vh 2vh 1vh 2vh;
|
display: flex;
|
justify-content: center;
|
}
|
|
.artificial-info-center-you {
|
display: flex;
|
margin: 0 2vh 2vh 2vh;
|
line-height: 24px;
|
font-size: 14px;
|
color: #333;
|
border-radius: 2px;
|
}
|
|
.artificial-info-center-you span {
|
box-shadow: 0px 4px 8px 0px rgba(136, 136, 136, 0.11);
|
padding: 2vh;
|
border: 1px solid #f2f2f2;
|
}
|
|
.artificial-bottom {
|
bottom: 0px;
|
display: flex;
|
height: 10vh;
|
box-shadow: 0px -6px 6px 0 rgba(80, 119, 170, 0.06);
|
width: 100%;
|
align-items: center;
|
background: #fff;
|
}
|
|
.artificial-bottom-input {
|
font-size: 14px;
|
height: 54px;
|
padding-left: 2vh;
|
width: 78%;
|
}
|
|
.artificial-bottom-sumbit {
|
width: 72px;
|
height: 40px;
|
background-color: rgba(23, 144, 255, 1);
|
color: #fff;
|
border-radius: 2px;
|
display: flex;
|
justify-content: center;
|
align-items: center;
|
font-size: 14px;
|
margin: 0 2vh;
|
}
|
|
.flex-end {
|
justify-content: flex-end;
|
}
|
|
.blue-right {
|
box-shadow: 0px 2px 4px 0px rgba(0, 0, 0, 0.09);
|
padding: 0 2vh;
|
background-color: #1790ff;
|
color: #fff;
|
border-radius: 2px;
|
}
|
|
page{
|
height: 100%;
|
}
|
|
.kefu{
|
flex: 1;
|
display: flex;
|
justify-content: center;
|
align-items: center;
|
}
|
|
.col{
|
flex-direction: column;
|
}
|
|
.res_left{
|
padding:2vh;
|
box-shadow:0px 4px 8px 0px rgba(136, 136, 136, 0.11);
|
}
|
|
.tips{
|
color: #1790ff;
|
}
|
|
/*隐藏滚动条*/
|
::-webkit-scrollbar {
|
width: 0;
|
height: 0;
|
color: transparent;
|
}
|