123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596979899100101102103104105106107108109110111112113114115116117118119120121122123124125126127128129130131132133134135136137138139140141142143144145146147148149150151152153154155156157158159160161162163164165166167168169170171172173174175176177178179180181182183184185186187188189190191192193 |
- @import './common/common.less';
- .modal {
- padding: 0 5px;
- margin-top: 5px;
- }
- .modal-content {
- background-color: #fff;
- }
- .modal-title {
- overflow: hidden;
- padding: 10px;
- border-bottom: 1px solid #e5e5e5;
- line-height: 30px;
- /* padding: 10px 20px; */
- margin: 0 10px;
- .title {
- font-size: 1.6rem;
- color: #666;
- font-weight: 700;
- }
- }
- .modal-body {
- padding: 0 23px 23px 23px;
- margin-top: 20px;
- input:focus,
- textarea:focus {
- border: 1px solid rgb(195, 26, 0);
- // background: rgba(195,26,0,0.3);
- }
- .body-label {
- width: 75px;
- text-align: right;
- padding: 7.8px 10px;
- font-family: sans-serif;
- font-size: 1.4rem;
- color: #666;
- line-height: 1.4rem;
- display: inline-block;
- }
- .rem-label {
- text-align: left;
- padding: 7.8px 10px;
- font-family: sans-serif;
- font-size: 1.3rem;
- color: #C31A00;
- line-height: 1.4rem;
- display: none;
- }
- .body-input {
- margin: 10px auto 10px 0;
- display: inline-block;
- width: 40%;
- font-family: sans-serif;
- font-size: 1.4rem;
- color: #555;
- background-color: #fff;
- background-image: none;
- border: 1px solid #ccc;
- height: 30px;
- line-height: 30px;
- padding: 0 6px;
- }
- .area-label {
- width: 75px;
- text-align: right;
- padding: 7.8px 10px;
- font-family: sans-serif;
- font-size: 1.4rem;
- color: #666;
- line-height: 1.4rem;
- display: inline-block;
- vertical-align: top;
- }
- .body-area {
- margin: 10px 0;
- display: inline-block;
- width: 75%;
- padding: 6px 12px;
- font-family: sans-serif;
- font-size: 1.4rem;
- color: #555;
- background-color: #fff;
- background-image: none;
- border: 1px solid #ccc;
- resize: vertical;
- max-height: 300px;
- }
- .body-button {
- margin: 10px auto 10px 30%;
- width: 25%;
- display: inline-block;
- padding: 10px 12px;
- margin-bottom: 0;
- font-size: 1.4rem;
- font-weight: 400;
- text-align: center;
- -ms-touch-action: manipulation;
- touch-action: manipulation;
- border: 1px solid transparent;
- color: #333;
- background-color: #fff;
- border-color: #ccc;
- &:hover {
- background: #EEEEEE;
- cursor: pointer;
- }
- }
- .post-label {
- color: rgb(195, 26, 0);
- display: none;
- }
- }
- .yanz {
- margin: 10px auto 10px 0;
- .yanz-label {
- width: 75px;
- text-align: right;
- padding: 2px 8px;
- font-family: sans-serif;
- font-size: 1.4rem;
- color: #666;
- line-height: 1.4rem;
- display: inline-block;
- vertical-align: top;
- margin-top: 5px;
- }
- .yanz-box {
- display: inline-block;
- position: relative;
- height: 30px;
- width: 30%;
- .body-yanz {
- border: 1px solid #ccc;
- border-right: 0;
- float: left;
- height: 100%;
- width: 65%;
- box-sizing: border-box;
- text-indent: 10px;
- font-size: 1.4rem;
- font-weight: 400;
- overflow: hidden;
- white-space: nowrap;
- text-overflow: ellipsis;
- &:focus {
- border: 1px solid @fcolor;
- }
- }
- .yanz-code {
- text-align: center;
- border: 1px solid #ccc;
- float: left;
- height: 100%;
- padding: 1px 0;
- width: 35%;
- font-size: 1.4rem;
- font-weight: 400;
- box-sizing: border-box;
- overflow: hidden;
- white-space: nowrap;
- text-overflow: ellipsis;
- line-height: 25px;
- &:hover {
- background: #EEEEEE;
- cursor: pointer;
- }
- }
- .body-yanzlabel {
- position: absolute;
- display: none;
- margin-left: -34%;
- float: left;
- width: 35%;
- &:hover {
- cursor: pointer;
- }
- }
- }
- .countdown {
- font-size: 1.4rem;
- display: inline-block;
- color: #C31A00;
- }
- }
- #countdown {
- display: none;
- vertical-align: super;
- }
|