/* components/popup/index.wxss */
|
/* 蒙层 */
|
.popup-box {
|
position: absolute;
|
z-index: 99;
|
top: 0;
|
background-color: rgba(0, 0, 0, 0.5);
|
width: 100%;
|
height: 100%;
|
}
|
|
/* 上 */
|
.info-top {
|
position: fixed;
|
z-index: 999;
|
width: 100%;
|
top: 0;
|
background-color: white;
|
border-bottom-left-radius: 5rpx;
|
border-bottom-right-radius: 5rpx;
|
}
|
|
/* 中 */
|
.info-center {
|
position: relative;
|
background-image: linear-gradient(to bottom, #FFF8E5, #fffcf5);
|
position: fixed;
|
z-index: 999;
|
display: flex;
|
align-items: center;
|
justify-content: center;
|
border-radius: 10rpx;
|
width: 90%;
|
margin-left: 5%;
|
margin-right: 5%;
|
}
|
|
/* 下 */
|
.info-bottom {
|
position: fixed;
|
z-index: 999;
|
width: 100%;
|
bottom: 0;
|
background-color: white;
|
border-top-left-radius: 10rpx;
|
border-top-right-radius: 10rpx;
|
}
|
|
/* 左 */
|
.info-left {
|
position: fixed;
|
z-index: 999;
|
width: 50%;
|
height: 100%;
|
top: 0;
|
background-color: white;
|
border-top-right-radius: 10rpx;
|
border-bottom-right-radius: 10rpx;
|
}
|
|
/* 右 */
|
.info-right {
|
position: fixed;
|
z-index: 999;
|
width: 50%;
|
height: 100%;
|
right: 0;
|
top: 0;
|
background-color: white;
|
border-top-left-radius: 10rpx;
|
border-bottom-left-radius: 10rpx;
|
}
|
|
/* 自定义内容(根据自己需求更改,可删除) */
|
button {
|
margin: 15rpx 0;
|
}
|
|
.row-info {
|
width: 100%;
|
padding: 10rpx;
|
display: flex;
|
flex-direction: column;
|
align-items: center;
|
margin: 15rpx;
|
font-size: 32rpx;
|
}
|
|
.row-info view {
|
padding: 10rpx 0;
|
}
|
|
.line {
|
width: 100rpx;
|
height: 1rpx;
|
}
|
|
.left-line {
|
background-image: linear-gradient(to left, orange, white);
|
}
|
|
.right-line {
|
background-image: linear-gradient(to right, orange, white);
|
}
|
|
.row-author {
|
font-size: 24rpx;
|
color: gray;
|
}
|
|
.row-btn {
|
display: flex;
|
flex-direction: row;
|
align-items: center;
|
border-top: 1rpx dashed #f1f1f1;
|
}
|
|
.row-btn view {
|
flex: 1;
|
text-align: center;
|
margin: 20rpx 10%;
|
padding: 12rpx 0;
|
font-size: 32rpx;
|
border-radius: 10rpx;
|
}
|
|
.left-btn {
|
background-color: #f1f1f1;
|
color: #33ccff;
|
}
|
|
.right-btn {
|
background-color: #33ccff;
|
color: white;
|
}
|
|
.fixed {
|
position: fixed;
|
bottom: 0;
|
width: 50%;
|
}
|
|
.popup-content {
|
width: 100%;
|
height: 680rpx;
|
display: flex;
|
flex-direction: column;
|
}
|
|
.phone {
|
--td-input-border-radius: 20rpx;
|
border-radius: 20rpx;
|
}
|
|
.phone-input {
|
width: 100%;
|
margin-bottom: 16rpx;
|
}
|
|
.submit-btn {
|
width: 100%;
|
padding: 40rpx;
|
--td-button-border-radius: 60rpx;
|
--td-button-primary-bg-color: #ff6c00;
|
--td-button-primary-border-color: #ff6c00;
|
--td-button-primary-active-bg-color: #ff984d;
|
--td-button-primary-active-border-color: #ff984d;
|
}
|
|
.demo-rate {
|
height: 60rpx;
|
width: 100%;
|
display: flex;
|
justify-content: center;
|
}
|
|
.demo-rate__title {
|
width: 200rpx;
|
}
|
|
.top-icon {
|
top: -280rpx;
|
left: 36%;
|
position: absolute;
|
}
|
|
.top-icon image {
|
width: 200rpx;
|
}
|
|
.demo-rate__transparent {
|
background-color: transparent;
|
padding-left: 32rpx;
|
border: 0;
|
}
|
|
.top-title {
|
width: 100%;
|
text-align: center;
|
color: #0F1214;
|
font-size: 40rpx;
|
font-weight: bold;
|
}
|
|
.close-icon {
|
/* background-color: #f1f1f1;
|
border-radius: 20rpx; */
|
position: absolute;
|
bottom: -70rpx;
|
}
|