长城期货
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.
 
 
 
 
 
 

561 lines
11 KiB

/* 滚动条样式 */
::-webkit-scrollbar {
/*滚动条整体样式*/
width: 5px; /*高宽分别对应横竖滚动条的尺寸*/
height: 5px;
}
::-webkit-scrollbar-thumb {
/*滚动条里面小方块*/
border-radius: 5px;
background: rgba(0, 0, 0, 0.1);
box-shadow: inset005pxrgba(0, 0, 0, 0.2);
-webkit-box-shadow: inset005pxrgba(0, 0, 0, 0.2);
}
::-webkit-scrollbar-track {
/*滚动条里面轨道*/
border-radius: 0;
background: #f0f3f4;
box-shadow: inset005pxrgba(0, 0, 0, 0.2);
-webkit-box-shadow: inset005pxrgba(0, 0, 0, 0.2);
}
/* 公共宽度 */
.public_width {
width: 1200px;
margin: 0 auto;
position: relative;
}
.public_width .leftbg{
position: absolute;
top: 0;
left: -228px;
}
.public_width .rightbg{
position: absolute;
top: 22px;
right: -300px;
z-index: 0;
}
.container {
width: 100%;
height: 100%;
overflow: hidden;
padding: 73px 0px;
background-color: #f6f7f9;
/* background: url(../image/Installation_background.jpg) no-repeat; */
position: relative;
}
.main{
position: relative;
z-index: 2;
}
.title {
font-size: 36px;
color: #444444;
text-align: center;
margin-bottom: 60px;
font-family: SourceHanSansCN-Bold;
}
/* 步骤 */
.step {
padding: 28px 0px;
border-radius: 3px;
padding-bottom: 60px;
margin-bottom: 20px;
background-color: #ffffff;
}
.step_width {
width: 1000px;
margin: 3px auto 0;
position: relative;
}
.step_width::before {
opacity: 0.5;
width: 100%;
height: 12px;
display: block;
content: "";
position: absolute;
left: 0;
border-radius: 6px;
background-color: #f1f2f5;
/* box-shadow: inset -2px 0px 4px 0px rgba(0, 0, 0, 0.05); */
border: solid 1px #EBEEF1;
}
.step_active {
width: 20%;
height: 12px;
z-index: 50;
position: absolute;
transition: all 1s;
left: 0;
border-radius: 6px;
background-color: #f54412;
border-color: #F54412;
}
.step_box {
display: flex;
justify-content: center;
}
.step_bin {
width: 20%;
z-index: 100;
height: 12px;
cursor: pointer;
text-align: center;
position: relative;
}
.step_bin span {
padding: 6px 7px;
border-radius: 50%;
font-style: italic;
font-size: 15px;
color: #444444;
background-color: #F1F2F5;;
border: solid 1px #ebeef1;
/* background-color: rgba(242,242,242,0.8); */
/* box-shadow: inset -2px 0px 4px 0px rgba(0, 0, 0, 0.05); */
font-family: ArialNarrow-BoldItalic;
}
.step_bin p {
position: absolute;
left: 50%;
bottom: -38px;
font-size: 15px;
color: #333333;
transform: translate(-50%, 0%);
font-family: MicrosoftYaHeiLight;
}
.step_textactive span {
color: #ffffff;
background-color: #f54412;
border-color: #F54412;
}
.step_textactive p {
color: #f54412;
}
.main_box {
width: 100%;
border-radius: 3px;
padding: 60px 0px 30px;
background-color: #ffffff;
}
/* 许可协议 */
.agreement {
width: 1000px;
margin: 0 auto;
display: block;
}
.agreement h1{
font: normal;
text-align: center;
margin-bottom: 30px;
}
.agreement_text {
height: 396px;
overflow-y: scroll;
padding-right: 30px;
margin-bottom: 50px;
}
.agreement_text p {
color: #333333;
line-height: 28px;
}
.agreement_text a {
color: #333333;
}
.agreement_operation {
text-align: center;
padding-top: 30px;
border-top: 1px solid #e8e9eb;
}
.agreement_check {
display: flex;
align-items: center;
justify-content: center;
}
.agreement_check input[type="checkbox"] {
width: 15px;
height: 15px;
border-radius: 2px;
margin-right: 5px;
border: 1px solid #999999;
display: flex;
align-items: center;
position: relative;
justify-content: center;
cursor: pointer;
}
.agreement_check input[type="checkbox"]::before {
border: 2px solid #f54412;
content: "";
cursor: pointer;
display: block;
opacity: 0;
-webkit-transition: all 150ms linear;
transition: all 150ms linear;
width: 6px;
height: 3px;
z-index: 1;
border-top-style: none;
border-right-style: none;
position: absolute;
bottom: 5px;
-webkit-transform: rotate(-45deg);
transform: rotate(-45deg);
}
.agreement_check input[type="checkbox"]:checked::before {
opacity: 1;
}
.agreement_check input[type="checkbox"]:checked {
border: 1px solid #f54412;
}
.agreement_check span {
font-size: 14px;
color: #333333;
font-family: MicrosoftYaHeiLight;
}
.agreement_operation input[type='button'] {
width: 180px;
cursor: pointer;
font-size: 15px;
margin-top: 25px;
padding: 15px 0px;
text-align: center;
border-radius: 5px;
transition: all 0.5s;
background-color: #f54412;
color: #fff;
font-family: MicrosoftYaHei-Bold;
}
/* .agreement_operation button:hover {
transform: translate(0px, -10px);
box-shadow: 0px 0px 30px 0px rgba(245, 68, 18, 0.74);
-moz-box-shadow: 0px 0px 30px 0px rgba(245, 68, 18, 0.74);
-webkit-box-shadow: 0px 0px 30px 0px rgba(245, 68, 18, 0.74);
} */
/* 环境监测 */
.monitor {
width: 1000px;
margin: 0 auto;
}
.monitor_list {
border: 1px solid rgba(0, 0, 0, 0.05);
height: 396px;
overflow-y: scroll;
}
.monitor_list > ul {
display: flex;
}
.monitor_list > ul > li {
flex: 1;
border-right: 1px solid rgba(0, 0, 0, 0.1);
}
.monitor_list > ul > li:last-child {
border-right: none;
}
.monitor_list > ul > li > p {
width: 100%;
font-size: 15px;
color: #333333;
line-height: 40px;
text-align: center;
font-family: MicrosoftYaHeiLight;
background-color: rgba(0, 0, 0, 0.05);
}
.monitor_list ul li img {
width: 25px;
height: 25px;
object-fit: contain;
}
.monitor_list_in {
width: 100%;
display: flex;
align-items: center;
flex-direction: column;
}
.monitor_list_in li {
width: 100%;
height: 40px;
line-height: 40px;
display: flex;
align-items: center;
justify-content: center;
border-bottom: 1px solid rgba(0, 0, 0, 0.05);
}
.monitor_operation {
text-align: center;
padding-top: 39px;
padding-bottom: 20px;
}
.monitor_operation button {
width: 180px;
padding: 15px 0px;
cursor: pointer;
font-size: 15px;
text-align: center;
border-radius: 5px;
transition: all 0.5s;
font-family: MicrosoftYaHei-Bold;
}
.monitor_operation button a{
color: #333;
}
.monitor_operation button:first-child {
font-size: 15px;
color: #333333;
border-radius: 5px;
margin-right: 15px;
font-family: MicrosoftYaHei-Bold;
background-color: #F1F2F5;
}
.monitor_operation button:last-child {
font-size: 15px;
color: #ffffff;
border-radius: 5px;
background-color: #f54412;
font-family: MicrosoftYaHei-Bold;
}
/* 配置系统 */
.configure {
width: 1000px;
margin: 0 auto;
}
.configure .flex{
display: flex;
justify-content: space-between;
}
.configure h3 {
font-size: 24px;
color: #333333;
font-weight: 600;
margin-bottom: 30px;
padding-bottom: 25px;
border-bottom: 1px solid #e8e9eb;
}
.database , .admininfo{
width: 47%;
margin-bottom: 0px;
}
.configure_fill {
display: flex;
flex-wrap: wrap;
align-items: center;
margin-bottom: 7px;
justify-content: center;
}
.Required_Tips {
opacity: 0;
width: 100%;
margin-top: 10px;
text-align: center;
transition: all 1s;
font-size: 12px;
}
.configure_fill .star {
color: #f54412;
margin-right: 5px;
}
.configure_fill .configure_fill_title {
width: 120px;
font-size: 15px;
color: #000000;
text-align: right;
margin-right: 20px;
font-family: MicrosoftYaHeiLight;
display: inline-block;
}
.configure_fill input {
width: calc(100% - 160px);
height: 40px;
border-radius: 4px;
line-height: 30px;
border: 1px solid rgba(0, 0, 0, 0.05);
}
.configure_position {
position: relative;
width: calc(100% - 142px);
}
.configure_position input{
width: 100%;
}
.configure_success {
width: 100px;
position: absolute;
left: 105%;
top: 50%;
transform: translate(0%, -50%);
display: flex;
align-items: center;
}
.configure_success img {
width: 20px;
height: 20px;
margin-right: 10px;
object-fit: contain;
}
.configure_success span {
font-size: 14px;
color: #555555;
font-family: MicrosoftYaHeiLight;
}
.configure_operation {
text-align: center;
padding-top: 25px;
padding-bottom: 20px;
}
.configure_operation .disabled{
cursor: not-allowed;
}
.configure_operation button {
width: 180px;
padding: 15px 0px;
cursor: pointer;
font-size: 15px;
text-align: center;
border-radius: 5px;
transition: all 0.5s;
font-family: MicrosoftYaHei-Bold;
}
.configure_operation button a{
color: #333;
}
.configure_operation button:first-child {
font-size: 15px;
color: #333333;
border-radius: 5px;
margin-right: 15px;
font-family: MicrosoftYaHei-Bold;
background-color: rgba(215, 215, 215, 0.5);
}
.configure_operation button:last-child {
font-size: 15px;
color: #ffffff;
border-radius: 5px;
background-color: #f54412;
font-family: MicrosoftYaHei-Bold;
}
/* 创建数据 */
.created{
}
.created_in {
width: 1000px;
margin: 0 auto;
text-align: center;
}
.created_in p .img{
display: inline-block;
width: 18px;
height: 23px;
line-height: 23px;
}
.created_in .created_info{
padding:20px 32px 30px;
font-size: 14px;
margin-bottom: 50px;
font-family: MicrosoftYaHeiLight;
color: #333;
line-height: 25px;
text-align: left;
height: 380px;
overflow-y: auto;
}
.created_in p{
font-size: 14px;
color: #333;
text-align: left;
line-height: 23px;
color: #333;
}
.configure_operation.solid{
border-top: solid 1px #e8e9eb;
}
/* 安装完成 */
.complete {
width: 1000px;
margin: 0 auto;
height: 482px;
}
.complete_in {
text-align: center;
}
.complete_in img {
width: 200px;
height: 140px;
margin-bottom: 50px;
object-fit: contain;
}
.complete_in h3 {
font-size: 26px;
color: #000000;
margin-bottom: 20px;
font-family: MicrosoftYaHei;
}
.complete_in p {
font-size: 16px;
color: #666666;
font-family: MicrosoftYaHei;
}
.complete_operation {
text-align: center;
padding-top: 60px;
padding-bottom: 20px;
}
.complete_operation button {
width: 180px;
padding: 15px 0px;
cursor: pointer;
font-size: 15px;
text-align: center;
border-radius: 5px;
transition: all 0.5s;
font-family: MicrosoftYaHei-Bold;
}
.complete_operation button a {
color:#fff;
}
.complete_operation button:first-child {
font-size: 15px;
color: #333333;
border-radius: 5px;
margin-right: 15px;
font-family: MicrosoftYaHei-Bold;
background-color: rgba(215, 215, 215, 0.5);
}
.complete_operation button:last-child {
font-size: 15px;
color: #ffffff;
border-radius: 5px;
background-color: #f54412;
font-family: MicrosoftYaHei-Bold;
}
.footer{
width: 100%;
height: 60px;
line-height: 60px;
position: absolute;
bottom: 0;
border-top: solid 1px rgba(0,0,0,0.1);
}
.footer .center{
width: 1200px;
margin: 0 auto;
display: flex;
justify-content: space-between;
font-size: 13px;
color: #555;
font-family: MicrosoftYaHeiLight;
}
.footer a{
color: #555;
}