| 12345678910111213141516171819202122232425262728293031323334353637383940414243444546474849505152535455565758596061626364656667686970717273747576777879808182838485868788899091929394959697 |
- /* page {
- background-color: #f8f8f8;
- }
- .container {
- padding: 30rpx;
- align-items: left;
- }
- .input {
- margin-top:3px;
- width: 100%;
- border: 1px solid lightgray;
- border-radius: 6px;
- }
- .button {
- margin-top:20px;
- margin-left: 5px;
- margin-right: 5px;
- }
- .layout_horizontal{
- height: 100rpx;
- display: flex;
- /*row 横向 column 列表 */
- /* flex-direction: row; */
- /* } */
- page {
- background-color: #f8f8f8;
- font-size: 32rpx;
- line-height: 1.6;
- }
- .scrollPage{
- height: 100%;
- overflow: hidden;
- }
- .searchBar{
- background: #fff;
- height: 72rpx;
- padding: 0 30rpx 16rpx;
- }
- .searchBar >input {
- background: #f0f1f2;
- height: 56rpx;
- border-radius: 28rpx;
- text-align: center;
- }
- .selectBox{
- background: #fff;
- margin-top: 18rpx;
- position: relative;
- display: flex;
- }
- .select{
- box-sizing: border-box;
- width: 50%;
- height: 100rpx;
- line-height: 100rpx;
- border: 1rpx solid #efefef;
- text-align: center;
- }
- .select_text{
- font-size: 30rpx;
- color: #4a4a4a;
- }
- .option_box{
- position: absolute;
- top: 100rpx;
- width: 100%;
- background: #fff;
- font-size: 30rpx;
- padding-left: 40rpx;
- overflow-y: auto;
- transition: height 0.3s;
- z-index: 2;
- }
- .option{
- display: block;
- padding: 12rpx;
- }
- .shadow {
- width: 100%;
- height: 100%;
- background-color: rgba(178, 178, 178, 0.3);
- z-index: 1;
- top: 210rpx;
- position: absolute;
- }
- .log_area {
- position: relative;
- background: #e4e4e6;
- padding: 26rpx;
- border-radius: 12rpx;
- }
- .log_area >textarea{
- width:100%;
- height:860rpx;
- font-size: 28rpx;
- }
|