123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596979899100101102103104105106107108109110111112113114115116117118119120121122123124125126127128129130131132133134135136137138139140141142143144145146147148149150151152153154155156157158159160161162163164165166167168169170171172173174175176177178179180181182183184185186187188189190191192193194195196197198199200201202203204205206207208209210211212213214215216217218219220221222223224225226227228229230231232233234235236237238239240 |
- .main {
- padding: 15px;
- .form {
- border-radius: 10px;
- background-color: white;
- }
- }
- .l_top {
- image {
- width: 100%;
- height: 170px;
- }
- }
- .tab {
- padding: 0px 5px 5px 5px;
- /* #ifdef H5 */
- margin-top: -1px;
- /* #endif */
- }
- .omit {
- white-space: nowrap;
- text-overflow: ellipsis;
- overflow: hidden;
- }
- .ellip {
- -webkit-line-clamp: 2;
- text-overflow: ellipsis;
- display: -webkit-box;
- -webkit-box-orient: vertical;
- overflow: hidden;
- margin-top: 7px;
- color: #666666;
- }
- .mt10 {
- margin-top: 10px;
- }
- .clear {
- clear: both;
- }
- .r {
- width: 100%;
- overflow: hidden;
- }
- .r10 {
- width: 10%;
- float: left;
- }
- .r20 {
- width: 20%;
- float: left;
- }
- .r30 {
- width: 30%;
- float: left;
- }
- .r40 {
- width: 40%;
- float: left;
- }
- .r50 {
- width: 50%;
- float: left;
- }
- .r60 {
- width: 60%;
- float: left;
- }
- .r70 {
- width: 70%;
- float: left;
- }
- .r80 {
- width: 80%;
- float: left;
- }
- .r90 {
- width: 90%;
- float: left;
- }
- .flex {
- display: flex;
- text-align: center;
- .f {
- flex: 1;
- overflow: hidden;
- }
- }
- .btn {
- color: white;
- background-color: $main-color;
- border-radius: 30px;
- font-size: 14px;
- text-align: center;
- padding: 5px;
- box-shadow: 0 2px 12px 0 rgba(0, 0, 0, 0.2);
- }
- .form_group {
- padding: 9px 15px 9px 15px;
- overflow: hidden;
- position: relative;
- border-bottom: 1px solid $line;
- &.form_group:last-child {
- border-bottom: 0px;
- }
- .lable {
- font-size: 15px;
- text-align: left;
- position: relative;
- float: left;
- color: $font-c;
- margin-top: 7px;
- .limit {
- padding-left: 8px;
- font-size: 13px;
- font-weight: normal;
- color: darkgray;
- }
- }
- .re {
- &::before {
- content: '*';
- width: 0px;
- height: 0px;
- color: red;
- position: absolute;
- top: -7px;
- left: -8px;
- font-weight: bold;
- }
- }
- .bgm {
- color: white;
- border-radius: 5px;
- margin-top: 12px;
- position: relative;
- .input {
- border: 0px;
- width: 75%;
- margin-top: 0px;
- }
- .msg {
- position: absolute;
- right: 10px;
- top: 9px;
- }
- }
- .avatar {
- position: absolute;
- top: 0px;
- right: 0px;
- width: 55px;
- height: 55px;
- border-radius: 50%;
- }
- input {
- font-size: 15px;
- border-radius: 5px;
- padding: 10px 5px 10px 10px;
- width: 72%;
- float: right;
- text-align: right;
- }
- picker {
- position: relative;
- text-align: right;
- width: 72%;
- float: right;
- line-height: 0px;
- padding: 17px 7px 20px 0px;
- }
- textarea {
- font-size: 15px;
- border-radius: 5px;
- padding: 10px;
- margin-top: 40px;
- height: 120px;
- width: 93%;
- background-color: #f1f1f1;
- }
- .more {
- position: absolute;
- right: 3px;
- top: 18px;
- font-weight: normal;
- }
- }
- /*****设置**********/
- .cmd {
- margin-top: 30px;
- overflow: hidden;
- border-radius: 10px;
- .s_item {
- padding: 10px;
- background-color: white;
- color: $font-c;
- overflow: hidden;
- border-bottom: 1px solid #f0f2f7;
- &:last-child {
- border-bottom: 0px;
- }
- .ic {
- float: left;
- font-size: 25px;
- text-align: center;
- padding: 7px;
- border-radius: 50%;
- border: 1px solid $main-color;
- color: $main-color;
- }
- .title {
- color: #545555;
- padding-top: 11px;
- float: left;
- padding-left: 10px;
- }
- .arrow {
- font-size: 20px;
- float: right;
- color: #9a9a9a;
- margin-top: 10px;
- }
- }
- }
- .tips {
- font-size: 13px;
- background-color: $bg;
- padding: 8px;
- color: $main-color;
- overflow: hidden;
- .icon {
- font-size: 17px;
- float: left;
- padding-right: 3px;
- }
- }
- .popup {
- padding: 15px;
- background-color: white;
- border-radius: 10px;
- }
|