1234567891011121314151617181920212223242526272829303132333435363738394041424344454647484950515253545556575859606162636465666768697071727374757677787980818283848586878889909192939495 |
- /**index.wxss**/
- /* 方块组件 */
- .rounded-chunk{
- width: 100%;
- height: 100vh;
- /* display: flex; */
- padding: 10px;
- box-sizing: border-box;
- overflow: scroll;
- }
- .rounded-chunk > .chunk{
- width: 100%;
- height: auto;
- display: flex;
- flex-direction: column;
- justify-content: center;
- align-items: center;
- background-color: #f5f5f5;
- border-radius: 3px;
- box-shadow: 1px 1px 5px black;
- }
- .chunk-title{
- width: 100%;
- height: 45px;
- font-size: large;
- height: auto;
- display: flex;
- /* justify-content: center; */
- align-items: center;
- padding: 5px;
- box-sizing: border-box;
- background-color: #f5f5f5;
- color: black;
- font-size: large;
- font-weight: bold;
- /* 字间距 */
- letter-spacing: 0.5em;
- }
-
- .c-content{
- width: 100%;
- height: auto;
- display: flex;
- flex-direction: column;
- text-align: left;
- /* justify-content: center; */
- /* align-items: center; */
- padding: 5px;
- box-sizing: border-box;
- background-color: #f5f5f5;
-
- }
- /* 小号-正文-样式 */
- .sm-text{
- font-size: small;
- /* 首行缩进 */
- text-indent: 2em;
- }
-
- .line{
- width: 100%;
- height: 35px;
- display: flex;
- box-sizing: border-box;
- align-items: center;
- background-color: #fff;
- padding: 5px;
- }
- .line > .info{
- width: 70%;
- height: 100%;
- display: flex;
- /* justify-content: center; */
- align-items: center;
- box-sizing: border-box;
- border-right: 1px solid #d9d9d9;
- }
- .line > .select{
- width: 30%;
- height: 100%;
- display: flex;
- justify-content: center;
- align-items: center;
- }
- .c-btn{
- width: 100%;
- height: 45px;
- display: flex;
- justify-content: center;
- align-items: center;
- box-sizing: border-box;
- }
|