| 123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596979899100101102103104105106107108109110111112113114115116117118119120121122123124125126127128129130131132133134135136137138139140141142143144145146147148149150151152153154155156157158159160161162163164165166167168169170171172173174175176177178179180181182183184185186187188189190191192193194195196197198199200201202203204205206207208209210211212213214215216217218219220221222223224225226227228229230231232233234235236237238239240241242243244245246247248249250251252253254255256257258259260261262263264265266267268269270271272273274275276277278279280281282283284285286287288289290291292293294295296297298299300 |
- // page {
- // background: linear-gradient(to bottom, #F0CABF, #E1CDEE)
- // }
- .navi_bar {
- position: fixed;
- left: 0;
- right: 0;
- top: 0;
- }
- .operate_bg {
- display: flex;
- flex-direction: column;
- // flex-wrap: wrap;
- width: 750px;
- box-sizing: border-box;
- padding-left: 40px;
- margin-top: 64px;
- }
- .operate_item {
- margin-right: 32px;
- margin-bottom: 26px;
- width: 670px;
- height: 156px;
- display: flex;
- flex-direction: row;
- align-items: center;
- // justify-content: center;
- border-radius: 42px;
- padding-right: 50px;
- box-sizing: border-box;
- }
- .first_letter{
- margin-left:30px;
- margin-right: 40px;
- background-color: rgba($color: #fff, $alpha: 0.5);
- width:108px;
- height:108px;
- border-radius: 54px;
- display:flex;
- align-items: center;
- justify-content: center;
- }
- .input_form {
- width: 670px;
- height: 360px;
- border-radius: 42px;
- background-color: rgba($color: #fff, $alpha: 0.25);
- display: flex;
- flex-direction: column;
- align-items: center;
- }
- .input_content {
- width: 578px;
- height: 128px;
- border-radius: 21px;
- margin-top: 60px;
- box-sizing: border-box;
- padding-left: 60px;
- // text-align: center;
- background-color: #fff;
- }
- .input_content_placeholder{
- text-align: center;
- }
- .form_btns {
- display: flex;
- flex-direction: row;
- margin-top: 60px;
- width: 670px;
- height: 128px;
- // background-color: palegoldenrod;
- }
- .form_cancel {
- flex: 1;
- display: flex;
- align-items: center;
- justify-content: center;
- }
- .form_confirm {
- color: rgba($color: #000, $alpha: 0.4);
- }
- .sel_tag {
- height: 64px;
- border-radius: 32px;
- background-color: rgba($color: #000, $alpha: 0.05);
- padding-left: 24px;
- display: flex;
- flex-direction: row;
- align-items: center;
- padding-right: 16px;
- }
- .textarea2 {
- height: 420px;
- width: 570px;
- box-sizing: border-box;
- // padding: 30px 0px;
- margin-top: 48px;
- margin-bottom: 48px;
- }
- .cover {
- width: 155px;
- height: 155px;
- background-color: rgba($color: #000, $alpha: 0.05);
- display: flex;
- align-items: center;
- justify-content: center;
- border-radius: 0px;
- overflow: hidden;
- margin-right: 20px;
- margin-bottom: 20px;
- position: relative;
- border-radius: 28px;
- }
- .cover_del {
- position: absolute;
- right: 0;
- top: 0;
- width: 52px;
- height: 52px;
- display: flex;
- align-items: center;
- justify-content: center;
- }
- .cover_del_btn {
- width: 28px;
- height: 28px;
- border-radius: 15px;
- display: flex;
- align-items: center;
- justify-content: center;
- background-color: #66666680;
- flex-shrink: 0;
- }
- .form2 {
- display: flex;
- flex-direction: row;
- flex-wrap: wrap;
- width: 100%;
- }
- .time_view {
- position: relative;
- display: flex;
- flex-direction: row;
- align-items: center;
- margin-left: 56px;
- padding-right: 52px;
- height: 108px;
- }
- .cardShowAni {
- animation: showAni 0.3s linear forwards;
- }
- .cardHideAni {
- animation: dismissAni 0.3s linear forwards;
- }
- @keyframes dismissAni {
- 0% {
- opacity: 1;
- }
- 100% {
- opacity: 0;
- }
- }
- @keyframes showAni {
- 0% {
- opacity: 0;
- transform: translateY(100px);
- }
- 100% {
- opacity: 1;
- transform: translateY(0px);
- }
- }
- /* #ifdef weapp */
- .share_bg {
- position: fixed;
- left: 0;
- top: 0;
- width: 100vw;
- height: 100vh;
- z-index: 100;
- background: linear-gradient(180deg, #000000 0%, #1A1A1A 100%);
- display: flex;
- flex-direction: column;
- align-items: center;
- justify-content: center;
- }
- /* #endif */
- /* #ifdef rn */
- .share_bg {
- position: fixed;
- left: 0;
- top: 0;
- width: 100vw;
- height: 100vh;
- z-index: 100;
- display: flex;
- flex-direction: column;
- align-items: center;
- justify-content: center;
- }
- /* #endif */
- .share_card1 {
- width: 698px;
- height: 932px;
- display: flex;
- border-radius: 84px;
- margin-bottom: 26px;
- flex-direction: column;
- overflow: hidden;
- align-items: center;
- position: relative;
- }
- .log_result_success {
- margin-top: 123px;
- width: 120px;
- height: 120px;
- background-color: #fff;
- border-radius: 60px;
- display: flex;
- align-items: center;
- justify-content: center;
- }
- .share_card_cover {
- width: 698px;
- height: 932px;
- position: absolute;
- left: 0;
- top: 0;
- }
- .share_card_layer {
- width: 698px;
- height: 932px;
- position: absolute;
- left: 0;
- top: 0;
- background-color: #000;
- opacity: 0.5;
- }
- .share_canvas {
- position: absolute;
- top: -1000px;
- }
- .content_card {
- margin-left: 26px;
- background-color: rgba($color: #fff, $alpha: 0.5);
- width: 698px;
- min-height: 875px;
- border-radius: 84px;
- padding: 64px;
- padding-bottom: 44px;
- box-sizing: border-box;
- display: flex;
- flex-direction: column;
- }
- .share_btn1{
- display: flex;
- flex-direction: row;
- align-items: center;
- justify-content: center;
- width: 698px;
- height: 108px;
- border-radius: 28px;
- }
|