|
@@ -172,11 +172,11 @@ export default {
|
|
|
<style scoped lang="scss">
|
|
|
.el-input {
|
|
|
::v-deep {
|
|
|
- & > {
|
|
|
- .el-input.is-active .el-input__inner,
|
|
|
- .el-input__inner:focus {
|
|
|
- @include themify($themes) {
|
|
|
- border-color: themed('color');
|
|
|
+ @include useTheme() {
|
|
|
+ & > {
|
|
|
+ .el-input.is-active .el-input__inner,
|
|
|
+ .el-input__inner:focus {
|
|
|
+ border-color: fetch('color');
|
|
|
}
|
|
|
}
|
|
|
}
|
|
@@ -186,209 +186,205 @@ export default {
|
|
|
// pc 端
|
|
|
@media screen and (min-width: 768px) {
|
|
|
.page {
|
|
|
- position: relative;
|
|
|
- min-height: calc(100vh - 80px - 80px);
|
|
|
- background-color: #fff;
|
|
|
- }
|
|
|
- .page-top {
|
|
|
- height: 530px;
|
|
|
- @include themify($themes) {
|
|
|
- background-image: themed('pc-banner-club');
|
|
|
- }
|
|
|
- background-size: cover;
|
|
|
- background-position: center;
|
|
|
- }
|
|
|
- .page-content {
|
|
|
- position: relative;
|
|
|
- width: 1000px;
|
|
|
- margin: 0 auto;
|
|
|
-
|
|
|
- .title {
|
|
|
- font-size: 16px;
|
|
|
- color: #404040;
|
|
|
-
|
|
|
- span {
|
|
|
- @include themify($themes) {
|
|
|
- color: themed('color');
|
|
|
- }
|
|
|
+ @include useTheme() {
|
|
|
+ position: relative;
|
|
|
+ min-height: calc(100vh - 80px - 80px);
|
|
|
+ background-color: #fff;
|
|
|
+ .page-top {
|
|
|
+ height: 530px;
|
|
|
+ background-image: fetch('pc-banner-club');
|
|
|
+ background-size: cover;
|
|
|
+ background-position: center;
|
|
|
}
|
|
|
- }
|
|
|
-
|
|
|
- .filter {
|
|
|
- padding: 48px 0 105px;
|
|
|
- .search {
|
|
|
- width: 640px;
|
|
|
+ .page-content {
|
|
|
+ position: relative;
|
|
|
+ width: 1000px;
|
|
|
margin: 0 auto;
|
|
|
- .el-input {
|
|
|
- height: 46px;
|
|
|
+
|
|
|
+ .title {
|
|
|
font-size: 16px;
|
|
|
- .el-input__icon {
|
|
|
- font-size: 24px;
|
|
|
- line-height: 46px;
|
|
|
- margin-left: 12px;
|
|
|
+ color: #404040;
|
|
|
+
|
|
|
+ span {
|
|
|
+ color: fetch('color');
|
|
|
}
|
|
|
+ }
|
|
|
|
|
|
- ::v-deep {
|
|
|
- & > .el-input__inner {
|
|
|
+ .filter {
|
|
|
+ padding: 48px 0 105px;
|
|
|
+ .search {
|
|
|
+ width: 640px;
|
|
|
+ margin: 0 auto;
|
|
|
+ .el-input {
|
|
|
height: 46px;
|
|
|
- padding-left: 55px;
|
|
|
+ font-size: 16px;
|
|
|
+ .el-input__icon {
|
|
|
+ font-size: 24px;
|
|
|
+ line-height: 46px;
|
|
|
+ margin-left: 12px;
|
|
|
+ }
|
|
|
+
|
|
|
+ ::v-deep {
|
|
|
+ & > .el-input__inner {
|
|
|
+ height: 46px;
|
|
|
+ padding-left: 55px;
|
|
|
+ }
|
|
|
+ }
|
|
|
}
|
|
|
}
|
|
|
}
|
|
|
- }
|
|
|
- }
|
|
|
|
|
|
- .navbar {
|
|
|
- position: absolute;
|
|
|
- top: 240px;
|
|
|
- right: -168px;
|
|
|
- width: 120px;
|
|
|
- border-radius: 16px;
|
|
|
- background: #fff;
|
|
|
- box-shadow: 0px 6px 20px rgba(40, 40, 40, 0.1);
|
|
|
- padding: 24px 0;
|
|
|
- box-sizing: border-box;
|
|
|
- z-index: 2;
|
|
|
- .link {
|
|
|
- &:hover {
|
|
|
- .icon {
|
|
|
- &.icon-device {
|
|
|
- background: url(~assets/theme-images/ross/pc-nav-entry-device-active.png)
|
|
|
- no-repeat center center,
|
|
|
- linear-gradient(180deg, #ffba63 0%, #f3920d 100%);
|
|
|
- background-size: 48px, 100%;
|
|
|
- }
|
|
|
- &.icon-doctor {
|
|
|
- background: url(~assets/theme-images/ross/pc-nav-entry-doctor-active.png)
|
|
|
- no-repeat center center,
|
|
|
- linear-gradient(180deg, #ffba63 0%, #f3920d 100%);
|
|
|
- background-size: 48px, 100%;
|
|
|
- }
|
|
|
- }
|
|
|
- .text {
|
|
|
- @include themify($themes) {
|
|
|
- color: themed('color');
|
|
|
+ .navbar {
|
|
|
+ position: absolute;
|
|
|
+ top: 240px;
|
|
|
+ right: -168px;
|
|
|
+ width: 120px;
|
|
|
+ border-radius: 16px;
|
|
|
+ background: #fff;
|
|
|
+ box-shadow: 0px 6px 20px rgba(40, 40, 40, 0.1);
|
|
|
+ padding: 24px 0;
|
|
|
+ box-sizing: border-box;
|
|
|
+ z-index: 2;
|
|
|
+ .link {
|
|
|
+ &:hover {
|
|
|
+ .icon {
|
|
|
+ &.icon-device {
|
|
|
+ background: url(~assets/theme-images/ross/pc-nav-entry-device-active.png)
|
|
|
+ no-repeat center center,
|
|
|
+ linear-gradient(180deg, #ffba63 0%, #f3920d 100%);
|
|
|
+ background-size: 48px, 100%;
|
|
|
+ }
|
|
|
+ &.icon-doctor {
|
|
|
+ background: url(~assets/theme-images/ross/pc-nav-entry-doctor-active.png)
|
|
|
+ no-repeat center center,
|
|
|
+ linear-gradient(180deg, #ffba63 0%, #f3920d 100%);
|
|
|
+ background-size: 48px, 100%;
|
|
|
+ }
|
|
|
+ }
|
|
|
+ .text {
|
|
|
+ color: fetch('color');
|
|
|
+ }
|
|
|
}
|
|
|
- }
|
|
|
- }
|
|
|
|
|
|
- span {
|
|
|
- display: block;
|
|
|
- }
|
|
|
+ span {
|
|
|
+ display: block;
|
|
|
+ }
|
|
|
|
|
|
- .icon {
|
|
|
- width: 72px;
|
|
|
- height: 72px;
|
|
|
- // background: linear-gradient(180deg, #ffba63 0%, #f3920d 100%);
|
|
|
- background-color: #f6f6f7;
|
|
|
- border-radius: 12px;
|
|
|
-
|
|
|
- &.icon-device {
|
|
|
- background: url(~assets/theme-images/ross/pc-nav-entry-device.png)
|
|
|
- no-repeat center center #f6f6f7;
|
|
|
- background-size: 48px;
|
|
|
- }
|
|
|
+ .icon {
|
|
|
+ width: 72px;
|
|
|
+ height: 72px;
|
|
|
+ // background: linear-gradient(180deg, #ffba63 0%, #f3920d 100%);
|
|
|
+ background-color: #f6f6f7;
|
|
|
+ border-radius: 12px;
|
|
|
+
|
|
|
+ &.icon-device {
|
|
|
+ background: url(~assets/theme-images/ross/pc-nav-entry-device.png)
|
|
|
+ no-repeat center center #f6f6f7;
|
|
|
+ background-size: 48px;
|
|
|
+ }
|
|
|
+
|
|
|
+ &.icon-doctor {
|
|
|
+ background: url(~assets/theme-images/ross/pc-nav-entry-doctor.png)
|
|
|
+ no-repeat center center #f6f6f7;
|
|
|
+ background-size: 48px;
|
|
|
+ }
|
|
|
+ }
|
|
|
|
|
|
- &.icon-doctor {
|
|
|
- background: url(~assets/theme-images/ross/pc-nav-entry-doctor.png)
|
|
|
- no-repeat center center #f6f6f7;
|
|
|
- background-size: 48px;
|
|
|
+ .text {
|
|
|
+ font-size: 16px;
|
|
|
+ color: #404040;
|
|
|
+ margin-top: 8px;
|
|
|
+ }
|
|
|
}
|
|
|
}
|
|
|
|
|
|
- .text {
|
|
|
- font-size: 16px;
|
|
|
- color: #404040;
|
|
|
- margin-top: 8px;
|
|
|
- }
|
|
|
- }
|
|
|
- }
|
|
|
-
|
|
|
- .list {
|
|
|
- display: flex;
|
|
|
- align-items: center;
|
|
|
- justify-content: space-between;
|
|
|
- flex-wrap: wrap;
|
|
|
+ .list {
|
|
|
+ display: flex;
|
|
|
+ align-items: center;
|
|
|
+ justify-content: space-between;
|
|
|
+ flex-wrap: wrap;
|
|
|
|
|
|
- .empty {
|
|
|
- width: 390px;
|
|
|
- }
|
|
|
+ .empty {
|
|
|
+ width: 390px;
|
|
|
+ }
|
|
|
|
|
|
- .section {
|
|
|
- width: 490px;
|
|
|
- height: 136px;
|
|
|
- background-color: #f3f5f6;
|
|
|
- border-radius: 4px;
|
|
|
- box-sizing: border-box;
|
|
|
- padding: 16px;
|
|
|
- cursor: pointer;
|
|
|
- transition: all 0.4s;
|
|
|
- &:hover {
|
|
|
- box-shadow: 0 0 24px rgba(0, 0, 0, 0.2);
|
|
|
- }
|
|
|
+ .section {
|
|
|
+ width: 490px;
|
|
|
+ height: 136px;
|
|
|
+ background-color: #f3f5f6;
|
|
|
+ border-radius: 4px;
|
|
|
+ box-sizing: border-box;
|
|
|
+ padding: 16px;
|
|
|
+ cursor: pointer;
|
|
|
+ transition: all 0.4s;
|
|
|
+ &:hover {
|
|
|
+ box-shadow: 0 0 24px rgba(0, 0, 0, 0.2);
|
|
|
+ }
|
|
|
|
|
|
- .cover {
|
|
|
- display: block;
|
|
|
- width: 104px;
|
|
|
- height: 104px;
|
|
|
- }
|
|
|
- .info {
|
|
|
- position: relative;
|
|
|
- margin-left: 12px;
|
|
|
- width: 330px;
|
|
|
- .name {
|
|
|
- width: 200px;
|
|
|
- font-size: 18px;
|
|
|
- color: #101010;
|
|
|
- font-weight: bold;
|
|
|
- margin-bottom: 24px;
|
|
|
- text-overflow: ellipsis;
|
|
|
- white-space: nowrap;
|
|
|
- overflow: hidden;
|
|
|
- }
|
|
|
- .mobile,
|
|
|
- .address {
|
|
|
- width: 268px;
|
|
|
- position: relative;
|
|
|
- font-size: 14px;
|
|
|
- color: #404040;
|
|
|
- padding-left: 24px;
|
|
|
- line-height: 24px;
|
|
|
- text-overflow: ellipsis;
|
|
|
- white-space: nowrap;
|
|
|
- margin-top: 6px;
|
|
|
- overflow: hidden;
|
|
|
- &::after {
|
|
|
- content: '';
|
|
|
+ .cover {
|
|
|
display: block;
|
|
|
- width: 16px;
|
|
|
- height: 16px;
|
|
|
- position: absolute;
|
|
|
- left: 0;
|
|
|
- top: 50%;
|
|
|
- transform: translateY(-50%);
|
|
|
- background-size: 16px;
|
|
|
- background-repeat: no-repeat;
|
|
|
+ width: 104px;
|
|
|
+ height: 104px;
|
|
|
}
|
|
|
- }
|
|
|
- .mobile {
|
|
|
- &::after {
|
|
|
- background-image: url(~assets/theme-images/common/pc-icon-mobile.png);
|
|
|
+ .info {
|
|
|
+ position: relative;
|
|
|
+ margin-left: 12px;
|
|
|
+ width: 330px;
|
|
|
+ .name {
|
|
|
+ width: 200px;
|
|
|
+ font-size: 18px;
|
|
|
+ color: #101010;
|
|
|
+ font-weight: bold;
|
|
|
+ margin-bottom: 24px;
|
|
|
+ text-overflow: ellipsis;
|
|
|
+ white-space: nowrap;
|
|
|
+ overflow: hidden;
|
|
|
+ }
|
|
|
+ .mobile,
|
|
|
+ .address {
|
|
|
+ width: 268px;
|
|
|
+ position: relative;
|
|
|
+ font-size: 14px;
|
|
|
+ color: #404040;
|
|
|
+ padding-left: 24px;
|
|
|
+ line-height: 24px;
|
|
|
+ text-overflow: ellipsis;
|
|
|
+ white-space: nowrap;
|
|
|
+ margin-top: 6px;
|
|
|
+ overflow: hidden;
|
|
|
+ &::after {
|
|
|
+ content: '';
|
|
|
+ display: block;
|
|
|
+ width: 16px;
|
|
|
+ height: 16px;
|
|
|
+ position: absolute;
|
|
|
+ left: 0;
|
|
|
+ top: 50%;
|
|
|
+ transform: translateY(-50%);
|
|
|
+ background-size: 16px;
|
|
|
+ background-repeat: no-repeat;
|
|
|
+ }
|
|
|
+ }
|
|
|
+ .mobile {
|
|
|
+ &::after {
|
|
|
+ background-image: url(~assets/theme-images/common/pc-icon-mobile.png);
|
|
|
+ }
|
|
|
+ }
|
|
|
+ .address {
|
|
|
+ &::after {
|
|
|
+ background-image: url(~assets/theme-images/common/pc-icon-address.png);
|
|
|
+ }
|
|
|
+ }
|
|
|
+
|
|
|
+ .distance {
|
|
|
+ position: absolute;
|
|
|
+ font-size: 14px;
|
|
|
+ color: #404040;
|
|
|
+ top: 2px;
|
|
|
+ right: 0;
|
|
|
+ }
|
|
|
}
|
|
|
}
|
|
|
- .address {
|
|
|
- &::after {
|
|
|
- background-image: url(~assets/theme-images/common/pc-icon-address.png);
|
|
|
- }
|
|
|
- }
|
|
|
-
|
|
|
- .distance {
|
|
|
- position: absolute;
|
|
|
- font-size: 14px;
|
|
|
- color: #404040;
|
|
|
- top: 2px;
|
|
|
- right: 0;
|
|
|
- }
|
|
|
}
|
|
|
}
|
|
|
}
|
|
@@ -397,176 +393,176 @@ export default {
|
|
|
|
|
|
// 移动 端
|
|
|
@media screen and (max-width: 768px) {
|
|
|
- .page-top {
|
|
|
- height: 100vw;
|
|
|
- @include themify($themes) {
|
|
|
- background: themed('h5-banner-club');
|
|
|
- }
|
|
|
- background-size: 100vw 100vw !important;
|
|
|
-
|
|
|
- .logo {
|
|
|
- display: block;
|
|
|
- width: 14.8vw;
|
|
|
- height: 14.8vw;
|
|
|
- border-radius: 50%;
|
|
|
- background: #fff;
|
|
|
- }
|
|
|
- .name {
|
|
|
- font-size: 4vw;
|
|
|
- color: #fff;
|
|
|
- }
|
|
|
- }
|
|
|
- .page-content {
|
|
|
- position: relative;
|
|
|
-
|
|
|
- .title {
|
|
|
- font-size: 3.4vw;
|
|
|
- color: #404040;
|
|
|
+ .page {
|
|
|
+ @include useTheme() {
|
|
|
+ .page-top {
|
|
|
+ height: 100vw;
|
|
|
+ background: fetch('h5-banner-club');
|
|
|
+ background-size: 100vw 100vw !important;
|
|
|
|
|
|
- span {
|
|
|
- @include themify($themes) {
|
|
|
- color: themed('color');
|
|
|
+ .logo {
|
|
|
+ display: block;
|
|
|
+ width: 14.8vw;
|
|
|
+ height: 14.8vw;
|
|
|
+ border-radius: 50%;
|
|
|
+ background: #fff;
|
|
|
+ }
|
|
|
+ .name {
|
|
|
+ font-size: 4vw;
|
|
|
+ color: #fff;
|
|
|
}
|
|
|
}
|
|
|
- }
|
|
|
+ .page-content {
|
|
|
+ position: relative;
|
|
|
|
|
|
- .filter {
|
|
|
- padding: 6.4vw 3.2vw 12.8vw;
|
|
|
- }
|
|
|
+ .title {
|
|
|
+ font-size: 3.4vw;
|
|
|
+ color: #404040;
|
|
|
|
|
|
- .navbar {
|
|
|
- position: fixed;
|
|
|
- top: 50% !important;
|
|
|
- right: 3.2vw;
|
|
|
- left: unset !important;
|
|
|
- width: 14vw;
|
|
|
- border-radius: 1.6vw;
|
|
|
- background: #fff;
|
|
|
- box-shadow: 0px 0.6vw 2vw rgba(40, 40, 40, 0.1);
|
|
|
- padding: 2.8vw 0;
|
|
|
- box-sizing: border-box;
|
|
|
- z-index: 2;
|
|
|
- span {
|
|
|
- display: block;
|
|
|
- }
|
|
|
+ span {
|
|
|
+ color: fetch('color');
|
|
|
+ }
|
|
|
+ }
|
|
|
|
|
|
- .icon {
|
|
|
- position: relative;
|
|
|
- width: 7.2vw;
|
|
|
- height: 7.2vw;
|
|
|
- border-radius: 1.2vw;
|
|
|
- background: linear-gradient(180deg, #ffba63 0%, #f3920d 100%);
|
|
|
-
|
|
|
- &.icon-device,
|
|
|
- &.icon-doctor {
|
|
|
- &::after {
|
|
|
- content: '';
|
|
|
+ .filter {
|
|
|
+ padding: 6.4vw 3.2vw 12.8vw;
|
|
|
+ }
|
|
|
+
|
|
|
+ .navbar {
|
|
|
+ position: fixed;
|
|
|
+ top: 50% !important;
|
|
|
+ right: 3.2vw;
|
|
|
+ left: unset !important;
|
|
|
+ width: 14vw;
|
|
|
+ border-radius: 1.6vw;
|
|
|
+ background: #fff;
|
|
|
+ box-shadow: 0px 0.6vw 2vw rgba(40, 40, 40, 0.1);
|
|
|
+ padding: 2.8vw 0;
|
|
|
+ box-sizing: border-box;
|
|
|
+ z-index: 2;
|
|
|
+ span {
|
|
|
display: block;
|
|
|
- width: 4.8vw;
|
|
|
- height: 4.8vw;
|
|
|
- position: absolute;
|
|
|
- left: 50%;
|
|
|
- top: 50%;
|
|
|
- transform: translate(-50%, -50%);
|
|
|
- background-size: 4.8vw !important;
|
|
|
}
|
|
|
- }
|
|
|
|
|
|
- &.icon-device {
|
|
|
- &::after {
|
|
|
- background: url(~assets/theme-images/ross/pc-nav-entry-device-active.png)
|
|
|
- no-repeat center;
|
|
|
+ .icon {
|
|
|
+ position: relative;
|
|
|
+ width: 7.2vw;
|
|
|
+ height: 7.2vw;
|
|
|
+ border-radius: 1.2vw;
|
|
|
+ background: linear-gradient(180deg, #ffba63 0%, #f3920d 100%);
|
|
|
+
|
|
|
+ &.icon-device,
|
|
|
+ &.icon-doctor {
|
|
|
+ &::after {
|
|
|
+ content: '';
|
|
|
+ display: block;
|
|
|
+ width: 4.8vw;
|
|
|
+ height: 4.8vw;
|
|
|
+ position: absolute;
|
|
|
+ left: 50%;
|
|
|
+ top: 50%;
|
|
|
+ transform: translate(-50%, -50%);
|
|
|
+ background-size: 4.8vw !important;
|
|
|
+ }
|
|
|
+ }
|
|
|
+
|
|
|
+ &.icon-device {
|
|
|
+ &::after {
|
|
|
+ background: url(~assets/theme-images/ross/pc-nav-entry-device-active.png)
|
|
|
+ no-repeat center;
|
|
|
+ }
|
|
|
+ }
|
|
|
+
|
|
|
+ &.icon-doctor {
|
|
|
+ &::after {
|
|
|
+ background: url(~assets/theme-images/ross/pc-nav-entry-doctor-active.png)
|
|
|
+ no-repeat center;
|
|
|
+ }
|
|
|
+ }
|
|
|
}
|
|
|
- }
|
|
|
|
|
|
- &.icon-doctor {
|
|
|
- &::after {
|
|
|
- background: url(~assets/theme-images/ross/pc-nav-entry-doctor-active.png)
|
|
|
- no-repeat center;
|
|
|
+ .text {
|
|
|
+ font-size: 2.4vw;
|
|
|
+ color: #f3920d;
|
|
|
+ margin-top: 1.2vw;
|
|
|
}
|
|
|
}
|
|
|
}
|
|
|
|
|
|
- .text {
|
|
|
- font-size: 2.4vw;
|
|
|
- color: #f3920d;
|
|
|
- margin-top: 1.2vw;
|
|
|
- }
|
|
|
- }
|
|
|
- }
|
|
|
+ .list {
|
|
|
+ display: flex;
|
|
|
+ align-items: center;
|
|
|
+ flex-direction: column;
|
|
|
|
|
|
- .list {
|
|
|
- display: flex;
|
|
|
- align-items: center;
|
|
|
- flex-direction: column;
|
|
|
-
|
|
|
- .section {
|
|
|
- width: 93.6vw;
|
|
|
- height: 26vw;
|
|
|
- background-color: #f3f5f6;
|
|
|
- border-radius: 4px;
|
|
|
- box-sizing: border-box;
|
|
|
- padding: 3.2vw;
|
|
|
-
|
|
|
- .cover {
|
|
|
- display: block;
|
|
|
- width: 19.6vw;
|
|
|
- height: 19.6vw;
|
|
|
- }
|
|
|
- .info {
|
|
|
- position: relative;
|
|
|
- margin-left: 3.2vw;
|
|
|
- .name {
|
|
|
- width: 48vw;
|
|
|
- font-size: 4vw;
|
|
|
- color: #101010;
|
|
|
- font-weight: bold;
|
|
|
- margin-bottom: 4vw;
|
|
|
- text-overflow: ellipsis;
|
|
|
- white-space: nowrap;
|
|
|
- overflow: hidden;
|
|
|
- }
|
|
|
- .mobile,
|
|
|
- .address {
|
|
|
- width: 66vw;
|
|
|
- position: relative;
|
|
|
- font-size: 3vw;
|
|
|
- color: #404040;
|
|
|
- padding-left: 5vw;
|
|
|
- line-height: 5vw;
|
|
|
- text-overflow: ellipsis;
|
|
|
- white-space: nowrap;
|
|
|
- overflow: hidden;
|
|
|
- &::after {
|
|
|
- content: '';
|
|
|
+ .section {
|
|
|
+ width: 93.6vw;
|
|
|
+ height: 26vw;
|
|
|
+ background-color: #f3f5f6;
|
|
|
+ border-radius: 4px;
|
|
|
+ box-sizing: border-box;
|
|
|
+ padding: 3.2vw;
|
|
|
+
|
|
|
+ .cover {
|
|
|
display: block;
|
|
|
- width: 4vw;
|
|
|
- height: 4vw;
|
|
|
- position: absolute;
|
|
|
- left: 0;
|
|
|
- top: 50%;
|
|
|
- transform: translateY(-50%);
|
|
|
- background-size: 4vw 4vw;
|
|
|
- background-repeat: no-repeat;
|
|
|
- }
|
|
|
- }
|
|
|
- .mobile {
|
|
|
- &::after {
|
|
|
- background-image: url(~assets/theme-images/common/h5-icon-mobile.png);
|
|
|
+ width: 19.6vw;
|
|
|
+ height: 19.6vw;
|
|
|
}
|
|
|
- }
|
|
|
- .address {
|
|
|
- &::after {
|
|
|
- background-image: url(~assets/theme-images/common/h5-icon-address.png);
|
|
|
- }
|
|
|
- }
|
|
|
+ .info {
|
|
|
+ position: relative;
|
|
|
+ margin-left: 3.2vw;
|
|
|
+ .name {
|
|
|
+ width: 48vw;
|
|
|
+ font-size: 4vw;
|
|
|
+ color: #101010;
|
|
|
+ font-weight: bold;
|
|
|
+ margin-bottom: 4vw;
|
|
|
+ text-overflow: ellipsis;
|
|
|
+ white-space: nowrap;
|
|
|
+ overflow: hidden;
|
|
|
+ }
|
|
|
+ .mobile,
|
|
|
+ .address {
|
|
|
+ width: 66vw;
|
|
|
+ position: relative;
|
|
|
+ font-size: 3vw;
|
|
|
+ color: #404040;
|
|
|
+ padding-left: 5vw;
|
|
|
+ line-height: 5vw;
|
|
|
+ text-overflow: ellipsis;
|
|
|
+ white-space: nowrap;
|
|
|
+ overflow: hidden;
|
|
|
+ &::after {
|
|
|
+ content: '';
|
|
|
+ display: block;
|
|
|
+ width: 4vw;
|
|
|
+ height: 4vw;
|
|
|
+ position: absolute;
|
|
|
+ left: 0;
|
|
|
+ top: 50%;
|
|
|
+ transform: translateY(-50%);
|
|
|
+ background-size: 4vw 4vw;
|
|
|
+ background-repeat: no-repeat;
|
|
|
+ }
|
|
|
+ }
|
|
|
+ .mobile {
|
|
|
+ &::after {
|
|
|
+ background-image: url(~assets/theme-images/common/h5-icon-mobile.png);
|
|
|
+ }
|
|
|
+ }
|
|
|
+ .address {
|
|
|
+ &::after {
|
|
|
+ background-image: url(~assets/theme-images/common/h5-icon-address.png);
|
|
|
+ }
|
|
|
+ }
|
|
|
|
|
|
- .distance {
|
|
|
- position: absolute;
|
|
|
- font-size: 3vw;
|
|
|
- color: #404040;
|
|
|
- top: 0.8vw;
|
|
|
- right: 0;
|
|
|
+ .distance {
|
|
|
+ position: absolute;
|
|
|
+ font-size: 3vw;
|
|
|
+ color: #404040;
|
|
|
+ top: 0.8vw;
|
|
|
+ right: 0;
|
|
|
+ }
|
|
|
+ }
|
|
|
}
|
|
|
}
|
|
|
}
|