123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596979899100101102103104105106107108109110111112113114115116117118119120121122123124125126127128129130131132133134135136137138139140141142143144145146147148149150151152153154155156157158159160161162163164165166167168169170171172173174175176177178179180181182183184185186187188189190191192193194195196197198199200201202203204205206207208209210211212213214215216217218219220221222223224225226227228229230231232233234235236237238239240241242243244245246247248249250251252253254255256257258259260261262263264265266267268269270271272273274275276277278279280281282283284285286287288289290291292293294295296297298299300301302303304305306307308309310311312313314315316317318319320321322323324325326327328329330331332333334335336337338339340341342343344345346347348349350351352353354355356357358359360361362363364365366367368369370371372373374375376377378379380381382383384385386387388389390391392393394395396397398399400401402403404405406407408409410411412413414415416417418419420421422423424425426427428429430431432433434435436437438439440441442443444445446447448449450451452453454455456457458459460461462463464465466467468469470471472473474475476477478479480481482483484485486487488489490491492493494495496497498499500501502503504505506507508509510511512513514515516517518519520521522523524525526527528529530531532533534535536537538539540541542543544545546547548549550551552553554555556557558559560561562563564565566567568569570571572573574575576577578579580581582583584585586587588589590591592593594595596597598599600601602603604605606607608609610611612613614615616617618619620621622623624625626627628629630631632633634635636637638639640641642643644645646647648649650651652653654655656657658659660661662663664665666667668669670671672673674675676677678679680681682683684685686687688689690691692693694695696697698699700701702703704705706707708709710711712713714715716717718719720721722723724725726727728729730731732733734735736737738739740741742743744745746747748749750751752753754755756757758759760761762763764765766767768769770771772773774775776777778779780781782783784785786787788789790791792793794795796797798799800801802803804805806807808809810811812813814815816817818819820821822823824825826827828829830831832833834835836837838839840841842843844845846847848849850851852853854855856857858859860861862 |
- /* 一行省略 */
- @import url('h5.css');
- @import url('color_match.css');
- .space-nowrap{
- white-space: nowrap;
- }
- .text-view1 {
- display: inline-block;
- white-space: nowrap;
- width: 100%;
- overflow: hidden;
- text-overflow:ellipsis;
- /* height: 20upx; */
- }
- .text-view2 {
- overflow: hidden;
- text-overflow: ellipsis;
- display: flex;
- display: -webkit-box;
- -webkit-line-clamp: 2;
- -webkit-box-orient: vertical;
- }
- .overflow{
- overflow: hidden;
- }
- /* 字体粗细 */
- .font-bold {
- font-weight: bold;
- }
- .fw-300 {
- font-weight: 300;
- }
- .m-0 {
- margin: 0 !important;
- }
- .mt-0,
- .my-0 {
- margin-top: 0 !important;
- }
- .mr-0,
- .mx-0 {
- margin-right: 0 !important;
- }
- .mb-0,
- .my-0 {
- margin-bottom: 0 !important;
- }
- .ml-0,
- .mx-0 {
- margin-left: 0 !important;
- }
- .m-1 {
- margin: 0.25rem !important;
- }
- .mt-1,
- .my-1 {
- margin-top: 0.25rem !important;
- }
- .mr-1,
- .mx-1 {
- margin-right: 0.25rem !important;
- }
- .mb-1,
- .my-1 {
- margin-bottom: 0.25rem !important;
- }
- .ml-1,
- .mx-1 {
- margin-left: 0.25rem !important;
- }
- .m-2 {
- margin: 0.5rem !important;
- }
- .mt-2,
- .my-2 {
- margin-top: 0.5rem !important;
- }
- .mr-2,
- .mx-2 {
- margin-right: 0.5rem !important;
- }
- .mb-2,
- .my-2 {
- margin-bottom: 0.5rem !important;
- }
- .ml-2,
- .mx-2 {
- margin-left: 0.5rem !important;
- }
- .m-3 {
- margin: 1rem !important;
- }
- .mt-3,
- .my-3 {
- margin-top: 1rem !important;
- }
- .mr-3,
- .mx-3 {
- margin-right: 1rem !important;
- }
- .mb-3,
- .my-3 {
- margin-bottom: 1rem !important;
- }
- .ml-3,
- .mx-3 {
- margin-left: 1rem !important;
- }
- .m-4 {
- margin: 1.5rem !important;
- }
- .mt-4,
- .my-4 {
- margin-top: 1.5rem !important;
- }
- .mr-4,
- .mx-4 {
- margin-right: 1.5rem !important;
- }
- .mb-4,
- .my-4 {
- margin-bottom: 1.5rem !important;
- }
- .ml-4,
- .mx-4 {
- margin-left: 1.5rem !important;
- }
- .m-5 {
- margin: 3rem !important;
- }
- .mt-5,
- .my-5 {
- margin-top: 3rem !important;
- }
- .mr-5,
- .mx-5 {
- margin-right: 3rem !important;
- }
- .mb-5,
- .my-5 {
- margin-bottom: 3rem !important;
- }
- .ml-5,
- .mx-5 {
- margin-left: 3rem !important;
- }
- .p-0 {
- padding: 0 !important;
- }
- .pt-0,
- .py-0 {
- padding-top: 0 !important;
- }
- .pr-0,
- .px-0 {
- padding-right: 0 !important;
- }
- .pb-0,
- .py-0 {
- padding-bottom: 0 !important;
- }
- .pl-0,
- .px-0 {
- padding-left: 0 !important;
- }
- .p-1 {
- padding: 0.25rem !important;
- }
- .pt-1,
- .py-1 {
- padding-top: 0.25rem !important;
- }
- .pr-1,
- .px-1 {
- padding-right: 0.25rem !important;
- }
- .pb-1,
- .py-1 {
- padding-bottom: 0.25rem !important;
- }
- .pl-1,
- .px-1 {
- padding-left: 0.25rem !important;
- }
- .p-2 {
- padding: 0.5rem !important;
- }
- .pt-2,
- .py-2 {
- padding-top: 0.5rem !important;
- }
- .pr-2,
- .px-2 {
- padding-right: 0.5rem !important;
- }
- .pb-2,
- .py-2 {
- padding-bottom: 0.5rem !important;
- }
- .pl-2,
- .px-2 {
- padding-left: 0.5rem !important;
- }
- .p-3 {
- padding: 1rem !important;
- }
- .pt-3,
- .py-3 {
- padding-top: 1rem !important;
- }
- .pr-3,
- .px-3 {
- padding-right: 1rem !important;
- }
- .pb-3,
- .py-3 {
- padding-bottom: 1rem !important;
- }
- .pl-3,
- .px-3 {
- padding-left: 1rem !important;
- }
- .p-4 {
- padding: 1.5rem !important;
- }
- .pt-4,
- .py-4 {
- padding-top: 1.5rem !important;
- }
- .pr-4,
- .px-4 {
- padding-right: 1.5rem !important;
- }
- .pb-4,
- .py-4 {
- padding-bottom: 1.5rem !important;
- }
- .pl-4,
- .px-4 {
- padding-left: 1.5rem !important;
- }
- .p-5 {
- padding: 3rem !important;
- }
- .pt-5,
- .py-5 {
- padding-top: 3rem !important;
- }
- .pr-5,
- .px-5 {
- padding-right: 3rem !important;
- }
- .pb-5,
- .py-5 {
- padding-bottom: 3rem !important;
- }
- .pl-5,
- .px-5 {
- padding-left: 3rem !important;
- }
- .m-n1 {
- margin: -0.25rem !important;
- }
- .mt-n1,
- .my-n1 {
- margin-top: -0.25rem !important;
- }
- .mr-n1,
- .mx-n1 {
- margin-right: -0.25rem !important;
- }
- .mb-n1,
- .my-n1 {
- margin-bottom: -0.25rem !important;
- }
- .ml-n1,
- .mx-n1 {
- margin-left: -0.25rem !important;
- }
- .m-n2 {
- margin: -0.5rem !important;
- }
- .mt-n2,
- .my-n2 {
- margin-top: -0.5rem !important;
- }
- .mr-n2,
- .mx-n2 {
- margin-right: -0.5rem !important;
- }
- .mb-n2,
- .my-n2 {
- margin-bottom: -0.5rem !important;
- }
- .ml-n2,
- .mx-n2 {
- margin-left: -0.5rem !important;
- }
- .m-n3 {
- margin: -1rem !important;
- }
- .mt-n3,
- .my-n3 {
- margin-top: -1rem !important;
- }
- .mr-n3,
- .mx-n3 {
- margin-right: -1rem !important;
- }
- .mb-n3,
- .my-n3 {
- margin-bottom: -1rem !important;
- }
- .ml-n3,
- .mx-n3 {
- margin-left: -1rem !important;
- }
- .m-n4 {
- margin: -1.5rem !important;
- }
- .mt-n4,
- .my-n4 {
- margin-top: -1.5rem !important;
- }
- .mr-n4,
- .mx-n4 {
- margin-right: -1.5rem !important;
- }
- .mb-n4,
- .my-n4 {
- margin-bottom: -1.5rem !important;
- }
- .ml-n4,
- .mx-n4 {
- margin-left: -1.5rem !important;
- }
- .m-n5 {
- margin: -3rem !important;
- }
- .mt-n5,
- .my-n5 {
- margin-top: -3rem !important;
- }
- .mr-n5,
- .mx-n5 {
- margin-right: -3rem !important;
- }
- .mb-n5,
- .my-n5 {
- margin-bottom: -3rem !important;
- }
- .ml-n5,
- .mx-n5 {
- margin-left: -3rem !important;
- }
- .m-auto {
- margin: auto !important;
- }
- .mt-auto,
- .my-auto {
- margin-top: auto !important;
- }
- .mr-auto,
- .mx-auto {
- margin-right: auto !important;
- }
- .mb-auto,
- .my-auto {
- margin-bottom: auto !important;
- }
- .ml-auto,
- .mx-auto {
- margin-left: auto !important;
- }
- /* border */
- .border-dashed-bottom {
- border-bottom: 1px dashed #dee2e6 !important;
- }
- .border {
- border: 1px solid #dee2e6 !important;
- }
- .border-top {
- border-top: 1px solid #dee2e6 !important;
- }
- .border-right {
- border-right: 1px solid #dee2e6 !important;
- }
- .border-bottom {
- border-bottom: 1px solid #dee2e6 !important;
- }
- .border-left {
- border-left: 1px solid #dee2e6 !important;
- }
- .border05 {
- border: 0.5px solid #dee2e6 !important;
- }
- .border-top05 {
- border-top: 0.5px solid #dee2e6 !important;
- }
- .border-right05 {
- border-right: 0.5px solid #dee2e6 !important;
- }
- .border-bottom05 {
- border-bottom: 0.5px solid #dee2e6 !important;
- }
- .border-left05 {
- border-left: 0.5px solid #dee2e6 !important;
- }
- .border-0 {
- border: 0 !important;
- }
- .border-top-0 {
- border-top: 0 !important;
- }
- .border-right-0 {
- border-right: 0 !important;
- }
- .border-bottom-0 {
- border-bottom: 0 !important;
- }
- .border-left-0 {
- border-left: 0 !important;
- }
- .b-radius-5 {
- border-radius: 5px;
- }
- /* display */
- .d-none {
- display: none !important;
- }
- .d-inline {
- display: inline !important;
- }
- .d-inline-block {
- display: inline-block !important;
- }
- .d-block {
- display: block !important;
- }
- .d-table {
- display: table !important;
- }
- .d-table-row {
- display: table-row !important;
- }
- .d-table-cell {
- display: table-cell !important;
- }
- .d-flex {
- display: -webkit-box !important;
- display: -ms-flexbox !important;
- display: flex !important;
- }
- .d-inline-flex {
- display: -webkit-inline-box !important;
- display: -ms-inline-flexbox !important;
- display: inline-flex !important;
- }
- .d-inline-block {
- display:inline-block;
- }
- .align-baseline {
- vertical-align: baseline !important;
- }
- .align-top {
- vertical-align: top !important;
- }
- .align-middle {
- vertical-align: middle !important;
- }
- .align-bottom {
- vertical-align: bottom !important;
- }
- .align-text-bottom {
- vertical-align: text-bottom !important;
- }
- .align-text-top {
- vertical-align: text-top !important;
- }
- .w-10{
- width: 10% !important;
- }
- .w-15{
- width: 15% !important;
- }
- .w-20 {
- width: 20% !important;
- }
- .w-25 {
- width: 25% !important;
- }
- .w-30 {
- width: 30% !important;
- }
- .w-33 {
- width: 33% !important;
- }
- .w-35 {
- width: 35% !important;
- }
- .w-40 {
- width: 40% !important;
- }
- .w-45 {
- width: 45% !important;
- }
- .w-50 {
- width: 50% !important;
- }
- .w-55 {
- width: 55% !important;
- }
- .w-60 {
- width: 60% !important;
- }
- .w-65 {
- width: 65% !important;
- }
- .w-70 {
- width: 70% !important;
- }
- .w-75 {
- width: 75% !important;
- }
- .w-80 {
- width: 80% !important;
- }
- .w-85 {
- width: 85% !important;
- }
- .w-90 {
- width: 90% !important;
- }
- .w-100 {
- width: 100% !important;
- }
- .w-auto {
- width: auto !important;
- }
- .h-25 {
- height: 25% !important;
- }
- .h-50 {
- height: 50% !important;
- }
- .h-75 {
- height: 75% !important;
- }
- .h-100 {
- height: 100% !important;
- }
- .h-auto {
- height: auto !important;
- }
- .mw-100 {
- max-width: 100% !important;
- }
- .mh-100 {
- max-height: 100% !important;
- }
- .min-vw-100 {
- min-width: 100vw !important;
- }
- .min-vh-100 {
- min-height: 100vh !important;
- }
- .vw-100 {
- width: 100vw !important;
- }
- .vh-100 {
- height: 100vh !important;
- }
- .text-right {
- text-align: right;
- }
- .text-left {
- text-align: left;
- }
- .text-center {
- text-align: center;
- }
- .float-right {
- float: right;
- }
- .float-left {
- float: left;
- }
- .float-none {
- clear: both;
- }
- /* flex */
- .row {
- display: -ms-flexbox;
- display: flex;
- -ms-flex-wrap: wrap;
- flex-wrap: wrap;
- }
- .col {
- -ms-flex-preferred-size: 0;
- flex-basis: 0;
- -ms-flex-positive: 1;
- flex-grow: 1;
- min-width: 0;
- max-width: 100%;
- }
- .col-auto {
- -ms-flex: 0 0 auto;
- flex: 0 0 auto;
- width: auto;
- max-width: 100%;
- }
- .align-items-start {
- -ms-flex-align: start !important;
- align-items: flex-start !important;
- }
- .align-items-end {
- -ms-flex-align: end !important;
- align-items: flex-end !important;
- }
- .align-items-center {
- -ms-flex-align: center !important;
- align-items: center !important;
- }
- .align-items-baseline {
- -ms-flex-align: baseline !important;
- align-items: baseline !important;
- }
- .align-items-stretch {
- -ms-flex-align: stretch !important;
- align-items: stretch !important;
- }
- /* 正方形的图片 */
- .picbox {
- width: 100% !important;
- height: 0;
- padding-bottom: 100%;
- margin: 0;
- position: relative;
- overflow: hidden;
- }
- .picbox .picimg {
- width: 100%;
- height: 100%;
- position: absolute;
- }
- p {
- margin-bottom: 0;
- }
- .position-fixed{
- position: fixed;
- }
- .position-relative{
- position: relative;
- }
- .position-absolute{
- position: absolute;
- }
- .positionY-50{
- position: absolute;
- top: 50%;
- transform: translateY(-50%);
- }
- .positionX-50{
- position: absolute;
- left: 50%;
- transform: translateX(-50%);
- }
- .position-50{
- position: absolute;
- left: 50%;
- top: 50%;
- transform: translate(-50%,-50%);
- }
- .cursor-pointer{
- cursor: pointer;
- }
- /* 居中*/
- .centerd{
- display: flex !important;
- height: 100%;
- align-items: center;
- justify-content: center;
- }
- /* 居中*/
- .centerY{
- display: flex !important;
- align-items: center;
- }
- .line-height1{
- line-height: 1;
- }
- .border-box{
- box-sizing: border-box;
- }
|