中化加油站项目
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.

242 lines
4.3 KiB

.box {
width: 100%;
height: 715px;
overflow-y: auto;
color: #fff;
display: flex;
flex-direction: column;
background-image: linear-gradient(#003B6E, #000D21);
position: relative;
}
.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;
}
.content {
flex: 1;
box-sizing: border-box;
padding: 12px;
overflow: hidden;
display: flex;
flex-direction: column;
overflow-y: auto;
.details {
margin-bottom: 12px;
}
.disposebox {
display: flex;
flex-direction: column;
height: 72px;
margin-bottom: 25px;
.title {
display: flex;
justify-content: space-between;
margin-bottom: 12px;
}
.textarea {
height: 60px;
textarea {
color: #C4E2FC;
border: 1px solid #91CCFF;
background-color: #172c45;
}
}
}
.disposebox2{
height: 40px;
}
.imgbox {
flex: 1;
display: flex;
align-items: center;
width: 100%;
.imglist {
display: flex;
flex-direction: column;
width: 196px;
height: 100%;
overflow-y: auto;
box-sizing: border-box;
padding-right: 12px;
border-right: 1px solid rgba(145, 204, 255, 0.3);
.imglisttitle {
font-size: 16px;
font-family: sybold;
margin-bottom: 16px;
}
.img {
width: 178px;
height: 108px;
margin-bottom: 8px;
img {
width: 100%;
height: 100%;
cursor: pointer;
}
}
}
.bigimg {
// min-width: 1149px;
flex: 1;
box-sizing: border-box;
padding-left: 13px;
display: flex;
justify-content: center;
max-height: 500px;
img {
max-width: 100%;
max-height: 100%;
}
}
}
.vediobox {
flex: 1;
width: 100%;
display: flex;
align-items: center;
video{
max-height: 500px;
}
}
}
// 适配125%
@media screen and (max-height: 750px) {
.box {
width: 100%;
height: 650px;
color: #fff;
display: flex;
flex-direction: column;
background-image: linear-gradient(#003B6E, #000D21);
position: relative;
}
.content {
.imgbox {
.bigimg {
// min-width: 1149px;
flex: 1;
box-sizing: border-box;
padding-left: 13px;
display: flex;
justify-content: center;
img {
max-width: 100%;
max-height: 100%;
}
}
}
}
}
// 适配150%
@media screen and (max-height: 600px) {
.box {
width: 100%;
height: 480px;
color: #fff;
display: flex;
flex-direction: column;
background-image: linear-gradient(#003B6E, #000D21);
position: relative;
}
.content {
.imgbox {
.bigimg {
// min-width: 1149px;
flex: 1;
box-sizing: border-box;
padding-left: 13px;
display: flex;
justify-content: center;
img {
max-width: 100%;
max-height: 100%;
}
}
}
}
}
::-webkit-input-placeholder {
/* WebKit browsers */
color: #345d85;
}
//滚动条样式
::-webkit-scrollbar {
width: 10px;
}
::-webkit-scrollbar-thumb {
background-image: linear-gradient(#2495f8, #1c73c2, #0a3d6a, #061d3c);
}
::-webkit-scrollbar-track {
background-color: #061d3c;
}