|
|
@@ -0,0 +1,644 @@
|
|
|
+body{
|
|
|
+ margin: 0;
|
|
|
+ padding: 0;
|
|
|
+ font-size: 16px;
|
|
|
+}
|
|
|
+.black-custom-img{
|
|
|
+ width: 160px;
|
|
|
+ height: 160px;
|
|
|
+}
|
|
|
+.black-custom-img-1{
|
|
|
+ width: 60px;
|
|
|
+ height: 1px;
|
|
|
+}
|
|
|
+
|
|
|
+/* 隐藏scroll-view 滚动条 */
|
|
|
+::-webkit-scrollbar {
|
|
|
+ display: none;
|
|
|
+}
|
|
|
+
|
|
|
+/* 不换行 */
|
|
|
+.view-nowrap{
|
|
|
+ white-space: nowrap;
|
|
|
+}
|
|
|
+/* 数字和文字不自动换行 */
|
|
|
+.overflowWrap{
|
|
|
+ overflowWrap:break-word;
|
|
|
+ word-break: break-all;
|
|
|
+}
|
|
|
+/* 自动换行 */
|
|
|
+.view-word-wrap{
|
|
|
+ white-space: pre-wrap;
|
|
|
+ word-wrap: break-word;
|
|
|
+}
|
|
|
+/*超出三行... */
|
|
|
+.text-overflow-ellipsis-t {
|
|
|
+ overflow: hidden;
|
|
|
+ text-overflow: ellipsis;
|
|
|
+ display: -webkit-box;
|
|
|
+ -webkit-line-clamp: 3;
|
|
|
+ line-clamp: 3;
|
|
|
+ -webkit-box-orient: vertical;
|
|
|
+ white-space: pre-wrap;
|
|
|
+ word-wrap: break-word;
|
|
|
+}
|
|
|
+
|
|
|
+/*超出两行... */
|
|
|
+.text-overflow-ellipsis {
|
|
|
+ overflow: hidden;
|
|
|
+ text-overflow: ellipsis;
|
|
|
+ display: -webkit-box;
|
|
|
+ -webkit-line-clamp: 2;
|
|
|
+ line-clamp: 2;
|
|
|
+ -webkit-box-orient: vertical;
|
|
|
+ white-space: pre-wrap;
|
|
|
+ word-wrap: break-word;
|
|
|
+}
|
|
|
+
|
|
|
+/*超出一行... */
|
|
|
+.text-overflow-ellipsis-one {
|
|
|
+ white-space: nowrap;
|
|
|
+ text-overflow: ellipsis;
|
|
|
+ overflow: hidden;
|
|
|
+ word-break: break-all;
|
|
|
+}
|
|
|
+/* 内部盒子 */
|
|
|
+.box-border-box{
|
|
|
+ box-sizing: border-box;
|
|
|
+}
|
|
|
+
|
|
|
+.flex-common-css {
|
|
|
+ width: 100%;
|
|
|
+ height: 100vh;
|
|
|
+ display: flex;
|
|
|
+ flex-direction: column;
|
|
|
+}
|
|
|
+.flex-index-css {
|
|
|
+ width: 100%;
|
|
|
+ height: 100%;
|
|
|
+ display: flex;
|
|
|
+ flex-direction: column;
|
|
|
+}
|
|
|
+.flex-direction-column {
|
|
|
+ display: flex;
|
|
|
+ flex-direction: column;
|
|
|
+}
|
|
|
+.display-flex {
|
|
|
+ display: flex;
|
|
|
+}
|
|
|
+.flex-justify-space {
|
|
|
+ display: flex;
|
|
|
+ justify-content: space-between;
|
|
|
+}
|
|
|
+
|
|
|
+.flex-justify-around {
|
|
|
+ display: flex;
|
|
|
+ justify-content: space-around;
|
|
|
+}
|
|
|
+
|
|
|
+.flex-justify-center {
|
|
|
+ display: flex;
|
|
|
+ justify-content: center;
|
|
|
+}
|
|
|
+.flex-justify-end {
|
|
|
+ display: flex;
|
|
|
+ justify-content: flex-end;
|
|
|
+}
|
|
|
+.flex-justify-start {
|
|
|
+ display: flex;
|
|
|
+ justify-content: flex-start;
|
|
|
+}
|
|
|
+.align-items-start {
|
|
|
+ display: flex;
|
|
|
+ align-items: flex-start;
|
|
|
+}
|
|
|
+.align-items-center {
|
|
|
+ display: flex;
|
|
|
+ align-items: center;
|
|
|
+}
|
|
|
+.align-items-flex-end {
|
|
|
+ display: flex;
|
|
|
+ align-items: flex-end;
|
|
|
+}
|
|
|
+.flex-wrap-wrap {
|
|
|
+ display: flex;
|
|
|
+ flex-wrap: wrap;
|
|
|
+}
|
|
|
+.common-view-css{
|
|
|
+ width: 100%;
|
|
|
+ flex: 1;
|
|
|
+}
|
|
|
+.scroll-view-css {
|
|
|
+ width: 100%;
|
|
|
+ flex: 1;
|
|
|
+ overflow: auto;
|
|
|
+}
|
|
|
+.box-sizing-border {
|
|
|
+ box-sizing: border-box;
|
|
|
+}
|
|
|
+.text-align-center {
|
|
|
+ text-align: center;
|
|
|
+}
|
|
|
+.text-align-right {
|
|
|
+ text-align: right;
|
|
|
+}
|
|
|
+.text-align-left {
|
|
|
+ text-align: left;
|
|
|
+}
|
|
|
+.flex-1{
|
|
|
+ flex: 1;
|
|
|
+}
|
|
|
+.flex-shrink0{
|
|
|
+ flex-shrink: 0;
|
|
|
+}
|
|
|
+
|
|
|
+/* 字体大小 */
|
|
|
+.fs-12{
|
|
|
+ font-size: 12px;
|
|
|
+}
|
|
|
+.fs-14{
|
|
|
+ font-size: 14px;
|
|
|
+}
|
|
|
+.fs-16{
|
|
|
+ font-size: 16px;
|
|
|
+}
|
|
|
+.fs-18{
|
|
|
+ font-size: 18px;
|
|
|
+}
|
|
|
+.fs-20{
|
|
|
+ font-size: 20px;
|
|
|
+}
|
|
|
+.fs-22{
|
|
|
+ font-size: 22px;
|
|
|
+}
|
|
|
+.fs-24{
|
|
|
+ font-size: 24px;
|
|
|
+}
|
|
|
+.fs-26{
|
|
|
+ font-size: 26px;
|
|
|
+}
|
|
|
+.fs-28{
|
|
|
+ font-size: 28px;
|
|
|
+}
|
|
|
+.fs-30{
|
|
|
+ font-size: 30px;
|
|
|
+}
|
|
|
+.fs-32{
|
|
|
+ font-size: 32px;
|
|
|
+}
|
|
|
+.fs-34{
|
|
|
+ font-size: 34px;
|
|
|
+}
|
|
|
+.fs-36{
|
|
|
+ font-size: 36px;
|
|
|
+}
|
|
|
+.fs-40{
|
|
|
+ font-size: 40px;
|
|
|
+}
|
|
|
+.fs-44{
|
|
|
+ font-size: 44px;
|
|
|
+}
|
|
|
+.fs-48{
|
|
|
+ font-size: 48px;
|
|
|
+}
|
|
|
+.fs-52{
|
|
|
+ font-size: 52px;
|
|
|
+}
|
|
|
+.fs-64{
|
|
|
+ font-size: 64px;
|
|
|
+}
|
|
|
+.fs-72{
|
|
|
+ font-size: 72px;
|
|
|
+}
|
|
|
+/* 字体粗细 */
|
|
|
+.fw-b{
|
|
|
+ font-weight: bold;
|
|
|
+}
|
|
|
+.fw-400{
|
|
|
+ font-weight: 400;
|
|
|
+}
|
|
|
+.fw-500{
|
|
|
+ font-weight: 500;
|
|
|
+}
|
|
|
+.fw-600{
|
|
|
+ font-weight: 600;
|
|
|
+}
|
|
|
+/* 圆角 */
|
|
|
+
|
|
|
+.br-r-8{
|
|
|
+ border-radius: 8px;
|
|
|
+}
|
|
|
+
|
|
|
+.br-r-16{
|
|
|
+ border-radius: 16px;
|
|
|
+}
|
|
|
+.br-r-20{
|
|
|
+ border-radius: 20px;
|
|
|
+}
|
|
|
+
|
|
|
+/* 字体颜色 */
|
|
|
+.fc-f{
|
|
|
+ color: #fff;
|
|
|
+}
|
|
|
+.fc-0{
|
|
|
+ color: #000;
|
|
|
+}
|
|
|
+.fc-3{
|
|
|
+ color: #333;
|
|
|
+}
|
|
|
+.fc-6{
|
|
|
+ color: #666;
|
|
|
+}
|
|
|
+.fc-9{
|
|
|
+ color: #999;
|
|
|
+}
|
|
|
+.fc-794B06{
|
|
|
+ color: #794B06;
|
|
|
+}
|
|
|
+.fc-FFDDA1{
|
|
|
+ color: #FFDDA1;
|
|
|
+}
|
|
|
+.fc-16BB5D{
|
|
|
+ color: #16BB5D;
|
|
|
+}
|
|
|
+.fc-4BC285{
|
|
|
+ color: #4BC285;
|
|
|
+}
|
|
|
+.fc-13984C{
|
|
|
+ color: #13984C;
|
|
|
+}
|
|
|
+.fc-34C759{
|
|
|
+ color: #34C759;
|
|
|
+}
|
|
|
+.fc-ED301D{
|
|
|
+ color: #ED301D;
|
|
|
+}
|
|
|
+.fc-FF3B30{
|
|
|
+ color: #FF3B30;
|
|
|
+}
|
|
|
+.fc-ED930F{
|
|
|
+ color: #ED930F;
|
|
|
+}
|
|
|
+.fc-FF9D00{
|
|
|
+ color: #FF9D00;
|
|
|
+}
|
|
|
+.fc-FE9E11{
|
|
|
+ color: #FE9E11;
|
|
|
+}
|
|
|
+.fc-3489FF{
|
|
|
+ color: #3489FF;
|
|
|
+}
|
|
|
+.fc-358AFD{
|
|
|
+ color:#358AFD;
|
|
|
+ font-weight: 600;
|
|
|
+}
|
|
|
+.fc-27AE60{
|
|
|
+ color: #27AE60;
|
|
|
+}
|
|
|
+.fc-9198A2{
|
|
|
+ color: #9198A2;
|
|
|
+}
|
|
|
+.fc-2F80ED{
|
|
|
+ color: #2F80ED;
|
|
|
+}
|
|
|
+.fc-632611{
|
|
|
+ color: #632611;
|
|
|
+}
|
|
|
+.fc-8C5E0B{
|
|
|
+ color: #8C5E0B;
|
|
|
+}
|
|
|
+.fc-2680EB{
|
|
|
+ color: #2680EB;
|
|
|
+}
|
|
|
+.fc-4C96EF{
|
|
|
+ color: #4C96EF;
|
|
|
+}
|
|
|
+.fc-1778FD{
|
|
|
+ color: #1778FD;
|
|
|
+}
|
|
|
+.fc-C6DBFE{
|
|
|
+ color: #C6DBFE;
|
|
|
+}
|
|
|
+.fc-7B7D82{
|
|
|
+ color: #7B7D82;
|
|
|
+}
|
|
|
+/* 背景颜色 */
|
|
|
+.bgc-f{
|
|
|
+ background-color: #fff;
|
|
|
+}
|
|
|
+.bgc-c{
|
|
|
+ background-color: #ccc;
|
|
|
+}
|
|
|
+.bgc-3{
|
|
|
+ background-color: #333;
|
|
|
+}
|
|
|
+.bgc-9{
|
|
|
+ background-color: #999;
|
|
|
+}
|
|
|
+.bgc-F5F5F5{
|
|
|
+ background-color: #F5F5F5;
|
|
|
+}
|
|
|
+.bgc-F6F6F6{
|
|
|
+ background-color: #F6F6F6;
|
|
|
+}
|
|
|
+.bgc-27AE60{
|
|
|
+ background-color: #27AE60;
|
|
|
+}
|
|
|
+.bgc-A2E4BE{
|
|
|
+ background-color: #A2E4BE;
|
|
|
+}
|
|
|
+.bgc-16BB5D{
|
|
|
+ background-color: #16BB5D;
|
|
|
+}
|
|
|
+.bgc-E8F9EF{
|
|
|
+ background-color: #E8F9EF;
|
|
|
+}
|
|
|
+.bgc-3489FF{
|
|
|
+ background-color: #3489FF;
|
|
|
+}
|
|
|
+.bgc-E2EEFF{
|
|
|
+ background-color: #E2EEFF;
|
|
|
+}
|
|
|
+.bgc-1778FD{
|
|
|
+ background-color: #1778FD;
|
|
|
+}
|
|
|
+.bgc-EAF4FD{
|
|
|
+ background-color: #EAF4FD;
|
|
|
+}
|
|
|
+.bgc-4FB3EF{
|
|
|
+ background-color: #4FB3EF;
|
|
|
+}
|
|
|
+.bgc-B3DDFB{
|
|
|
+ background-color: #B3DDFB;
|
|
|
+}
|
|
|
+.bgc-1989F9{
|
|
|
+ background-color: #1989F9;
|
|
|
+}
|
|
|
+.bgc-ADCDFE{
|
|
|
+ background-color: #ADCDFE;
|
|
|
+}
|
|
|
+.bgc-F5F4F9{
|
|
|
+ background-color: #F5F4F9;
|
|
|
+}
|
|
|
+.bgc-F7F7F7{
|
|
|
+ background-color: #F7F7F7;
|
|
|
+}
|
|
|
+.bgc-F6F7FB{
|
|
|
+ background-color: #F6F7FB;
|
|
|
+}
|
|
|
+.bgc-FE9E11{
|
|
|
+ background: #FE9E11;
|
|
|
+}
|
|
|
+
|
|
|
+/* 内边距 */
|
|
|
+.pb-10{
|
|
|
+ padding-bottom: 10px;
|
|
|
+}
|
|
|
+.pb-20{
|
|
|
+ padding-bottom: 20px;
|
|
|
+}
|
|
|
+.pb-30{
|
|
|
+ padding-bottom: 30px;
|
|
|
+}
|
|
|
+.pb-32{
|
|
|
+ padding-bottom: 32px;
|
|
|
+}
|
|
|
+.pb-24{
|
|
|
+ padding-bottom: 24px;
|
|
|
+}
|
|
|
+.p-16{
|
|
|
+ padding: 16px;
|
|
|
+}
|
|
|
+.p-24{
|
|
|
+ padding: 24px;
|
|
|
+}
|
|
|
+.p-30{
|
|
|
+ padding: 30px;
|
|
|
+}
|
|
|
+.p-32{
|
|
|
+ padding: 32px;
|
|
|
+}
|
|
|
+.p-40{
|
|
|
+ padding: 40px;
|
|
|
+}
|
|
|
+.p-46{
|
|
|
+ padding: 46px;
|
|
|
+}
|
|
|
+.plr-24{
|
|
|
+ padding: 0 24px;
|
|
|
+}
|
|
|
+.plr-32{
|
|
|
+ padding: 0 32px;
|
|
|
+}
|
|
|
+.plr-40{
|
|
|
+ padding: 0 40px;
|
|
|
+}
|
|
|
+.plr-38{
|
|
|
+ padding: 0 38px;
|
|
|
+}
|
|
|
+.pr-8{
|
|
|
+ padding-right: 8px;
|
|
|
+}
|
|
|
+.pt-24 {
|
|
|
+ padding-top: 24px;
|
|
|
+}
|
|
|
+.pt-7{
|
|
|
+ padding-top: 7px;
|
|
|
+}
|
|
|
+/* 外边距 */
|
|
|
+.m-24{
|
|
|
+ margin: 24px;
|
|
|
+}
|
|
|
+
|
|
|
+.ml-8{
|
|
|
+ margin-left: 8px;
|
|
|
+}
|
|
|
+.ml-10{
|
|
|
+ margin-left: 10px;
|
|
|
+}
|
|
|
+.ml-16{
|
|
|
+ margin-left: 16px;
|
|
|
+}
|
|
|
+.ml-26{
|
|
|
+ margin-left: 26px;
|
|
|
+}
|
|
|
+.ml-30{
|
|
|
+ margin-left: 30px;
|
|
|
+}
|
|
|
+.ml-40{
|
|
|
+ margin-left: 40px;
|
|
|
+}
|
|
|
+.mt-4{
|
|
|
+ margin-top: 4px;
|
|
|
+}
|
|
|
+.mt-7{
|
|
|
+ margin-top: 7px;
|
|
|
+}
|
|
|
+.mt-8{
|
|
|
+ margin-top: 8px;
|
|
|
+}
|
|
|
+.mt-10{
|
|
|
+ margin-top: 10px;
|
|
|
+}
|
|
|
+.mt-17{
|
|
|
+ margin-top: 17px;
|
|
|
+}
|
|
|
+.mt-20{
|
|
|
+ margin-top: 20px;
|
|
|
+}
|
|
|
+.mt-30{
|
|
|
+ margin-top: 30px;
|
|
|
+}
|
|
|
+.mb-2{
|
|
|
+ margin-bottom: 2px;
|
|
|
+}
|
|
|
+.mb-8{
|
|
|
+ margin-bottom: 8px;
|
|
|
+}
|
|
|
+.mb-13{
|
|
|
+ margin-bottom: 13px;
|
|
|
+}
|
|
|
+.mb-16{
|
|
|
+ margin-bottom: 16px;
|
|
|
+}
|
|
|
+.mb-18{
|
|
|
+ margin-bottom: 18px;
|
|
|
+}
|
|
|
+.mb-24{
|
|
|
+ margin-bottom: 24px;
|
|
|
+}
|
|
|
+.mb-30{
|
|
|
+ margin-bottom: 30px;
|
|
|
+}
|
|
|
+.mb-32{
|
|
|
+ margin-bottom: 32px;
|
|
|
+}
|
|
|
+.mb-40{
|
|
|
+ margin-bottom: 40px;
|
|
|
+}
|
|
|
+.mb-56{
|
|
|
+ margin-bottom: 56px;
|
|
|
+}
|
|
|
+.mb-64{
|
|
|
+ margin-bottom: 64px;
|
|
|
+}
|
|
|
+.mb-80{
|
|
|
+ margin-bottom: 80px;
|
|
|
+}
|
|
|
+.mb-100{
|
|
|
+ margin-bottom: 100px;
|
|
|
+}
|
|
|
+
|
|
|
+
|
|
|
+.mr-4{
|
|
|
+ margin-right: 4px;
|
|
|
+}
|
|
|
+.mr-6{
|
|
|
+ margin-right: 6px;
|
|
|
+}
|
|
|
+.mr-8{
|
|
|
+ margin-right: 8px;
|
|
|
+}
|
|
|
+.mr-10{
|
|
|
+ margin-right: 10px;
|
|
|
+}
|
|
|
+.mr-16{
|
|
|
+ margin-right: 16px;
|
|
|
+}
|
|
|
+.mr-20{
|
|
|
+ margin-right: 20px;
|
|
|
+}
|
|
|
+.mr-22{
|
|
|
+ margin-right: 22px;
|
|
|
+}
|
|
|
+.mr-24{
|
|
|
+ margin-right: 24px;
|
|
|
+}
|
|
|
+.mr-26{
|
|
|
+ margin-right: 26px;
|
|
|
+}
|
|
|
+.mr-30{
|
|
|
+ margin-right: 30px;
|
|
|
+}
|
|
|
+.mr-40{
|
|
|
+ margin-right: 40px;
|
|
|
+}
|
|
|
+.mr-50{
|
|
|
+ margin-right: 50px;
|
|
|
+}
|
|
|
+.mr-68{
|
|
|
+ margin-right: 68px;
|
|
|
+}
|
|
|
+.mr-90{
|
|
|
+ margin-right: 90px;
|
|
|
+}
|
|
|
+
|
|
|
+.mt-80{
|
|
|
+ margin-top: 80px;
|
|
|
+}
|
|
|
+.m-t-40{
|
|
|
+ margin-top: 40px;
|
|
|
+}
|
|
|
+.mb-4{
|
|
|
+ margin-bottom: 4px;
|
|
|
+}
|
|
|
+.m-b-20{
|
|
|
+ margin-bottom: 20px;
|
|
|
+}
|
|
|
+.m-b-32{
|
|
|
+ margin-bottom: 32px;
|
|
|
+}
|
|
|
+.m-b-72{
|
|
|
+ margin-bottom: 72px;
|
|
|
+}
|
|
|
+
|
|
|
+.mb-20{
|
|
|
+ margin-bottom: 20px;
|
|
|
+}
|
|
|
+.pb-30{
|
|
|
+ padding-bottom: 30px;
|
|
|
+}
|
|
|
+.border-9 {
|
|
|
+ border: 1px solid #999999;
|
|
|
+}
|
|
|
+.border-bottom-E6E7E9{
|
|
|
+ border-bottom: 1px solid #E6E7E9;
|
|
|
+}
|
|
|
+.b-b-EEEEEE{
|
|
|
+ border-bottom: 1px solid #EEEEEE;
|
|
|
+}
|
|
|
+
|
|
|
+.w-100{
|
|
|
+ width: 100px;
|
|
|
+}
|
|
|
+.w-200{
|
|
|
+ width: 200px;
|
|
|
+}
|
|
|
+.w-10030{
|
|
|
+ width: 30%;
|
|
|
+}
|
|
|
+.w-100100{
|
|
|
+ width: 100%;
|
|
|
+}
|
|
|
+
|
|
|
+
|
|
|
+.b-rad-200{
|
|
|
+ border-radius: 200px;
|
|
|
+}
|
|
|
+.b-rad-100{
|
|
|
+ border-radius: 100px;
|
|
|
+}
|
|
|
+.b-rad-20{
|
|
|
+ border-radius: 20px;
|
|
|
+}
|
|
|
+.b-rad-16{
|
|
|
+ border-radius: 16px;
|
|
|
+}
|
|
|
+.b-rad-8{
|
|
|
+ border-radius: 8px;
|
|
|
+}
|
|
|
+
|
|
|
+.sc-img{
|
|
|
+ width: 40px;
|
|
|
+ height: 40px;
|
|
|
+}
|