123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596979899100101102103104105106107108109110111112113114115116117118119120121122123124125126127128129130131132133134 |
- * {
- padding: 0;
- margin: 0;
- list-style: none;
- box-sizing: border-box;
- }
- html,
- body {
- width: 100%;
- height: auto;
- background-color: #F7F8F9;
- }
- .HoutaiContainer {
- width: 1440px;
- height: auto;
- margin: 0 auto;
- }
- .HoutaiContainerTitle {
- width: 1440px;
- height: 108px;
- display: flex;
- display: -moz-flex;
- display: -o-flex;
- display: -webkit-flex;
- display: -ms-flex;
- position: fixed;
- top: 0;
- background-color: #F7F8F9;
- }
- .HoutaiContainerTitleText {
- color: #000000;
- font-weight: bold;
- font-size: 32px;
- margin-left: 32px;
- margin-top: 41px;
- }
- .HoutaiContainerTitleLogout {
- width: 60px;
- height: 43px;
- background-color: #000000;
- border-radius: 15px;
- color: #FFFFFF;
- font-size: 14px;
- font-weight: bold;
- text-align: center;
- line-height: 43px;
- margin-top: 41px;
- position: absolute;
- right: 32px;
- cursor: pointer;
- }
- .HoutaiContainerTitleButton {
- width: 1440px;
- height: 43px;
- display: flex;
- display: -moz-flex;
- display: -o-flex;
- display: -webkit-flex;
- display: -ms-flex;
- align-items: center;
- margin-top: 108px;
- }
- .HoutaiContainerTitleButton p {
- cursor: pointer;
- }
- .HoutaiContainerTitleButtonAdvert,
- .HoutaiContainerTitleButtonEarningStatistics,
- .HoutaiContainerTitleButtonPendingPayment,
- .HoutaiContainerTitleButtonPaid {
- /* width: 88px;
- height: 43px; */
- background-color: #FFFFFF;
- border-radius: 4px;
- text-align: center;
- /* line-height: 43px; */
- color: #000000;
- font-size: 14px;
- font-weight: bold;
- margin-left: 16px;
- border: 1px solid #D5D9DD;
- padding: 10px 16px;
- }
- .HoutaiContainerTitleButtonHome {
- margin-left: 32px;
- }
- .HoutaiContainerTitleButtonHome {
- width: 88px;
- height: 43px;
- background-color: #000000;
- border-radius: 4px;
- text-align: center;
- line-height: 43px;
- color: #fff;
- font-size: 14px;
- font-weight: bold;
- margin-left: 32px;
- border: 1px solid #000000;
- }
- .main {
- margin-left: 17px;
- margin-top: 16px;
- }
- .table {
- display: flex;
- justify-content: space-around;
- margin-bottom: 12px
- }
- .card {
- width: 210px;
- height: 98px;
- background-color: #fff;
- border-radius: 10px;
- }
- .card :first-child {
- font-size: 18px;
- color: #B0B7C3;
- margin-left: 24px;
- margin-top: 16px;
- }
- .card :last-child {
- font-size: 27px;
- color: #323B4B;
- margin-left: 24px;
- margin-top: 8px;
- }
|