123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596979899100101102103104105106107108109110111112113114115116117118119120121122123124125126127128129130131132133134135136137138139140141142143144145146147148149150151152153154155156157158159160161162163164165166167168169170171172173174175176177178179180181182183184185186187188189190191192193194195196197198 |
- .evaluatResult {
- position: relative;
- width: 100vw;
- height: 100vh;
- display: flex;
- justify-content: center;
- align-items: center;
- }
- .closeBtn {
- position: absolute;
- left: 30px;
- top: 18px;
- width: 40px;
- height: 40px;
- z-index: 1;
- img {
- width: 100%;
- height: 100%;
- display: block;
- }
- &:active {
- opacity: .8;
- }
- }
- .headerButton {
- position: absolute;
- right: -60px;
- top: 70px;
- display: flex;
- flex-direction: column;
- z-index: 1;
- .headBtn {
- display: flex;
- flex-direction: column;
- justify-content: center;
- align-items: center;
- font-size: 12px;
- color: #fff;
- text-align: center;
- margin-bottom: 30px;
- & > img {
- width: 36px;
- height: 36px;
- }
- &:active {
- opacity: .8;
- }
- }
- }
- .fraction {
- position: relative;
- top: -4px;
- border-radius: 18px;
- width: 361px;
- display: flex;
- flex-direction: column;
- justify-content: space-between;
- padding-top: 38px;
- .bg {
- position: absolute;
- left: 0;
- top: 0;
- width: 100%;
- display: block;
- z-index: -1;
- }
- .box{
- background-color: rgba(254,247,228,1);
- border-radius: 0 0 20px 20px;
- }
- .top {
- position: relative;
- display: flex;
- align-items: center;
- height: 50px;
- margin-bottom: 26px;
- margin-left: -8px;
- .text {
- position: relative;
- display: flex;
- font-size: 20px;
- font-family: DIN-Bold, DIN;
- font-weight: bold;
- color: #fff;
- line-height: 41px;
- align-items: flex-end;
- z-index: 1;
- white-space: nowrap;
- margin: 0 auto;
- }
- .num {
- font-size: 30px;
- color: #FFF79E;
- }
- }
- }
- .tips {
- padding: 16px 20px 0 20px;
- font-size: 13px;
- color: #808080;
- }
- .ctrls {
- display: flex;
- justify-content: space-evenly;
- align-items: center;
- margin: 0 20px 12px 20px;
- padding-top: 12px;
- .ctrlsBtn {
- width: 94px;
- }
- }
- .detail {
- display: flex;
- align-items: center;
- margin: 0 16px;
- padding: 0 12px;
- background: #fff;
- border-radius: 12px;
- padding: 10px 0;
- }
- .progressitem {
- flex: 1;
- display: flex;
- flex-direction: column;
- justify-content: center;
- align-items: center;
- text-align: center;
- color: #1A1A1A;
- font-weight: 500;
- font-size: 14px;
-
- &>div {
- padding-left: 24px;
- background-repeat: no-repeat;
- background-position: left center;
- background-size: auto 100%;
- margin-bottom: 4px;
- }
- .intonation{
- background-image: url('./img/intonation.svg');
- }
- .cadence{
- background-image: url('./img/cadence.svg');
- }
- .integrity{
- background-image: url('./img/integrity.svg');
- }
- &:nth-child(2){
- border-left: 1px solid #F2F2F2;
- border-right: 1px solid #F2F2F2;
- }
- &>span {
- font-size: 16px;
- font-weight: 600;
- color: #FF6729;
- }
- }
- .percussion {
- display: flex;
- flex-direction: column;
- justify-content: center;
- align-items: center;
- &>img {
- height: 74px;
- margin-bottom: 10px;
- }
- .scoreDes {
- color: var(--van-primary-color);
- font-size: 18px;
- .scoreNum {
- font-weight: bold;
- font-size: 28px;
- }
- }
- }
|