A1300399510 e6baac9d04 提交
2023-08-14 15:08:00 +08:00

207 lines
4.5 KiB
CSS

#fwin_login {
transform: translate(-50%, -50%);
}
.rental-listing * {
box-sizing: border-box;
}
.rental-listing .flexflex {
display: flex;
}
.rental-listing .flex1 {
flex: 1;
}
.rental-listing .flexcenter {
display: flex;
justify-content: center;
align-items: center;
}
.rental-listing .flexacenter {
display: flex;
align-items: center;
}
.rental-listing .flexjcenter {
display: flex;
justify-content: center;
}
.rental-listing .btn {
position: absolute;
top: 0;
left: 0;
width: 100%;
height: 100%;
}
.rental-listing .pop-mask {
position: fixed;
top: 0;
left: 0;
width: 100vw;
height: 100vh;
background: rgba(0, 0, 0, 0.81764706);
z-index: 1000;
}
.rental-listing.pop-box {
position: relative;
z-index: 1111;
box-sizing: border-box;
padding-top: 39px;
background-color: #ffffff;
-moz-box-shadow: 0px 0px 10px rgba(0, 0, 0, 0.11764706);
-webkit-box-shadow: 0px 0px 10px rgba(0, 0, 0, 0.11764706);
box-shadow: 0px 0px 10px rgba(0, 0, 0, 0.11764706);
line-height: normal;
}
.rental-listing .pop-header {
font-size: 24px;
font-weight: 650;
color: #000000;
}
.rental-listing .please-choose {
color: #555555;
font-size: 14px;
margin-top: 26px;
margin-bottom: 24px;
padding-left: 35px;
}
.rental-listing .choice-box {
justify-content: space-between;
flex-wrap: wrap;
padding: 0 35px 49px;
}
.rental-listing .choice-box .choice-item,
.rental-listing .choice-box .choice-long-item {
background-color: #f6f6f6;
height: 160px;
width: 220px;
border-radius: 16px;
margin-bottom: 10px;
box-sizing: border-box;
padding-top: 18px;
}
.rental-listing .choice-box .choice-item .choice-name,
.rental-listing .choice-box .choice-long-item .choice-name {
font-weight: 650;
font-size: 18px;
color: #000000;
position: relative;
padding-left: 34px;
text-align: left;
}
.rental-listing .choice-box .choice-item .choice-name::after,
.rental-listing .choice-box .choice-long-item .choice-name::after {
content: "";
position: absolute;
top: 50%;
left: 16px;
transform: translateY(-50%);
background-color: #50e3c2;
width: 6px;
height: 16px;
border-radius: 3px;
}
.rental-listing .choice-box .choice-item:hover,
.rental-listing .choice-box .choice-long-item:hover {
cursor: pointer;
background-color: #f2f2f2;
}
.rental-listing .choice-box .choice-item:hover .choice-arrows,
.rental-listing .choice-box .choice-long-item:hover .choice-arrows {
background-color: #000;
background-image: url('@/assets/img/edit/selectArrow-white.svg');
}
.rental-listing .choice-box .choice-long-item {
width: 450px;
justify-content: space-between;
height: 100px;
padding-right: 20px;
}
.rental-listing .choice-box .choice-long-item .choice-arrows {
margin: 0;
margin-top: -18px;
}
.rental-listing .choice-box .choice-explain {
color: #555555;
font-size: 14px;
font-weight: 400;
margin-top: 10px;
margin-bottom: 21px;
padding-left: 34px;
text-align: left;
}
.rental-listing .choice-box .choice-arrows {
width: 40px;
height: 40px;
background-color: #fddf6d;
border-radius: 50%;
margin: 0 auto;
background-image: url('@/assets/img/edit/selectArrow.png');
background-size: 24px;
background-repeat: no-repeat;
background-position: center;
}
.rental-listing .close-icon {
position: absolute;
top: 20px;
right: 14px;
width: 14px;
height: 14px;
cursor: pointer;
}
.rental-listing .affirm-hint {
color: #333333;
margin: 0 auto;
text-align: left;
padding: 0 30px;
}
.rental-listing .affirm-a-hint {
text-align: center;
margin-top: 20px;
}
.rental-listing .affirm-b-hint {
margin: 36px auto 0;
}
.rental-listing .rules-box {
background: #f6f6f6;
margin: 30px;
border-radius: 10px;
padding: 15px;
}
.rental-listing .rules-box .rules-item {
line-height: 24px;
}
.rental-listing .rules-box .rules-item:not(:last-of-type) .rules-text {
border-bottom: 1px dashed #ebebeb;
}
.rental-listing .rules-box .rules-item .rules-text {
padding: 20px 0;
font-size: 15px;
}
.rental-listing .rules-box .rules-icon {
width: 15px;
height: 15px;
margin-top: 25px;
margin-right: 12px;
}
.rental-listing .footer {
padding: 0 15px;
height: 100px;
border-top: 1px solid #ebebeb;
}
.rental-listing .footer .footer-item {
width: 200px;
height: 50px;
border-radius: 40px;
font-size: 20px;
cursor: pointer;
background-color: #ffffff;
border: 1px solid #d7d7d7;
}
.rental-listing .footer .footer-item:first-of-type {
margin-right: 20px;
}
.rental-listing .footer .footer-item.affirm {
border: none;
background-color: #62b1ff;
color: #ffffff;
font-weight: 650;
}