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.
240 lines
4.3 KiB
240 lines
4.3 KiB
.box { |
|
width: 100%; |
|
color: #fff; |
|
display: flex; |
|
flex-direction: column; |
|
background-image: linear-gradient(#003B6E, #000D21); |
|
position: relative; |
|
|
|
::-webkit-scrollbar { |
|
display: none; |
|
/* Chrome Safari */ |
|
} |
|
|
|
scrollbar-width: none; |
|
/* firefox */ |
|
-ms-overflow-style: none; |
|
/* IE 10+ */ |
|
} |
|
|
|
.titlebox { |
|
width: 100%; |
|
height: 48px; |
|
background: linear-gradient(270deg, rgba(35, 153, 255, 0) 0%, rgba(35, 153, 255, 0.57) 50%, rgba(35, 153, 255, 0) 100%); |
|
display: flex; |
|
align-items: center; |
|
|
|
.title { |
|
width: 100%; |
|
height: 32px; |
|
background: linear-gradient(270deg, rgba(35, 153, 255, 0) 0%, rgba(35, 153, 255, 0.57) 50%, rgba(35, 153, 255, 0) 100%); |
|
display: flex; |
|
justify-content: center; |
|
|
|
div { |
|
width: 120px; |
|
height: 32px; |
|
text-align: center; |
|
line-height: 32px; |
|
font-family: sybold; |
|
font-size: 16px; |
|
position: relative; |
|
cursor: pointer; |
|
margin: 0 18px; |
|
|
|
.border { |
|
position: absolute; |
|
bottom: -7px; |
|
left: -18px; |
|
width: 120px; |
|
height: 4px; |
|
} |
|
} |
|
|
|
.selected { |
|
background: linear-gradient(90deg, rgba(35, 153, 255, 0.57) 0%, #25b7d4 50%, rgba(35, 153, 255, 0.57) 100%); |
|
|
|
.border { |
|
background: linear-gradient(90deg, rgba(35, 217, 255, 0) 0%, #25b7d4 50%, rgba(35, 217, 255, 0) 100%); |
|
} |
|
|
|
} |
|
} |
|
} |
|
|
|
.ant-modal-close { |
|
color: #fff; |
|
} |
|
|
|
.contentbox { |
|
flex: 1; |
|
width: 100%; |
|
box-sizing: border-box; |
|
padding: 18px; |
|
max-height: 700px; |
|
overflow-y: auto; |
|
position: relative; |
|
display: flex; |
|
flex-direction: column; |
|
align-items: center; |
|
|
|
.topbox, |
|
.bottombox { |
|
display: flex; |
|
border: 1px solid rgba(54, 162, 255, 0.4); |
|
|
|
.title { |
|
width: 28px; |
|
height: 100%; |
|
border-right: 1px solid rgba(54, 162, 255, 0.4); |
|
background: #052c53; |
|
line-height: 20px; |
|
font-size: 14px; |
|
color: #36A2FF; |
|
text-align: center; |
|
box-sizing: border-box; |
|
padding-top: 20px; |
|
} |
|
|
|
.content { |
|
flex: 1; |
|
background: #001631; |
|
} |
|
|
|
.content1 { |
|
display: flex; |
|
align-items: center; |
|
justify-content: space-around; |
|
box-sizing: border-box; |
|
padding: 0 30px; |
|
} |
|
|
|
.content2 { |
|
display: flex; |
|
flex-direction: column; |
|
justify-content: space-around; |
|
align-content: center; |
|
position: relative; |
|
|
|
.colimglist { |
|
display: flex; |
|
justify-content: center; |
|
align-items: center; |
|
} |
|
|
|
.rightArrow { |
|
width: 40px; |
|
height: 38px; |
|
margin: 0 12px; |
|
} |
|
|
|
.line { |
|
position: absolute; |
|
width: 465px; |
|
height: 10px; |
|
border-bottom: 1px solid #91CCFF; |
|
border-right: 1px solid #91CCFF; |
|
left: 190px; |
|
top: 180px; |
|
|
|
} |
|
|
|
.line2 { |
|
position: absolute; |
|
width: 1px; |
|
height: 6px; |
|
border-right: 1px solid #91CCFF; |
|
left: 190px; |
|
top: 190px; |
|
} |
|
|
|
.bottomArrow2 { |
|
position: absolute; |
|
left: 172px; |
|
top: 187px; |
|
} |
|
} |
|
} |
|
|
|
.topbox { |
|
width: 100%; |
|
height: 184px; |
|
} |
|
|
|
.bottombox { |
|
width: 100%; |
|
height: 384px; |
|
} |
|
|
|
.bottomArrow { |
|
margin: 13px 0; |
|
} |
|
|
|
.imgbox { |
|
display: flex; |
|
flex-direction: column; |
|
justify-content: center; |
|
align-items: center; |
|
|
|
.timespan { |
|
i { |
|
margin-right: 6px; |
|
} |
|
color: #36A2FF; |
|
} |
|
.timespanerr{ |
|
color: #FF4B65; |
|
} |
|
.img { |
|
width: 120px; |
|
height: 80px; |
|
box-shadow: 0px 0px 6px #36A2FF; |
|
border: 1px solid #C4E2FC; |
|
display: flex; |
|
flex-direction: column; |
|
justify-content: center; |
|
align-items: center; |
|
position: relative; |
|
margin: 8px 0; |
|
|
|
img { |
|
width: 100%; |
|
height: 100%; |
|
cursor: pointer; |
|
|
|
} |
|
|
|
.err { |
|
width: 24px; |
|
height: 24px; |
|
position: absolute; |
|
left: 50%; |
|
top: 50%; |
|
transform: translate(-50%, -50%); |
|
} |
|
} |
|
|
|
.selectedimg { |
|
box-shadow: 0px 0px 8px #FF4B65; |
|
border: 1px solid #FF4B65; |
|
background: #3f213b; |
|
|
|
img { |
|
width: 24px; |
|
height: 24px; |
|
} |
|
} |
|
|
|
.errimg { |
|
box-shadow: 0px 0px 8px #FF4B65; |
|
border: 1px solid #FF4B65; |
|
} |
|
|
|
.name { |
|
margin-top: 3px; |
|
color: #FFFFFF; |
|
font-size: 14px; |
|
} |
|
|
|
} |
|
}
|
|
|