123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596979899100101102103104105106107108109110111112113114115116117118119120121122123124125126127128129130131132133134135136137138139140141142143144145146147148149150151152153154155156157158159160161162163164165166167168169170171172173174175176177178179180181182183184185186187188189190191192193194195196197198199200201 |
- ax-body{
- display: block;
- height: 100%;
- background: #F6FAFF;
- }
- .page-background{
- position: fixed;
- top: 0;
- left: 0;
- right: 0;
- z-index: 0;
- }
- .page-background image{
- display: block;
- width: 100%;
- }
- .body{
- display: block;
- width: 100%;
- height: 100%;
- position: relative;
- overflow: auto;
- z-index: 1;
- }
- /* 标题 */
- .top{
- display: flex;
- align-items: center;
- justify-content: space-between;
- }
- .title{
- color: #333;
- font-size: 18px;
- font-weight: bold;
- }
- .subtitle{
- color: #aaa;
- font-size: 14px;
- margin-top: 8px;
- }
- .card{
- background-color: #fff;
- border-radius: 10px;
- padding: 10px;
- margin-top: 10px;
- box-shadow: 0 0 10px #eee;
- }
- .card .lable{
- color: #333;
- font-size: 16px;
- margin-bottom: 10px;
- margin-top: 5px;
- }
- .card .lable.required::after{
- content: '*';
- color: #f44033;
- margin-left: 5px;
- }
- .card.form-type .content{
- display: grid;
- grid-template-columns: 1fr 1fr 1fr;
- gap: 10px;
- }
- .card.form-type .content .tag{
- display: flex;
- align-items: center;
- justify-content: center;
- background-color: #f6f6f6;
- border-radius: 5px;
- font-size: 14px;
- color: #2b303a;
- height: 36px;
- transition: all 300ms ease;
- }
- .card.form-type .content .tag.active{
- background-color: #3eb6f8;
- color: #fff;
- }
- .card.form-describe .content .textarea{
- width: 100%;
- height: 60px;
- font-size: 14px;
- }
- .card.form-describe .footer{
- display: flex;
- align-items: center;
- justify-content: space-between;
- font-size: 14px;
- color: #aaa;
- margin-top: 10px;
- padding-top: 10px;
- border-top: 1px solid #eee;
- }
- .card.form-picture .footer{
- display: flex;
- align-items: center;
- justify-content: space-between;
- font-size: 14px;
- color: #aaa;
- margin-top: 10px;
- }
- .card.form-picture .picture{
- display: flex;
- align-items: center;
- justify-content: center;
- flex-direction: column;
- width: 70px;
- height: 70px;
- border-radius: 10px;
- border: 1px solid #ddd;
- }
- .card.form-picture .picture .icon{
- font-size: 28px;
- color: #aaa;
- }
- .card.form-picture .picture .name{
- font-size: 12px;
- margin-top: 5px;
- color: #aaa;
- }
- .card.form-picture .content{
- display: flex;
- }
- .card.form-picture .picture.view{
- position: relative;
- overflow: hidden;
- border: none;
- box-shadow: 0 0 5px rgba(0, 0, 0, 0.6) inset;
- }
- .card.form-picture .picture.view .remove{
- display: flex;
- align-items: center;
- justify-content: center;
- width: 20px;
- height: 20px;
- border-radius: 5px;
- position: absolute;
- top: 0;
- right: 0;
- background-color: rgba(0, 0, 0, 0.3);
- z-index: 2;
- }
- .card.form-picture .picture.view .remove .icon{
- color: #fff;
- font-size: 10px;
- }
- .card.form-picture .picture.view .image{
- width: 100%;
- height: 100%;
- }
- .card.form-picture .picture + .picture{
- margin-left: 10px;
- }
- .card.form-contact{
- display: flex;
- align-items: center;
- justify-content: space-between;
- height: 50px;
- }
- .card.form-contact .lable{
- margin: 0;
- }
- .card.form-contact .content{
- flex: 1;
- margin-left: 20px;
- }
- .card.form-contact .content .input{
- font-size: 14px;
- }
- .tips{
- display: block;
- text-align: center;
- font-size: 14px;
- margin: 20px 0;
- }
- .em{
- color: #3eb6f8;
- }
- .submit{
- display: flex;
- align-items: center;
- justify-content: center;
- width: 100%;
- height: 50px;
- border-radius: 8px;
- font-size: 14px;
- color: #2b303a;
- background: linear-gradient(to right,#8FF8FB,#47AEFF);
- }
- .submit::after{
- content: unset;
- display: none;
- }
|