123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596979899100101102103104105106107108109110111112113114115116117118119120121122123124125126127128129130131132133134135136137138139140141142143144145146147148149150151152153154155156157158159160161162163164165166167168169170171172173174175176177178179180181182183184185186187188189190191192193194195196197198199200201202203204205206207 |
- /**app.wxss**/
- .container {
- height: 100%;
- display: flex;
- flex-direction: column;
- align-items: center;
- justify-content: space-between;
- /* padding: 200rpx 0; */
- box-sizing: border-box;
- }
- .custom-info-btn{
- padding: 5px 25px;
- width: auto;
- height: auto;
- display: flex;
- justify-content: center;
- border-radius: 3px;
- background-color: #7a7777;
- }
- .custom-info-btn:active{
- background-color: #c2b8b8;
- box-shadow: 1px 1px 5px black;
- }
- /* 方块组件 */
- .rounded-chunk{
- width: 100%;
- height: auto;
- /* display: flex; */
- padding: 5px;
- box-sizing: border-box;
- }
- .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%;
- font-size: large;
- height: auto;
- display: flex;
- justify-content: center;
- align-items: center;
- padding: 5px;
- box-sizing: border-box;
- background-color: #f5f5f5;
- box-shadow: 1px 1px 5px black;
- }
- .c-content{
- width: 100%;
- height: auto;
- display: flex;
- flex-direction: column;
- justify-content: center;
- align-items: center;
- padding: 5px;
- box-sizing: border-box;
- background-color: #f5f5f5;
- box-shadow: 1px 1px 5px black;
- }
- .line{
- width: 100%;
- height: 35px;
- display: flex;
- box-sizing: border-box;
- align-items: center;
- background-color: #f5f5f5;
- 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;
- }
- .align-left{
- text-align: left;
- }
- /** 上半圆 **/
- .rounded-t{
- border-radius: 3px 3px 0 0;
- }
- /** 下半圆 **/
- .rounded-b{
- border-radius: 0 0 3px 3px;
- }
- .hr-b{
- border-bottom: 1px solid #d9d9d9;
- }
- .hr-t{
- border-top: 1px solid #d9d9d9;
- }
- /* 字体大小 */
- .bool-font{
- font-weight: bold;
- }
- .font-xxl{
- font-size: xx-large;
- }
- .font-xl{
- font-size: x-large;
- }
- .font-l{
- font-size: large;
- }
- .font-m{
- font-size: medium;
- }
- .font-s{
- font-size: small;
- }
- .font-xs{
- font-size: x-small;
- }
- /* 字体颜色 */
- .red{
- color: red;
- }
- .black{
- color: black;
- }
- .gray{
- color: gray;
- }
- .white{
- color: white;
- }
- .green{
- color: green;
- }
- /* 横向排列 */
- .flex-row{
- display: flex;
- flex-direction: row;
- justify-content: center;
- align-items: center;
- }
- .w-full{
- width: 100%;
- }
- .mx-10{
- margin-left: 10px;
- margin-right: 10px;
- }
- .text-red{
- color: red;
- }
- .mt-sm{
- margin-top: 5px;
- }
- .mt{
- margin-top: 10px;
- }
- .mt-xl{
- margin-top: 15px;
- }
- .mt-xxl{
- margin-top: 20px;
- }
- .p2{
- padding: 2px;
- }
- .pt-2{
- padding-top: 2px;
- }
- .pb-2{
- padding-bottom: 2px;
- }
- .pl-2{
- padding-left: 2px;
- }
- .pr-2{
- padding-right: 2px;
- }
- .rounded{
- border-radius: 3px;
- }
|