mirror of
https://gitee.com/lab1024/smart-admin.git
synced 2025-10-02 02:06:38 +08:00
Desktop Menu / Product detail page layout update
This commit is contained in:
parent
f1b7b7c501
commit
baad9d2555
@ -1,9 +1,73 @@
|
||||
/*Body*/
|
||||
body{
|
||||
font-family: DINPro,'PingFang SC',miui,'Hiragino Sans GB','Microsoft Yahei',sans-serif;
|
||||
line-height: 1.5;
|
||||
color: #666;
|
||||
}
|
||||
img, picture {
|
||||
display: block;
|
||||
max-width: 100%;
|
||||
height: auto;
|
||||
}
|
||||
.ts-hover-show {
|
||||
display: none;
|
||||
}
|
||||
.ts-wechat--xs .ts-hover-show {
|
||||
position: absolute;
|
||||
top: 32px;
|
||||
left: 0;
|
||||
opacity: 0;
|
||||
width: 112px;
|
||||
padding: .5rem;
|
||||
}
|
||||
.ts-wechat--xs .ts-hover-show img {
|
||||
margin: 0 auto;
|
||||
}
|
||||
.ts-wechat--xs:hover .ts-hover-show {
|
||||
display: block;
|
||||
color: #666;
|
||||
-webkit-animation: fadeIn .3s ease forwards;
|
||||
animation: fadeIn .3s ease forwards;
|
||||
}
|
||||
.rc-max-width--xl {
|
||||
max-width: 1400px;
|
||||
}
|
||||
.rc-max-width--xl {
|
||||
max-width: 1400px;
|
||||
margin: 0 auto;
|
||||
}
|
||||
.rc-full-width {
|
||||
width: 100%;
|
||||
}
|
||||
.rc-content-block__wrapper, .rc-max-width--lg, .rc-max-width--md, .rc-max-width--sm, .rc-max-width--xl, .rc-max-width--xxl {
|
||||
margin-left: auto!important;
|
||||
margin-right: auto!important;
|
||||
}
|
||||
.rc-main {
|
||||
padding:0 .2rem;
|
||||
padding:0 1.25rem;
|
||||
box-sizing:border-box;
|
||||
margin:0 auto;
|
||||
}
|
||||
.ts-remove {
|
||||
text-decoration: line-through;
|
||||
}
|
||||
|
||||
.rc-icon.ts-wechat--xs:after {
|
||||
width: 24px;
|
||||
background-image: unset;
|
||||
mask: url("../image/wechat.svg") no-repeat center center;
|
||||
-webkit-mask: url("../image/wechat.svg") no-repeat center center;
|
||||
background-color: #666;
|
||||
}
|
||||
.rc-icon--xs.rc-pin--xs.rc-pin--xs:after, .rc-icon.rc-pin--xs.rc-pin--xs:after {
|
||||
background-position: 81.82% 57.14%;
|
||||
}
|
||||
.rc-icon--xs.rc-search--xs.rc-search--xs:after, .rc-icon.rc-search--xs.rc-search--xs:after {
|
||||
background-position: 81.82% 85.71%;
|
||||
}
|
||||
.rc-icon--xs.rc-menu--xs.rc-menu--xs:after, .rc-icon.rc-menu--xs.rc-menu--xs:after {
|
||||
background-position: 72.73% 0;
|
||||
}
|
||||
.ts-product-list{
|
||||
li{
|
||||
img{
|
||||
@ -58,21 +122,451 @@
|
||||
display:none;
|
||||
}
|
||||
}
|
||||
.online{
|
||||
width:100%;
|
||||
background:#d7d7d7;
|
||||
margin-top:1.5rem;
|
||||
height:.06rem;
|
||||
&.bold{
|
||||
height:.32rem;
|
||||
background:#f6f6f6;
|
||||
}
|
||||
}
|
||||
/*Body end*/
|
||||
|
||||
/* 头部 */
|
||||
header.rc-header .rc-header__nav ul {
|
||||
margin: 0;
|
||||
padding: 0;
|
||||
}
|
||||
.rc-header {
|
||||
width: 100%;
|
||||
position: fixed;
|
||||
top: 0;
|
||||
left: 0;
|
||||
z-index: 59;
|
||||
-webkit-box-shadow: 0 2px 4px #f1f1f1;
|
||||
box-shadow: 0 2px 4px #f1f1f1;
|
||||
}
|
||||
header.rc-header button {
|
||||
background-color: transparent;
|
||||
}
|
||||
.rc-header__right {
|
||||
-webkit-box-pack: end;
|
||||
-ms-flex-pack: end;
|
||||
justify-content: flex-end;
|
||||
}
|
||||
.rc-header__nav {
|
||||
background-color: #fff;
|
||||
position: relative;
|
||||
display: -webkit-box;
|
||||
display: -ms-flexbox;
|
||||
display: flex;
|
||||
-webkit-box-align: center;
|
||||
-ms-flex-align: center;
|
||||
align-items: center;
|
||||
-webkit-box-pack: justify;
|
||||
-ms-flex-pack: justify;
|
||||
justify-content: space-between;
|
||||
width: 100%;
|
||||
z-index: 59;
|
||||
background: #fff;
|
||||
-webkit-transition: -webkit-transform .2s ease;
|
||||
transition: -webkit-transform .2s ease;
|
||||
transition: transform .2s ease;
|
||||
transition: transform .2s ease,-webkit-transform .2s ease;
|
||||
}
|
||||
header.rc-header .rc-header__nav ul {
|
||||
margin: 0;
|
||||
padding: 0;
|
||||
}
|
||||
.rc-header__nav--primary {
|
||||
height: 4.167rem;
|
||||
}
|
||||
.rc-header__center {
|
||||
align-self: center;
|
||||
justify-content: center;
|
||||
}
|
||||
.rc-list, .rc-wysiwyg ol, .rc-wysiwyg ul {
|
||||
font-size: 1em;
|
||||
margin: 0;
|
||||
list-style-position: outside;
|
||||
}
|
||||
.rc-list--inline {
|
||||
display: -webkit-box;
|
||||
display: -ms-flexbox;
|
||||
display: flex;
|
||||
-webkit-box-flex: 1;
|
||||
-ms-flex: 1;
|
||||
flex: 1;
|
||||
-webkit-box-align: center;
|
||||
-ms-flex-align: center;
|
||||
align-items: center;
|
||||
}
|
||||
.rc-list--inline .list__item, .rc-list--inline .rc-list__item {
|
||||
display: inline-block;
|
||||
}
|
||||
.rc-list__item, .rc-wysiwyg ol>li, .rc-wysiwyg ul>li {
|
||||
line-height: 1.5;
|
||||
position: relative;
|
||||
}
|
||||
.rc-list__item:last-child, .rc-wysiwyg ol>li:last-child, .rc-wysiwyg ul>li:last-child {
|
||||
margin-bottom: 0;
|
||||
}
|
||||
.rc-list--inline[role=menubar], .rc-list--inline[role=tablist] {
|
||||
display: -webkit-box;
|
||||
display: -ms-flexbox;
|
||||
display: flex;
|
||||
-webkit-box-flex: 1;
|
||||
-ms-flex: 1;
|
||||
flex: 1;
|
||||
}
|
||||
.rc-list__item, .rc-wysiwyg ol>li, .rc-wysiwyg ul>li {
|
||||
line-height: 1.5;
|
||||
position: relative;
|
||||
}
|
||||
.rc-list--align {
|
||||
padding: 0;
|
||||
margin-left: 0;
|
||||
list-style-position: outside;
|
||||
}
|
||||
.rc-list--blank {
|
||||
list-style-type: none;
|
||||
}
|
||||
.rc-header__brand {
|
||||
-webkit-box-flex: 0;
|
||||
-ms-flex: 0;
|
||||
flex: 0;
|
||||
padding: 16px;
|
||||
height: 100%;
|
||||
-webkit-box-flex: 1;
|
||||
-ms-flex-positive: 1;
|
||||
flex-grow: 1;
|
||||
text-align: center;
|
||||
display: inline-block;
|
||||
}
|
||||
.rc-btn--icon, .rc-btn--icon--xs, .rc-input__submit--search {
|
||||
overflow: visible;
|
||||
width: auto;
|
||||
}
|
||||
.rc-btn--icon {
|
||||
background-color: transparent;
|
||||
color: #666;
|
||||
border-color: transparent;
|
||||
}
|
||||
[role=menubar] .rc-btn {
|
||||
margin-left: 0;
|
||||
margin-right: 8px;
|
||||
}
|
||||
header.rc-header .rc-header__nav ul {
|
||||
margin: 0;
|
||||
padding: 0;
|
||||
}
|
||||
header.rc-header .rc-header__nav a.rc-header__brand {
|
||||
padding: 15px 0 0;
|
||||
}
|
||||
h1, h2, h3, h4, h5, h6 {
|
||||
font-weight: 300;
|
||||
margin-top: 0;
|
||||
}
|
||||
.rc-screen-reader-text, .screen-reader-text {
|
||||
clip: rect(1px,1px,1px,1px);
|
||||
position: absolute!important;
|
||||
height: 1px;
|
||||
width: 1px;
|
||||
overflow: hidden;
|
||||
}
|
||||
.rc-top{
|
||||
position: relative;
|
||||
}
|
||||
.rc-icon.ts-weibo--xs:after {
|
||||
width: 24px;
|
||||
background-image: unset;
|
||||
mask: url("../image/weibo.svg") no-repeat center center;
|
||||
-webkit-mask: url("../image/weibo.svg") no-repeat center center;
|
||||
background-color: #666;
|
||||
}
|
||||
.rc-icon[class*="--xs"]:after {
|
||||
width: 24px;
|
||||
}
|
||||
.rc-icon.iconography:after, .rc-icon.rc-iconography:after {
|
||||
background-image: url("../image/royal-canin.sprite--iconography.svg?v=8-10-0");
|
||||
}
|
||||
.rc-icon[class*="--xs"].iconography:after, .rc-icon[class*="--xs"].rc-iconography:after {
|
||||
background-image: url("../image/royal-canin.sprite--iconography--xs.svg?v=8-10-0");
|
||||
width: 24px;
|
||||
}
|
||||
.rc-btn--action:after, .rc-btn--icon--xs:after, .rc-btn--icon:after, .rc-center-align, .rc-input__submit--micro:after, .rc-input__submit--search:after, .rc-modal__logo, .rc-page-header .rc-logo-wrapper {
|
||||
position: absolute!important;
|
||||
top: 50%;
|
||||
left: 50%;
|
||||
-webkit-transform: translateY(-50%) translateX(-50%);
|
||||
transform: translateY(-50%) translateX(-50%);
|
||||
}
|
||||
.rc-alert .alert__close:after, .rc-alert .rc-alert__close:after, .rc-breadcrumb__list-item:after, .rc-btn--action:after, .rc-btn--icon--xs:after, .rc-btn--icon:after, .rc-btn--icon:hover:after, .rc-btn--one:after, .rc-btn--sm:not(.rc-tab):not(.tab):after, .rc-btn--two:after, .rc-checklist-row__label:after, .rc-icon.interactive:hover:after, .rc-input--error.input:after, .rc-input--error.rc-input:after, .rc-input--success.input:after, .rc-input--success.rc-input:after, .rc-input--warning.input:after, .rc-input--warning.rc-input:after, .rc-input__checkbox:checked+.input__label--inline:after, .rc-input__checkbox:checked+.rc-input__label--inline:after, .rc-input__submit--micro:after, .rc-input__submit--search:after, .rc-list__header[aria-haspopup=true]:after, .rc-navigation--next:after, .rc-navigation--prev:after, .rc-navigation--vertical__list-item>a.active:after, .rc-navigation--vertical__list-item>a.rc-active:after, .rc-navigation--vertical__list-item>a:hover:after, .rc-response--affirmative:after, .rc-response--negative:after, .rc-select .choices:after, .rc-select:not(.rc-select-processed):after, .rc-styled-link--external:after, .rc-styled-link--new-window:after {
|
||||
content: "";
|
||||
display: inline-block;
|
||||
background-repeat: no-repeat;
|
||||
width: 32px;
|
||||
height: 32px;
|
||||
overflow: hidden;
|
||||
-webkit-transform-origin: 50% 50%;
|
||||
transform-origin: 50% 50%;
|
||||
}
|
||||
.rc-btn, .rc-input__submit {
|
||||
display: inline-block;
|
||||
position: relative;
|
||||
vertical-align: middle;
|
||||
white-space: nowrap;
|
||||
text-overflow: ellipsis;
|
||||
line-height: inherit;
|
||||
font-size: inherit;
|
||||
text-align: center;
|
||||
overflow: hidden;
|
||||
padding: 6px 1.5rem;
|
||||
border: 2px solid transparent;
|
||||
border-radius: 999px;
|
||||
text-decoration: none;
|
||||
cursor: pointer;
|
||||
-webkit-transition: all .2s ease;
|
||||
transition: all .2s ease;
|
||||
font-weight: 300;
|
||||
font-family: RC TYPE,Roboto,Avenir,Helvetica,Arial,sans-serif;
|
||||
width: auto;
|
||||
}
|
||||
.rc-alert .alert__close, .rc-alert .rc-alert__close, .rc-btn--icon, .rc-btn--icon--xs, .rc-input__submit--search {
|
||||
border-radius: 0;
|
||||
padding: 0;
|
||||
}
|
||||
.rc-icon {
|
||||
vertical-align: middle;
|
||||
}
|
||||
.rc-btn--icon:after, .rc-icon.interactive {
|
||||
-webkit-transition: background-image .2s ease;
|
||||
transition: background-image .2s ease;
|
||||
}
|
||||
.rc-btn--icon-label, .rc-btn--icon-tab {
|
||||
border-radius: 0;
|
||||
overflow: visible;
|
||||
text-align: left;
|
||||
padding-left: 40px;
|
||||
padding-right: 24px;
|
||||
}
|
||||
.rc-btn--icon-label:after, .rc-btn--icon-tab:after {
|
||||
position: absolute!important;
|
||||
top: 50%;
|
||||
-webkit-transform: translateY(-50%) translateX(-50%);
|
||||
transform: translateY(-50%) translateX(-50%);
|
||||
}
|
||||
.rc-btn--icon-label:after, .rc-btn--icon-tab:after {
|
||||
left: 24px;
|
||||
}
|
||||
.rc-icon:after {
|
||||
content: "";
|
||||
display: inline-block;
|
||||
background-repeat: no-repeat;
|
||||
width: 32px;
|
||||
height: 32px;
|
||||
overflow: hidden;
|
||||
-webkit-transform-origin: 50% 50%;
|
||||
transform-origin: 50% 50%;
|
||||
position: relative;
|
||||
}
|
||||
.rc-list__header {
|
||||
display: block;
|
||||
position: relative;
|
||||
padding: 1rem .5rem;
|
||||
width: 100%;
|
||||
border-radius: 0;
|
||||
text-align: left;
|
||||
background-color: #fff;
|
||||
font-weight: 500;
|
||||
text-transform: uppercase;
|
||||
}
|
||||
.rc-list__header, .rc-list__header--content, .rc-list__link--content, .rc-styled-link, .rc-styled-link--cta, .rc-styled-link--external, .rc-styled-link--new-window, .rc-wysiwyg a {
|
||||
background-color: transparent;
|
||||
border: none;
|
||||
user-select: none;
|
||||
text-decoration: none;
|
||||
cursor: pointer;
|
||||
}
|
||||
.rc-list__header, .rc-list__header--content, .rc-list__link, .rc-list__link--content, .rc-styled-link, .rc-styled-link--cta, .rc-styled-link--external, .rc-styled-link--new-window, .rc-wysiwyg a {
|
||||
color: #444;
|
||||
position: relative;
|
||||
-webkit-transition: color .2s ease-in,border-color .2s ease-in;
|
||||
transition: color .2s ease-in,border-color .2s ease-in;
|
||||
}
|
||||
.rc-header__nav--secondary .rc-list__header {
|
||||
color: #444;
|
||||
}
|
||||
header.rc-header .rc-header__nav a.rc-list__header {
|
||||
text-decoration: none;
|
||||
}
|
||||
.rc-header__nav--secondary {
|
||||
position: relative;
|
||||
z-index: 58;
|
||||
overflow-y: hidden;
|
||||
height: 2.5rem;
|
||||
max-height: 2.5rem;
|
||||
-webkit-box-shadow: 0 2px 4px #f1f1f1;
|
||||
box-shadow: 0 2px 4px #f1f1f1;
|
||||
}
|
||||
.rc-container {
|
||||
height: 100%;
|
||||
max-width: 1400px;
|
||||
background-color: #fff;
|
||||
margin: auto;
|
||||
}
|
||||
.layout-container, .rc-layout-container {
|
||||
display: -webkit-box;
|
||||
display: -ms-flexbox;
|
||||
display: flex;
|
||||
-ms-flex-preferred-size: 100%;
|
||||
flex-basis: 100%;
|
||||
-ms-flex-wrap: wrap;
|
||||
flex-wrap: wrap;
|
||||
-webkit-box-orient: horizontal;
|
||||
-webkit-box-direction: normal;
|
||||
-ms-flex-direction: row;
|
||||
flex-direction: row;
|
||||
z-index: 1;
|
||||
margin-left: auto;
|
||||
margin-right: auto;
|
||||
}
|
||||
.rc-margin--none {
|
||||
margin: 0!important;
|
||||
}
|
||||
header .rc-header__nav--secondary .rc-container .submenu {
|
||||
position: fixed;
|
||||
top: 120px;
|
||||
left: 0;
|
||||
display: flex;
|
||||
background-color: #fff;
|
||||
overflow: hidden;
|
||||
height: 0;
|
||||
width: 100%;
|
||||
box-shadow: 0px 2px 12px #ddd;
|
||||
opacity: .7;
|
||||
-webkit-transition: height .2s ease,opacity .2s ease;
|
||||
transition: height .2s ease,opacity .2s ease;
|
||||
}
|
||||
header .rc-header__nav--secondary .rc-container:hover .submenu {
|
||||
height: 28rem;
|
||||
opacity: 1;
|
||||
border-top: 2px solid #e2001a;
|
||||
}
|
||||
.rc-list__item.list__item--group, .rc-list__item.rc-list__item--group {
|
||||
break-inside: avoid;
|
||||
page-break-inside: avoid;
|
||||
}
|
||||
header .rc-header__nav--secondary .submenu .ts-head-img {
|
||||
width: 14.6vw;
|
||||
height: 6.3vw;
|
||||
object-fit: cover;
|
||||
box-shadow: 0px 2px 4px rgba(0,0,0,.08);
|
||||
}
|
||||
header .rc-header__nav--secondary .submenu .rc-list__header {
|
||||
font-weight: bold;
|
||||
}
|
||||
header.rc-header .rc-header__nav a.rc-list__header {
|
||||
text-decoration: none;
|
||||
}
|
||||
header.rc-header .rc-header__nav ul {
|
||||
margin: 0;
|
||||
padding: 0;
|
||||
}
|
||||
.rc-list__item, .rc-wysiwyg ol>li, .rc-wysiwyg ul>li {
|
||||
line-height: 1.5;
|
||||
position: relative;
|
||||
}
|
||||
.rc-list__link {
|
||||
display: block;
|
||||
text-align: left;
|
||||
font-weight: 300;
|
||||
width: 100%;
|
||||
background-color: transparent;
|
||||
user-select: none;
|
||||
text-decoration: none;
|
||||
cursor: pointer;
|
||||
padding: .25rem 0;
|
||||
border-bottom: none;
|
||||
}
|
||||
|
||||
.rc-fixright{
|
||||
width: 3.75rem;
|
||||
height: auto;
|
||||
position: fixed;
|
||||
right: 0;
|
||||
top: 30%;
|
||||
ul{
|
||||
width: 60px;
|
||||
height: 181px;
|
||||
box-shadow: 0px 0px 6px rgb(0 0 0 / 10%);
|
||||
background-color: white;
|
||||
display: flex;
|
||||
flex-direction: column;
|
||||
li{
|
||||
width: 100%;
|
||||
display: flex;
|
||||
flex-direction: column;
|
||||
justify-content: center;
|
||||
align-items: center;
|
||||
margin-top: 0.18rem;
|
||||
}
|
||||
li:last-child{
|
||||
margin-bottom: 0.2rem;
|
||||
}
|
||||
}
|
||||
img{
|
||||
width: 1.875rem;
|
||||
height: auto;
|
||||
display: block;
|
||||
}
|
||||
span{
|
||||
font-size: 0.12rem;
|
||||
color: #666666;
|
||||
}
|
||||
.tuntop{
|
||||
width: 100%;
|
||||
height: 60px;
|
||||
background: #FFFFFF;
|
||||
box-shadow: 0px 0px 6px rgba(0, 0, 0, 0.1);
|
||||
opacity: 1;
|
||||
display: block;
|
||||
color: #666666;
|
||||
font-size: 12px;
|
||||
display: flex;
|
||||
flex-direction: column;
|
||||
align-items: center;
|
||||
justify-content: center;
|
||||
margin-top: 8px;
|
||||
img{
|
||||
width: 0.22rem;
|
||||
height: 0.22rem;
|
||||
display: block;
|
||||
}
|
||||
}
|
||||
}
|
||||
/* 手机端 */
|
||||
@media screen and (max-width: 768px)
|
||||
{
|
||||
html {
|
||||
font-size:100px;
|
||||
}
|
||||
.rc-md-up {
|
||||
display: none!important;
|
||||
}
|
||||
.rc-main{
|
||||
width:100%;
|
||||
}
|
||||
.rc-top{
|
||||
margin-top: 74px;
|
||||
}
|
||||
.rc-list__header {
|
||||
background: none;
|
||||
padding: .5rem 0;
|
||||
border-bottom: none;
|
||||
}
|
||||
.rc-home-header{
|
||||
width: 100%;
|
||||
.rc-main
|
||||
@ -133,101 +627,96 @@
|
||||
border: 2px solid #d7d7d7;
|
||||
}
|
||||
}
|
||||
.online{
|
||||
height:.03rem;
|
||||
width:100%;
|
||||
background:#f6f6f6;
|
||||
margin-top:0.23rem;
|
||||
}
|
||||
.rc-fixright{
|
||||
width: 0.60rem;
|
||||
height: 1.81rem;
|
||||
position: fixed;
|
||||
right: 0;
|
||||
top: 30%;
|
||||
z-index: 9999;
|
||||
ul{
|
||||
width: 60px;
|
||||
height: 181px;
|
||||
box-shadow: 0px 0px 6px rgb(0 0 0 / 10%);
|
||||
background-color: white;
|
||||
display: flex;
|
||||
flex-direction: column;
|
||||
li{
|
||||
width: 100%;
|
||||
display: flex;
|
||||
flex-direction: column;
|
||||
justify-content: center;
|
||||
align-items: center;
|
||||
margin-top: 0.18rem;
|
||||
}
|
||||
li:last-child{
|
||||
width: 100%;
|
||||
display: flex;
|
||||
flex-direction: column;
|
||||
justify-content: center;
|
||||
align-items: center;
|
||||
margin-top: 0.18rem;
|
||||
margin-bottom: 0.2rem;
|
||||
}
|
||||
}
|
||||
img{
|
||||
width: 0.19rem;
|
||||
height: 0.19rem;
|
||||
display: block;
|
||||
}
|
||||
img:last-child{
|
||||
width: 0.22rem;
|
||||
height: 0.22rem;
|
||||
display: block;
|
||||
}
|
||||
span{
|
||||
font-size: 0.12rem;
|
||||
color: #666666;
|
||||
}
|
||||
.tuntop{
|
||||
width: 60px;
|
||||
height: 60px;
|
||||
background: #FFFFFF;
|
||||
box-shadow: 0px 0px 6px rgba(0, 0, 0, 0.1);
|
||||
opacity: 1;
|
||||
display: block;
|
||||
color: #666666;
|
||||
font-size: 12px;
|
||||
display: flex;
|
||||
flex-direction: column;
|
||||
align-items: center;
|
||||
justify-content: center;
|
||||
margin-top: 8px;
|
||||
img{
|
||||
width: 0.22rem;
|
||||
height: 0.22rem;
|
||||
display: block;
|
||||
}
|
||||
}
|
||||
}
|
||||
}
|
||||
/* pc端 */
|
||||
@media screen and (min-width: 768px) {
|
||||
@media screen and (min-width: 769px)
|
||||
{
|
||||
html {
|
||||
font-size:16px;
|
||||
}
|
||||
.rc-top{
|
||||
margin-top: 124px;
|
||||
}
|
||||
.ts-list--four-column {
|
||||
-webkit-column-count: 4;
|
||||
column-count: 4;
|
||||
}
|
||||
.rc-list__header{
|
||||
background: none;
|
||||
padding: .5rem 0;
|
||||
border-bottom: none;
|
||||
}
|
||||
.rc-padding--sm {
|
||||
padding: 2rem;
|
||||
}
|
||||
.rc-margin-bottom--xs {
|
||||
margin-bottom: .5rem;
|
||||
}
|
||||
.rc-header {
|
||||
-webkit-box-shadow: none;
|
||||
box-shadow: none;
|
||||
}
|
||||
.rc-header__logo {
|
||||
width: 120px;
|
||||
}
|
||||
.rc-header__nav--primary {
|
||||
height: 80px;
|
||||
}
|
||||
.rc-list--inline .list__item, .rc-list--inline .rc-list__item {
|
||||
margin-right: 32px;
|
||||
}
|
||||
.rc-btn--action, .rc-btn--icon, .rc-btn--icon--xs, .rc-input__submit--micro, .rc-input__submit--search {
|
||||
min-width: 48px;
|
||||
height: 48px;
|
||||
}
|
||||
.rc-md-down {
|
||||
display: none!important;
|
||||
}
|
||||
.ts-list--four-column, .ts-list--four-column .list, .ts-list--four-column .rc-list {
|
||||
page-break-inside: avoid;
|
||||
break-inside: avoid;
|
||||
}
|
||||
.rc-main {
|
||||
width:100%;
|
||||
max-width:1400px;
|
||||
}
|
||||
.online{
|
||||
height:8px;
|
||||
width:100%;
|
||||
background:#f6f6f6;
|
||||
margin-top:23px;
|
||||
.rc-list--inline:not([role=tablist]):not([role=menubar]) {
|
||||
-ms-flex-wrap: wrap;
|
||||
flex-wrap: wrap;
|
||||
}
|
||||
.layout-container, .rc-layout-container {
|
||||
margin-left: -1rem;
|
||||
margin-right: -1rem;
|
||||
}
|
||||
.rc-fixright{
|
||||
width:5.5rem;
|
||||
background: #FFFFFF;
|
||||
box-shadow: 0px 0px .62rem rgba(0, 0, 0, 0.16);
|
||||
border-radius: .25rem;
|
||||
display: flex;
|
||||
flex-direction: column;
|
||||
align-items: center;
|
||||
ul{
|
||||
width:100%;
|
||||
height: 100%;
|
||||
li{
|
||||
margin-top: .5rem;
|
||||
height:4.125rem;
|
||||
img{
|
||||
width:22px;
|
||||
height:auto;
|
||||
}
|
||||
}
|
||||
}
|
||||
}
|
||||
.rc-home-header{
|
||||
height:120px ;
|
||||
.rc-main
|
||||
{
|
||||
width: 92%;
|
||||
width: 100%;
|
||||
margin: 0 auto;
|
||||
// position: fixed;
|
||||
top: 0;
|
||||
z-index: 989;
|
||||
background: white;
|
||||
display: flex;
|
||||
justify-content: space-between;
|
||||
@ -286,4 +775,16 @@
|
||||
}
|
||||
|
||||
}
|
||||
/* 头部 end */
|
||||
|
||||
@media (max-width: 960px)
|
||||
{
|
||||
.rc-lg-up {
|
||||
display: none!important;
|
||||
}
|
||||
}
|
||||
@media (min-width: 1024px)
|
||||
{
|
||||
.rc-xl-down {
|
||||
display: none!important;
|
||||
}
|
||||
}
|
@ -440,74 +440,35 @@
|
||||
}
|
||||
|
||||
|
||||
@media screen and (min-width: 768px)
|
||||
@media screen and (min-width: 769px)
|
||||
{
|
||||
.sw-center{
|
||||
display: none;
|
||||
}
|
||||
.useraimg{
|
||||
width: 100%;
|
||||
height: 4.69rem;
|
||||
height: 29.31rem;
|
||||
object-fit: cover;
|
||||
}
|
||||
.van-swipe-item {
|
||||
color: #fff;
|
||||
height: 4.69rem;
|
||||
height: 29.31rem;
|
||||
width: 100%;
|
||||
font-size: 0.20rem;
|
||||
line-height: 1.50rem;
|
||||
font-size: 1.25rem;
|
||||
line-height: 9.375rem;
|
||||
text-align: center;
|
||||
|
||||
|
||||
}
|
||||
.rc-fixright{
|
||||
width: 0.60rem;
|
||||
height: 1.81rem;
|
||||
background: #FFFFFF;
|
||||
box-shadow: 0px 0px 0.10rem rgba(0, 0, 0, 0.16);
|
||||
border-radius: 0.04rem;
|
||||
position: fixed;
|
||||
right: 0;
|
||||
top: 30%;
|
||||
display: flex;
|
||||
flex-direction: column;
|
||||
z-index: 9999;
|
||||
ul{
|
||||
height: 100%;
|
||||
li{
|
||||
width: 100%;
|
||||
display: flex;
|
||||
flex-direction: column;
|
||||
justify-content: center;
|
||||
align-items: center;
|
||||
margin-top: 0.08rem;
|
||||
}
|
||||
}
|
||||
img{
|
||||
width: 0.30rem;
|
||||
height: 0.30rem;
|
||||
display: block;
|
||||
}
|
||||
|
||||
img{
|
||||
width: 0.30rem;
|
||||
height: 0.30rem;
|
||||
display: block;
|
||||
}
|
||||
span{
|
||||
font-size: 0.12rem;
|
||||
color: #666666;
|
||||
}
|
||||
}
|
||||
.rc-lunbo{
|
||||
width: 100%;
|
||||
margin-top: 0.46rem;
|
||||
margin-top: 2.875rem;
|
||||
margin: 0 auto;
|
||||
position: relative;
|
||||
margin-top: 1.50rem;
|
||||
margin-top: 9.375rem;
|
||||
h2{
|
||||
text-align: center;
|
||||
font-size: 0.40rem;
|
||||
font-size: 2.5rem;
|
||||
color: #E2001A;
|
||||
}
|
||||
#xxxFullScreen {
|
||||
@ -520,7 +481,7 @@ color: #666666;
|
||||
|
||||
.swiper-container2 {
|
||||
width: 100%;
|
||||
height: 6.18rem;
|
||||
height: 38.6rem;
|
||||
// overflow: visible !important;
|
||||
position: relative;
|
||||
}
|
||||
@ -536,7 +497,7 @@ color: #666666;
|
||||
}
|
||||
/* 下一张 */
|
||||
#swiper1 .swiper-container .swiper-wrapper .swiper-slide-next {
|
||||
margin-top: 0.05rem;
|
||||
margin-top: .31rem;
|
||||
//height: 6.18rem !important;
|
||||
}
|
||||
.swiper-container .swiper-wrapper .swiper-slide-active {
|
||||
@ -558,7 +519,7 @@ color: #666666;
|
||||
height: auto;
|
||||
}
|
||||
span{
|
||||
font-size: 0.26rem;
|
||||
font-size: 1.6rem;
|
||||
display: block;
|
||||
margin-top: 20px;
|
||||
color: #E2001A;
|
||||
@ -580,29 +541,29 @@ color: #666666;
|
||||
em
|
||||
{
|
||||
font-style: normal;
|
||||
font-size: 0.22rem;
|
||||
font-size: 1.375rem;
|
||||
color: #666666;
|
||||
display: block;
|
||||
margin-top: 0.16rem;
|
||||
margin-top: 1rem;
|
||||
}
|
||||
strong
|
||||
{
|
||||
font-style: normal;
|
||||
width: 1.30rem;
|
||||
height: 0.40rem;
|
||||
width: 8.125rem;
|
||||
height: 2.5rem;
|
||||
border: 2px solid #E2001A;
|
||||
border-radius: 0.30rem;
|
||||
border-radius: 1.875rem;
|
||||
display: block;
|
||||
line-height: 0.40rem;
|
||||
line-height: 2.5rem;
|
||||
text-align: center;
|
||||
color:#E2001A;
|
||||
font-size: 0.14rem;
|
||||
margin-top: 0.16rem;
|
||||
font-size: .875rem;
|
||||
margin-top: 1rem;
|
||||
}
|
||||
}
|
||||
.uservideo{
|
||||
width: 5.60rem;
|
||||
height: 5.06rem;
|
||||
width: 35rem;
|
||||
height: 31.6rem;
|
||||
display: block;
|
||||
border: 1px solid red;
|
||||
|
||||
@ -611,10 +572,10 @@ border: 1px solid red;
|
||||
position: absolute;
|
||||
top: 50%;
|
||||
left:0;
|
||||
margin-top: -0.115rem;
|
||||
margin-top: -.72rem;
|
||||
img{
|
||||
width: 0.11rem;
|
||||
height: 0.22rem;
|
||||
width: .69rem;
|
||||
height: 1.38rem;
|
||||
display: block;
|
||||
}
|
||||
}
|
||||
@ -622,10 +583,10 @@ img{
|
||||
position: absolute;
|
||||
top: 50%;
|
||||
right:0;
|
||||
margin-top: -0.115rem;
|
||||
margin-top: -.72rem;
|
||||
img{
|
||||
width: 0.11rem;
|
||||
height: 0.22rem;
|
||||
width: .69rem;
|
||||
height: 1.375rem;
|
||||
display: block;
|
||||
}
|
||||
}
|
||||
@ -639,7 +600,7 @@ img{
|
||||
//height: 1.65rem !important;
|
||||
}
|
||||
.swiperWrap{
|
||||
height: 4.69rem;
|
||||
height: 29.3rem;
|
||||
width: 100%;
|
||||
img{
|
||||
height: 4.69rem;
|
||||
@ -649,11 +610,11 @@ img{
|
||||
}
|
||||
/deep/.swiper-pagination-bullet-active{
|
||||
background: red;
|
||||
width: 0.08rem;
|
||||
height: 0.08rem;
|
||||
width: .5rem;
|
||||
height: .5rem;
|
||||
}
|
||||
/deep/.swiper-pagination-bullet{
|
||||
width: 8rem;
|
||||
width: 50rem;
|
||||
height: 8px;
|
||||
background: #d7d7d7;
|
||||
|
||||
@ -669,7 +630,7 @@ img{
|
||||
}
|
||||
.rc-main{
|
||||
width: 100%;
|
||||
margin-top: 0.40rem;
|
||||
margin-top: 2.5rem;
|
||||
.van-tabs{
|
||||
display: none;
|
||||
}
|
||||
@ -684,20 +645,20 @@ img{
|
||||
flex-wrap: wrap;
|
||||
flex-direction: row;
|
||||
span{
|
||||
margin-top: 0.08rem;
|
||||
margin-top: .5rem;
|
||||
display: block;
|
||||
}
|
||||
img{
|
||||
width: 1.58rem;
|
||||
height: 1.58rem;
|
||||
width: 9.875rem;
|
||||
height: 9.875rem;
|
||||
display: block;
|
||||
}
|
||||
li{
|
||||
cursor: pointer;
|
||||
font-size: 16px;
|
||||
width: 1.58rem;
|
||||
width: 9.875rem;
|
||||
text-align: center;
|
||||
height: 1.58rem;
|
||||
height: 9.875rem;
|
||||
background: #F6F6F6;
|
||||
border-radius: 50%;
|
||||
}
|
||||
@ -707,7 +668,7 @@ img{
|
||||
width: 100%;
|
||||
h2{
|
||||
text-align: center;
|
||||
font-size: 0.40rem;
|
||||
font-size: 2.5rem;
|
||||
color: #E2001A;
|
||||
}
|
||||
.van-tabs{
|
||||
@ -724,18 +685,18 @@ img{
|
||||
justify-content: center;
|
||||
cursor: pointer;
|
||||
li{
|
||||
font-size: 0.16rem;
|
||||
margin-left: 0.40rem;
|
||||
font-size: 1rem;
|
||||
margin-left: 2.5rem;
|
||||
|
||||
}
|
||||
}
|
||||
|
||||
.rc-contair
|
||||
{
|
||||
margin-top: 0.24rem;
|
||||
margin-top: 1.25rem;
|
||||
ul{
|
||||
text-align: center;
|
||||
margin-top: 0.77rem;
|
||||
margin-top: 4.8rem;
|
||||
display: flex;
|
||||
justify-content: space-between;
|
||||
width: 100%;
|
||||
@ -748,7 +709,7 @@ margin-left: 0.40rem;
|
||||
justify-content: center;
|
||||
align-items: center;
|
||||
border: 1px solid #D7D7D7;
|
||||
margin-top: 0.40rem;
|
||||
margin-top: 2.5rem;
|
||||
}
|
||||
|
||||
img{
|
||||
@ -760,18 +721,18 @@ margin-left: 0.40rem;
|
||||
}
|
||||
i{
|
||||
font-style: normal;
|
||||
font-size: 0.18rem;
|
||||
margin-top: 0.08rem;
|
||||
font-size: 1.125rem;
|
||||
margin-top: .5rem;
|
||||
color: #666666;
|
||||
display: block;
|
||||
font-size: 0.22rem;
|
||||
font-size: 1.375rem;
|
||||
|
||||
color: #666666;
|
||||
|
||||
}
|
||||
}
|
||||
span{
|
||||
font-size: 0.30rem;
|
||||
font-size: 1.875rem;
|
||||
color: #E2001A;
|
||||
text-overflow: -o-ellipsis-lastline;
|
||||
overflow: hidden;
|
||||
@ -779,38 +740,38 @@ font-size: 0.30rem;
|
||||
display: -webkit-box;
|
||||
-webkit-line-clamp: 2;
|
||||
line-clamp: 2;
|
||||
margin-top:0.16rem;
|
||||
margin-top:1rem;
|
||||
-webkit-box-orient: vertical;
|
||||
|
||||
}
|
||||
strong{
|
||||
width: 1.30rem;
|
||||
height: 0.40rem;
|
||||
width: 8.125rem;
|
||||
height: 2.5rem;
|
||||
border: 2px solid #E2001A;
|
||||
display: flex;
|
||||
align-items: center;
|
||||
justify-content: center;
|
||||
border-radius: 0.30rem;
|
||||
border-radius: 1.875rem;
|
||||
margin: 0 auto;
|
||||
font-size: 0.14rem;
|
||||
font-size: .875rem;
|
||||
color: #E2001A;
|
||||
margin-top: 0.24rem;
|
||||
margin-top: 1.5rem;
|
||||
}
|
||||
.userserlect{
|
||||
display: flex;
|
||||
width: 100%;
|
||||
justify-content: center;
|
||||
align-items: center;
|
||||
padding-bottom: 0.88rem;
|
||||
padding-top: 0.80rem;
|
||||
padding-bottom: 5.5rem;
|
||||
padding-top: 5rem;
|
||||
span{
|
||||
width: 1.30rem;
|
||||
height: 0.40rem;
|
||||
width: 8.125rem;
|
||||
height: 2.5rem;
|
||||
background: #E2001A;
|
||||
text-align: center;
|
||||
line-height: 0.40rem;
|
||||
border-radius: 0.30rem;
|
||||
font-size: 0.14rem;
|
||||
line-height: 2.5rem;
|
||||
border-radius: 1.875rem;
|
||||
font-size: .875rem;
|
||||
color: #FFFFFF;
|
||||
}
|
||||
|
||||
@ -819,13 +780,13 @@ color: #FFFFFF;
|
||||
}
|
||||
}
|
||||
.active {
|
||||
font-size: 0.16rem;
|
||||
font-size: 1rem;
|
||||
border: 3px solid red;
|
||||
color: red;
|
||||
|
||||
}
|
||||
.unactive {
|
||||
font-size: 0.16rem;
|
||||
font-size: 1rem;
|
||||
color: #444444;
|
||||
border: 1px solid #D7D7D7;
|
||||
}
|
||||
@ -835,24 +796,24 @@ color: #FFFFFF;
|
||||
display: flex;
|
||||
justify-content: center;
|
||||
align-items: center;
|
||||
margin-top: 0.77rem;
|
||||
margin-top: 4.8rem;
|
||||
span{
|
||||
margin-top: 0.08rem;
|
||||
margin-top: .5rem;
|
||||
display: block;
|
||||
}
|
||||
img{
|
||||
width: 1.58rem;
|
||||
height: 1.58rem;
|
||||
width: 9.875rem;
|
||||
height: 9.875rem;
|
||||
display: block;
|
||||
}
|
||||
li{
|
||||
display: inline-block;
|
||||
cursor: pointer;
|
||||
font-size: 0.16rem;
|
||||
margin-left: 0.40rem;
|
||||
width: 1.58rem;
|
||||
font-size: 1rem;
|
||||
margin-left: 2.5rem;
|
||||
width: 9.875rem;
|
||||
text-align: center;
|
||||
height: 1.58rem;
|
||||
height: 9.875rem;
|
||||
background: #F6F6F6;
|
||||
border-radius: 50%;
|
||||
}
|
||||
@ -875,41 +836,35 @@ color: #E2001A;
|
||||
margin: 0 auto;
|
||||
text-align: center;
|
||||
|
||||
em{
|
||||
font-style: normal;
|
||||
font-size: 0.30rem;
|
||||
display: block;
|
||||
padding-top: 0.80rem;
|
||||
em{
|
||||
font-style: normal;
|
||||
font-size: 1.875rem;
|
||||
display: block;
|
||||
padding-top: 5rem;
|
||||
color: #E1001A;
|
||||
}
|
||||
span{
|
||||
font-size: 1rem;
|
||||
margin-top: 1rem;
|
||||
color: #666666;
|
||||
display: flex;
|
||||
align-items: center;
|
||||
justify-content: center;
|
||||
}
|
||||
i{
|
||||
font-style: normal;
|
||||
width: 1.57rem;
|
||||
height: 0.48rem;
|
||||
border: 2px solid #E2001A;
|
||||
border-radius: 0.30rem;
|
||||
display: block;
|
||||
line-height: 0.48rem;
|
||||
font-size: 0.16rem;
|
||||
color: #E2001A;
|
||||
margin: 0 auto;
|
||||
margin-top: 0.32rem;
|
||||
margin-bottom: 0.80rem;
|
||||
}
|
||||
|
||||
color: #E1001A;
|
||||
}
|
||||
span{
|
||||
font-size: 0.16rem;
|
||||
|
||||
margin-top: 0.17rem;
|
||||
color: #666666;
|
||||
|
||||
display: flex;
|
||||
align-items: center;
|
||||
justify-content: center;
|
||||
|
||||
}
|
||||
i{
|
||||
font-style: normal;
|
||||
width: 1.57rem;
|
||||
height: 0.48rem;
|
||||
border: 2px solid #E2001A;
|
||||
border-radius: 0.30rem;
|
||||
display: block;
|
||||
line-height: 0.48rem;
|
||||
font-size: 0.16rem;
|
||||
color: #E2001A;
|
||||
|
||||
margin: 0 auto;
|
||||
margin-top: 0.32rem;
|
||||
margin-bottom: 0.80rem;
|
||||
|
||||
}
|
||||
|
||||
}
|
||||
}
|
||||
}
|
||||
|
@ -1,8 +1,6 @@
|
||||
@media screen and (max-width:768px) {
|
||||
.magnify {
|
||||
position: relative;
|
||||
width: 100%;
|
||||
}
|
||||
.magnify {
|
||||
position: relative;
|
||||
width: 100%;
|
||||
.left_contaner {
|
||||
width: 100%;
|
||||
height: 100%;
|
||||
@ -11,6 +9,12 @@
|
||||
box-sizing: border-box;
|
||||
position: relative;
|
||||
width: 100%;
|
||||
margin:0 auto;
|
||||
img {
|
||||
width: auto;
|
||||
height: 100%;
|
||||
object-fit: contain;
|
||||
}
|
||||
}
|
||||
.left_contaner .shade {
|
||||
background-color: rgba( 135,206,235, .5);
|
||||
@ -20,17 +24,12 @@
|
||||
cursor: move;
|
||||
display: none;
|
||||
}
|
||||
.left_contaner .middle_img img {
|
||||
width: 100%;
|
||||
height: 100%;
|
||||
}
|
||||
.left_contaner .carousel {
|
||||
width: 2.56rem;
|
||||
margin: .20rem auto 0 auto;
|
||||
width: 16rem;
|
||||
margin: 1.25rem auto 0 auto;
|
||||
display: -webkit-flex;
|
||||
|
||||
}
|
||||
|
||||
|
||||
.left_contaner .carousel .show_box {
|
||||
flex: 1;
|
||||
overflow: hidden;
|
||||
@ -44,25 +43,21 @@
|
||||
display: flex;
|
||||
align-items: center;
|
||||
img{
|
||||
width: .08rem;
|
||||
height: .16rem;
|
||||
width: .5rem;
|
||||
height: 1rem;
|
||||
}
|
||||
|
||||
|
||||
// background: url('../assets/image/userleft.jpg') no-repeat;
|
||||
// background-position: center center;
|
||||
}
|
||||
.left_contaner .carousel .right_arrow {
|
||||
// background: url('../assets/image/userright.png') no-repeat;
|
||||
// background-position: center right;
|
||||
// width: 8px;
|
||||
// height: 16px;
|
||||
display: flex;
|
||||
align-items: center;
|
||||
img{
|
||||
width: .08rem;
|
||||
height: .16rem;
|
||||
width: .5rem;
|
||||
height: 1rem;
|
||||
display: block;
|
||||
margin-left: 0.06rem;
|
||||
margin-left: .375rem;
|
||||
}
|
||||
}
|
||||
.left_contaner .carousel .picture_container {
|
||||
@ -87,7 +82,7 @@
|
||||
border: 2px solid #E2001A;
|
||||
}
|
||||
.left_contaner .picture_container .picture_item img {
|
||||
|
||||
|
||||
width: 100%;
|
||||
height: 100%;
|
||||
}
|
||||
@ -104,86 +99,20 @@
|
||||
left: 0px;
|
||||
display: none;
|
||||
}
|
||||
|
||||
}
|
||||
@media screen and (max-width:768px) {
|
||||
|
||||
}
|
||||
// // /* 最小768px最大1920 *pc端/
|
||||
@media screen and (min-width: 768px) and (max-width: 1920px) {
|
||||
.magnify {
|
||||
position: relative;
|
||||
}
|
||||
.left_contaner {
|
||||
width: 100%;
|
||||
height: 100%;
|
||||
}
|
||||
.left_contaner .middle_img {
|
||||
box-sizing: border-box;
|
||||
position: relative;
|
||||
}
|
||||
.left_contaner .shade {
|
||||
background-color: rgba( 135,206,235, .5);
|
||||
position: absolute;
|
||||
top: 0;
|
||||
left: 0;
|
||||
cursor: move;
|
||||
}
|
||||
.left_contaner .middle_img img {
|
||||
width: 100%;
|
||||
height: 100%;
|
||||
}
|
||||
.left_contaner .carousel {
|
||||
width: 100%;
|
||||
margin-top: 20px;
|
||||
display: -webkit-flex;
|
||||
}
|
||||
.left_contaner .carousel .show_box {
|
||||
flex: 1;
|
||||
overflow: hidden;
|
||||
position: relative;
|
||||
}
|
||||
.left_contaner .carousel .arrow {
|
||||
flex-basis: 25px;
|
||||
cursor: pointer;
|
||||
}
|
||||
.left_contaner .carousel .left_arrow {
|
||||
background: url('../image/rc-left.png') no-repeat;
|
||||
background-position: center center;
|
||||
}
|
||||
.left_contaner .carousel .right_arrow {
|
||||
background: url('../image/rc-left.png') no-repeat;
|
||||
background-position: center right;
|
||||
}
|
||||
.left_contaner .carousel .picture_container {
|
||||
height: 100%;
|
||||
position: absolute;
|
||||
overflow: hidden;
|
||||
top: 0;
|
||||
left: 0;
|
||||
}
|
||||
.left_contaner .picture_container .picture_item {
|
||||
height: 100%;
|
||||
float: left;
|
||||
padding: 5px;
|
||||
box-sizing: border-box;
|
||||
}
|
||||
.left_contaner .picture_container .picture_item:hover {
|
||||
border: 2px solid #E2001A;
|
||||
}
|
||||
.left_contaner .picture_container .picture_item img {
|
||||
width: 100%;
|
||||
height: 100%;
|
||||
}
|
||||
.right_contanier {
|
||||
overflow: hidden;
|
||||
position: absolute;
|
||||
top: 0;
|
||||
border: 1px solid #ccc;
|
||||
}
|
||||
.right_contanier .big_img {
|
||||
position: absolute;
|
||||
top: 0px;
|
||||
left: 0px;
|
||||
}
|
||||
|
||||
|
||||
.left_contaner .carousel {
|
||||
width: 100%;
|
||||
margin-top: 20px;
|
||||
}
|
||||
.right_contanier {
|
||||
display:block
|
||||
}
|
||||
.right_contanier .big_img {
|
||||
display: block;
|
||||
}
|
||||
}
|
@ -1,73 +1,159 @@
|
||||
.ts-product-detail{
|
||||
i {
|
||||
font-style: normal;
|
||||
}
|
||||
.ts-realprice{
|
||||
font-size: 18px;
|
||||
font-weight: 500;
|
||||
color: #E1001A;
|
||||
}
|
||||
.ts-ecprice{
|
||||
color:#999;
|
||||
font-weight: 400;
|
||||
}
|
||||
.ts-row-title {
|
||||
font-size: 14px;
|
||||
font-style: normal;
|
||||
color: #333333;
|
||||
display:inline-block;
|
||||
}
|
||||
.ts-row-title + i {
|
||||
color: #666666;
|
||||
display:inline-flex;
|
||||
max-width:16.5rem;
|
||||
}
|
||||
.ts-product-header h2{
|
||||
color: #e1001a;
|
||||
}
|
||||
.certification li{
|
||||
display:flex;
|
||||
flex-direction: row;
|
||||
}
|
||||
.rc-productdetai {
|
||||
display: flex;
|
||||
align-items: center;
|
||||
justify-content: space-between;
|
||||
margin-top: 10px;
|
||||
i {
|
||||
font-style: normal;
|
||||
color: #333333;
|
||||
}
|
||||
span {
|
||||
color: #666666;
|
||||
}
|
||||
em {
|
||||
font-style: normal;
|
||||
line-height: 22px;
|
||||
color: #E2001A;
|
||||
border-bottom:1px solid rgba(226, 0, 26, 0.15);
|
||||
}
|
||||
}
|
||||
.rc-produnnum {
|
||||
display: flex;
|
||||
align-items: center;
|
||||
margin-top: 16px;
|
||||
span {
|
||||
font-size: 14px;
|
||||
color: #333333;
|
||||
}
|
||||
img {
|
||||
width: 29px;
|
||||
height: 29px;
|
||||
}
|
||||
strong {
|
||||
font-style: normal;
|
||||
list-style: none;
|
||||
width: 30px;
|
||||
height: 30px;
|
||||
border: 1px solid #d7d7d7;
|
||||
opacity: 1;
|
||||
border-radius: 3px;
|
||||
display: flex;
|
||||
align-items: center;
|
||||
justify-content: center;
|
||||
font-size: 14px;
|
||||
margin: 0 5px 0 5px;
|
||||
color: #666666;
|
||||
}
|
||||
}
|
||||
}
|
||||
|
||||
// 手机端
|
||||
@media screen and(min-width: 320px) and(max-width:768px) {
|
||||
.rc-button{
|
||||
@media screen and (max-width:768px) {
|
||||
.ts-ecprice{
|
||||
font-size:.625rem;
|
||||
}
|
||||
.rc-productdetai{
|
||||
font-size:.875rem
|
||||
}
|
||||
.rc-button{
|
||||
width: 100%;
|
||||
display: flex;
|
||||
align-items: center;
|
||||
position: fixed;
|
||||
justify-content: center;
|
||||
height: 60px;
|
||||
height: 5rem;
|
||||
bottom: 0;
|
||||
background-color: white;
|
||||
|
||||
box-shadow: 0px -3px 6px rgba(0, 0, 0, 0.1);
|
||||
|
||||
span{
|
||||
width: 160px;
|
||||
height: 48px;
|
||||
background: #E2001A;
|
||||
border-radius: 30px;
|
||||
font-size: 16px;
|
||||
color:#FFFFFF;
|
||||
display: block;
|
||||
display: flex;
|
||||
align-items: center;
|
||||
justify-content: center;
|
||||
width: 9.68rem;
|
||||
height: 3rem;
|
||||
background: #E2001A;
|
||||
border-radius: 30px;
|
||||
font-size: .875rem;
|
||||
color:#FFFFFF;
|
||||
display: flex;
|
||||
align-items: center;
|
||||
justify-content: center;
|
||||
flex-shrink:0;
|
||||
}
|
||||
span:last-child{
|
||||
margin-left: 40px;
|
||||
margin-left: 1.56rem;
|
||||
}
|
||||
}
|
||||
.rc-headera{
|
||||
display: flex;
|
||||
flex-direction: column;
|
||||
align-items: center;
|
||||
text-align: center;
|
||||
justify-content: center;
|
||||
h3{
|
||||
color:#333333;
|
||||
font-size: 26px;
|
||||
}
|
||||
.rc-title{
|
||||
img{
|
||||
width: 96px;
|
||||
height: 96px;
|
||||
|
||||
}
|
||||
}
|
||||
.userer{
|
||||
span{
|
||||
width: 130px;
|
||||
height: 40px;
|
||||
border: 2px solid #E2001A;
|
||||
border-radius: 30px;
|
||||
display: block;
|
||||
color: #E2001A;
|
||||
line-height: 40px;
|
||||
margin-top: 42px;
|
||||
font-size: 14px;
|
||||
}
|
||||
i{
|
||||
font-size: 18px;
|
||||
font-style: normal;
|
||||
display: block;
|
||||
margin-top: 32px;
|
||||
color: #E1001A;
|
||||
}
|
||||
}
|
||||
}
|
||||
/deep/.el-dialog {
|
||||
width: 80%;
|
||||
position: relative;
|
||||
}
|
||||
.rc-headera{
|
||||
display: flex;
|
||||
flex-direction: column;
|
||||
align-items: center;
|
||||
text-align: center;
|
||||
justify-content: center;
|
||||
h3{
|
||||
color:#333333;
|
||||
font-size: 26px;
|
||||
}
|
||||
.rc-title{
|
||||
img{
|
||||
width: 96px;
|
||||
height: 96px;
|
||||
}
|
||||
}
|
||||
.userer{
|
||||
span{
|
||||
width: 130px;
|
||||
height: 40px;
|
||||
border: 2px solid #E2001A;
|
||||
border-radius: 30px;
|
||||
display: block;
|
||||
color: #E2001A;
|
||||
line-height: 40px;
|
||||
margin-top: 42px;
|
||||
font-size: 14px;
|
||||
}
|
||||
i{
|
||||
font-size: 18px;
|
||||
font-style: normal;
|
||||
display: block;
|
||||
margin-top: 32px;
|
||||
color: #E1001A;
|
||||
}
|
||||
}
|
||||
}
|
||||
/deep/.el-dialog {
|
||||
width: 80%;
|
||||
position: relative;
|
||||
}
|
||||
.rc-discount {
|
||||
position: relative;
|
||||
width: 100%;
|
||||
@ -173,56 +259,16 @@ color: #E1001A;
|
||||
}
|
||||
|
||||
}
|
||||
.rc-header {
|
||||
.ts-product-header {
|
||||
width: 100%;
|
||||
.rc-title {
|
||||
width: 100%;
|
||||
h2 {
|
||||
font-size: 22px;
|
||||
color: #e1001a;
|
||||
font-size: 1.375rem;
|
||||
margin:1.5rem 0;
|
||||
}
|
||||
}
|
||||
.productdetails {
|
||||
|
||||
margin-top: 19px;
|
||||
.rc-productdetail {
|
||||
display: flex;
|
||||
align-items: center;
|
||||
i {
|
||||
font-style: normal;
|
||||
font-size: 14px;
|
||||
|
||||
color: #333333;
|
||||
}
|
||||
|
||||
span {
|
||||
font-size: 18px;
|
||||
margin-left: 8px;
|
||||
color: #e1001a;
|
||||
}
|
||||
}
|
||||
.rc-productdetai {
|
||||
display: flex;
|
||||
align-items: center;
|
||||
justify-content: space-between;
|
||||
margin-top: 10px;
|
||||
i {
|
||||
font-style: normal;
|
||||
font-size: 14px;
|
||||
color: #333333;
|
||||
}
|
||||
span {
|
||||
font-size: 14px;
|
||||
color: #666666;
|
||||
margin-left: 8px;
|
||||
}
|
||||
em {
|
||||
font-size: 14px;
|
||||
font-style: normal;
|
||||
margin-left: 68px;
|
||||
color: #e2001a;
|
||||
}
|
||||
}
|
||||
}
|
||||
|
||||
.rc-productdeta {
|
||||
@ -242,101 +288,94 @@ color: #E1001A;
|
||||
width: 59px;
|
||||
font-size: 16px;
|
||||
margin-left: 4px;
|
||||
margin-right: 12px;
|
||||
height: 39px;
|
||||
border-radius: 3px;
|
||||
}
|
||||
}
|
||||
}
|
||||
.rc-produnnum {
|
||||
display: flex;
|
||||
align-items: center;
|
||||
padding-bottom: 20px;
|
||||
margin-top: 16px;
|
||||
span {
|
||||
font-size: 14px;
|
||||
color: #333333;
|
||||
}
|
||||
img {
|
||||
width: 29px;
|
||||
height: 29px;
|
||||
display: block;
|
||||
margin-left: 5px;
|
||||
|
||||
}
|
||||
.rc-message {
|
||||
width: 29px;
|
||||
margin-left: 8px;
|
||||
height: 29px;
|
||||
display: block;
|
||||
}
|
||||
|
||||
strong {
|
||||
font-style: normal;
|
||||
list-style: none;
|
||||
width: 30px;
|
||||
height: 30px;
|
||||
border: 1px solid #d7d7d7;
|
||||
opacity: 1;
|
||||
border-radius: 3px;
|
||||
display: flex;
|
||||
align-items: center;
|
||||
justify-content: center;
|
||||
font-size: 14px;
|
||||
margin: 0 5px 0 5px;
|
||||
color: #666666;
|
||||
}
|
||||
}
|
||||
.certification {
|
||||
.rc-button{
|
||||
.rc-button{
|
||||
width: 100%;
|
||||
padding-top: 33px;
|
||||
display: flex;
|
||||
align-items: center;
|
||||
span{
|
||||
width: 160px;
|
||||
height: 48px;
|
||||
background: #E2001A;
|
||||
border-radius: 30px;
|
||||
font-size: 16px;
|
||||
color:#FFFFFF;
|
||||
display: block;
|
||||
display: flex;
|
||||
align-items: center;
|
||||
justify-content: center;
|
||||
width: 10rem;
|
||||
height: 3rem;
|
||||
background: #E2001A;
|
||||
border-radius: 30px;
|
||||
font-size: 1rem;
|
||||
color:#FFFFFF;
|
||||
display: block;
|
||||
display: flex;
|
||||
align-items: center;
|
||||
justify-content: center;
|
||||
}
|
||||
span:last-child{
|
||||
margin-left: 40px;
|
||||
margin-left: 2.5rem;
|
||||
}
|
||||
}
|
||||
margin-top: 16px;
|
||||
margin-top: 1rem;
|
||||
ul {
|
||||
display: flex;
|
||||
flex-direction: column;
|
||||
line-height: 30px;
|
||||
li {
|
||||
float: left;
|
||||
width: 100%;
|
||||
text-align: left;
|
||||
span {
|
||||
font-size: 14px;
|
||||
font-size: .875rem;
|
||||
color: #333333;
|
||||
}
|
||||
i{
|
||||
font-style: normal;
|
||||
font-size: 14px;
|
||||
color: #666666;
|
||||
margin-left: 8px;
|
||||
}
|
||||
}
|
||||
}
|
||||
}
|
||||
}
|
||||
}
|
||||
// /* 最小768px最大1920 *pc端/
|
||||
@media screen and (min-width: 768px) and (max-width: 1920px) {
|
||||
@media screen and (min-width: 768px) {
|
||||
.ts-product-detail{
|
||||
padding: 0 0.2rem;
|
||||
box-sizing: border-box;
|
||||
margin: 0 auto;
|
||||
width: 100%;
|
||||
max-width: 1400px;
|
||||
.rc-main{
|
||||
padding:0;
|
||||
}
|
||||
.ts-row-title{
|
||||
font-size: 16px;
|
||||
width:82px;
|
||||
}
|
||||
.ts-row-title + i {
|
||||
font-size: 16px;
|
||||
max-width:596px;
|
||||
}
|
||||
}
|
||||
.rc-button{
|
||||
width: 100%;
|
||||
padding-top: 33px;
|
||||
display: flex;
|
||||
align-items: center;
|
||||
span{
|
||||
width: 160px;
|
||||
height: 48px;
|
||||
background: #E2001A;
|
||||
border-radius: 30px;
|
||||
font-size: 16px;
|
||||
color:#FFFFFF;
|
||||
display: flex;
|
||||
align-items: center;
|
||||
justify-content: center;
|
||||
cursor: pointer;
|
||||
}
|
||||
span:last-child{
|
||||
margin-left: 40px;
|
||||
}
|
||||
}
|
||||
.rc-headera{
|
||||
|
||||
display: flex;
|
||||
display: flex;
|
||||
flex-direction: column;
|
||||
align-items: center;
|
||||
text-align: center;
|
||||
@ -345,80 +384,38 @@ justify-content: center;
|
||||
color:#333333;
|
||||
font-size: 26px;
|
||||
}
|
||||
.rc-title{
|
||||
.rc-title{
|
||||
img{
|
||||
width: 96px;
|
||||
height: 96px;
|
||||
|
||||
}
|
||||
}
|
||||
.userer{
|
||||
span{
|
||||
width: 130px;
|
||||
height: 40px;
|
||||
border: 2px solid #E2001A;
|
||||
border-radius: 30px;
|
||||
display: block;
|
||||
color: #E2001A;
|
||||
line-height: 40px;
|
||||
margin-top: 42px;
|
||||
font-size: 14px;
|
||||
}
|
||||
i{
|
||||
font-size: 18px;
|
||||
font-style: normal;
|
||||
display: block;
|
||||
margin-top: 32px;
|
||||
color: #E1001A;
|
||||
}
|
||||
}
|
||||
}
|
||||
.userer{
|
||||
span{
|
||||
width: 130px;
|
||||
height: 40px;
|
||||
border: 2px solid #E2001A;
|
||||
border-radius: 30px;
|
||||
display: block;
|
||||
color: #E2001A;
|
||||
line-height: 40px;
|
||||
margin-top: 42px;
|
||||
font-size: 14px;
|
||||
}
|
||||
i{
|
||||
font-size: 18px;
|
||||
font-style: normal;
|
||||
display: block;
|
||||
margin-top: 32px;
|
||||
color: #E1001A;
|
||||
}
|
||||
/deep/.el-dialog {
|
||||
width: 440px;
|
||||
height: 432px;
|
||||
position: relative;
|
||||
}
|
||||
}
|
||||
.rc-header{
|
||||
display: flex;
|
||||
flex-direction: column;
|
||||
align-items: center;
|
||||
text-align: center;
|
||||
h3{
|
||||
color:#333333;
|
||||
font-size: 26px;
|
||||
}
|
||||
.rc-title{
|
||||
img{
|
||||
width: 96px;
|
||||
height: 96px;
|
||||
|
||||
}
|
||||
}
|
||||
.userer{
|
||||
img{
|
||||
width: 210px;
|
||||
height: 210px;
|
||||
display: flex;
|
||||
justify-content: center;
|
||||
flex-direction: column;
|
||||
|
||||
}
|
||||
|
||||
span{
|
||||
font-size: 16px;
|
||||
|
||||
color: #333333;
|
||||
}
|
||||
i{
|
||||
font-size: 18px;
|
||||
font-style: normal;
|
||||
display: block;
|
||||
margin-top: 32px;
|
||||
color: #E1001A;
|
||||
}
|
||||
}
|
||||
}
|
||||
/deep/.el-dialog {
|
||||
width: 440px;
|
||||
height: 432px;
|
||||
position: relative;
|
||||
}
|
||||
|
||||
.rc-discount {
|
||||
position: relative;
|
||||
img {
|
||||
@ -500,8 +497,8 @@ color: #E1001A;
|
||||
}
|
||||
}
|
||||
.rc-usermain{
|
||||
display: flex;
|
||||
align-items: center;
|
||||
display: flex;
|
||||
align-items: center;
|
||||
}
|
||||
.active{
|
||||
border: 2px solid #E2001A;
|
||||
@ -515,100 +512,40 @@ color: #E1001A;
|
||||
cursor: pointer;
|
||||
font-size: 16px;
|
||||
}
|
||||
.rc-header {
|
||||
width: 100%;
|
||||
margin-left: 80px;
|
||||
.rc-footimage{
|
||||
overflow: hidden;
|
||||
display: flex;
|
||||
justify-content: center;
|
||||
align-items: center;
|
||||
img{
|
||||
width: 100%;
|
||||
}
|
||||
}
|
||||
.ts-product-header {
|
||||
width: 100%;
|
||||
font-size: 16px;
|
||||
.rc-title {
|
||||
height: 85px;
|
||||
width: 100%;
|
||||
display: flex;
|
||||
align-items: center;
|
||||
border-bottom: 1px solid #d8d8d8;
|
||||
h2 {
|
||||
|
||||
font-size: 30px;
|
||||
color: #e1001a;
|
||||
}
|
||||
}
|
||||
.productdetails {
|
||||
.rc-button{
|
||||
width: 100%;
|
||||
padding-top: 33px;
|
||||
display: flex;
|
||||
align-items: center;
|
||||
span{
|
||||
width: 160px;
|
||||
height: 48px;
|
||||
background: #E2001A;
|
||||
border-radius: 30px;
|
||||
font-size: 16px;
|
||||
color:#FFFFFF;
|
||||
display: block;
|
||||
display: flex;
|
||||
align-items: center;
|
||||
justify-content: center;
|
||||
cursor: pointer;
|
||||
}
|
||||
span:last-child{
|
||||
margin-left: 40px;
|
||||
}
|
||||
}
|
||||
margin-top: 19px;
|
||||
.rc-productdetail {
|
||||
display: flex;
|
||||
align-items: center;
|
||||
i {
|
||||
font-style: normal;
|
||||
font-size: 18px;
|
||||
|
||||
color: #333333;
|
||||
}
|
||||
|
||||
span {
|
||||
font-size: 18px;
|
||||
margin-left: 8px;
|
||||
color: #e1001a;
|
||||
}
|
||||
}
|
||||
.rc-productdetai {
|
||||
display: flex;
|
||||
align-items: center;
|
||||
margin-top: 10px;
|
||||
border-bottom: 1px solid #d7d7d7;
|
||||
padding-bottom: 17px;
|
||||
i {
|
||||
font-style: normal;
|
||||
|
||||
|
||||
font-size: 18px;
|
||||
color: #333333;
|
||||
}
|
||||
span {
|
||||
|
||||
font-size: 20px;
|
||||
color: #666666;
|
||||
margin-left: 8px;
|
||||
}
|
||||
em {
|
||||
font-size: 16px;
|
||||
font-style: normal;
|
||||
width: 40%;
|
||||
text-align: right;
|
||||
display: block;
|
||||
color: #E2001A;
|
||||
cursor: pointer;
|
||||
}
|
||||
font-size: 30px;
|
||||
margin-bottom:42px;
|
||||
}
|
||||
}
|
||||
.ts-realprice{
|
||||
font-size: 20px;
|
||||
}
|
||||
.ts-ecprice{
|
||||
|
||||
}
|
||||
.rc-productdetai {
|
||||
em {
|
||||
cursor: pointer;
|
||||
border-bottom : unset;
|
||||
padding-right:1rem;
|
||||
position:relative;
|
||||
&:after{
|
||||
content: " ";
|
||||
width: .5rem;
|
||||
height: 1rem;
|
||||
background: url(/_nuxt/assets/image/arr-right-red.png) no-repeat left top;
|
||||
background-size: contain;
|
||||
display: block;
|
||||
position:absolute;
|
||||
right:0;
|
||||
top:.25rem;
|
||||
}
|
||||
}
|
||||
}
|
||||
|
||||
.rc-productdeta {
|
||||
margin-top: 16px;
|
||||
@ -616,8 +553,7 @@ color: #E2001A;
|
||||
display: flex;
|
||||
align-items: center;
|
||||
span {
|
||||
|
||||
font-size: 18px;
|
||||
font-size: 18px;
|
||||
color: #333333;
|
||||
}
|
||||
em {
|
||||
@ -627,68 +563,33 @@ font-size: 18px;
|
||||
justify-content: center;
|
||||
width: 59px;
|
||||
font-size: 16px;
|
||||
margin-left: 10px;
|
||||
height: 39px;
|
||||
border-radius: 3px;
|
||||
color:#666666;
|
||||
}
|
||||
}
|
||||
}
|
||||
.rc-produnnum {
|
||||
display: flex;
|
||||
align-items: center;
|
||||
padding-bottom: 20px;
|
||||
margin-top: 16px;
|
||||
border-bottom: 1px solid #d7d7d7;
|
||||
span {
|
||||
font-size: 18px;
|
||||
color: #333333;
|
||||
}
|
||||
img {
|
||||
width: 29px;
|
||||
height: 29px;
|
||||
display: block;
|
||||
}
|
||||
.rc-message {
|
||||
width: 29px;
|
||||
margin-left: 8px;
|
||||
height: 29px;
|
||||
display: block;
|
||||
}
|
||||
|
||||
strong {
|
||||
font-style: normal;
|
||||
list-style: none;
|
||||
width: 30px;
|
||||
height: 30px;
|
||||
border: 1px solid #d7d7d7;
|
||||
opacity: 1;
|
||||
border-radius: 3px;
|
||||
display: flex;
|
||||
align-items: center;
|
||||
justify-content: center;
|
||||
font-size: 14px;
|
||||
margin: 0 5px 0 5px;
|
||||
color: #666666;
|
||||
}
|
||||
}
|
||||
span {
|
||||
font-size: 18px;
|
||||
}
|
||||
}
|
||||
.certification {
|
||||
.rc-button{
|
||||
width: 100%;
|
||||
padding-top: 33px;
|
||||
padding-top: 32px;
|
||||
display: flex;
|
||||
align-items: center;
|
||||
span{
|
||||
width: 160px;
|
||||
height: 48px;
|
||||
background: #E2001A;
|
||||
border-radius: 30px;
|
||||
font-size: 16px;
|
||||
color:#FFFFFF;
|
||||
display: block;
|
||||
display: flex;
|
||||
align-items: center;
|
||||
justify-content: center;
|
||||
height: 48px;
|
||||
background: #E2001A;
|
||||
border-radius: 30px;
|
||||
font-size: 16px;
|
||||
color:#FFFFFF;
|
||||
display: block;
|
||||
display: flex;
|
||||
align-items: center;
|
||||
justify-content: center;
|
||||
}
|
||||
span:last-child{
|
||||
margin-left: 40px;
|
||||
@ -696,26 +597,18 @@ justify-content: center;
|
||||
}
|
||||
margin-top: 16px;
|
||||
ul {
|
||||
display: flex;
|
||||
flex-direction: column;
|
||||
line-height:40px;
|
||||
text-align: left;
|
||||
li {
|
||||
width: 100%;
|
||||
float: left;
|
||||
span {
|
||||
font-size: 18px;
|
||||
color: #333333;
|
||||
}
|
||||
i{
|
||||
font-style: normal;
|
||||
font-size: 16px;
|
||||
color: #666666;
|
||||
margin-left: 8px;
|
||||
}
|
||||
}
|
||||
}
|
||||
}
|
||||
}
|
||||
.rc-footimage{
|
||||
overflow: hidden;
|
||||
display: flex;
|
||||
justify-content: center;
|
||||
align-items: center;
|
||||
img{
|
||||
width: 100%;
|
||||
}
|
||||
}
|
||||
|
||||
}
|
@ -1,36 +1,153 @@
|
||||
<template>
|
||||
<header class="rc-home-header fixed">
|
||||
<div class="rc-main">
|
||||
<nuxt-link :to="`../../productdetails/userdetails/`">
|
||||
<div class="c-left">
|
||||
<img src="../assets/image/rc-icon.png" alt="">
|
||||
</div>
|
||||
</nuxt-link>
|
||||
|
||||
<nuxt-link :to="`/userseach/search/`">
|
||||
<div class="c-right">
|
||||
<img src="../assets/image/rc-logo.png" alt="" class="flex-center">
|
||||
|
||||
</div>
|
||||
</nuxt-link>
|
||||
<nuxt-link :to="`../../usersearch/search/`">
|
||||
<div class="rc-search">
|
||||
<img src="../assets/image/rc-search.png" alt="">
|
||||
</div>
|
||||
</nuxt-link>
|
||||
<div class="rc-center">
|
||||
|
||||
<ul>
|
||||
<li>猫</li>
|
||||
<li>犬</li>
|
||||
<li>定制营养方案</li>
|
||||
<li>关于我们</li>
|
||||
</ul>
|
||||
</div>
|
||||
</div>
|
||||
</header>
|
||||
<header class="rc-header" data-js-header-scroll="" data-activated="true">
|
||||
<nav class="rc-header__nav rc-header__nav--primary">
|
||||
<ul class="rc-list rc-list--blank rc-list--inline rc-list--align" role="menubar">
|
||||
<li class="rc-list__item rc-xl-down">
|
||||
<button class="rc-btn rc-btn--icon-label rc-icon rc-menu--xs rc-iconography rc-md-up" data-modal-trigger="main-nav-modal" aria-label="Menu" role="menuitem">
|
||||
菜单
|
||||
</button>
|
||||
<button class="rc-btn rc-btn--icon rc-icon rc-menu--xs rc-iconography rc-md-down" data-js-trigger="mobile-push-nav" aria-label="Menu" role="menuitem">
|
||||
<span class="rc-screen-reader-text">
|
||||
translations.feature.headerbar.menu
|
||||
</span>
|
||||
</button>
|
||||
</li>
|
||||
</ul>
|
||||
<a href="/" class="rc-header__brand">
|
||||
<h1>
|
||||
<span class="rc-screen-reader-text">translations.feature.headerbar.alternatelogotext</span>
|
||||
<svg xmlns="http://www.w3.org/2000/svg" id="Layer_1" data-name="Layer 1" viewBox="0 0 223 83.75" class="rc-header__logo">
|
||||
<title>Royal Canin logo - animated</title>
|
||||
<path class="cls-1 rc-header__logo-text" d="M98,74.8h-6l0,0c-0.2,0-0.3-0.2-0.3-0.3V56.4c0.1-0.3,0.1-0.7,0-1c-0.3-1.7-1.9-2.8-3.6-2.6 c-1.7,0.3-2.8,1.9-2.6,3.6v22.6c0,0.9,0.7,1.7,1.7,1.8H98c0.1,0,0.2,0,0.3,0c1.6-0.1,2.8-1.5,2.7-3.1C101,75.8,99.7,74.7,98,74.8z M76.3,54.3l-16,21.6c-0.4,0.5-0.6,1.1-0.6,1.8c0,0.9,0.4,1.9,1.3,2.4c1.4,0.9,3.1,0.6,4.1-0.6l3.1-4.2h7.5v2.4 c0.1,1.7,1.5,3,3.1,2.9l0,0c1.7,0,2.9-1.4,2.9-2.9V56.3c0-0.9-0.4-1.8-1-2.3C79.4,52.8,77.4,52.9,76.3,54.3z M75.6,69.2h-2.8 c-0.1,0-0.2-0.1-0.2-0.2V69l3-4.1C75.6,64.8,75.6,69.2,75.6,69.2z M67.5,56.4c0-1.6-1.3-2.9-2.8-2.9c-0.8,0-1.6,0.3-2.1,0.8 l-6.8,7.1c-0.1,0.1-0.2,0.1-0.3,0.1s-0.2,0-0.2-0.1l-6.8-7.1c-0.5-0.5-1.3-0.9-2.1-0.9c-1.6,0-2.8,1.3-2.8,2.8c0,0.7,0.3,1.5,0.7,2 l8.3,9.5l0.1,10c0,1.6,1.3,2.9,2.9,2.9c1.6,0,2.9-1.3,2.9-2.9l0.2-9.9l8.1-9.5C67.3,57.7,67.5,57,67.5,56.4z M32.4,53.4 c-7.5,0-13.6,6.1-13.6,13.6s6.1,13.6,13.6,13.6S46,74.4,46,66.9C46,59.6,39.9,53.5,32.4,53.4z M32.4,74.2c-4.1,0-7.3-3.2-7.3-7.3 s3.2-7.3,7.3-7.3s7.3,3.2,7.3,7.3C39.7,71,36.5,74.2,32.4,74.2z M175.9,52.8c-1.5,0.1-2.7,1.3-2.7,2.7v12.7c0,0.1-0.1,0.2-0.2,0.2 c-0.1,0-0.1,0-0.1-0.1l-7.4-13.1c-1.1-2-3.7-2.6-5.6-1.4c-1.1,0.7-1.9,2-2,3.3v20.8c0.1,1.7,1.6,2.9,3.1,2.8s2.7-1.3,2.8-2.8V65.2 c0-0.1,0.1-0.2,0.2-0.2s0.1,0,0.1,0.1l7.6,13.4c1,1.9,3.4,2.5,5.3,1.5c1.3-0.7,2-2,2-3.3V55.6C178.9,54,177.6,52.7,175.9,52.8z M14,69.5c2.4-1.5,4-4.1,3.9-6.9c0,0,0,0,0-0.1c0.1-4.9-3.9-9-8.8-9.1c-2.4-0.2-4.9,0.6-6.6,2.3C0.6,57.6,0,60,0,62.6l0.4,15.1 c0,1.6,1.3,2.9,2.9,2.9s2.9-1.3,2.9-2.9l0.1-7.2l0,0c0-0.2,0.1-0.3,0.3-0.3c0,0,0.1,0,0.2,0l7.1,9.7c0.5,0.5,1.1,0.7,1.9,0.7 c1.6,0,2.8-1.3,2.9-2.8c0-0.4-0.1-0.8-0.3-1.3L14,69.5z M8.9,65.3c-0.2,0-0.3,0-0.5,0c-1.7-0.1-2.8-1.6-2.7-3.1 c0.1-1.7,1.6-2.8,3.1-2.7c0.2,0,0.3,0,0.5,0c1.7,0.1,2.8,1.6,2.7,3.1C11.9,64.2,10.4,65.7,8.9,65.3z M129.8,71.5 c-0.4,0-0.9,0.1-1.4,0.3l-2.4,1.6c-1.1,0.7-2.5,1.1-3.9,1.1c-4.2-0.2-7.3-3.8-7.1-7.8c0.2-3.9,3.2-6.9,7.1-7.1 c1.4,0,2.7,0.4,3.9,1.1l2.3,1.6c0.4,0.2,0.8,0.3,1.4,0.3c1.6,0,2.9-1.3,2.9-2.9l0,0c0-0.6-0.2-1.4-0.7-1.9c-2.3-2.7-5.7-4.3-9.4-4.3 c-7.5,0-13.6,6.1-13.6,13.6l0,0c0,7.2,5.6,13.2,12.8,13.6c3.9,0,7.5-1.6,10.2-4.4c0.4-0.5,0.7-1.1,0.6-1.9 C132.8,72.8,131.4,71.5,129.8,71.5z M185.4,52.7c-1.8,0-3.1,1.5-3.1,3.1v21.9c0,1.8,1.5,3.1,3.1,3.1c1.8,0,3.1-1.5,3.1-3.1V55.8 C188.5,54.1,187.2,52.7,185.4,52.7z M139.9,54.2c-0.6-0.6-1.5-1-2.4-1c-1.8,0-3.1,0.8-3.1,2.6v21.9l0,0c0,1.7,1.4,2.9,3,2.9 s3-1.3,3.1-2.9v-2.4h7.5l3.1,4.2c0.5,0.7,1.5,1.1,2.4,1.1c1.7,0,2.9-1.4,2.9-2.9c0-0.6-0.2-1.3-0.6-1.8L139.9,54.2z M143.5,69 c0,0.1-0.1,0.2-0.2,0.2h-2.8v-4.5l3,4.2C143.6,68.9,143.6,68.9,143.5,69z M209.9,52.8c-1.5,0.1-2.7,1.3-2.7,2.7v12.7 c0,0.1-0.1,0.2-0.2,0.2c-0.1,0-0.1,0-0.2-0.1l-7.3-13.1c-1.1-2-3.7-2.6-5.6-1.4c-1.1,0.7-1.9,2-2,3.3v20.8c0,1.7,1.4,3,3,3 s3-1.4,3-3V65.2c0-0.1,0.1-0.2,0.2-0.2s0.1,0,0.1,0.1l7.6,13.4c1,1.9,3.4,2.5,5.3,1.5c1.3-0.7,2-2,2-3.3V55.6 C212.9,54,211.5,52.7,209.9,52.8z M220.7,55.3c0-0.1,0-0.1,0-0.2c0-0.8-0.6-1-1.3-1h-0.9c-0.3,0-0.4,0.2-0.4,0.3v2.7 c0,0.3,0.1,0.4,0.4,0.4s0.4-0.2,0.4-0.4v-1h0.2l0.5,1c0.1,0.2,0.2,0.4,0.5,0.4s0.4-0.1,0.4-0.3c0-0.1,0-0.1,0-0.2l-0.6-0.9 C220.3,56.2,220.7,55.7,220.7,55.3z M219.5,55.5h-0.6v-0.8h0.6c0.3,0,0.5,0.1,0.5,0.4S219.8,55.5,219.5,55.5z M219.4,52.6 L219.4,52.6c-1.8,0-3.2,1.5-3.2,3.2s1.5,3.2,3.2,3.2s3.2-1.5,3.2-3.2C222.5,54.1,221.1,52.6,219.4,52.6z M219.4,58.2L219.4,58.2 c-1.4,0-2.4-1-2.4-2.4s1-2.4,2.4-2.4s2.4,1,2.4,2.4C221.8,57.1,220.7,58.2,219.4,58.2z" style="fill:#e2001a"></path>
|
||||
<path class="cls-1 rc-header__logo-crown" d="M132.7,38.8c-6.4-4.7-16-7.5-25.9-7.5s-19.6,2.8-25.9,7.5c-0.6,0.4-0.9,1.1-0.9,1.9c0,1.4,1,2.4,2.4,2.4l0,0 c0.5,0,1-0.2,1.5-0.5C88.2,39.4,96.5,36,107,36s18.7,3.4,23,6.6l0.1,0.1c1,0.7,2.6,0.5,3.3-0.6C134,41,133.8,39.5,132.7,38.8z M106.8,37c-9.2,0-17.9,2.7-23.3,7.2c0,0,0,0-0.1,0c-0.6,0.6-0.7,1.6-0.2,2.3c0.3,0.4,0.7,0.6,1.3,0.6c0.4,0,0.7-0.1,1-0.4 c4.8-4,12.8-6.5,21.2-6.5s16.3,2.4,21.2,6.5c0.7,0.6,1.8,0.5,2.3-0.2c0.6-0.7,0.5-1.8-0.2-2.3C124.6,39.8,115.9,37,106.8,37z M71.8,12.8L71.8,12.8L71.8,12.8L71.8,12.8z M77,19.7c0.7-2.9-1-5.8-4-6.7c-0.4-0.1-0.9-0.2-1.4-0.2c-3,0-5.4,2.4-5.4,5.4 s2.4,5.4,5.4,5.4C74.3,23.8,76.4,22.1,77,19.7z M106.8,28.1c3,0,5.4-2.4,5.4-5.4s-2.4-5.4-5.4-5.4s-5.4,2.4-5.4,5.4 S103.7,28.1,106.8,28.1z M106.8,14.3c3,0,5.4-2.4,5.4-5.4s-2.4-5.5-5.4-5.5s-5.4,2.4-5.4,5.4C101.3,11.9,103.7,14.3,106.8,14.3z M90.8,19.2C87.9,20,86.2,23.1,87,26c0.6,2.3,2.8,3.9,5.2,4h0.1c0.4,0,0.9-0.1,1.4-0.2c2.9-0.8,4.6-3.8,3.9-6.7 C97,20.7,94.8,19,92.3,19C91.7,19,91.3,19.1,90.8,19.2z M84,31.5c0.7-2.9-1-6-4-6.7c-0.4-0.1-0.9-0.2-1.4-0.2l0,0 c-0.9,0-1.9,0.3-2.8,0.7c-1.3,0.7-2.2,2-2.5,3.3c-0.4,1.5-0.2,2.9,0.6,4.2c0.9,1.7,2.7,2.6,4.7,2.7c0.9,0,2-0.2,2.8-0.7 C82.7,34.1,83.7,32.9,84,31.5z M119.9,29.7c0.5,0.1,0.9,0.2,1.5,0.2c3,0,5.4-2.5,5.4-5.4c0-2.5-1.7-4.6-4-5.2 c-0.5-0.1-0.9-0.2-1.5-0.2c-3,0-5.4,2.5-5.4,5.5C115.8,26.9,117.5,29.1,119.9,29.7z M123.5,16.5c0.4,0.1,0.9,0.2,1.5,0.2 c3,0,5.4-2.5,5.4-5.4c0-2.5-1.7-4.6-4-5.2c-0.5-0.1-0.9-0.2-1.5-0.2c-3,0-5.4,2.5-5.4,5.5C119.5,13.6,121.2,15.8,123.5,16.5z M137.7,25.4c-0.8-0.5-1.8-0.7-2.7-0.7c-3,0-5.4,2.4-5.4,5.4c0,0.4,0.1,0.9,0.2,1.4c0.3,1.4,1.3,2.6,2.5,3.3c2.6,1.6,6,0.6,7.5-2 c0.7-1.3,0.9-2.7,0.6-4.2C139.8,27.4,138.9,26.2,137.7,25.4z M147.2,17c-0.3-1.4-1.3-2.6-2.5-3.3c-2.6-1.6-6-0.6-7.5,2 c-0.7,1.3-0.9,2.7-0.6,4.2c0.3,1.4,1.3,2.6,2.5,3.3c2.6,1.6,6,0.7,7.5-1.9C147.4,19.9,147.6,18.2,147.2,17z M88.7,16.7L88.7,16.7 c0.5,0,1-0.1,1.5-0.2c2.9-0.8,4.6-3.9,3.9-6.7c-0.6-2.4-2.8-4-5.2-4c-0.5,0-0.9,0.1-1.5,0.2c-2.9,0.8-4.6,3.9-3.9,6.7 C84.1,15,86.2,16.7,88.7,16.7z" style="fill:#e2001a"></path>
|
||||
</svg>
|
||||
</h1>
|
||||
</a>
|
||||
<ul class="rc-list rc-list--blank rc-list--inline rc-list--align rc-header__right" role="menubar">
|
||||
<li class="rc-list__item rc-inline-flex" role="menubar">
|
||||
<a href="https://weibo.com/chinaroyalcanin?topnav=1&wvr=6&topsug=1&is_all=1" target="_blank" class="rc-lg-up rc-btn rc-btn--icon rc-icon ts-weibo--xs rc-iconography rc-interactive" aria-label="weibo">
|
||||
<span class="rc-screen-reader-text">
|
||||
微博
|
||||
</span>
|
||||
</a>
|
||||
<a href="javascript:;" @mouseenter="bindTracking(this)" evt-name="页内弹窗" evt-cat="headerBtnClick" evt-val="微信扫一扫" class="rc-lg-up rc-btn rc-btn--icon rc-icon ts-wechat--xs rc-iconography rc-interactive" aria-label="wechat">
|
||||
<span class="rc-screen-reader-text">
|
||||
微信
|
||||
</span>
|
||||
<div class="ts-hover-show">
|
||||
<span class="rc-text--center">微信扫一扫</span>
|
||||
<img src="../assets/image/royalcanincn-qrcode.jpg">
|
||||
</div>
|
||||
</a>
|
||||
<a href="#" data-modal-trigger="modal-whereToBuy" onclick="bindTracking(this)" evt-name="页内弹窗" evt-cat="headerBtnClick" evt-val="在哪购买" class="rc-btn rc-btn--icon rc-icon rc-pin--xs rc-iconography rc-interactive rc-xs-up" aria-label="pin">
|
||||
<span class="rc-screen-reader-text">
|
||||
translations.feature.headerbar.pin
|
||||
</span>
|
||||
</a>
|
||||
|
||||
<nuxt-link :to="`../../productdetails/userdetails/`" @click="bindTracking(this)" evt-name="页内弹窗" evt-cat="headerBtnClick" evt-val="全文搜索" class="rc-btn rc-btn--icon rc-icon rc-search--xs rc-iconography rc-interactive" role="menuitem">
|
||||
<span class="rc-screen-reader-text">translations.feature.headerbar.search</span>
|
||||
</nuxt-link>
|
||||
</li>
|
||||
</ul>
|
||||
|
||||
</nav>
|
||||
<nav class="rc-header__nav rc-header__nav--secondary rc-md-up" data-component="nav-track" data-nav-name="Header navigation">
|
||||
<!-- Menu section-->
|
||||
<div class="rc-container">
|
||||
<ul class="rc-list rc-list--blank rc-list--inline rc-list--align rc-header__center">
|
||||
<li class="rc-list__item">
|
||||
<a href="/cats" class="rc-list__header" data-ref="nav-link" role="menuitem" title="猫">猫</a>
|
||||
</li>
|
||||
<li class="rc-list__item">
|
||||
<a href="/dogs" class="rc-list__header" data-ref="nav-link" role="menuitem" title="犬">犬</a>
|
||||
</li>
|
||||
<li class="rc-list__item">
|
||||
<a href="/tailored-nutrition" class="rc-list__header" data-ref="nav-link" role="menuitem" title="定制营养方案">定制营养方案</a>
|
||||
</li>
|
||||
<li class="rc-list__item">
|
||||
<a href="/about" class="rc-list__header" data-ref="nav-link" role="menuitem" title="关于我们">关于我们</a>
|
||||
</li>
|
||||
</ul>
|
||||
<div class="submenu rc-layout-container rc-one-column rc-margin--none rc-xl-up">
|
||||
<!-- Sub menu -->
|
||||
<div class="rc-full-width rc-max-width--xl rc-padding--sm">
|
||||
<ul class="rc-list rc-list--blank rc-list--align ts-list--four-column" role="menubar">
|
||||
<li class="rc-list__item rc-list__item--group">
|
||||
<img src="../assets/image/sub-nav/sub-nav-1.jpg" class="ts-head-img rc-margin-bottom--xs">
|
||||
<a href="/cats" class="rc-list__header rc-margin--none" role="menuitem">猫</a>
|
||||
<ul class="rc-list rc-list--blank rc-list--align test" role="menu">
|
||||
<li class="rc-list__item">
|
||||
<a href="/cats/products" class="rc-list__link" role="menuitem">产品</a>
|
||||
</li>
|
||||
<li class="rc-list__item">
|
||||
<a href="/cats/breeds" class="rc-list__link" role="menuitem">品种</a>
|
||||
</li>
|
||||
<li class="rc-list__item">
|
||||
<a href="/cats/getting-a-kitten" class="rc-list__link" role="menuitem">想养猫吗</a>
|
||||
</li>
|
||||
<li class="rc-list__item">
|
||||
<a href="/cats/kitten" class="rc-list__link" role="menuitem">幼猫</a>
|
||||
</li>
|
||||
<li class="rc-list__item">
|
||||
<a href="/cats/kitten/health" class="rc-list__link" role="menuitem">健康和心情</a>
|
||||
</li>
|
||||
</ul>
|
||||
</li>
|
||||
<li class="rc-list__item rc-list__item--group">
|
||||
<img src="../assets/image/sub-nav/sub-nav-2.jpg" class="ts-head-img rc-margin-bottom--xs">
|
||||
<a href="/dogs" class="rc-list__header rc-margin--none" role="menuitem">犬</a>
|
||||
<ul class="rc-list rc-list--blank rc-list--align test" role="menu">
|
||||
<li class="rc-list__item">
|
||||
<a href="/dogs/products" class="rc-list__link" role="menuitem">产品</a>
|
||||
</li>
|
||||
<li class="rc-list__item">
|
||||
<a href="/dogs/breeds" class="rc-list__link" role="menuitem">品种</a>
|
||||
</li>
|
||||
<li class="rc-list__item">
|
||||
<a href="/dogs/getting-a-puppy" class="rc-list__link" role="menuitem">想养只狗</a>
|
||||
</li>
|
||||
<li class="rc-list__item">
|
||||
<a href="/dogs/puppy" class="rc-list__link" role="menuitem">幼犬</a>
|
||||
</li>
|
||||
<li class="rc-list__item">
|
||||
<a href="/dogs/puppy/health" class="rc-list__link" role="menuitem">健康和心情</a>
|
||||
</li>
|
||||
</ul>
|
||||
</li>
|
||||
<li class="rc-list__item rc-list__item--group">
|
||||
<img src="../assets/image/sub-nav/sub-nav-3.jpg" class="ts-head-img rc-margin-bottom--xs">
|
||||
<a href="/tailored-nutrition" class="rc-list__header rc-margin--none" role="menuitem">定制营养方案</a>
|
||||
<ul class="rc-list rc-list--blank rc-list--align test" role="menu">
|
||||
<li class="rc-list__item">
|
||||
<a href="/cats/products" class="rc-list__link" role="menuitem">猫系列</a>
|
||||
</li>
|
||||
<li class="rc-list__item">
|
||||
<a href="/dogs/products" class="rc-list__link" role="menuitem">狗系列</a>
|
||||
</li>
|
||||
</ul>
|
||||
</li>
|
||||
<li class="rc-list__item rc-list__item--group">
|
||||
<img src="../assets/image/sub-nav/sub-nav-4.jpg" class="ts-head-img rc-margin-bottom--xs">
|
||||
<a href="/about" class="rc-list__header rc-margin--none" role="menuitem">关于我们</a>
|
||||
<ul class="rc-list rc-list--blank rc-list--align test" role="menu">
|
||||
<li class="rc-list__item">
|
||||
<a href="/about#growth-phase1" class="rc-list__link" role="menuitem">我们的历史</a>
|
||||
</li>
|
||||
<li class="rc-list__item">
|
||||
<a href="/about" class="rc-list__link" role="menuitem">我们的价值观</a>
|
||||
</li>
|
||||
</ul>
|
||||
</li>
|
||||
</ul>
|
||||
</div>
|
||||
<!-- Sub menu end -->
|
||||
</div>
|
||||
</div>
|
||||
<!-- Menu section end-->
|
||||
</nav>
|
||||
</header>
|
||||
</template>
|
||||
|
||||
<script>
|
||||
|
||||
export default {
|
||||
@ -41,15 +158,18 @@ export default {
|
||||
};
|
||||
},
|
||||
mounted() {
|
||||
|
||||
|
||||
},
|
||||
|
||||
methods: {
|
||||
|
||||
bindTracking: function(){
|
||||
console.log('bindTracking');
|
||||
}
|
||||
|
||||
},
|
||||
};
|
||||
</script>
|
||||
<style lang="less" scoped>
|
||||
@import url("../assets/css/global.less");
|
||||
@import url("../assets/css/clip.less");
|
||||
</style>
|
@ -35,29 +35,18 @@ export default {
|
||||
props: {
|
||||
|
||||
tableLabelTest:Array,
|
||||
middleImgWidth: {
|
||||
default: 350,
|
||||
type: Number
|
||||
}, // 产品图片宽
|
||||
middleImgHeight: {
|
||||
default: 282,
|
||||
type: Number
|
||||
}, // 产品图片高
|
||||
thumbnailHeight: {
|
||||
default: 100,
|
||||
type: Number
|
||||
}, // 缩略图容器高度
|
||||
imgList: Array, // 图片数据
|
||||
zoom: {
|
||||
default: 2, // 缩略比例,放大比例
|
||||
type: Number
|
||||
},
|
||||
|
||||
|
||||
|
||||
}
|
||||
},
|
||||
data() {
|
||||
return {
|
||||
middleImgWidth:350,
|
||||
middleImgHeight:350,
|
||||
thumbnailHeight:100,
|
||||
|
||||
tableLabelTest1:this.tableLabelTest,
|
||||
pictureList: [
|
||||
{url: require("../assets/four.png")},
|
||||
@ -86,37 +75,34 @@ export default {
|
||||
itemWidth: 80, // 缩略图每张的宽度
|
||||
}
|
||||
},
|
||||
watch:{
|
||||
data:'ifadroind',// 值可以为methods的方法名
|
||||
|
||||
inputName: function(newValue) {
|
||||
this.pictureList=newValue;
|
||||
this.menu=newValue;
|
||||
console.log(this.newValue);
|
||||
}
|
||||
},
|
||||
watch:{
|
||||
data:'ifadroind',// 值可以为methods的方法名
|
||||
inputName: function(newValue) {
|
||||
this.pictureList=newValue;
|
||||
this.menu=newValue;
|
||||
console.log(this.newValue);
|
||||
}
|
||||
},
|
||||
created() {
|
||||
|
||||
},
|
||||
|
||||
mounted() {
|
||||
let user= JSON.parse(localStorage.getItem("message"));
|
||||
console.log(user);
|
||||
if(user!==null){
|
||||
this.pictureList=user;
|
||||
}
|
||||
if (user && user.length) {
|
||||
this.pictureList = user
|
||||
}
|
||||
this.middleImg = this.pictureList[0].attachmentPath;
|
||||
console.log(this.middleImg);
|
||||
// 计算缩略图的宽度,默认是显示4张图片,两边箭头的宽度和为50
|
||||
// this.itemWidth = (this.middleImgWidth-30) / 2
|
||||
|
||||
|
||||
this.ifadroind();
|
||||
this.$nextTick(() => {
|
||||
console.log(this.menu);
|
||||
let user= JSON.parse(localStorage.getItem("message"));
|
||||
console.log(user);
|
||||
if(user!==null){
|
||||
this.pictureList=user;
|
||||
}
|
||||
if (user && user.length) {
|
||||
this.pictureList = user
|
||||
}
|
||||
this.middleImg = this.pictureList[0].attachmentPath;
|
||||
console.log(this.middleImg);
|
||||
// 计算缩略图的宽度,默认是显示4张图片,两边箭头的宽度和为50
|
||||
// this.itemWidth = (this.middleImgWidth-30) / 2
|
||||
this.ifadroind();
|
||||
this.$nextTick(() => {
|
||||
console.log(this.menu);
|
||||
// 容器的高
|
||||
const imgWidth = this.middleImgHeight + this.thumbnailHeight + 20
|
||||
// 设置容器宽高
|
||||
@ -154,27 +140,28 @@ this.ifadroind();
|
||||
|
||||
methods: {
|
||||
//判断是手机打开还是电脑打开
|
||||
ifadroind(){
|
||||
var sUserAgent = navigator.userAgent.toLowerCase();
|
||||
var bIsIpad = sUserAgent.match(/ipad/i) == "ipad";
|
||||
var bIsIphoneOs = sUserAgent.match(/iphone os/i) == "iphone os";
|
||||
var bIsMidp = sUserAgent.match(/midp/i) == "midp";
|
||||
var bIsUc7 = sUserAgent.match(/rv:1.2.3.4/i) == "rv:1.2.3.4";
|
||||
var bIsUc = sUserAgent.match(/ucweb/i) == "ucweb";
|
||||
var bIsAndroid = sUserAgent.match(/android/i) == "android";
|
||||
var bIsCE = sUserAgent.match(/windows ce/i) == "windows ce";
|
||||
var bIsWM = sUserAgent.match(/windows mobile/i) == "windows mobile";
|
||||
ifadroind(){
|
||||
var sUserAgent = navigator.userAgent.toLowerCase();
|
||||
var bIsIpad = sUserAgent.match(/ipad/i) == "ipad";
|
||||
var bIsIphoneOs = sUserAgent.match(/iphone os/i) == "iphone os";
|
||||
var bIsMidp = sUserAgent.match(/midp/i) == "midp";
|
||||
var bIsUc7 = sUserAgent.match(/rv:1.2.3.4/i) == "rv:1.2.3.4";
|
||||
var bIsUc = sUserAgent.match(/ucweb/i) == "ucweb";
|
||||
var bIsAndroid = sUserAgent.match(/android/i) == "android";
|
||||
var bIsCE = sUserAgent.match(/windows ce/i) == "windows ce";
|
||||
var bIsWM = sUserAgent.match(/windows mobile/i) == "windows mobile";
|
||||
|
||||
if (!(bIsIpad || bIsIphoneOs || bIsMidp || bIsUc7 || bIsUc || bIsAndroid || bIsCE || bIsWM)) {
|
||||
// 设置产品图宽高
|
||||
$('.middle_img').css({
|
||||
width: this.middleImgWidth,
|
||||
height: this.middleImgHeight
|
||||
})
|
||||
|
||||
}else{
|
||||
|
||||
}
|
||||
if ((bIsIpad || bIsIphoneOs || bIsMidp || bIsUc7 || bIsUc || bIsAndroid || bIsCE || bIsWM)) {
|
||||
//Mob Screen
|
||||
}else{
|
||||
//PC screen size
|
||||
this.middleImgWidth=560;
|
||||
this.middleImgHeight=560;
|
||||
}
|
||||
$('.middle_img').css({
|
||||
width: this.middleImgWidth,
|
||||
height: this.middleImgHeight
|
||||
})
|
||||
},
|
||||
// 产品图片鼠标移入事件,显示阴影,显示大图
|
||||
boxMouseOver (e) {
|
||||
|
@ -1,4 +1,4 @@
|
||||
const rem = '!function(e){var t,n=document,i=window,o=n.documentElement;function u(){var t=o.getBoundingClientRect().width/e*100;o.style.fontSize=t+"px"}u(),i.addEventListener("resize",function(){clearTimeout(t),t=setTimeout(u,300)},!1),i.addEventListener("pageshow",function(e){e.persisted&&(clearTimeout(t),t=setTimeout(u,300))},!1)}(750);';
|
||||
//const rem = '!function(e){var t,n=document,i=window,o=n.documentElement;function u(){var t=o.getBoundingClientRect().width/e*100;o.style.fontSize=t+"px"}u(),i.addEventListener("resize",function(){clearTimeout(t),t=setTimeout(u,300)},!1),i.addEventListener("pageshow",function(e){e.persisted&&(clearTimeout(t),t=setTimeout(u,300))},!1)}(750);';
|
||||
|
||||
export default {
|
||||
|
||||
@ -10,7 +10,7 @@ export default {
|
||||
lang: 'en'
|
||||
},
|
||||
script: [
|
||||
{ src: '/js/rem.js' },
|
||||
//{ src: '/js/rem.js' },
|
||||
// { src: '/js/flexible.js', type: 'text/javascript', charset: 'utf-8'},
|
||||
{ src: 'https://ocstest.royalcanin.com.cn:8081/livechat/chatapp/customer/branch/RoyalCanin/14053/index.js' },
|
||||
{ src: '"https://ocstest.royalcanin.com.cn:8081/livechat/chatapp/customer/branch/RoyalCanin/14054/index.js"' }
|
||||
|
@ -5,43 +5,41 @@
|
||||
<div class="rc-top"></div>
|
||||
<div class="rc-usermain ts-product-detail">
|
||||
<magnifier v-bind:parentmsg="msg" ></magnifier>
|
||||
<div class="rc-header" >
|
||||
<div class="ts-product-header" >
|
||||
<div class="usermain">
|
||||
<div class="online"></div>
|
||||
<div class="online bold rc-md-down"></div>
|
||||
<div class="rc-main">
|
||||
<div class="rc-title">
|
||||
<h2>{{ item.productName }}</h2>
|
||||
</div>
|
||||
</div>
|
||||
<div class="online"></div>
|
||||
<div class="online rc-md-down"></div>
|
||||
<div class="rc-main">
|
||||
<div class="productdetails">
|
||||
<div class="rc-productdetail">
|
||||
<i>商品价格</i>
|
||||
<span>¥{{ item.rsp }}</span>
|
||||
<i style="font-size:12px;color:#999999">¥{{item.ecPrice}}</i>
|
||||
<i class="ts-row-title">商品价格:</i>
|
||||
<span class="ts-realprice">¥{{ item.rsp }}</span>
|
||||
<span class="ts-remove ts-ecprice">¥{{ item.ecPrice }} </span>
|
||||
</div>
|
||||
<div class="rc-productdetai">
|
||||
<div>
|
||||
<i>活动促销:</i>
|
||||
<i class="ts-row-title">活动促销:</i>
|
||||
<span>全场商品限时优惠</span>
|
||||
</div>
|
||||
<em @click="userget()">立即领取</em>
|
||||
</div>
|
||||
<div class="rc-button" v-if="!userbuy">
|
||||
<span @click="usertanchu(item,0)">加入购物车</span>
|
||||
<span @click="usertanchu(item,1)">立即购买</span>
|
||||
</div>
|
||||
</div>
|
||||
</div>
|
||||
<div class="online"></div>
|
||||
|
||||
<div class="online bold rc-md-down"></div>
|
||||
<div class="rc-main rc-md-up">
|
||||
<div class="online"></div>
|
||||
</div>
|
||||
|
||||
<div class="rc-productdeta" v-if="userbuy">
|
||||
<div class="rc-main">
|
||||
<div class="rc-prodtop">
|
||||
<div>
|
||||
<span>商品规格</span>:
|
||||
<i class="ts-row-title">商品规格:</i>
|
||||
</div>
|
||||
<!-- <em v-for="(item, index) in stype" :key="index" @click="selectsearch(item, index)" :class="activeIndexa == index ? 'active' : 'unactive'">
|
||||
{{ item.title }}
|
||||
@ -52,44 +50,50 @@
|
||||
</em>
|
||||
</div>
|
||||
</div>
|
||||
<div class="online"></div>
|
||||
<div class="rc-main">
|
||||
<div class="rc-produnnum">
|
||||
<div><span>商品数量</span>:</div>
|
||||
<div><i class="ts-row-title">商品数量:</i></div>
|
||||
<img src="../../assets/image/userjian.png" alt="" @click="sub()" />
|
||||
<strong>{{sales_num}}</strong>
|
||||
<img src="../../assets/image/userjia.png" alt="" @click="plus()" class="rc-message" />
|
||||
<img src="../../assets/image/userjia.png" alt="" @click="plus()" />
|
||||
</div>
|
||||
</div>
|
||||
<div class="rc-main">
|
||||
<div class="certification">
|
||||
<ul>
|
||||
<div class="rc-main rc-md-up">
|
||||
<div class="online"></div>
|
||||
</div>
|
||||
<div class="online rc-md-down"></div>
|
||||
<div class="rc-main">
|
||||
<div class="certification">
|
||||
<ul>
|
||||
<li>
|
||||
<span
|
||||
><i class="ts-row-title">服务说明:</i><i>当天14点前完成付款即日安排发货;当天14点后完成付款次日安排发货(周日及国家法定节假日顺延至下一个工作日发货,活动期间发货或有延迟敬请理解)</i></span
|
||||
>
|
||||
</li>
|
||||
<li>
|
||||
<span
|
||||
>服务说明:<i>当天14点前完成付款即日安排发货;当天14点后完成付款次日安排发货(周日及国家法定节假日顺延至下一个工作日发货,活动期间发货或有延迟敬请理解)</i></span
|
||||
>
|
||||
</li>
|
||||
<li>
|
||||
<span
|
||||
>商品运费:<i>全场包邮(港澳除外)</i></span
|
||||
>
|
||||
</li>
|
||||
<span
|
||||
><i class="ts-row-title">商品运费:</i><i>全场包邮(港澳除外)</i></span
|
||||
>
|
||||
</li>
|
||||
|
||||
<li>
|
||||
<span
|
||||
>商品编号:<i>{{ item.brandCode }}</i></span
|
||||
>
|
||||
</li>
|
||||
</ul>
|
||||
|
||||
</div>
|
||||
<li>
|
||||
<span
|
||||
><i class="ts-row-title">商品编号:</i><i>{{ item.brandCode }}</i></span
|
||||
>
|
||||
</li>
|
||||
</ul>
|
||||
</div>
|
||||
<div class="rc-button" v-if="!userbuy">
|
||||
<span @click="usertanchu(item,0)">加入购物车</span>
|
||||
<span @click="usertanchu(item,1)">立即购买</span>
|
||||
</div>
|
||||
</div>
|
||||
</div>
|
||||
</div>
|
||||
|
||||
</div>
|
||||
</div>
|
||||
<div class="rc-footimage">
|
||||
<div class="rc-footimage rc-main">
|
||||
<img :src=item.showImgFile alt="">
|
||||
|
||||
</div>
|
||||
@ -156,7 +160,7 @@
|
||||
|
||||
|
||||
</el-dialog>
|
||||
<div class="rc-button" style="width:100%">
|
||||
<div class="rc-button rc-md-down">
|
||||
<span @click="usertanchu(item,0)">加入购物车</span>
|
||||
<span @click="usertanchu(item,1)">立即购买</span>
|
||||
</div>
|
||||
@ -189,7 +193,7 @@ export default {
|
||||
productCode:'',//商品code
|
||||
productlist:[],
|
||||
userbuy:true,
|
||||
sales_num:1,
|
||||
sales_num:1,
|
||||
usernewlist: [
|
||||
{
|
||||
price: "30",
|
||||
|
@ -10,6 +10,7 @@
|
||||
maxWidth = maxWidth || 540;
|
||||
width>maxWidth && (width=maxWidth);
|
||||
var rem = width * 100 / designWidth;
|
||||
debugger;
|
||||
remStyle.innerHTML = 'html{font-size:' + rem + 'px;}';
|
||||
}
|
||||
|
||||
|
Loading…
Reference in New Issue
Block a user