123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596979899100101102103104105106107108109110111112113114115116117118119120121122123124125126127128129130131132133134135136137138139 |
- .main {
- height: 88.8vh;
- }
- .main .zero {
- width: 96vw;
- margin: 0 0 2vw 0;
- }
- .main .zero:last-child {
- margin: 0;
- }
- .main .one {
- flex-grow: 1;
- position: relative;
- width: 96vw;
- }
- .main .one .scroll-view {
- position: absolute;
- top: 0;
- left: 0;
- right: 0;
- bottom: 0;
- }
- .main .one .scroll-view .infos {
- display: flex;
- flex-direction: column;
- flex-wrap: wrap;
- align-content: flex-start;
- justify-content: space-between;
- }
- .main .one .scroll-view .infos .top {
- width: 96vw;
- border-bottom: 1px dashed #cccccc;
- }
- .main .one .scroll-view .infos .top .one_1 {
- text-align: center;
- font-weight: bold;
- font-size: 20px;
- padding: 6vw 0;
- }
- .main .one .scroll-view .infos .top .one_2 {
- display: flex;
- justify-content: space-between;
- font-size: 16px;
- color: #666666;
- padding: 2vw 0;
- }
- .main .one .scroll-view .infos .top .one_2 text {
- padding-right: 5px;
- }
- .main .one .scroll-view .infos .cont {
- width: 96vw;
- padding: 2vw 0 0 0;
- border-bottom: 1px dashed #ffc0c0;
- }
- .main .one .scroll-view .infos .bom {
- padding: 5px;
- }
- .main .one .scroll-view .infos .bom .list {
- display: flex;
- flex-direction: column;
- margin: 0 0 8px 0;
- padding: 5px 0;
- border-bottom: 1px dashed #cccccc;
- }
- .main .one .scroll-view .infos .bom .list .list_1 {
- display: flex;
- flex-direction: row;
- }
- .main .one .scroll-view .infos .bom .list .list_1 .name {
- width: 20vw;
- }
- .main .one .scroll-view .infos .bom .list .list_1 .list_bom {
- width: 74vw;
- display: flex;
- flex-direction: column;
- }
- .main .one .scroll-view .infos .bom .list .list_1 .list_bom .title {
- font-size: 15px;
- }
- .main .one .scroll-view .infos .bom .list .list_1 .list_bom .content {
- color: #666;
- font-size: 14px;
- }
- .main .one .scroll-view .infos .bom .list .time {
- width: 93vw;
- font-size: 14px;
- text-align: right;
- }
- .main .foot {
- position: fixed;
- width: 96vw;
- bottom: 8vh;
- right: 1vw;
- text-align: right;
- }
- .main .foot .mymatch {
- display: inline-block;
- width: 10vw;
- padding: 1vw;
- text-align: center;
- background-color: green;
- color: #fff;
- font-size: 14px;
- border-radius: 5px;
- }
- .two {
- display: flex;
- flex-direction: column;
- border-radius: 5px;
- background-color: #f1f1f1;
- color: #666;
- }
- .two .two_1 {
- width: 80vw;
- }
- .two .two_1 input {
- width: 96%;
- height: 30px;
- font-size: 15px;
- margin: 5px;
- padding: 3px;
- background-color: #fff;
- }
- .two .two_1 textarea {
- width: 96%;
- font-size: 15px;
- padding: 3px;
- margin: 5px;
- background-color: #fff;
- }
- .two .two_2 {
- width: 80vw;
- text-align: center;
- }
- .two .two_2 button {
- width: 30%;
- font-size: 14px;
- padding: 2vw 0;
- }
|