123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596979899100101102103104105106107108109110111112113114115116117118119120121122123124125126127128129130131132133134135136137138139140141142143144145 |
- .qaPageWrappper{
- .titleTxt{
- text-indent: 10px;
- }
- }
- .wrappper{
- width: 100%;
- min-width: 1200px;
- .content{
- width: 1200px;
- margin: 10px auto 0;
- height: 100%;
- border-radius: 2px;
- }
- }
- .contentTitle{
- font-size: 16px;
- height: 44px;
- line-height: 44px;
- border-bottom: 1px solid #6794A8;
- font-weight: 600;
- color: #fff;
- position: relative;
- }
- .example{
- color: #B7E9F6;
- font-size: 12px;
- line-height: 18px;
- margin-top: 15px;
- }
- .contentInfoBox{
- width: 100%;
- padding: 0 20px;
- background: rgba(66, 143, 220, 0.25);
- border-radius: 2px;
- margin: 0 0 10px 0;
- position: relative;
- }
- .infoBox{
- display: block;
- }
- .infoTxt{
- min-height: 33px;
- width: 100%;
- font-size: 14px;
- color: #fff;
- resize: none;
- line-height: 18px;
- font-family: "Microsoft Yahei", Verdana, Simsun, "Segoe UI Web Light", "Segoe UI Light", "Segoe UI Web Regular", "Segoe UI", "Segoe UI Symbol", "Helvetica Neue", Arial;
- // outline: none;
- padding: 10px;
- background: #0D2C53;
- border: 1px solid #6794A8;
- box-sizing: border-box;
- margin: 15px 0 0 0;
- }
- .infoTxt:focus{
- border: 1px solid #58a6e7;
- outline: 0;
- -webkit-box-shadow:#58a6e7 0px 0px 2px;
- -moz-box-shadow: #58a6e7 0px 0px 2px;
- box-shadow: #58a6e7 0px 0px 2px;
- }
- .loading{
- color: #aaa;
- text-align: center;
- margin-top:50px;
- font-size:14px;
- }
- .disabled{
- opacity: 0.5;
- filter: "alpha(opacity=50)";
- filter: alpha(opacity=50);
- }
- input::-webkit-input-placeholder{
- color: #afe0ed;
- }
- input:-moz-placeholder,textarea:-moz-placeholder{
- color: #afe0ed;
- }
- input::-moz-placeholder,textarea::-moz-placeholder{
- color: #afe0ed;
- }
- input:-ms-input-placeholder,textarea:-ms-input-placeholder{
- color: #afe0ed;
- }
- .btnBox{
- height: 36px;
- padding: 20px 0;
- position: relative;
- }
- .btn{
- position: absolute;
- width: 60px;
- left: 50%;
- margin-left: -48px;
- background: linear-gradient(90deg, #0069E6 0%, #00B4FF 100%);
- color: #fff;
- padding: 9px 20px;
- text-align: center;
- border-radius:4px;
- font-size: 14px;
- display: inline-block;
- cursor: pointer;
- }
- .resultBox{
- white-space: pre-wrap;
- min-height: 185px;
- line-height: 21px;
- padding: 10px 0 20px;
- width: 100%;
- position: relative;
- font-size: 14px;
- color: #fff;
- // css保留换行符
- // white-space: pre-line;
- }
- .empty{
- position: absolute;
- height: 140px;
- top: 50%;
- left: 50%;
- margin: -50px 0 0 -51px;
- // display: none;
- .emptyImg{
- position: relative;
- left: 10px;
- }
- .emptyTxt{
- font-size:12px;
- margin: 20px 0 0 0;
- text-align: center;
- color: #fff;
- }
- }
- .footer{
- width: 100%;
- margin: 24px 0;
- text-align: center;
- font-size: 12px;
- color: #A7CFFC;
- }
|