1234567891011121314151617181920212223242526272829303132333435363738394041424344454647484950515253545556575859 |
- .protocal-content{
- background:#FFF;
- min-height:360px;
- width:90%;
- margin:auto;
- border-top-right-radius: 20px;
- border-top-left-radius: 20px;
- box-shadow: 0px 0px 20px #5a5a5a;
- .title{
- font-size: 18px;
- font-weight: bold;
- width:100%;
- height:50px;
- display:flex;
- justify-content: center;
- align-items: center;
- }
- .content{
- margin-left:20px;
- margin-right: 20px;
- font-size:14px;
- line-height: 25px;
- .pro{
- margin-bottom: 10px;
- .red{
- color:#b21c1c;
- }
- }
-
- }
- .btns{
- width:100%;
- height:50px;
- margin-top:20px;
- display: flex;
- flex-direction: row;
- justify-content: space-between;
- align-items: center;
- .btn{
- width:50%;
- display:flex;
- justify-content: center;
- align-items: center;
- font-size:14px;
- .btn-disagree{
- width:60%;
- font-size:14px;
- border-radius: 5px;
- }
- .btn-agree{
- width:60%;
- font-size:14px;
- border-radius: 5px;
- background:#b21c1c;
- color:#FFF;
- }
- }
- }
- }
|