| 1234567891011121314151617181920212223242526272829303132333435363738394041424344454647484950515253545556575859606162636465666768697071727374757677787980818283848586878889909192939495969798991001011021031041051061071081091101111121131141151161171181191201211221231241251261271281291301311321331341351361371381391401411421431441451461471481491501511521531541551561571581591601611621631641651661671681691701711721731741751761771781791801811821831841851861871881891901911921931941951961971981992002012022032042052062072082092102112122132142152162172182192202212222232242252262272282292302312322332342352362372382392402412422432442452462472482492502512522532542552562572582592602612622632642652662672682692702712722732742752762772782792802812822832842852862872882892902912922932942952962972982993003013023033043053063073083093103113123133143153163173183193203213223233243253263273283293303313323333343353363373383393403413423433443453463473483493503513523533543553563573583593603613623633643653663673683693703713723733743753763773783793803813823833843853863873883893903913923933943953963973983994004014024034044054064074084094104114124134144154164174184194204214224234244254264274284294304314324334344354364374384394404414424434444454464474484494504514524534544554564574584594604614624634644654664674684694704714724734744754764774784794804814824834844854864874884894904914924934944954964974984995005015025035045055065075085095105115125135145155165175185195205215225235245255265275285295305315325335345355365375385395405415425435445455465475485495505515525535545555565575585595605615625635645655665675685695705715725735745755765775785795805815825835845855865875885895905915925935945955965975985996006016026036046056066076086096106116126136146156166176186196206216226236246256266276286296306316326336346356366376386396406416426436446456466476486496506516526536546556566576586596606616626636646656666676686696706716726736746756766776786796806816826836846856866876886896906916926936946956966976986997007017027037047057067077087097107117127137147157167177187197207217227237247257267277287297307317327337347357367377387397407417427437447457467477487497507517527537547557567577587597607617627637647657667677687697707717727737747757767777787797807817827837847857867877887897907917927937947957967977987998008018028038048058068078088098108118128138148158168178188198208218228238248258268278288298308318328338348358368378388398408418428438448458468478488498508518528538548558568578588598608618628638648658668678688698708718728738748758768778788798808818828838848858868878888898908918928938948958968978988999009019029039049059069079089099109119129139149159169179189199209219229239249259269279289299309319329339349359369379389399409419429439449459469479489499509519529539549559569579589599609619629639649659669679689699709719729739749759769779789799809819829839849859869879889899909919929939949959969979989991000100110021003100410051006100710081009101010111012101310141015101610171018101910201021102210231024102510261027102810291030103110321033103410351036103710381039104010411042104310441045104610471048104910501051105210531054105510561057105810591060106110621063106410651066106710681069107010711072107310741075107610771078107910801081108210831084108510861087108810891090109110921093109410951096109710981099110011011102110311041105110611071108110911101111111211131114111511161117111811191120112111221123112411251126112711281129113011311132113311341135113611371138113911401141114211431144114511461147114811491150115111521153115411551156115711581159116011611162116311641165116611671168116911701171 |
- // scroll
- ::-webkit-scrollbar {
- width: 5px;
- height: 5px;
- background: hsla(0, 0%, 100%, 0.6);
- }
- ::-webkit-scrollbar-track {
- border-radius: 0;
- }
- ::-webkit-scrollbar-thumb {
- border-radius: 0;
- background-color: rgba(95,95,95,.4);
- transition: background-color .15s;
- &:hover {
- background-color: rgba(95,95,95, .7);
- }
- }
- // ie等滚动条遮住元素
- html, body {
- -ms-overflow-style: scrollbar;
- }
- #cnzz_stat_icon_1267002346 {
- display: none;
- }
- // common style
- .clearfix {
- &:before, &:after {
- display: table;
- content: " ";
- }
- &:after {
- clear: both;
- }
- }
- .list-unstyled {
- padding-left: 0;
- list-style: none;
- }
- .list-inline li {
- display: inline-block;
- padding-left: 5px;
- padding-right: 5px;
- }
- .hide {
- opacity: 0;
- visibility: hidden;
- pointer-events: none;
- }
- .pull-left {
- float: left;
- }
- .pull-right {
- float: right;
- }
- .container {
- width: $container-width;
- margin: 0 auto;
- }
- .dl-horizontal dt {
- float: left;
- width: 160px;
- overflow: hidden;
- clear: left;
- text-align: right;
- text-overflow: ellipsis;
- white-space: nowrap;
- }
- .dl-horizontal dd {
- display: block;
- margin-left: 180px;
- &:before, &:after {
- display: table;
- content: " ";
- }
- &:after {
- clear: both;
- }
- }
- .dropdown {
- position: relative;
- .dropdown-toggle {
- cursor: pointer;
- }
- .dropdown-menu {
- position: absolute;
- left: 0;
- top: 100%;
- min-width: 100%;
- display: none;
- background-color: $white;
- z-index: 100;
- }
- &:hover {
- .dropdown-menu {
- display: block;
- }
- }
- }
- // button
- .btn {
- display: inline-block;
- height: 36px;
- line-height: 1;
- padding: 3px 12px;
- margin: 0;
- border: 1px solid transparent;
- text-align: center;
- white-space: nowrap;
- vertical-align: middle;
- -ms-touch-action: manipulation;
- touch-action: manipulation;
- cursor: pointer;
- -webkit-user-select: none;
- -moz-user-select: none;
- -ms-user-select: none;
- &.btn-default {
- color: $text;
- background-color: $white;
- border-color: $dividers;
- }
- &.btn-primary {
- color: $white;
- background-color: $primary;
- border-color: $primary;
- }
- }
- // form
- .form-control {
- -webkit-appearance: none;
- -moz-appearance: none;
- appearance: none;
- background-color: $white;
- background-image: none;
- border: $border;
- color: $text;
- display: inline-block;
- font-size: inherit;
- height: 36px;
- line-height: 1;
- outline: none;
- padding: 3px 10px;
- width: 100%;
- &.input-primary {
- border-color: $primary;
- }
- }
- .input-group {
- position: relative;
- display: inline-table;
- width: 100%;
- border-collapse: separate;
- .form-control, .input-group-btn {
- display: table-cell;
- }
- .input-group-addon, .input-group-btn {
- position: relative;
- width: 1px;
- white-space: nowrap;
- vertical-align: middle;
- }
- .form-control {
- position: relative;
- z-index: 2;
- float: left;
- width: 100%;
- }
- .input-group-btn {
- .btn {
- position: relative;
- }
- }
- }
- // vue animate
- .slide-down-enter-active, .slide-down-leave-active {
- transition: all .4s cubic-bezier(0, 1.2, 1, 0.5);
- opacity: .7;
- transform: translate3d(0, 4em, 0);
- }
- .slide-down-enter, .slide-down-leave-active {
- opacity: .3;
- transform: translate3d(0, 4em, 0);
- }
- .slide-left-enter-active, .slide-left-leave-active {
- transition: all .2s cubic-bezier(0, 1.2, 1, 0.5);
- opacity: .5;
- transform: translate3d(2em, 0, 0);
- }
- .slide-left-enter, .slide-left-leave-active {
- opacity: .3;
- transform: translate3d(2em, 0, 0);
- }
- .slide-right-enter-active, .slide-right-leave-active {
- transition: all .4s cubic-bezier(0, 1.2, 1, 0.5);
- opacity: .5;
- transform: translate3d(5em, 0, 0);
- }
- .slide-right-enter, .slide-right-leave-active {
- opacity: .3;
- transform: translate3d(5em, 0, 0);
- }
- .fade-enter-active, .fade-leave-active {
- transition: opacity .25s
- }
- .fade-enter, .fade-leave-active {
- opacity: 0
- }
- .fade-move {
- transition: transform .25s;
- }
- .page-enter-active, .page-leave-active {
- transition: opacity .25s
- }
- .page-enter, .page-leave-active {
- opacity: 0
- }
- .module-enter-active, .module-leave-active {
- transition: opacity .25s
- }
- .module-enter, .module-leave-active {
- opacity: 0
- }
- .aside-enter-active {
- transition: opacity .25s cubic-bezier(1, -1.17, 1, -1.17);
- }
- .aside-leave-active {
- transition: opacity 0s
- }
- .aside-enter, .aside-leave-active {
- opacity: 0
- }
- // 轮播
- .swiper-pagination-bullet{
- width: 12px !important;
- height: 12px !important;
- opacity: 1 !important;
- background: none !important;
- border: #fff 1px solid;
- }
- .swiper-pagination-bullet.swiper-pagination-bullet-active{
- background: #fff !important;
- }
- .swiper-pagination-fraction, .swiper-pagination-custom, .swiper-container-horizontal > .swiper-pagination-bullets{
- bottom: 20px !important;
- }
- .swiper-button-prev i,.swiper-button-next i{
- font-size: 40px;
- color: #fff;
- opacity: 1;
- font-weight: 900;
- text-shadow: 2px 0px 5px #333;
- }
- .swiper-button-prev,.swiper-button-next{
- background: none !important;
- width: 40px !important;
- height: 80px !important;
- line-height: 80px;
- margin-top: -45px !important;
- opacity: .6;
- }
- .swiper-button-prev:hover,.swiper-button-next:hover{
- opacity: 1;
- }
- .menu-title{
- line-height: 30px;
- font-size: 14px;
- margin-bottom: 10px;
- }
- .menu-title a {
- color: #5078cb;
- font-size: 14px;
- }
- /* 产品分类调整*/
- .el-tree {
- border: none !important;
- /*min-height: 300px;*/
- }
- .el-tree--highlight-current .el-tree-node.is-current>.el-tree-node__content,.el-tree-node:hover{
- background: none !important;
- }
- .el-tree-node__content:hover{
- background: none !important;
- }
- .el-tree-node__content:hover span{
- color: #5078cb;
- }
- .is-current>div.el-tree-node__content:first-child{
- color: #5078cb;
- }
- .el-pagination .el-pager li.active{
- background-color: #5078cb;
- border-color: #337ab7;
- }
- .el-tree-node__content .el-tree-node__expand-icon{
- font-family: "iconfont" !important;
- font-size: 14px;
- font-style: normal;
- -webkit-font-smoothing: antialiased;
- width: inherit;
- height: inherit;
- border: inherit;
- font-weight: bold;
- text-shadow: -1px 0px 0 #333;
- margin-right: 3px !important;
- }
- div.el-tree-node__content{
- line-height: 36px;
- height: 36px;
- }
- /*.el-tree-node__children .el-tree-node__content{
- padding-left: 8px !important;
- }*/
- .el-tree-node__expand-icon.is-leaf{
- visibility: hidden;
- }
- .el-tree-node__expand-icon:before{
- content: "\E621";
- }
- .el-pagination{
- margin-bottom: 15px;
- }
- // 留言板弹出框
- .dialog .el-dialog__header{
- display: none;
- }
- .dialog .el-dialog__body{
- padding: 0 !important;
- }
- /*留言板查看*/
- .messageBoard .img-item .preview {
- display: block;
- position: absolute;
- top: 0;
- right: 0;
- z-index: 1000;
- width: 82px;
- height: 70px;
- overflow: hidden;
- }
- .messageBoard .img-item .preview img.previewImage{
- //background: #fff url('/images/all/msg_uploadPic.png')no-repeat center center;
- //max-height: 68px;
- //max-width: 80px;
- //line-height: 68px;
- //cursor: pointer;
- max-height: 82px;
- max-width: 70px;
- cursor: pointer;
- line-height: 70px;
- overflow: hidden;
- //width:100%;
- //height:0;
- //padding-bottom: 100%;
- //overflow:hidden;
- //background-position: center center;
- //background-repeat: no-repeat;
- //-webkit-background-size:cover;
- //-moz-background-size:cover;
- //background-size:cover;
- }
- .messageBoard .img-item input[type="file"] {
- position: absolute;
- top: 0;
- left: 0;
- width: 100%;
- height: 100%;
- text-align: center;
- opacity: 0;
- line-height: 70px;
- display: inline-block !important;
- }
- .messageBoard .img-item .hover-show{
- position: absolute;
- z-index: 1001;
- width: 82px;
- height: 70px;
- opacity: 0;
- top: 0;
- left: 0;
- background: rgba(0, 0, 0, 0.5);
- }
- .messageBoard .img-item:hover .hover-show{
- opacity: 1;
- }
- .messageBoard .img-item .hover-show .delete{
- position: absolute;
- top: 3px;
- right: 3px;
- padding: 0;
- width: 20px;
- height: 20px;
- float: right;
- text-align: center;
- }
- .messageBoard .img-item .hover-show .delete i{
- color: #fff;
- font-size: 16px;
- }
- .messageBoard .img-item .hover-show a{
- display: inline-block;
- width: 100%;
- height: 70px;
- font-size: 14px;
- color: #fff;
- text-align: center;
- line-height: 70px;
- }
- .messageBoard .img-item .hover-show a i{
- margin-right: 5px;
- font-size: 16px;
- }
- .messageBoard .img-item #image-box .x-floating-wrap{
- position: fixed;
- z-index: 99998;
- background: #000;
- top: 0;
- left: 0;
- width: 680px;
- height: 100%;
- opacity: 0.5;
- }
- /*查看大图*/
- #image-box .x-floating-wrap,.image-box .x-floating-wrap {
- position: fixed;
- z-index: 99998;
- background: #000;
- top: 0;
- left: 0;
- width: 100%;
- height: 100%;
- opacity: 0.5;
- }
- #image-box,.image-box{
- display:table; overflow:hidden; margin-left:50px; _position:relative; width: 1200px;height: 700px;
- position: fixed;
- top: 50%;
- margin-top: -350px;
- left: 50%;
- margin-left: -600px;
- z-index: 2020;
- }
- #image-box .x-floating,.image-box .x-floating {
- vertical-align:middle !important;
- display:table-cell;
- text-align:center;
- _position:absolute;
- _top:50%; _left:50%;
- top: inherit !important;
- left: inherit !important;
- }
- #image-box .x-floating img ,.image-box .x-floating img {
- margin: auto auto;
- max-width: 970px !important;
- max-height: 600px !important;
- -webkit-user-select: none;
- -moz-user-select: none;
- -ms-user-select: none;
- user-select: none;
- }
- #image-box .x-floating-wrap,.image-box .x-floating-wrap{
- z-index: 1000000 !important;
- }
- #item-content{
- color:#fff; display:inline-block; _position:relative; _top:-50%; _left:-50%;
- position: relative;
- z-index: 10000000;
- }
- #item-content div.x-close-wrap{
- position: absolute;
- right: -15px;
- line-height: 30px;
- top: -13px;
- color: #fff;
- width: 35px;
- height: 35px;
- background: rgba(0, 0, 0, 0.5);
- border-radius: 100%;
- opacity: 1;
- margin: 0;
- z-index: 100000;
- min-height: initial;
- text-align: center;
- }
- #item-content div.x-close-wrap a{
- position: relative;
- left: 0;
- bottom: 0;
- font-size: 34px;
- color: #fff;
- }
- #item-content div.x-close-wrap a:hover{
- color: #fff !important;
- }
- #item-content div.x-close-wrap:hover{
- cursor: pointer;
- opacity: .9;
- }
- #item-content div.x-close-wrap img{
- width: 30px !important;
- height: 30px !important;
- }
- #item-content .img{
- position: relative;
- z-index: 10;
- }
- /*查看大图*/
- #image-box .x-floating-wrap,.image-box .x-floating-wrap {
- position: fixed;
- z-index: 99998;
- background: #000;
- top: 0;
- left: 0;
- width: 100%;
- height: 100%;
- opacity: 0.5;
- }
- #image-box,.image-box{
- display:table; overflow:hidden; margin-left:50px; _position:relative; width: 1200px;height: 700px;
- position: fixed;
- top: 50%;
- margin-top: -350px;
- left: 50%;
- margin-left: -600px;
- z-index: 2000;
- }
- #image-box .x-floating,.image-box .x-floating {
- vertical-align:middle !important;
- display:table-cell;
- text-align:center;
- _position:absolute;
- _top:50%; _left:50%;
- top: inherit !important;
- left: inherit !important;
- }
- #image-box .x-floating img ,.image-box .x-floating img {
- margin: auto auto;
- max-width: 970px !important;
- max-height: 600px !important;
- -webkit-user-select: none;
- -moz-user-select: none;
- -ms-user-select: none;
- user-select: none;
- }
- #image-box .x-floating-wrap,.image-box .x-floating-wrap{
- z-index: 1000000 !important;
- }
- #item-content{
- color:#fff; display:inline-block; _position:relative; _top:-50%; _left:-50%;
- position: relative;
- z-index: 10000000;
- }
- #item-content div.x-close-wrap{
- position: absolute;
- right: -15px;
- line-height: 30px;
- top: -13px;
- color: #fff;
- width: 35px;
- height: 35px;
- background: rgba(0, 0, 0, 0.5);
- border-radius: 100%;
- opacity: 1;
- margin: 0;
- z-index: 100000;
- min-height: initial;
- text-align: center;
- }
- #item-content div.x-close-wrap a{
- position: relative;
- left: 0;
- bottom: 0;
- font-size: 34px;
- color: #fff;
- }
- #item-content div.x-close-wrap a:hover{
- color: #fff !important;
- }
- #item-content div.x-close-wrap:hover{
- cursor: pointer;
- opacity: .9;
- }
- #item-content div.x-close-wrap img{
- width: 30px !important;
- height: 30px !important;
- }
- #item-content .img{
- position: relative;
- z-index: 10;
- }
- .componentDetail .el-dialog--tiny{
- width: 320px !important;
- }
- .componentDetail .el-dialog__body{
- padding: 14px !important;
- }
- a {
- color: #2d8cf0;
- background: 0 0;
- text-decoration: none;
- outline: 0;
- cursor: pointer;
- //transition: color .2s ease;
- }
- .select-adder {
- background:url("../../static/images/all/xiala.png") right no-repeat #fff !important;
- background-position-x: 100% !important;
- }
- select {
- /*将默认的select选择框样式清除*/
- appearance:none;
- -moz-appearance:none;
- -webkit-appearance:none;
- -ms-appearance:none;
- }
- select::-ms-expand {
- display: none;
- }
- /*input number 箭头*/
- input::-webkit-outer-spin-button,
- input::-webkit-inner-spin-button {
- -webkit-appearance: none;
- }
- input[type="number"]{
- -moz-appearance: textfield;
- }
- .banner-img {
- display: block;
- margin: 10px auto;
- }
- .fl {
- float: left !important;
- }
- .fr {
- float: right !important;
- }
- /*new 标签*/
- @keyframes newAnimate {
- 0% {
- transform: translate(0px, 0px);
- }
- 50% {
- transform: translate(0px, -3px);
- }
- 100% {
- transform: translate(0px, 0px);
- }
- }
- img.new-animate{
- position: relative;
- top: -7px;
- animation: newAnimate 1s infinite;
- }
- /*提示横条*/
- .com-result{
- position: relative;
- height: 30px;
- width: 100%;
- line-height: 30px;
- text-align: center;
- background: #fef6f2;
- border: 1px solid #ec854d;
- overflow: hidden ;
- }
- .com-result .text{
- width: 100%;
- text-align: center;
- font-size: 14px;
- color: #f15601;
- }
- .com-result .text em{
- margin-right: 3px;
- font-style: normal;
- }
- .com-result .text a {
- color: #5078cb;
- }
- .com-result .close-tip{
- position: absolute;
- right: 0;
- padding-right: 10px;
- font-size: 20px;
- font-weight: bold;
- color: #ef1d1d;
- line-height: 28px;
- }
- .clear-float {
- clear: both;
- }
- .inline-block {
- display: inline-block;
- vertical-align: middle;
- }
- .text-ellipse {
- overflow: hidden;
- text-overflow: ellipsis;
- white-space: nowrap;
- }
- //企业简介查看更多
- .dialog-description{
- margin:0 auto;
- width: 100%;
- text-align: center;
- div.el-dialog{
- width: 814px !important;
- //height: 252px;
- .el-dialog__header{
- display: none;
- }
- .el-dialog__body {
- width: 100%;
- height: 100%;
- padding: 0!important;
- .header{
- overflow: hidden;
- padding: 0 15px;
- width: 100%;
- height: 50px;
- line-height: 50px;
- border-bottom: 1px solid #ddd;
- span:first-child {
- position: relative;
- float: left;
- font-size: 14px;
- color: #666;
- font-weight: bold;
- img{
- margin-right: 5px;
- }
- }
- span:last-child {
- float: right;
- margin-top: 10px;
- font-size: 32px;
- }
- }
- .content {
- padding: 15px 0;
- margin: 0 auto;
- width: 768px;
- height: auto;
- p{
- text-align: left;
- font-size: 12px;
- font-weight: normal;
- line-height: 19px;
- letter-spacing: 0;
- color: #333333;
- }
- }
- }
- }
- }
- //资质证明
- .certificate {
- div.el-dialog.el-dialog--tiny{
- width: 1070px !important;
- }
- }
- //产品展示分页器
- .recommend-fragment {
- background: #fff;
- .swiper-pagination {
- bottom: 8px!important;
- li.swiper-pagination-bullet{
- width: 8px!important;
- height: 8px!important;
- display: inline-block;
- border-radius: 100%;
- background: #9c9c9c !important;
- opacity: 0.2;
- }
- li.swiper-pagination-bullet.swiper-pagination-bullet-active{
- width: 10px!important ;
- height: 10px!important ;
- background-color: #4d4d4d!important ;
- }
- }
- }
- #goods-list-fragment {
- .content-adv {
- margin: 15px 0;
- width: 100%;
- padding-right: 10px;
- overflow: hidden;
- position:relative;
- .title-adv{
- position: absolute;
- top: 5px;
- left: 45px;
- float: left;
- span{
- font-size: 16px;
- font-weight: bold;
- color: #333;
- }
- }
- }
- }
- //原厂搜索
- #store-list table .search-content-pc{
- position: relative;
- float: left;
- padding-left: 460px;
- width: auto;
- }
- #store-list table .search-content-pc .form-control{
- margin-top: 0;
- width: 283px;
- height: 28px;
- background-color: #ffffff;
- border-radius: 3px;
- border: solid 1px #2496f1;
- }
- #store-list table .search-content-pc .input-group-btn{
- //position: absolute;
- //top: 0;
- //right: 0px;
- }
- #store-list table .search-content-pc .input-group-btn button{
- top: 0;
- width: 69px;
- height: 28px;
- font-size: 14px;
- color: #fff;
- background-color: #2496f1;
- outline: none;
- border: none;
- }
- #store-list a .btn {
- width: 110px;
- height: 28px;
- background-color: #ffffff;
- border-radius: 3px;
- border: solid 1px #2496f1;
- outline: none;
- }
- #store-list .search-content-pc ul{
- left: 461px;
- }
- //品牌索引
- .recommend-brand .brand-content .brand-index-tab .index-group:nth-child(5) a{
- width: 33px!important;
- }
- .recommend-brand .brand-content .brand-index-tab .index-group:nth-child(6){
- width: 100px!important;
- margin: 0 0 0 10px!important;
- }
- .recommend-brand .brand-content .brand-index-tab .index-group:nth-child(6) a{
- width: 100px!important;
- }
- .block {
- display: block;
- }
- //求购搜索
- .apply-info .apply-info-title .search .search-content-pc {
- position: relative;
- z-index: 0;
- input {
- width: 283px!important;
- height: 32px;
- border: 1px solid #2496f1;
- line-height: 32px;
- font-size: 13px;
- margin-top: 14px;
- border: {
- top-right-radius: 0;
- bottom-right-radius: 0;
- }
- }
- span.input-group-btn .btn{
- top: 7px;
- display: inline-block;
- width: 69px;
- color: #fff;
- background: #2496f1;
- text-align: center;
- margin: 0 6px 0 -1px;
- border: {
- top-right-radius: 3px;
- bottom-right-radius: 3px;
- }
- cursor: pointer;
- }
- ul{
- left: 0 !important ;
- top: 46px !important ;
- }
- }
- //进度条
- .progress_bar .el-progress{
- width: 511px;
- height: 15px;
- border-radius: 7px;
- }
- .progress_bar .el-progress-bar__inner{
- background: #ffbe04;
- }
- .progress_bar .el-progress-bar__innerText{
- font-size: 16px;
- color: #0083c5;
- }
- //未中奖 询价不够
- .no-prise .el-dialog--small{
- top: 30% !important;
- width: 682px;
- height: 328px;
- background-color: #ffffff;
- border-radius: 13px;
- }
- .no-prise .el-dialog--small .el-dialog__body{
- position: relative;
- }
- .no-prise .el-dialog--small .el-dialog__header {
- display: none;
- }
- .no-prise .dialog-content img.hua{
- position: absolute;
- top: -170px;
- left: 50%;
- margin-left: -218px;
- }
- .no-prise .dialog-content p{
- margin-top: 100px;
- font-size: 36px;
- color: #846244;
- }
- .no-prise .dialog-content .close{
- position: absolute;
- top: 0px;
- right: 0px;
- width: 30px;
- height: 30px;
- line-height: 23px;
- text-align: center;
- font-size: 30px;
- background: rgba(0,0,0,.9);
- border-radius: 50%;
- }
- .no-prise .el-dialog__footer {
- margin: 0 auto;
- text-align: center;
- }
- .no-prise .dialog-footer a{
- display: inline-block;
- width: 278px;
- height: 57px;
- line-height: 57px;
- text-align: center;
- font-size: 36px;
- color: #ffffff;
- background-color: #f29844;
- border-radius: 28px;
- }
- //中奖提示
- .get-prise .el-dialog--small {
- height: auto;
- }
- .get-prise .dialog-content p{
- font-size: 28px;
- text-align: left;
- }
- .get-prise .qr{
- padding: 0 90px 0 20px;
- overflow: hidden
- }
- .get-prise .qr p{
- float: left;
- width: 300px;
- margin-top: 20px;
- text-align: left;
- }
- .get-prise .qr img{
- float: right;
- height: 100px;
- }
- .get-prise .dialog-footer a{
- margin-top: 10px;
- }
- //查看中奖产品
- .look-prise .el-dialog--small{
- width: 825px;
- height: auto;
- }
- .look-prise .btn-tip{
- margin: 43px auto 0;
- width: 278px;
- height: 57px;
- line-height: 57px;
- text-align: center;
- font-size: 36px;
- color: #fff;
- background-color: #f29844;
- border-radius: 28px
- }
- .look-prise .prise-tab{
- overflow: hidden;
- margin: 20px 0;
- }
- .look-prise .prise-tab span{
- display: inline-block;
- float: left;
- color: #f08829;
- font-size: 30px;
- &:first-child{
- width: 180px;
- }
- &:nth-child(2){
- width: 170px;
- }
- &:nth-child(3){
- width: 170px;
- }
- &:last-child{
- width: 150px;
- }
- }
- .look-prise ul{
- list-style: none;
- margin-top: 40px;
- }
- .look-prise ul li {
- overflow: hidden;
- margin-bottom: 24px;
- &:last-child {
- margin-bottom: 40px;
- }
- }
- .look-prise ul li div{
- float: left;
- overflow: hidden;
- color: #846244;
- font-size: 24px;
- text-overflow: ellipsis;
- white-space: nowrap;
- &:first-child{
- width: 180px;
- }
- &:nth-child(2){
- width: 170px;
- }
- &:nth-child(3){
- width: 170px;
- }
- &:last-child{
- width: 150px;
- }
- }
- .look-prise .prise-style{
- font-size: 20px;
- color: #f08829;
- }
- .look-prise .prise-style img{
- margin-left: 20px;
- width: 100px;
- height: 100px;
- }
- .look-prise .no_prise{
- margin: 60px auto 50px;
- font-size: 32px;
- color: #f08829;
- }
- .look-prise .no_prise i{
- margin-right: 10px;
- font-size: 40px;
- color: #f08829;
- }
- //Popover
- .el-popover {
- width: 300px;
- height: 94px;
- transform-origin: center bottom 0;
- z-index: 2001;
- position: absolute;
- top: -12px;
- left: 174px;
- background: #fff;
- min-width: 150px;
- border: 1px solid #ebeef5;
- padding: 12px;
- color: #606266;
- line-height: 1.4;
- text-align: justify;
- font-size: 14px;
- box-shadow: 0 2px 12px 0 rgba(0, 0, 0, .1);
- .valid-code {
- height: 40px;
- line-height: 40px;
- overflow: hidden;
- input{
- padding: 0 15px;
- float: left;
- width: 92px;
- height: 40px;
- line-height: 40px;
- border-radius: 4px;
- color: #606266;
- border: 1px solid #dcdfe6;
- }
- img{
- width: 100px;
- height: 30px;
- }
- span{
- font-size: 12px;
- color: #2d8cf0;
- cursor: pointer;
- }
- }
- .valid-btn{
- margin-top: 5px;
- height: 28px;
- line-height: 28px;
- text-align: right;
- .el-button--primary{
- width: 56px;
- height: 28px;
- }
- }
- }
|