123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596979899100101102103104105106107 |
- /* pages/leaveMessage2/leaveMessage2.wxss */
- .body {
- padding: 10px;
- }
- textarea,button{
- resize: none;
- padding: 0 !important;
- font-weight: 500 !important;
- }
- .logo {
- background-size: 100% 100%;
- height: 79px;
- text-align: center;
- line-height: 79px;
- font-size: 19px;
- font-weight: bold;
- color: #21509C;
- padding-left: 120rpx;
- }
- .content {
- height: 528px;
- background: #F4F8FF;
- font-size: 16px;
- font-weight: 300;
- color: #333333;
- line-height: 31px;
- padding: 15px 20rpx;
- margin-top: 20px;
- border-top: 2px solid #508FF4;
- }
- .content text {
- display: block;
- text-indent: 60rpx;
- margin-top: 20px;
- }
- .btn {
- display: flex;
- justify-content: space-between;
- margin-top: 40px;
- }
- .btn button {
- width: 318rpx !important;
- height: 47px;
- border-radius: 5px;
- font-size: 16px;
- color: #FFFFFF;
- line-height: 47px;
- border: 1px solid #508FF4;
- }
- /* 主要蒙层代码 */
- .Mantle{
- width: 100%;
- height: 100%;
- background: rgb(49, 48, 53,0.3);
- position: absolute;
- top: 0rpx;
- left: 0rpx;
- z-index: 99;
- }
- .notice {
- position: fixed;
- width:616rpx;
- height: 420px;
- left: 50%;
- top: 50%;
- margin-left: -320rpx;
- margin-top: -250px;
- padding: 15px 10px;
- z-index: 999;
- background-color: #FFFFFF;
- }
- .notice .title{
- color: #5C5E61;
- font-weight: 600;
- }
- .notice .bottom{
- margin-top: 40px;
- display: flex;
- justify-content: space-evenly;
- }
- .notice button{
- width: 135rpx !important;
- height: 78rpx;
- line-height: 39px;
- font-size: 14px;
- background: #5A9CF7;
- border-radius: 5px;
- color: #FFFFFF;
- }
- .notice text {
- display: block;
- margin-bottom: 20rpx;
- }
- .notice .title {
- text-align: center;
- }
- .notice-btn {
- display: flex;
- justify-content: space-evenly;
- }
|