123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596979899100101102103104105106107108109110111112113114115116117118119120121122123124125126127128129130131132133134135136137138139140141142143144145146147148149150151152153154155156157158159160161162163164165166167168169170171172173174175176177178179180181182183184185186187188189190191192193194195196197198199200201202203204205206207208209210211212213214215 |
- * {
- padding: 0;
- margin: 0;
- }
- html,
- body {
- width: 100%;
- height: 100%;
- box-sizing: border-box;
- }
- .content {
- width: 100%;
- height: 100%;
- overflow-y: scroll;
- }
- .content::-webkit-scrollbar {
- width:0;
- }
- .question-container {
- width: 100%;
- position: relative;
- }
- .container-bg {
- width: 100%;
- display: block;
- }
- .title {
- position: absolute;
- top: 4.96rem;
- left: 50%;
- transform: translateX(-50%);
- width: 7.12rem;
- height: .54rem;
- }
- .title img {
- position: absolute;
- left: 0;
- top: 0;
- width: 100%;
- height: 100%;
- }
- .subject {
- position: absolute;
- top: 5.2rem;
- left: 0;
- right: 0;
- margin:0 auto;
- width: 6.62rem;
- border-radius: 0 0 .2rem .2rem;
- }
- .question {
- position: relative;
- z-index: 2;
- width: 6.62rem;
- height: auto;
- border-radius: 0 0 .2rem .2rem;
- background: #fff;
- overflow: hidden;
- padding: 0 .4rem;
- box-sizing: border-box;
- }
- .inset {
- position: absolute;
- left: 0;
- top: 0;
- z-index: 99;
- width: 100%;
- height: .54rem;
- }
- .bottom {
- position: absolute;
- left: 0;
- bottom: -.18rem;
- width: 100%;
- height: .26rem;
- }
- .question-box {
- height: 9.72rem;
- overflow: hidden;
- border-radius: 0 0 .2rem .2rem;
- background: #fff;
- }
- .audio {
- position: absolute;
- top: .5rem;
- left: .5rem;
- display: flex;
- align-items: center;
- }
- .audio .audiobtn {
- width: .7rem;
- height: .7rem;
- }
- .audio div {
- width: 85%;
- font-size: .32rem;
- }
- .question-photo {
- position: relative;
- width: 100%;
- margin-top: 1.7rem;
- height: 3.72rem;
- }
- .question-photo img {
- position: absolute;
- top: 50%;
- left: 0;
- transform: translateY(-50%);
- width: 100%;
- }
- .option {
- width: 100%;
- margin-top: .5rem;
- }
- .option li {
- width: 100%;
- height: .7rem;
- border: .02rem #FEA10F solid;
- margin-bottom: .3rem;
- font-size: .28rem;
- text-align: center;
- line-height: .7rem;
- border-radius: .16rem;
- list-style:none;
- }
- .select {
- background: #FEA10F;
- color: #fff;
- }
- .order {
- font-size: .28rem;
- text-align: center;
- padding-bottom: .3rem;
- }
- .ind {
- color: #7A81FF;
- }
- .popup {
- position: absolute;
- left: 0;
- top: 0;
- width: 100%;
- height: 100%;
- background: rgba(0, 0, 0, .8);
- z-index: 999;
- display: none;
- }
- .popup-content {
- width: 100%;
- height: 100%;
- }
- .popup-content .bg {
- position: absolute;
- left: 15%;
- top: 10%;
- width: 70%;
- }
- canvas {
- position: absolute;
- top: -9999px;
- left: -9999px;
- }
- .baocun {
- position: absolute;
- left: 50%;
- bottom: 15%;
- transform: translateX(-50%);
- color: #fff;
- font-size: .28rem;
- }
- .code {
- position: absolute;
- left: 0;
- bottom: 0;
- width: 100%;
- height: 1.6rem;
- background: #fff;
- display: flex;
- align-items: center;
- }
- .code img {
- width: 1.32rem;
- height: 1.32rem;
- margin: 0 .45rem;
- }
- .code .text {
- display: flex;
- flex-direction: column;
- font-size: .28rem;
- }
- /*卷边效果 需要完善已经注释*/
- /*
- box-shadow: 0 4px 8px 0 #A691D3;
- .question:before{
- content: '';
- position: absolute;
- right:0;
- bottom:0;
- border-style: solid;
- border-width: 0;
- border-color:#fff rgba(0, 0, 0, 0.2);
- transition: all .5s;
- border-radius: 0 0 50% 0;
- }
- .question:hover:before {
- border-top-width: 300px;
- border-right-width: 300px;
- } */
|