|
@@ -11,7 +11,7 @@ body, html, #app {
|
|
ol,ul,dl,dt,dd{list-style:none;margin: 0;padding: 0;}
|
|
ol,ul,dl,dt,dd{list-style:none;margin: 0;padding: 0;}
|
|
|
|
|
|
/* 让标题都自定义, 适应多个系统应用 */
|
|
/* 让标题都自定义, 适应多个系统应用 */
|
|
-h1,h2,h3,h4,h5,h6,p{font-size:100%;font-weight:normal;margin: 0;}
|
|
|
|
|
|
+h1,h2,h3,h4,h5,h6,p{font-weight:normal;margin: 0;}
|
|
|
|
|
|
/* 外边距 */
|
|
/* 外边距 */
|
|
.m5{margin:5px;}
|
|
.m5{margin:5px;}
|
|
@@ -110,6 +110,7 @@ h1,h2,h3,h4,h5,h6,p{font-size:100%;font-weight:normal;margin: 0;}
|
|
.website-head{
|
|
.website-head{
|
|
width: 100%;
|
|
width: 100%;
|
|
height: 80px;
|
|
height: 80px;
|
|
|
|
+ background: #fff;
|
|
|
|
|
|
//头部布局
|
|
//头部布局
|
|
.head-layout{display: flex;justify-content: space-between;}
|
|
.head-layout{display: flex;justify-content: space-between;}
|
|
@@ -147,6 +148,34 @@ h1,h2,h3,h4,h5,h6,p{font-size:100%;font-weight:normal;margin: 0;}
|
|
}
|
|
}
|
|
}
|
|
}
|
|
|
|
|
|
|
|
+/* 网站头部导栏 - 面包屑 */
|
|
|
|
+.website-breadcrumb-box {
|
|
|
|
+ width: 1200px;
|
|
|
|
+ font-size: 16px;
|
|
|
|
+ margin: 24px auto;
|
|
|
|
+ .st-breadcrumb{
|
|
|
|
+ margin-left: 24px;
|
|
|
|
+ a:last-child{
|
|
|
|
+ .breadcrumb-div::after{display: none;}
|
|
|
|
+ }
|
|
|
|
+ }
|
|
|
|
+ .st-breadcrumb-item {display: inline-block;vertical-align: middle;color: #4a73fd;text-decoration: none;}
|
|
|
|
+ .st-breadcrumb-item:hover {cursor: pointer;}
|
|
|
|
+ .st-breadcrumb-item:after {width: 11px;height: 16px;content: '';display: inline-block;padding: 0 16px;vertical-align: middle;zoom:0.8;-moz-transform:scale(0.8,0.8);
|
|
|
|
+ background-image: url("~@/assets/images/website/component/" + "breadcrumb-icon.svg");background-repeat: no-repeat;background-position: center;}
|
|
|
|
+ .breadcrumb-div{display: inline-block;vertical-align: middle;}
|
|
|
|
+ .st-breadcrumb-item-last {display: inline-block;text-decoration: none;color: #333;vertical-align: middle;}
|
|
|
|
+ .st-breadcrumb-item-last:hover {cursor: default;}
|
|
|
|
+ // IE11兼容写法
|
|
|
|
+ @media all and (-ms-high-contrast:none) {
|
|
|
|
+ *::-ms-backdrop, .st-breadcrumb-item-last { margin-left: -10px;}
|
|
|
|
+ }
|
|
|
|
+ // IE10兼容写法
|
|
|
|
+ @media screen and (-ms-high-contrast: active), (-ms-high-contrast: none) {
|
|
|
|
+ .st-breadcrumb-item-last { margin-left: -10px;}
|
|
|
|
+ }
|
|
|
|
+}
|
|
|
|
+
|
|
/* 网站底部footer */
|
|
/* 网站底部footer */
|
|
.website-footer{
|
|
.website-footer{
|
|
background: #1E2534;
|
|
background: #1E2534;
|
|
@@ -185,4 +214,34 @@ h1,h2,h3,h4,h5,h6,p{font-size:100%;font-weight:normal;margin: 0;}
|
|
}
|
|
}
|
|
//底部版权
|
|
//底部版权
|
|
h5{@include setFontStyle(-8);color: #B8B8B8;text-align: center;padding: 16px 0 24px;}
|
|
h5{@include setFontStyle(-8);color: #B8B8B8;text-align: center;padding: 16px 0 24px;}
|
|
|
|
+}
|
|
|
|
+
|
|
|
|
+/* 网站通用详情页布局 */
|
|
|
|
+.website-details-page{
|
|
|
|
+ background: #f9faff;
|
|
|
|
+ width: 100%;
|
|
|
|
+ .website-details-wrap{
|
|
|
|
+ width: 1200px;
|
|
|
|
+ margin: 24px auto;
|
|
|
|
+ padding: 32px;
|
|
|
|
+ box-sizing: border-box;
|
|
|
|
+ background: #FFFFFF;
|
|
|
|
+ border-radius: 8px;
|
|
|
|
+ min-height: calc(100vh - 170px);
|
|
|
|
+ >h1{@include setFontStyle(0);color: rgba(0,0,0,0.85);margin-bottom: 16px;text-align: center}
|
|
|
|
+ p{
|
|
|
|
+ margin-bottom: 24px;
|
|
|
|
+ i{width: 20px;height: 20px;display: inline-block;margin-right: 14px;vertical-align: middle;background-image: url("~@/assets/images/website/industry/" + "industry-details-time.svg");}
|
|
|
|
+ i[type="visits"]{background-image: url("~@/assets/images/website/industry/" + "industry-details-visits.svg");}
|
|
|
|
+ span{@include setFontStyle(-6);display:inline-block;color: #666;margin-right: 60px;vertical-align: middle;}
|
|
|
|
+ }
|
|
|
|
+ .website-content-box{
|
|
|
|
+ line-height: 24px;
|
|
|
|
+ color: rgba(0,0,0,0.64);
|
|
|
|
+ @include setFontStyle(-6);
|
|
|
|
+ p{line-height: 22px;}
|
|
|
|
+ img{max-width: 100%;}
|
|
|
|
+ h1,h2,h3,h4,h5,h6,p{margin-bottom: 10px;}
|
|
|
|
+ }
|
|
|
|
+ }
|
|
}
|
|
}
|