diff --git a/src/assets/less/custom.less b/src/assets/less/custom.less
index ea4625f..47b595a 100644
--- a/src/assets/less/custom.less
+++ b/src/assets/less/custom.less
@@ -24,8 +24,8 @@
display: flex;
justify-content: space-between;
align-items: center;
- min-height: 5rem;
- font-size: 1.4rem;
+ min-height: 50rem;
+ font-size: 14rem;
&.no-active {
&:active {
@@ -55,8 +55,8 @@
color: white;
img {
- margin-right: 1rem;
- width: 1.5rem;
+ margin-right: 10rem;
+ width: 15rem;
}
}
@@ -68,8 +68,8 @@
color: @second-text-color;
img {
- margin-left: .5rem;
- width: 2rem;
+ margin-left: 5rem;
+ width: 20rem;
}
}
}
diff --git a/src/assets/less/utils.less b/src/assets/less/utils.less
index c1fc180..010c108 100644
--- a/src/assets/less/utils.less
+++ b/src/assets/less/utils.less
@@ -55,7 +55,7 @@ margin
.m(5);
.m(@n, @i: 1) when (@i =< @n) {
.m@{i}r {
- margin: (1rem * @i) !important;
+ margin: (10rem * @i) !important;
}
.m(@n, (@i + 1));
}
@@ -63,7 +63,7 @@ margin
.ml(5);
.ml(@n, @i: 1) when (@i =< @n) {
.ml@{i}r {
- margin-left: (1rem * @i) !important;
+ margin-left: (10rem * @i) !important;
}
.ml(@n, (@i + 1));
}
@@ -71,7 +71,7 @@ margin
.mr(5);
.mr(@n, @i: 1) when (@i =< @n) {
.mr@{i}r {
- margin-right: (1rem * @i) !important;
+ margin-right: (10rem * @i) !important;
}
.mr(@n, (@i + 1));
}
@@ -79,7 +79,7 @@ margin
.mt(5);
.mt(@n, @i: 1) when (@i =< @n) {
.mt@{i}r {
- margin-top: (1rem * @i) !important;
+ margin-top: (10rem * @i) !important;
}
.mt(@n, (@i + 1));
}
@@ -87,7 +87,7 @@ margin
.mb(7);
.mb(@n, @i: 1) when (@i =< @n) {
.mb@{i}r {
- margin-bottom: (1rem * @i) !important;
+ margin-bottom: (10rem * @i) !important;
}
.mb(@n, (@i + 1));
}
@@ -101,7 +101,7 @@ padding
.p(5);
.p(@n, @i: 1) when (@i =< @n) {
.p@{i}r {
- padding: (1rem * @i) !important;
+ padding: (10rem * @i) !important;
}
.p(@n, (@i + 1));
}
@@ -109,7 +109,7 @@ padding
.pb(5);
.pb(@n, @i: 1) when (@i =< @n) {
.pb@{i}r {
- padding-bottom: (1rem * @i) !important;
+ padding-bottom: (10rem * @i) !important;
}
.pb(@n, (@i + 1));
}
@@ -117,7 +117,7 @@ padding
.pt(5);
.pt(@n, @i: 1) when (@i =< @n) {
.pt@{i}r {
- padding-top: (1rem * @i) !important;
+ padding-top: (10rem * @i) !important;
}
.pt(@n, (@i + 1));
}
@@ -125,7 +125,7 @@ padding
.pl(5);
.pl(@n, @i: 1) when (@i =< @n) {
.pl@{i}r {
- padding-left: (1rem * @i) !important;
+ padding-left: (10rem * @i) !important;
}
.pl(@n, (@i + 1));
}
@@ -133,7 +133,7 @@ padding
.pr(5);
.pr(@n, @i: 1) when (@i =< @n) {
.pr@{i}r {
- padding-right: (1rem * @i) !important;
+ padding-right: (10rem * @i) !important;
}
.pr(@n, (@i + 1));
}
diff --git a/src/components/AutoInput.vue b/src/components/AutoInput.vue
index f6b2adb..e494f3c 100644
--- a/src/components/AutoInput.vue
+++ b/src/components/AutoInput.vue
@@ -36,11 +36,11 @@ export default {
diff --git a/src/components/BaseButton.vue b/src/components/BaseButton.vue
index 8cc4e5a..b531723 100644
--- a/src/components/BaseButton.vue
+++ b/src/components/BaseButton.vue
@@ -82,18 +82,18 @@ export default {
.button {
color: white;
- height: 4rem;
- line-height: 4rem;
- border-radius: .3rem;
+ height: 40rem;
+ line-height: 40rem;
+ border-radius: 3rem;
//width: 100%;
- font-size: 1.4rem;
+ font-size: 14rem;
display: flex;
justify-content: center;
align-items: center;
position: relative;
.progress {
- border-radius: .3rem;
+ border-radius: 3rem;
position: absolute;
left: 0;
top: 0;
@@ -103,8 +103,8 @@ export default {
}
img {
- height: 1.6rem;
- margin-right: .5rem;
+ height: 16rem;
+ margin-right: 5rem;
animation: animal .8s infinite linear;
@keyframes animal {
@@ -236,9 +236,9 @@ export default {
}
&.small {
- font-size: 1.2rem;
- width: 6.2rem;
- height: 2.6rem;
+ font-size: 12rem;
+ width: 62rem;
+ height: 26rem;
}
}
diff --git a/src/components/BaseHeader.vue b/src/components/BaseHeader.vue
index f1945e5..f59fe52 100644
--- a/src/components/BaseHeader.vue
+++ b/src/components/BaseHeader.vue
@@ -90,8 +90,8 @@ export default {
.left {
position: absolute;
- left: 1rem;
- top: 2rem;
+ left: 10rem;
+ top: 20rem;
}
& > :nth-last-child(1) {
diff --git a/src/components/BaseMarquee.vue b/src/components/BaseMarquee.vue
index 41263f7..9962d65 100644
--- a/src/components/BaseMarquee.vue
+++ b/src/components/BaseMarquee.vue
@@ -105,7 +105,7 @@ export default {
.space {
display: inline-block;
- width: 5rem;
+ width: 50rem;
}
}
diff --git a/src/components/Call.vue b/src/components/Call.vue
index 717574b..1cb6be0 100644
--- a/src/components/Call.vue
+++ b/src/components/Call.vue
@@ -140,23 +140,23 @@ export default {
.call-float {
transition-property: all;
z-index: 9;
- width: 7rem;
- height: 9rem;
+ width: 70rem;
+ height: 90rem;
position: fixed;
top: 20vh;
left: @padding-page;
background: white;
display: flex;
align-items: center;
- border-radius: .6rem;
+ border-radius: 6rem;
justify-content: center;
flex-direction: column;
color: #14BF5F;
- font-size: 1.2rem;
+ font-size: 12rem;
img {
- width: 3rem;
- margin-bottom: .2rem;
+ width: 30rem;
+ margin-bottom: 2rem;
}
}
@@ -170,7 +170,7 @@ export default {
height: 100vh;
background: linear-gradient(to bottom, #262626, black);
transition: all .3s;
- font-size: 1.2rem;
+ font-size: 12rem;
.float {
transition: all .3s;
@@ -202,8 +202,8 @@ export default {
img {
width: 50%;
- max-width: 2.4rem;
- max-height: 2.4rem;
+ max-width: 24rem;
+ max-height: 24rem;
}
}
@@ -212,19 +212,19 @@ export default {
overflow: hidden;
text-align: center;
word-break: keep-all;
- font-size: 1.4rem;
+ font-size: 14rem;
}
.right {
width: 12%;
- max-width: 4rem;
+ max-width: 40rem;
display: flex;
flex-direction: column;
img {
width: 50%;
- max-width: 2.4rem;
- max-height: 2.4rem;
+ max-width: 24rem;
+ max-height: 24rem;
}
.option {
@@ -237,7 +237,7 @@ export default {
span {
word-break: keep-all;
margin-top: 20%;
- font-size: 1.2rem;
+ font-size: 12rem;
}
}
@@ -253,7 +253,7 @@ export default {
top: 50%;
transform: translate3d(-50%, -50%, 0);
width: 25%;
- max-width: 10rem;
+ max-width: 100rem;
border-radius: 50%;
}
@@ -262,12 +262,12 @@ export default {
display: flex;
flex-direction: column;
align-items: center;
- font-size: 1.2rem;
+ font-size: 12rem;
margin-bottom: 10%;
img {
width: 15%;
- max-width: 5rem;
+ max-width: 50rem;
margin-bottom: 1%;
}
@@ -275,12 +275,12 @@ export default {
}
&.small {
- width: 7rem;
- height: 9rem;
+ width: 70rem;
+ height: 90rem;
position: fixed;
top: 20vh;
left: @padding-page;
- border-radius: .6rem;
+ border-radius: 6rem;
.float {
> .header {
diff --git a/src/components/Check.vue b/src/components/Check.vue
index 4e6b42b..3e02995 100644
--- a/src/components/Check.vue
+++ b/src/components/Check.vue
@@ -37,7 +37,7 @@ export default {
@import "../assets/less/index";
.check {
- @width: 1.4rem;
+ @width: 14rem;
width: @width;
height: @width;
diff --git a/src/components/Comment.vue b/src/components/Comment.vue
index 1d7f6e4..6b59ac1 100644
--- a/src/components/Comment.vue
+++ b/src/components/Comment.vue
@@ -331,22 +331,22 @@ export default {
position: fixed;
left: 0;
right: 0;
- height: 4rem;
- padding: 0 1.5rem;
+ height: 40rem;
+ padding: 0 15rem;
background: white;
display: flex;
align-items: center;
justify-content: space-between;
- border-radius: 1rem 1rem 0 0;
+ border-radius: 10rem 10rem 0 0;
span {
- font-size: 1.2rem;
+ font-size: 12rem;
text-align: center;
}
img {
- width: 1.3rem;
- height: 1.3rem;
+ width: 13rem;
+ height: 13rem;
}
}
@@ -355,18 +355,18 @@ export default {
height: v-bind(height);
background: #fff;
z-index: 5;
- border-radius: 1rem 1rem 0 0;
+ border-radius: 10rem 10rem 0 0;
.wrapper {
position: relative;
- padding-top: 4rem;
- padding-bottom: 6rem;
+ padding-top: 40rem;
+ padding-bottom: 60rem;
}
.items {
.item {
.main {
- padding: .5rem 0;
+ padding: 5rem 0;
display: flex;
&:active {
@@ -374,19 +374,19 @@ export default {
}
.head-image {
- margin-left: 1.5rem;
- margin-right: 1rem;
- width: 3.5rem;
- height: 3.5rem;
+ margin-left: 15rem;
+ margin-right: 10rem;
+ width: 35rem;
+ height: 35rem;
border-radius: 50%;
}
}
.replies {
- padding-left: 5.5rem;
+ padding-left: 55rem;
.reply {
- padding: .5rem 0 .5rem .5rem;
+ padding: 5rem 0 5rem 5rem;
display: flex;
&:active {
@@ -394,34 +394,34 @@ export default {
}
.head-image {
- margin-right: 1rem;
- width: 2rem;
- height: 2rem;
+ margin-right: 10rem;
+ width: 20rem;
+ height: 20rem;
border-radius: 50%;
}
}
.more {
- font-size: 1.2rem;
- margin: .5rem;
+ font-size: 12rem;
+ margin: 5rem;
display: flex;
align-items: center;
color: @second-text-color;
.gang {
background: #d5d5d5;
- width: 2rem;
- margin-right: 1rem;
+ width: 20rem;
+ margin-right: 10rem;
height: 1px;
}
.arrow {
- margin-left: .5rem;
- margin-top: .8rem;
+ margin-left: 5rem;
+ margin-top: 8rem;
width: 0;
height: 0;
- border: .5rem solid transparent;
- border-top: .6rem solid @second-text-color;
+ border: 5rem solid transparent;
+ border-top: 6rem solid @second-text-color;
}
}
}
@@ -429,29 +429,29 @@ export default {
.content {
display: flex;
flex: 1;
- font-size: 1.4rem;
+ font-size: 14rem;
.comment-container {
width: 85%;
.name {
color: @second-text-color;
- margin-bottom: .5rem;
+ margin-bottom: 5rem;
display: flex;
align-items: center;
.reply-user {
- margin-left: .5rem;
+ margin-left: 5rem;
width: 0;
height: 0;
- border: .5rem solid transparent;
- border-left: .6rem solid gray;
+ border: 5rem solid transparent;
+ border-left: 6rem solid gray;
}
}
.detail {
- margin-bottom: .5rem;
+ margin-bottom: 5rem;
}
.time-wrapper {
@@ -460,7 +460,7 @@ export default {
.time {
color: #c4c3c3;
- margin-right: 1.5rem;
+ margin-right: 15rem;
}
.reply-text {
@@ -473,17 +473,17 @@ export default {
.love {
color: @second-text-color;
text-align: center;
- width: 3rem;
- padding-right: 1rem;
+ width: 30rem;
+ padding-right: 10rem;
.love-image {
- width: 2.5rem;
+ width: 25rem;
border-radius: 50%;
}
span {
- font-size: 1rem;
- transform: translateY(-.5rem);
+ font-size: 10rem;
+ transform: translateY(-5rem);
}
}
}
@@ -494,18 +494,18 @@ export default {
@chat-bg-color: rgb(105, 143, 244);
.input-toolbar {
- border-radius: 1rem 1rem 0 0;
+ border-radius: 10rem 10rem 0 0;
background: white;
position: fixed;
width: 100vw;
bottom: 0;
z-index: 3;
- @space-width: 1.8rem;
- @icon-width: 4.8rem;
+ @space-width: 18rem;
+ @icon-width: 48rem;
.call-friend {
- padding-top: 3rem;
+ padding-top: 30rem;
overflow-x: scroll;
display: flex;
padding-right: @space-width;
@@ -515,7 +515,7 @@ export default {
position: relative;
margin-left: @space-width;
margin-bottom: @space-width;
- font-size: 1rem;
+ font-size: 10rem;
display: flex;
flex-direction: column;
align-items: center;
@@ -527,7 +527,7 @@ export default {
}
span {
- margin-top: .5rem;
+ margin-top: 5rem;
text-align: center;
width: @icon-width;
white-space: nowrap;
@@ -539,18 +539,18 @@ export default {
position: absolute;
top: @icon-width - 1.5;
right: -2px;
- width: 2rem;
- height: 2rem;
+ width: 20rem;
+ height: 20rem;
border-radius: 50%;
}
}
}
.toolbar {
- @icon-width: 2.5rem;
+ @icon-width: 25rem;
display: flex;
align-items: center;
- padding: 1rem 1.5rem;
+ padding: 10rem 15rem;
border-top: 1px solid #e2e1e1;
.input-wrapper {
@@ -559,9 +559,9 @@ export default {
align-items: center;
justify-content: space-between;
box-sizing: border-box;
- padding: .5rem 1rem;
+ padding: 5rem 10rem;
background: #eee;
- border-radius: 2rem;
+ border-radius: 20rem;
.right {
display: flex;
@@ -569,7 +569,7 @@ export default {
}
.auto-input {
- width: calc(100vw - 18rem);
+ width: calc(100vw - 180rem);
}
}
@@ -577,7 +577,7 @@ export default {
width: @icon-width;
height: @icon-width;
border-radius: 50%;
- margin-left: 1.5rem;
+ margin-left: 15rem;
}
}
}
diff --git a/src/components/DouyinCode.vue b/src/components/DouyinCode.vue
index bd895b6..c3879e3 100644
--- a/src/components/DouyinCode.vue
+++ b/src/components/DouyinCode.vue
@@ -84,7 +84,7 @@ export default {
.content {
background: white;
width: 80vw;
- margin-bottom: 2rem;
+ margin-bottom: 20rem;
position: relative;
.top {
@@ -92,22 +92,22 @@ export default {
}
.desc {
- margin-bottom: 2rem;
+ margin-bottom: 20rem;
display: flex;
- padding: 1rem;
+ padding: 10rem;
.left {
- font-size: 1.8rem;
+ font-size: 18rem;
.title {
- font-size: 1.4rem;
+ font-size: 14rem;
color: @second-text-color;
}
}
.code {
- width: 6rem;
+ width: 60rem;
}
}
@@ -119,7 +119,7 @@ export default {
width: 35vw;
height: calc(35vw * 1.5);
position: absolute;
- top: 8rem;
+ top: 80rem;
left: 50%;
transform: translateX(-50%);
overflow: hidden;
@@ -138,7 +138,7 @@ export default {
.play {
position: relative;
z-index: 9;
- width: 4rem;
+ width: 40rem;
}
}
}
@@ -146,17 +146,17 @@ export default {
.toolbar {
width: 100vw;
background: black;
- border-radius: 1rem 1rem 0 0;
+ border-radius: 10rem 10rem 0 0;
color: white;
.title {
- font-size: 1.2rem;
- padding: 1rem;
+ font-size: 12rem;
+ padding: 10rem;
text-align: center;
}
- @space-width: 1.8rem;
- @icon-width: 4.5rem;
+ @space-width: 18rem;
+ @icon-width: 45rem;
.shares {
display: flex;
@@ -176,7 +176,7 @@ export default {
span {
color: @second-text-color;
- font-size: 1rem;
+ font-size: 10rem;
display: block;
text-align: center;
}
@@ -184,9 +184,9 @@ export default {
}
.cancel {
- font-size: 1.6rem;
+ font-size: 16rem;
background: rgb(38,38,38);
- padding: 1.5rem;
+ padding: 15rem;
text-align: center;
}
diff --git a/src/components/Loading.vue b/src/components/Loading.vue
index b4a3315..553f619 100644
--- a/src/components/Loading.vue
+++ b/src/components/Loading.vue
@@ -23,7 +23,7 @@ export default {
&.normal {
width: 100%;
- height: 4rem;
+ height: 40rem;
display: flex;
justify-content: center;
align-items: center;
@@ -38,12 +38,12 @@ export default {
transform: translate(-50%, -50%);
display: flex;
justify-content: space-between;
- width: 2.2rem;
+ width: 22rem;
}
.circle {
- width: 1rem;
- height: 1rem;
+ width: 10rem;
+ height: 10rem;
border-radius: 50%;
}
@@ -62,7 +62,7 @@ export default {
transform: translate3d(0, 0, 0) scale(1);
}
to {
- transform: translate3d(1rem, 0, 0) scale(1.2);
+ transform: translate3d(10rem, 0, 0) scale(1.2);
}
}
@@ -71,7 +71,7 @@ export default {
transform: translate3d(0, 0, 0) scale(1);
}
to {
- transform: translate3d(-1rem, 0, 0) scale(1.2);
+ transform: translate3d(-10rem, 0, 0) scale(1.2);
}
}
}
diff --git a/src/components/NoMore.vue b/src/components/NoMore.vue
index 3f07a6b..5780380 100644
--- a/src/components/NoMore.vue
+++ b/src/components/NoMore.vue
@@ -14,8 +14,8 @@ export default {
@import "../assets/less/index";
.NoMore {
- font-size: 1.2rem;
- height: 6rem;
+ font-size: 12rem;
+ height: 60rem;
display: flex;
align-items: center;
justify-content: center;
diff --git a/src/components/Posters.vue b/src/components/Posters.vue
index 77f163f..ab00f8a 100644
--- a/src/components/Posters.vue
+++ b/src/components/Posters.vue
@@ -95,50 +95,50 @@ export default {
.music {
position: absolute;
- font-size: 1.2rem;
+ font-size: 12rem;
background: gold;
color: black;
- padding: .2rem .3rem;
- border-radius: .2rem;
- top: .7rem;
- left: .7rem;
+ padding: 2rem 3rem;
+ border-radius: 2rem;
+ top: 7rem;
+ left: 7rem;
}
.num {
color: white;
position: absolute;
- bottom: .5rem;
- left: .5rem;
+ bottom: 5rem;
+ left: 5rem;
display: flex;
align-items: center;
- font-size: 1.4rem;
+ font-size: 14rem;
.love {
- width: 1.4rem;
- height: 1.4rem;
- margin-right: .5rem;
+ width: 14rem;
+ height: 14rem;
+ margin-right: 5rem;
}
}
.date {
position: absolute;
- top: .5rem;
- left: .5rem;
+ top: 5rem;
+ left: 5rem;
display: flex;
align-items: center;
flex-direction: column;
- font-size: 1.4rem;
+ font-size: 14rem;
color: black;
background: white;
- padding: .6rem;
- border-radius: .6rem;
+ padding: 6rem;
+ border-radius: 6rem;
.day {
font-weight: bold;
}
.month {
- font-size: 1rem;
+ font-size: 10rem;
}
}
}
diff --git a/src/components/Search.vue b/src/components/Search.vue
index c6b70e5..a84c977 100644
--- a/src/components/Search.vue
+++ b/src/components/Search.vue
@@ -95,24 +95,24 @@ export default {
}
.rightTextColor {
- margin-left: 1.5rem;
- font-size: 1.4rem;
+ margin-left: 15rem;
+ font-size: 14rem;
}
.search {
- font-size: 1.4rem;
+ font-size: 14rem;
padding: 0;
flex: 1;
position: relative;
- height: 3.6rem;
+ height: 36rem;
border-radius: 2px;
display: flex;
align-items: center;
.search-icon {
- height: 2.2rem;
- width: 2.2rem;
- margin-left: .7rem;
+ height: 22rem;
+ width: 22rem;
+ margin-left: 7rem;
}
input {
@@ -122,7 +122,7 @@ export default {
width: 100%;
outline: none;
border: none;
- padding: 0 0 0 .7rem;
+ padding: 0 0 0 7rem;
background: transparent;
&::-webkit-input-placeholder {
@@ -134,10 +134,10 @@ export default {
display: flex;
align-items: center;
position: absolute;
- right: 1.5rem;
+ right: 15rem;
img {
- width: 1.5rem;
+ width: 15rem;
}
}
}
diff --git a/src/components/Share.vue b/src/components/Share.vue
index e006a55..9cbd692 100644
--- a/src/components/Share.vue
+++ b/src/components/Share.vue
@@ -273,11 +273,11 @@ export default {
color: white;
box-sizing: border-box;
- @space-width: 1.8rem;
- @icon-width: 4.8rem;
+ @space-width: 18rem;
+ @icon-width: 48rem;
.title {
- font-size: 1.4rem;
+ font-size: 14rem;
padding: 20px;
position: relative;
display: flex;
@@ -285,9 +285,9 @@ export default {
justify-content: space-between;
img {
- width: 1.4rem;
- height: 1.4rem;
- padding: .6rem;
+ width: 14rem;
+ height: 14rem;
+ padding: 6rem;
border-radius: 50%;
background: @second-btn-color-tran;
//background: rgb(56, 58, 57);
@@ -304,7 +304,7 @@ export default {
position: relative;
margin-left: @space-width;
margin-bottom: @space-width;
- font-size: 1rem;
+ font-size: 10rem;
display: flex;
flex-direction: column;
align-items: center;
@@ -316,7 +316,7 @@ export default {
}
span {
- margin-top: .5rem;
+ margin-top: 5rem;
text-align: center;
width: @icon-width;
//white-space: nowrap;
@@ -328,8 +328,8 @@ export default {
position: absolute;
top: @icon-width - 1.5;
right: -2px;
- width: 2rem;
- height: 2rem;
+ width: 20rem;
+ height: 20rem;
border-radius: 50%;
}
}
@@ -341,7 +341,7 @@ export default {
img {
width: @icon-width - 2.6;
height: @icon-width - 2.6;
- padding: 1.3rem;
+ padding: 13rem;
border-radius: 50%;
background: @second-btn-color-tran;
//background: rgb(56, 58, 57);
@@ -349,7 +349,7 @@ export default {
}
span {
- font-size: 1.2rem;
+ font-size: 12rem;
display: block;
text-align: center;
word-break: break-all;
@@ -359,9 +359,9 @@ export default {
.line {
height: 1px;
background: #1c1c1c;
- margin-left: 2rem;
- width: calc(100% - 4rem);
- margin-bottom: 1rem;
+ margin-left: 20rem;
+ width: calc(100% - 40rem);
+ margin-bottom: 10rem;
}
.shares {
@@ -383,7 +383,7 @@ export default {
span {
color: @second-text-color;
- font-size: 1rem;
+ font-size: 10rem;
display: block;
text-align: center;
}
@@ -404,7 +404,7 @@ export default {
img {
width: @icon-width - 2;
height: @icon-width - 2;
- padding: 1rem;
+ padding: 10rem;
border-radius: 50%;
//background: @second-btn-color;
background: rgb(56, 58, 57);
@@ -412,7 +412,7 @@ export default {
span {
color: @second-text-color;
- font-size: 1rem;
+ font-size: 10rem;
display: block;
text-align: center;
}
@@ -422,10 +422,10 @@ export default {
.share2friend {
position: fixed;
bottom: 0;
- padding: 2rem;
+ padding: 20rem;
box-sizing: border-box;
width: 100vw;
- height: 18rem;
+ height: 180rem;
background: black;
display: flex;
flex-direction: column;
@@ -444,23 +444,23 @@ export default {
}
.poster {
- margin-left: 2rem;
- height: 4rem;
- width: 4rem;
+ margin-left: 20rem;
+ height: 40rem;
+ width: 40rem;
}
}
.create-chat {
- font-size: 1.1rem;
- margin: 1rem 0;
+ font-size: 11rem;
+ margin: 10rem 0;
display: flex;
align-items: center;
color: @second-text-color;
.check {
- margin-right: 1rem;
- width: 1.6rem;
- height: 1.6rem;
+ margin-right: 10rem;
+ width: 16rem;
+ height: 16rem;
//transform: scale(1.2);
}
}
diff --git a/src/components/Video.vue b/src/components/Video.vue
index 2066a4e..04456c4 100644
--- a/src/components/Video.vue
+++ b/src/components/Video.vue
@@ -400,7 +400,7 @@ export default {
.video-wrapper {
position: relative;
background: black;
- font-size: 1.4rem;
+ font-size: 14rem;
width: 100%;
height: 100%;
@@ -411,14 +411,13 @@ export default {
}
.pause {
- width: 10rem;
- height: 10rem;
+ width: 100rem;
+ height: 100rem;
opacity: 0.5;
position: absolute;
margin: auto;
left: 0;
top: 0;
- top: 0;
bottom: 0;
right: 0;
animation: pause-animation 1.1s linear;
@@ -520,7 +519,7 @@ export default {
justify-content: center;
align-items: center;
- @width: 3.5rem;
+ @width: 35rem;
img {
width: @width;
@@ -528,7 +527,7 @@ export default {
}
span {
- font-size: 1.2rem;
+ font-size: 12rem;
}
}
@@ -550,25 +549,25 @@ export default {
display: flex;
.location {
- margin-bottom: 1rem;
+ margin-bottom: 10rem;
display: flex;
align-items: center;
- font-size: 1.2rem;
- padding: .4rem;
- border-radius: .3rem;
+ font-size: 12rem;
+ padding: 4rem;
+ border-radius: 3rem;
background: @second-btn-color-tran;
.gang {
- height: .8rem;
+ height: 8rem;
width: 1.5px;
- margin: 0 .5rem;
+ margin: 0 5rem;
background: gray;
}
img {
- margin-right: .7rem;
- width: 1.8rem;
+ margin-right: 7rem;
+ width: 18rem;
}
}
}
diff --git a/src/components/dialog/ConfirmDialog.vue b/src/components/dialog/ConfirmDialog.vue
index 93b0a8c..add892a 100644
--- a/src/components/dialog/ConfirmDialog.vue
+++ b/src/components/dialog/ConfirmDialog.vue
@@ -100,20 +100,20 @@ export default {
width: 70%;
border-radius: 2px;
box-sizing: border-box;
- font-size: 1.5rem;
+ font-size: 15rem;
text-align: center;
.body {
- padding: 2.5rem;
+ padding: 25rem;
.title {
- font-size: 1.5rem;
+ font-size: 15rem;
font-weight: bold;
}
.subtitle {
- margin-top: 1rem;
- font-size: 1.3rem;
+ margin-top: 10rem;
+ font-size: 13rem;
&.gray {
color: @second-text-color;
@@ -122,10 +122,10 @@ export default {
}
.footer {
- height: 4.6rem;
+ height: 46rem;
display: flex;
border-top: 1px solid whitesmoke;
- font-size: 1.4rem;
+ font-size: 14rem;
.cancel, .ok {
display: flex;
@@ -145,11 +145,7 @@ export default {
color: @second-text-color;
}
}
-
}
-
}
-
-
}
diff --git a/src/components/dialog/FadeDialog.vue b/src/components/dialog/FadeDialog.vue
index c8b02c6..a963ced 100644
--- a/src/components/dialog/FadeDialog.vue
+++ b/src/components/dialog/FadeDialog.vue
@@ -27,10 +27,10 @@ export default {
top: 0;
overflow: auto;
color: white;
- font-size: 1.4rem;
+ font-size: 14rem;
.content {
- padding-top: 6rem;
+ padding-top: 60rem;
}
}
diff --git a/src/components/dialog/FromBottomDialog.vue b/src/components/dialog/FromBottomDialog.vue
index 649cf98..f58dfe0 100644
--- a/src/components/dialog/FromBottomDialog.vue
+++ b/src/components/dialog/FromBottomDialog.vue
@@ -61,7 +61,7 @@ export default {
},
borderRadius: {
type: String,
- default: '.5rem .5rem 0 0'
+ default: '5rem 5rem 0 0'
},
},
watch: {
@@ -186,7 +186,7 @@ export default {
position: fixed;
width: 100%;
overflow: auto;
- padding-top: 2.4rem;
+ padding-top: 24rem;
bottom: 0;
left: 0;
box-sizing: border-box;
@@ -210,13 +210,13 @@ export default {
}
.heng-gang {
- border-radius: .5rem .5rem 0 0;
+ border-radius: 5rem 5rem 0 0;
z-index: 3;
width: 100%;
position: fixed;
- height: 2rem;
+ height: 20rem;
display: flex;
- transform: translateY(-2.4rem);
+ transform: translateY(-24rem);
justify-content: center;
align-items: center;
@@ -246,8 +246,8 @@ export default {
.content {
border-radius: 2px;
- height: .4rem;
- width: 3rem;
+ height: 4rem;
+ width: 30rem;
}
}
}
diff --git a/src/components/dialog/NoticeDialog.vue b/src/components/dialog/NoticeDialog.vue
index 2a87e47..51b3171 100644
--- a/src/components/dialog/NoticeDialog.vue
+++ b/src/components/dialog/NoticeDialog.vue
@@ -75,20 +75,20 @@ export default {
width: 70%;
border-radius: 2px;
box-sizing: border-box;
- font-size: 1.5rem;
+ font-size: 15rem;
text-align: center;
.body {
- padding: 2.5rem;
+ padding: 25rem;
.title {
- font-size: 1.5rem;
+ font-size: 15rem;
font-weight: bold;
}
.subtitle {
- margin-top: 1rem;
- font-size: 1.3rem;
+ margin-top: 10rem;
+ font-size: 13rem;
&.gray{
color: @second-text-color;
@@ -97,12 +97,12 @@ export default {
}
.footer {
- height: 4.6rem;
+ height: 46rem;
display: flex;
justify-content: center;
align-items: center;
border-top: 1px solid whitesmoke;
- font-size: 1.4rem;
+ font-size: 14rem;
.cancel {
diff --git a/src/components/dialog/SelectDialog.vue b/src/components/dialog/SelectDialog.vue
index 069b98e..f3c6c9c 100644
--- a/src/components/dialog/SelectDialog.vue
+++ b/src/components/dialog/SelectDialog.vue
@@ -43,13 +43,13 @@ export default {
.content {
background: white;
width: 80%;
- padding: .5rem 0;
+ padding: 5rem 0;
border-radius: 2px;
box-sizing: border-box;
.item {
- font-size: 1.5rem;
- padding: 1.5rem 2rem;
+ font-size: 15rem;
+ padding: 15rem 20rem;
transition: all .2s;
&:active {
diff --git a/src/components/dialog/SimpleConfirmDialog.vue b/src/components/dialog/SimpleConfirmDialog.vue
index b8ae095..48e3405 100644
--- a/src/components/dialog/SimpleConfirmDialog.vue
+++ b/src/components/dialog/SimpleConfirmDialog.vue
@@ -67,16 +67,16 @@ export default {
width: 80%;
border-radius: 2px;
box-sizing: border-box;
- padding: 1.5rem 2rem;
- font-size: 1.5rem;
+ padding: 15rem 20rem;
+ font-size: 15rem;
.footer {
- margin-top: 2rem;
+ margin-top: 20rem;
display: flex;
justify-content: flex-end;
.cancel {
- margin-right: 2.5rem;
+ margin-right: 25rem;
}
}
diff --git a/src/components/slide/Indicator.vue b/src/components/slide/Indicator.vue
index 31dd2c4..d9dff17 100644
--- a/src/components/slide/Indicator.vue
+++ b/src/components/slide/Indicator.vue
@@ -117,7 +117,7 @@ export default {
@import "../../assets/less/index";
.indicator-ctn {
- font-size: 1.4rem;
+ font-size: 14rem;
width: 100%;
height: @indicator-height;
top: 0;
@@ -132,7 +132,7 @@ export default {
font-weight: bold;
.tab {
- height: 4.5rem;
+ height: 45rem;
width: 45%;
display: flex;
justify-content: center;
@@ -145,8 +145,8 @@ export default {
}
img {
- margin-left: .5rem;
- @width: 1.2rem;
+ margin-left: 5rem;
+ @width: 12rem;
width: @width;
height: @width;
}
diff --git a/src/components/slide/IndicatorLight.vue b/src/components/slide/IndicatorLight.vue
index dcd300e..110aef0 100644
--- a/src/components/slide/IndicatorLight.vue
+++ b/src/components/slide/IndicatorLight.vue
@@ -118,7 +118,7 @@ export default {
@import "../../assets/less/index";
.indicator-ctn {
- font-size: 1.4rem;
+ font-size: 14rem;
width: 100%;
height: @indicator-height;
top: 0;
@@ -132,7 +132,7 @@ export default {
font-weight: bold;
.tab {
- height: 4.5rem;
+ height: 45rem;
width: 45%;
display: flex;
justify-content: center;
@@ -145,8 +145,8 @@ export default {
}
img {
- margin-left: .5rem;
- @width: 1.2rem;
+ margin-left: 5rem;
+ @width: 12rem;
width: @width;
height: @width;
}
@@ -155,7 +155,7 @@ export default {
.indicator {
height: 3px;
- width: 2.5rem;
+ width: 25rem;
background: #fff;
border-radius: 5px;
position: relative;
diff --git a/src/components/slide/SlideList.vue b/src/components/slide/SlideList.vue
index 9706ec7..19c7680 100644
--- a/src/components/slide/SlideList.vue
+++ b/src/components/slide/SlideList.vue
@@ -431,7 +431,7 @@ export default {
.indicator-home {
position: fixed;
- font-size: 1.6rem;
+ font-size: 16rem;
top: 0;
left: 0;
height: 60px;
diff --git a/src/components/slide/SlideRowList.vue b/src/components/slide/SlideRowList.vue
index 6d54c7c..18732f8 100644
--- a/src/components/slide/SlideRowList.vue
+++ b/src/components/slide/SlideRowList.vue
@@ -21,9 +21,9 @@
+ style="margin-top: 5rem;">
-