123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596979899100101102103104105106107108109110111112113114115116117118119120121122123124125126127128129130131132133134135136137138139140141142143144145146147148149150151152153154155156157158159160161162163164165166167168169170171172173174175176177178179180181182183184185186187188189190191192193194195196197198199200201202203204205206207208209210211212213214215216217218219220221222223224225226227228229230231232233234235236237238239240241242243244245246247248249250251252253254255256257258259260261262263264265266267268269270271272273274275276277278279280281282283284285286287288289290291292293294295296297298299300301302303304305306307308309310311312313314315316317318319320321322323324325326327328329330331332333334335336337338339340341342343344345346347348349350351352353354355356357358359360361362363364365366367368369370371372373374375376377378379380381382383384385386387388389390391392393 |
- /******************** 这里存放通用组件样式 ********************/
- /********** uni-app基础组件 待删除**********/
- /*** lli-button--primary ***/
- // lli-primary
- .lli-btn {
- background-color: $uni-primary;
- color:#ffffff;
- }
- // lli-primary-hover
- .button-hover.lli-btn{
- background-color: $lli-btn-hover;
- color: hsla(0,0%,100%,.6);
- }
- // lli-primary-disabled
- .lli-btn[disabled]:not([type]){
- background-color: $lli-btn-disabled;
- color: hsla(0,0%,100%,.6);
- }
- // lli-primary-loading
- .lli-btn[loading]{
- background-color: $uni-primary;
- color: hsla(0,0%,100%,.6);
- }
- /*** lli-button--plain ***/
- //lli-primary-plain
- .lli-btn[plain]{
- border-color: $uni-primary;
- color: $uni-primary;
- }
- // lli-primary-plain
- .button-hover.lli-btn[plain]{
- border-color: $lli-btn-disabled;
- color: $lli-btn-disabled;
- }
- // lli-primary-disabled
- .lli-btn[plain][disabled]:not([type]){
- background-color: #f7f7f7;
- color: rgba(0, 0, 0, 0.3);
- }
- .lli-btn[plain][loading]{
- background-color: transparent;
- border-color: $lli-btn-disabled;
- color: $lli-btn-disabled;
- }
-
-
- /***** 项目中组件 *****/
- // view
- view{box-sizing: border-box;}
- // 对齐方式
- .lli-tl{text-align: left;}
- .lli-tc{text-align: center;}
- .lli-tr{text-align: right;}
- /***** view *****/
- view{box-sizing: border-box;}
- /***** 超出省略 *****/
- // 文本超出省略号显示 (一行)
- @mixin single-line-ellipsis() {text-overflow: ellipsis;overflow: hidden;word-wrap: break-word;white-space: nowrap;word-break: break-all;}
- // 文本超出省略号显示 (多行)
- @mixin multi-line-ellipsis($rows: 3){-webkit-line-clamp:$rows;text-overflow: ellipsis;-o-text-overflow: ellipsis;overflow: hidden;word-wrap: break-word;display: -webkit-box;white-space: normal !important;-webkit-box-orient: vertical;}
- /***** 页面背景图 *****/
- // no-repeat cover
- @mixin ezy-no-repeat-cover($position: center) {
- background-position: $position;background-size: cover;background-repeat: no-repeat;
- }
- // no-repeat contain
- @mixin ezy-no-repeat-contain($position: center) {
- background-position: $position;background-size: contain;background-repeat: no-repeat;
- }
- /***** 标题栏 *****/
- // 三个元素
- .phone-navBar-box{
- display: flex;align-items: center;justify-content: space-between;background-color: #fff;
- padding: calc(20rpx + var(--status-bar-height)) 20rpx 20rpx;box-sizing: border-box;position: relative;
- .nav-bar-icon{
- width: 24rpx;height: 38rpx;
- background-image: url("@/static/images/common/nav-bar-jt.svg");@include ezy-no-repeat-cover();
- }
- .nav-bar-title{font-size: 36rpx;color: #333;}
- // 考试数字
- .nav-bar-other{
- font-size: 30rpx;color: #fff;margin-right: 2%;
- .key-note{color: #ffff01;}
- }
- // 文字按钮
- .text-btn{font-size: 26rpx;color: #666;padding-top: 4rpx;box-sizing: border-box;}
- // 图标
- .nav-bar-icon-box{
- .nav-bar-right-icon{font-size: 42rpx;color: #666;}
- .nav-bar-right-icon + .nav-bar-right-icon{margin-left: 24rpx;}
- }
- }
- // 两个元素
- .icon-title-navBar-box{
- background-color: #fff;box-sizing: border-box;
- .icon-title-box{display: flex;align-items: center;justify-content: center;padding:10rpx 10rpx 20rpx;position: relative;}
- .nav-bar-title{
- font-size: 32rpx;height: 64rpx;line-height: 64rpx;color: #333;max-width: 70%;
- }
- .nav-bar-icon{
- width: 24rpx;height: 38rpx;position: absolute;left: 24rpx;top: 24rrpx;
- background-image: url("@/static/images/common/nav-bar-jt.svg");@include ezy-no-repeat-cover();
- }
- .bar-ml10{margin-left: 10rpx;}
- .nav-bar-btn{font-size: 24rpx;position: absolute;right: 20rpx;
- line-height: 50rpx;border-radius: 8rpx;padding: 0 10rpx;}
- }
- // 仅一个返回按钮
- .phone-nav-bar-icon{width: 24rpx;height: 38rpx;position: absolute;left: 24rpx;top: var(--status-bar-height);
- background-image: url("@/static/images/common/nav-bar-jt.svg");@include ezy-no-repeat-cover();
- }
- /***** 富文本处理 *****/
- @mixin ezy-rich-text() {
- white-space: pre-wrap;text-align: justify;
- div,p,span{margin: 0;padding: 0;}
- img{max-width: 100%;}
-
- .ql-align-center{text-align: center}
- .ql-align-right{text-align: right}
- // 9号字
- .ql-size-9px{font-size: 18rpx;}
- // 12号字
- .ql-size-12px{font-size: 24rpx;}
- // 14号字
- .ql-size-14px{font-size: 28rpx;}
- // 16号字
- .ql-size-16px{font-size: 32rpx;}
- // 18号字
- .ql-size-18px{font-size: 36rpx;}
- // 24号字
- .ql-size-24px{font-size: 48rpx;}
- // 32号字
- .ql-size-32px{font-size: 64rpx;}
- // 单倍行距
- .line-height-lineHeight1{line-height: 1;}
- // 1.5倍行距
- .line-height-lineHeight1-5{line-height: 1.5;}
- // 2倍行距
- .line-height-lineHeight2{line-height: 2;}
- // 2.5倍行距
- .line-height-lineHeight2-5{line-height: 2.5;}
- // 3倍行距
- .line-height-lineHeight3{line-height: 3;}
- }
- /***** 按钮 *****/
- // 按钮
- .phone-blue-btn[type='default']{background-color: $uni-primary;color: #fff;}
- .phone-white-btn[type='default']{background-color: #fff;color: $uni-primary;border: 1rpx solid $uni-primary;}
- .phone-white-btn[type='default']:after{display: none;}
- .phone-blue-btn[type='default']:hover{background-color: $lli-btn-hover;color: #fff;}
- /***** 试题---题干 *****/
- .phone-shiti-question{
- font-size: 32rpx;color: #333;line-height: 1.6;margin-bottom: 24rpx;
- text-align: justify;word-wrap: break-word;word-break: break-all;display: block;@include ezy-rich-text;
- display: flex;flex-direction: row;justify-content: flex-start;
- .question-num{flex-shrink: 0;}
- }
- /***** 单选题 *****/
- .phone-danxuan-box{
- margin: 0 10rpx;overflow: auto;height: calc(100vh - 440rpx - var(--status-bar-height));
- .danxuan-option-box{
- width: 100%;line-height:96rpx;border-radius: 8px;margin-bottom: 20rpx;
- font-size: 32rpx;color: #666;box-sizing: border-box;padding: 10rpx 24rpx;
- display: flex;
- .option-change{
- width: 48rpx;height: 48rpx;line-height: 48rpx;box-sizing: border-box;
- flex-shrink: 0;border-radius: 50%;border: 1rpx solid;margin-right: 20rpx;
- display: flex;align-items: center;justify-content: center;
- }
- .option-question{font-size: 32rpx;line-height: 1.6;@include ezy-rich-text;
- text-align: justify;word-wrap: break-word;word-break: break-all;display: block;}
- }
- .danxuan-option-box.active .option-change{color: #FFF;background-color:#6186fb;border-color:#6186fb;}
- .danxuan-option-box.showError .option-change{color: #FFF;background-color:#ff5757;border-color:#ff5757;}
- .danxuan-option-box.active_right .option-change{color: #FFF;background-color:#1ac136;border-color:#1ac136;}
- }
- /***** 多选题 *****/
- .phone-duoxuan-box{
- margin: 0 10rpx;overflow: auto;height: calc(100vh - 440rpx - var(--status-bar-height));
- .duoxuan-option-box{
- width: 100%;line-height:96rpx;border-radius: 8px;margin-bottom: 20rpx;
- font-size: 32rpx;color: #666;box-sizing: border-box;padding: 10rpx 24rpx;
- display: flex;
- .option-change{
- width: 48rpx;height: 48rpx;line-height: 48rpx;box-sizing: border-box;
- flex-shrink: 0;border: 1rpx solid;margin-right: 20rpx;
- display: flex;align-items: center;justify-content: center;
- }
- .option-question{font-size: 32rpx;line-height: 1.6;@include ezy-rich-text;
- text-align: justify;word-wrap: break-word;word-break: break-all;display: block;}
- }
- // active background-color:#0589e9;
- .duoxuan-option-box.active .option-change{color: #FFF;background-color:#6186fb;border-color:#6186fb;}
- .duoxuan-option-box.showError .option-change{color: #FFF;background-color:#ff5757;border-color:#ff5757;}
- .duoxuan-option-box.active_right .option-change{color: #FFF;background-color:#1ac136;border-color:#1ac136;}
- }
- /***** 判断题 *****/
- .phone-panduan-box{
- margin: 0 10rpx;overflow: auto;height: calc(100vh - 440rpx - var(--status-bar-height));
- .panduan-option-box{
- width: 100%;line-height:96rpx;font-size: 32rpx;color: #666;margin: 32rpx 0;
- .option-question{font-size: 32rpx;line-height: 1.6;margin-bottom: 20rpx;padding: 10rpx 24rpx;box-sizing: border-box;
- text-align: justify;word-wrap: break-word;word-break: break-all;display: flex;align-items: center;
- uni-radio{display: flex;align-items: center;}
- .uni-radio-input{margin-right: 20rpx;}
- }
- }
- // active background-color:#0589e9;
- .option-question.active .uni-radio-input{color: #FFF;background-color:#6186fb!important;border-color:#6186fb!important;}
- .option-question.showError .uni-radio-input{color: #FFF;background-color:#ff5757!important;border-color:#ff5757!important;}
- .option-question.active_right .uni-radio-input{color: #FFF;background-color:#1ac136!important;border-color:#1ac136!important;}
- }
- /***** 填空题 *****/
- .phone-tiankong-box{
- overflow: auto;height: calc(100vh - 440rpx - var(--status-bar-height));
- .tiankong-option-box{
- padding:0 40rpx;box-sizing: border-box;margin-bottom: 36rpx;
- .option-question{font-size: 30rpx;color: #333;}
- .option-question-text{font-size: 30rpx;color: #333;margin-top: 16rpx;background: #f0f0f0;padding: 10px;border-radius: 4px;}
- }
-
- }
- /***** 简答题 *****/
- .phone-jianda-box{
- overflow: auto;height: calc(100vh - 440rpx - var(--status-bar-height));
- .jianda-textarea-box{
- width: 90%;margin: 0 auto;height: 200rpx;border-radius: 6rpx;
- border: 1rpx solid #ccc;padding: 10rpx 24rpx;box-sizing: border-box;
- }
- }
- /***** 阅读题 *****/
- .phone-yuedu-box{
- overflow: auto;height: calc(100vh - 440rpx - var(--status-bar-height));
- display: flex;flex-direction: column;position: relative;
- .yuedu-swiper-box{flex: 1;}
- .yuedu-swiper-content{overflow-y: auto;padding: 32rpx 52rpx;box-sizing: border-box;}
- .phone-danxuan-box,.phone-duoxuan-box,.phone-panduan-box,.phone-tiankong-box,.phone-jianda-box{
- height: auto;
- }
- .yuedu-left-jt,.yuedu-right-jt{
- width: 60rpx;height: 60rpx;position: absolute;top: 50%;display: flex;align-items: center;justify-content: center;}
- .yuedu-left-jt{left: 0;transform: rotate(180deg);}
- .yuedu-right-jt{right: 0;}
- .yuedu-left-jt::before,.yuedu-right-jt::before{
- content:'';width: 27rpx;height: 44rpx;display: block;
- background-image: url("@/static/images/exam/yuedu-jt-icon.svg");@include ezy-no-repeat-cover();
- }
- .yuedu-left-jt.disable,.yuedu-right-jt.disable{opacity: 0.35;}
- .button-next-tip{
- width: 320rpx;position: absolute;bottom:50%;right:0;pointer-events: none;z-index: 2;font-size: 28rpx;line-height: 1.5;
- background: #646566;color: #fff;border-radius: 10rpx;margin: 0;padding:24rpx 24rpx;text-align: center;
- &::before{
- content: '';bottom: -40rpx;display:inline-block; border-width:10px;
- border-style:solid dashed dashed; border-color:#646566 transparent transparent ;
- font-size:0; line-height:0;right: 12px;position: absolute;}
- }
- }
- /***** 答题卡 *****/
- /* .answer-card-popup{
- height: 100vh;display: flex;flex-direction: column;
- .card-navBar-box{
- background-color: #0856e6;
- .icon-title-navBar-box{background-color: #0856e6;}
- .nav-bar-title{color: #fff!important;}
- .nav-bar-icon{background-image: url("@/static/images/common/nav-white-bar-jt.svg");}
-
- }
- .card-content-box{
- flex: 1;overflow-y: auto;padding: 0 24rpx;
- .answer-card-content{display: flex;flex-flow: row wrap;}
- .paragraph-title {color: #666;width: 100%;font-size: 32rpx;padding: 18rpx;
- padding-bottom: 3rpx;box-sizing: border-box;}
- .paragraph-qa{
- width: 80rpx;height: 80rpx;border-radius: 50%;border: 1rpx solid #ccc;
- text-align: center;line-height: 76rpx;box-sizing: border-box;margin: 30rpx;
- }
- .paragraph-qa-block-mark{background-color: #FF9100;color: #fff;border-color:#FF9100;}
- }
- .answer-card-btn-box{
- display: flex;border-top: 1rpx solid #E3E3E3;background-color: #FEF0F0;line-height: 1;
- .card-btn{width: 50%;text-align: center;font-size: 32rpx;color: #333;padding: 32rpx 0;}
- .card-jj-btn{background-color: #0856e6;color: #FFF;}}
- } */
- /***** 考试须知 *****/
- .ksxz-dialog{
- width: 640rpx;font-size: 28rpx;color: #333;max-height: 70vh;overflow: auto;border-radius: 20rpx;background-color: #fff;
- .ksxz-title-row{
- background-color: #F0F0F0;position: relative;text-align: center;padding: 20rpx 0;font-size: 32rpx;
- }
- .ksxz-content-box{
- padding: 24rpx;max-height: 640rpx;overflow-y: auto;
- >view{margin-bottom: 12rpx;line-height: 1.6;color: #333;font-size: 32rpx;}
- .ksms-row{margin-bottom: 12rpx;}
- .ksms-intro{color: #666;}
- .ksxz-img-box{
- text-align: center;
- img{max-width: 100%;max-height: 260rpx;}
- }
- }
- .ksxz-btn-box{
- display: flex;justify-content: center;
- .ksxz-btn{width: 160rpx;background: #0856e6;border: 1rpx solid #1989fa;color: #fff;text-align: center;
- padding: 10rpx;font-size: 28rpx;margin:30rpx 16rpx;border-radius: 4rpx;}
- }
-
- }
- /*****音频播放器 author: TX date:2024-06-24*****/
- .MtaBusAudioPlayerBox{
- position: relative;
- .st-aplayer{
- //position: relative;
- }
- .audio-mask {
- width: 30px;
- height: 30px;
- background: transparent;
- z-index: 99;
- position: absolute;
- top: 10px;
- right: 20px;
- }
- }
- /***** 默认头像 *****/
- .phone-default-userImg{
- width: 120rpx;height: 120rpx;margin: 0 auto;
- background-image: url("@/static/images/my/user-default-img.png");@include ezy-no-repeat-cover();}
- /***** 通用弹窗 *****/
- .phone-common-dialog{
- width: 660rpx;border-radius: 12rpx;background-color: #fff;padding-top: 24rpx;box-sizing: border-box;position: relative;
- .common-title{padding-top: 24rpx;font-size: 34rpx;color: #333;text-align: center;}
- .common-content{font-size: 32rpx;color: #666;margin:32rpx 48rpx 48rpx;line-height: 1.6;}
- .common-input-box{
- padding: 32rpx 0 20rpx;
- .common-input-row{display: flex;align-items: center;margin-bottom: 24rpx;}
- .common-label-require{color: #ff0101;margin-right: 6rpx;width:16rpx;display: inline-block;flex-shrink: 0;}
- .common-input-label{width: 200rpx;line-height:70rpx;font-size: 28rpx;color: #333;text-align: right;}
- .common-input,.common-input-margin{
- height: 70rpx;min-height: 70rpx;padding: 20rpx;box-sizing: border-box;margin-right: 30rpx;
- border: 1rpx solid #f0f0f0;border-radius: 10rpx;display: block;flex: 1;font-size: 28rpx;}
- .common-input-margin{margin:0 46rpx 24rpx 46rpx;}
- .common-select{margin-right: 42rpx;}
- }
- .content-center-class{text-align: center;}
- .content-left-class{text-align: left;}
- .content-margin-bottom{margin-bottom: 20rpx;}
- .common-btn-box{display: flex;flex-direction: row;border-top-color: #f5f5f5;border-top-style: solid;border-top-width: 1px;}
- .not-confirm-btn,.confirm-btn{height: 90rpx;line-height: 90rpx;flex:1;text-align: center;font-size: 30rpx;}
- .not-confirm-btn{color: #666;}
- .confirm-btn{border-left-color: #f0f0f0;border-left-style: solid;border-left-width: 1px;color: $uni-primary;}
- .code-img{width: 500rpx;height: 500rpx;display: block;margin: 0 auto;}
- }
- /*****分类组件 author: TX date:2024-06-24*****/
- .lli-status-box{
- display: flex;justify-content: space-around;background: #fff;
- border-bottom:1px solid #f2f1f2;padding: 15px 10px;
- .status-item{text-align: center;color: #333333;position: relative;}
- .status-item.click:before{content: '';position: absolute;height: 2px;width: 80%;bottom: -15px;font-size: 14px;
- background-color: $uni-primary;
- left: 10%;border-radius: 2px;}
- }
- /*****开发中,敬请期待 author: TX date:2024-06-25*****/
- .lli-develop-expect-page{
- height: 100vh;display: flex;align-items: center;justify-content: center;font-size: 36rpx;color: #666;
- }
|