126 lines
3.7 KiB
SCSS
126 lines
3.7 KiB
SCSS
$top:190px;
|
|
.payment_main{
|
|
.payment_con{
|
|
padding: 20px;
|
|
background-color: #F6F6F6;
|
|
border-radius: 20px;
|
|
.miconfont_title{
|
|
transform: rotate(-180deg);
|
|
position: absolute;
|
|
left: 20px;
|
|
top: 27px;
|
|
font-size: 37px;
|
|
color: $color_font_three;
|
|
z-index: 99;
|
|
}
|
|
|
|
}
|
|
.title{
|
|
font-size: $font_size_big;
|
|
color: #000000;
|
|
text-align: center;
|
|
font-weight: 700;
|
|
position: relative;
|
|
|
|
}
|
|
.amount{
|
|
text-align: center;
|
|
padding: 25px 0;
|
|
}
|
|
|
|
.payment_list{
|
|
background-color: #fff;
|
|
// box-shadow: 2px 2px 6px 0px rgba(0,0,0,0.16);
|
|
min-height: 300px;
|
|
border-radius: 10px;
|
|
padding-bottom: 100px;
|
|
position: relative;
|
|
// background: radial-gradient(circle 20px at left $top, transparent 20px, #fff 20px + 3px) left 0px/60% no-repeat ,
|
|
// radial-gradient(circle 20px at right $top, transparent 20px, #fff 20px + 3px) right 0px/60% no-repeat;
|
|
// filter: drop-shadow(2px 2px 6px rgba(0, 0, 0, .16));
|
|
position: relative;
|
|
&::before{
|
|
content: '';
|
|
position: absolute;
|
|
border-bottom: 3px dashed #ccc;
|
|
top: $top;
|
|
width: calc(100% - 100px);
|
|
left:0;
|
|
right: 0;
|
|
margin: auto;
|
|
|
|
}
|
|
.payment_list_top_border{
|
|
height: 32px;
|
|
width: 100%;
|
|
background: linear-gradient(215deg,#cde5ff 2%, #cde5ff 2%, #68b4ff 72%);
|
|
border-radius: 10px 10px 0px 0px;
|
|
}
|
|
.payment_list_title{
|
|
text-align: center;
|
|
padding: 30px 0 50px 0;
|
|
font-size: $font_size;
|
|
color: $color_font_three;
|
|
.payment_list_title_price_item{
|
|
display: flex;
|
|
justify-content: space-between;
|
|
padding: 0 90px;
|
|
&:nth-child(1) {
|
|
margin-bottom: 15px;
|
|
}
|
|
}
|
|
text{
|
|
&:nth-child(2) {
|
|
color: $color_main;
|
|
}
|
|
}
|
|
}
|
|
.payment_list_con{
|
|
padding: 20px 30px 0 30px;
|
|
.payment_list_item{
|
|
display: flex;
|
|
justify-content: space-between;
|
|
align-items: center;
|
|
height: 123px;
|
|
&:nth-last-child(n+2) {
|
|
border-bottom: 2px solid #F3F3F3;
|
|
}
|
|
}
|
|
.payment_list_item_left{
|
|
display: flex;
|
|
flex-direction: column;
|
|
font-size: $font_size;
|
|
.payment_list_item_left_name{
|
|
display: flex;
|
|
align-items: center;
|
|
}
|
|
.miconfont{
|
|
font-size: 30px;
|
|
color: #FFC300;
|
|
padding-right: 10px;
|
|
}
|
|
.payment_list_item_left_price{
|
|
font-size: $font_size_min;
|
|
color: $color_font_two;
|
|
padding-left: 35px;
|
|
padding-top: 5px;
|
|
}
|
|
}
|
|
.miconfont_more{
|
|
font-size: 20px;
|
|
}
|
|
}
|
|
}
|
|
.btns{
|
|
background: #007aff;
|
|
border-radius: 40px;
|
|
width: 668px;
|
|
height: 82px;
|
|
text-align: center;
|
|
line-height: 80px;
|
|
width: 100%;
|
|
color: #fff;
|
|
font-size: 32px;
|
|
margin-top: 30px;
|
|
}
|
|
} |