You can not select more than 25 topics
Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.
216 lines
3.9 KiB
216 lines
3.9 KiB
.help_con{
|
|
display: block;
|
|
color: #fff;
|
|
font-size: 14px;
|
|
width: 92px;
|
|
position: fixed;
|
|
right: 90px;
|
|
bottom: 80px;
|
|
z-index: 9999;
|
|
/* background-color: #007BFF; */
|
|
background: #006CFF;
|
|
line-height: 38px;
|
|
border-radius: 20px;
|
|
font-size: 16px;
|
|
transition: .5s all;
|
|
}
|
|
.help_con:hover{
|
|
background-color: rgb(19, 112, 41);
|
|
color: #fff !important;
|
|
}
|
|
.help_con .img{
|
|
width: 15px;
|
|
height: 16px;
|
|
margin-right: 5px;
|
|
}
|
|
.help_con .a_con{
|
|
width: 100%;
|
|
align-items: center;
|
|
display: flex;
|
|
justify-content: center;
|
|
}
|
|
|
|
.help{
|
|
width: 1110px;
|
|
height: 626px;
|
|
border: 1px solid rgba(0,0,0,.125);
|
|
border-radius:5px;
|
|
margin: 0 auto;
|
|
margin-top: 40px;
|
|
margin-bottom: 40px;
|
|
}
|
|
.help .title{
|
|
display: flex;
|
|
align-items: center;
|
|
height: 61px;
|
|
background-color: rgba(0,0,0,.03);
|
|
font-size: 24px;
|
|
border-bottom: 1px solid rgba(0,0,0,.125);
|
|
padding-left: 30px;
|
|
}
|
|
.help .content{
|
|
height: 500px;
|
|
outline: none;
|
|
padding: 20px;
|
|
overflow: scroll;
|
|
overflow-x: hidden;
|
|
background-color: #fff;
|
|
}
|
|
|
|
|
|
.help .content::-webkit-scrollbar {
|
|
/*滚动条整体样式*/
|
|
width : 5px; /*高宽分别对应横竖滚动条的尺寸*/
|
|
height: 5px;
|
|
}
|
|
.help .content::-webkit-scrollbar-thumb {
|
|
/*滚动条里面小方块*/
|
|
border-radius: 10px;
|
|
background : #008089;
|
|
}
|
|
.help .content::-webkit-scrollbar-track {
|
|
/*滚动条里面轨道*/
|
|
box-shadow : inset 0 0 5px rgba(255, 255, 255, 0.2);
|
|
border-radius: 10px;
|
|
background : #fff;
|
|
}
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
.help .bottom{
|
|
background-color: rgba(0,0,0,.03);
|
|
height: 63px;
|
|
display: flex;
|
|
align-items: center;
|
|
}
|
|
.help .bottom .input_con{
|
|
margin: 0 auto;
|
|
position: relative;
|
|
}
|
|
.help .bottom .input_con .input{
|
|
width: 900px;
|
|
height: 38px;
|
|
padding-left: 10px;
|
|
float: left;
|
|
}
|
|
|
|
.help .bottom .help_btn{
|
|
position: absolute;
|
|
right: 0;
|
|
border-radius: 0 5px 5px 0px;
|
|
width: 42px;
|
|
height: 38px;
|
|
display: inline-flex;
|
|
justify-content: center;
|
|
align-items: center;
|
|
background-color: #007BFF;
|
|
transition: .5s all;
|
|
}
|
|
.help .bottom .help_btn .img{
|
|
width: 16px;
|
|
height: 16px;
|
|
}
|
|
.help .bottom .help_btn:hover{
|
|
cursor: pointer;
|
|
background: rgba(0, 105, 217);
|
|
}
|
|
|
|
|
|
.help .content .me{
|
|
height: 50px;
|
|
display: flex;
|
|
align-items: center;
|
|
justify-content: center;
|
|
padding: 12px 20px;
|
|
margin-bottom: 20px;
|
|
border: 1px solid transparent;
|
|
border-radius: 5px;
|
|
position: relative;
|
|
}
|
|
|
|
.help .content .jianRight:after {
|
|
content: '';
|
|
position: absolute;
|
|
width: 0;
|
|
height: 0;
|
|
border: 8px solid;
|
|
border-left-color: #D1ECF1;
|
|
left: 100%;
|
|
top: 50%;
|
|
margin-top: -7px;
|
|
background: none !important;
|
|
color: rgba(0, 0, 0, 0) !important;
|
|
}
|
|
|
|
.help .content .jianLeft:after {
|
|
content: '';
|
|
position: absolute;
|
|
width: 0;
|
|
height: 0;
|
|
border: 8px solid;
|
|
border-right-color: #E2E3E5;
|
|
top: 50%;
|
|
right: 100%;
|
|
margin-top: -9px;
|
|
background: none !important;
|
|
color: rgba(0, 0, 0, 0) !important;
|
|
}
|
|
|
|
|
|
|
|
.help .content .img{
|
|
width: 28px;
|
|
height: 28px;
|
|
margin-top: 10px;
|
|
margin-left: 18px;
|
|
|
|
}
|
|
.help .content .img2{
|
|
margin-right: 18px;
|
|
margin-left: 0;
|
|
}
|
|
.float-right {
|
|
float: right!important;
|
|
}
|
|
.float-left {
|
|
float: left!important;
|
|
}
|
|
.clearfix::after {
|
|
display: block;
|
|
clear: both;
|
|
content: "";
|
|
}
|
|
.alert-info {
|
|
color: #0c5460;
|
|
background-color: #d1ecf1;
|
|
border-color: #bee5eb;
|
|
}
|
|
|
|
|
|
.alert-secondary {
|
|
color: #383d41;
|
|
background-color: #e2e3e5;
|
|
border-color: #d6d8db;
|
|
}
|
|
|
|
|
|
.big_title{
|
|
font: 30px "Microsoft YaHei";
|
|
font-weight: bold;
|
|
color: #FFFFFF;
|
|
text-align: center;
|
|
padding-top: 85px;
|
|
padding-bottom: 18px;
|
|
}
|
|
|
|
|
|
.help .bottom .input_con .input2{
|
|
width: 160px;
|
|
height: 38px;
|
|
padding-left: 10px;
|
|
float: left;
|
|
}
|