system-copyright-react/src/components/CouponModal/SelectCouponModal.css

121 lines
1.9 KiB
CSS
Raw Normal View History

2024-09-02 16:41:02 +08:00
.select-top {
margin-top: 30px;
display: flex;
/* background-color: skyblue; */
justify-content: space-between;
}
.selectTop-left {
display: flex;
/* height: 39px; */
align-items: center;
}
.selectTop-left-title {
font-weight: 800;
font-size: 16px;
color: #000000;
margin-left: 10px;
}
.selectTop-right {
display: flex;
align-items: center;
color: #F32E2E;
}
.select-use {
margin-top: 50px;
}
.select-use-title {
font-weight: 800;
font-size: 18px;
color: #000000;
}
.select-use-couBox {
margin-top: 10px;
height: 420px;
/* background-color: skyblue; */
overflow: auto;
}
.use-coupon {
height: 119px;
background: #FFF7EF;
border-radius: 10px;
padding: 0 30px;
display: flex;
align-items: center;
justify-content: space-between;
cursor: pointer;
margin-bottom: 20px;
}
.use-coupon:hover {
border: 1px solid #FF9D11;
}
.select-active {
border: 1px solid #FF9D11;
}
.use-coupon-left {
display: flex;
/* background-color: red; */
align-items: center;
}
.use-coupon-text {
margin-left: 28px;
}
.use-coupon-title {
font-weight: 800;
font-size: 18px;
color: #F32E2E;
}
.use-coupon-time {
font-weight: 400;
font-size: 16px;
color: #F32E2E;
margin-top: 5px;
}
.use-coupon-right {
display: flex;
align-items: center;
}
.coupon-right-num {
display: flex;
align-items: center;
color: #F32E2E;
margin-right: 24px;
}
.select-box {
width: 39px;
height: 39px;
background: linear-gradient(76deg, #F32E2E 0%, #FF9D11 100%);
border-radius: 50%;
color: white;
display: flex;
align-items: center;
justify-content: center;
font-size: 22px;
cursor: pointer;
}
.noselect-box {
width: 37px;
height: 37px;
border-radius: 50%;
border: 2px solid #FF9D11;
cursor: pointer;
}