粒子研究院前台前端
You can not select more than 25 topics Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.

385 lines
7.1 KiB

<template>
2 years ago
<div class="wrap" v-if="modules.length>=1">
<div class="single-banner single-banner-overview">
<img class="banner-img" :src="modules[0].form.pic" alt="">
<div class="texts">
<h6 class="banner-title">{{ modules[0].form.title }}</h6>
</div>
</div>
<ul class="tabs wow fadeInLeft">
<template v-for="(item, i) in tabs">
2 years ago
<li :class="{active: item.id == active}" :key="i" @click="tabChange(item)">{{ item.columnName }}</li>
</template>
</ul>
<div class="tab-content">
<div class="intro">
<img class="pic" src="http://10.10.11.7/images/overviewIntro/1.png" alt="">
<div class="right">
<h6>
{{ modules[1].form.title }}
<img class="title-bg" src="http://10.10.11.7/images/overviewIntro/2.png" alt="">
</h6>
<div class="text" v-html="modules[1].form.des"></div>
</div>
</div>
2 years ago
<div class="intro-bg" v-if="modules[2]">
<div class="mask"></div>
<div class="texts">
2 years ago
<h6>{{ modules[2].form.title }}</h6>
<div class="des" v-html="modules[2].form.des"></div>
</div>
</div>
</div>
2 years ago
2 years ago
<!-- <div class="ads">
2 years ago
<ul class="list">
<li>具有高亮度</li>
<li>超短脉冲</li>
<li>高相干</li>
<li>波长连续可调</li>
</ul>
2 years ago
</div> -->
</div>
</template>
<script>
import mixins from '@/mixins/page'
import overview from '@/mixins/overview'
import WOW from 'wow.js'
export default {
mixins: [mixins, overview],
data() {
return {
2 years ago
}
},
mounted() {
new WOW().init()
},
methods: {
}
};
</script>
<style lang="scss" scoped>
@import url(../../plugins/wow/animate.css);
@import "../../styles/page/page.scss";
.wrap {
background: url(../../assets/images/survey2.png) (bottom right)/auto no-repeat;
}
2 years ago
.single-banner {
.banner-img {
height: 24rem;
}
.texts {
top: auto !important;
bottom: 2rem;
h6 {
font-size: 2.16rem
}
}
}
.tabs {
display: flex;
justify-content: center;
box-shadow: 0px 2px 10px 0px rgba(223,223,223,0.28);
li {
2 years ago
padding: 1.25rem .95rem;
margin: 0 .5rem;
font-size: 1.05rem;
color: #333;
border-bottom: 4px solid transparent;
text-shadow: 0px 2px 14px rgba(167,167,167,0.26);
cursor: pointer;
&.active {
color: #1583FF;
border-bottom-color: #1583FF;
}
}
}
.tab-content {
2 years ago
padding-top: 3.85rem;
.intro {
display: flex;
2 years ago
margin-bottom: 5.5rem;
.pic {
width: 40%;
2 years ago
margin-right: 2.5rem;
}
.right {
width: 40%;
}
h6 {
position: relative;
2 years ago
font-size: 1.36rem;
color: #333;
}
.title-bg {
position: absolute;
2 years ago
top: -2rem;
left: -1rem;
}
.text {
2 years ago
margin-top: 2rem;
font-size: .99rem;
color: #020202;
line-height: 2;
}
}
.intro-bg {
position: relative;
2 years ago
height: auto;
padding-top: 4.5rem;
padding-bottom: 2rem;
color: #fff;
text-align: center;
background: url(http://10.10.11.7/images/overviewIntro/3.png) 0 0/100% 100% no-repeat;
.mask {
position: absolute;
top: 0;
right: 0;
bottom: 0;
left: 0;
content: '';
background-color: rgba(0, 0, 0, .3);
}
.texts {
position: relative;
}
h6 {
2 years ago
margin-bottom: 1.5rem;
font-size: 1.6rem;
font-family: ToppanBunkyuMidashiGothicStdN-ExtraBold, ToppanBunkyuMidashiGothicStdN;
font-weight: 800;
}
.des {
2 years ago
font-size: 1.2rem;
}
}
}
2 years ago
.ads {
position: fixed;
top: 30%;
right: 1%;
padding: 20px;
animation: move 20s linear infinite alternate;
li {
display: flex;
align-items: center;
padding-left: 20px;
line-height: 26px;
font-weight: 600;
font-size: 16px;
color: #1583FF;
&:before {
content: '';
width: 4px;
height: 4px;
margin-right: 8px;
border-radius: 50%;
background-color: #1583FF;
}
}
}
@keyframes move {
0% {
top: 30%;
right: 1%;
}
50% {
top: 40%;
right: 40%;
}
100% {
top: 90%;
right: 90%;
}
}
@media (max-width: 1200px) {
.tabs {
overflow: hidden;;
overflow-x: auto;
white-space: normal;
justify-content: normal;
display: -webkit-box;
li {
white-space: normal;
}
}
.tab-content{
width: 90%;
2 years ago
margin: auto;
padding-top: 1.25rem;
.intro {
flex-direction: column;
.pic {
width: 100%;
}
}
.intro-bg {
padding-top: 3rem;
.texts {
h6 {
font-size: 1.6rem;
}
}
}
.right {
width: 100% !important;
margin-top: 1.25rem;
.text {
margin-top: 1.25rem;
}
}
span {
font-size: 1.35rem;
}
}
}
2 years ago
@media (max-width: 320px) {
.single-banner {
.banner-img {
2 years ago
height: 12rem;
2 years ago
}
.texts {
2 years ago
bottom: 2rem !important;
left: 2rem !important;
2 years ago
.banner-title {
font-size: 1.5rem;
}
}
}
2 years ago
.tabs {
li {
padding: 1rem .5rem;
font-size: .85rem;
}
}
2 years ago
}
@media (min-width: 320px) and (max-width: 375px) {
.single-banner {
.banner-img {
2 years ago
height: 12rem;
2 years ago
}
.texts {
2 years ago
bottom: 2rem !important;
left: 2rem !important;
2 years ago
.banner-title {
font-size: 1.5rem;
}
}
}
2 years ago
.tabs {
li {
padding: 1rem .5rem;
font-size: .85rem;
}
}
2 years ago
}
@media (min-width: 375px) and (max-width: 480px) {
.single-banner {
.banner-img {
2 years ago
height: 12rem;
2 years ago
}
.texts {
2 years ago
bottom: 2rem !important;
left: 2rem !important;
2 years ago
.banner-title {
font-size: 1.5rem;
}
}
}
2 years ago
.tabs {
li {
padding: 1rem .5rem;
font-size: .85rem;
}
}
2 years ago
}
@media (min-width: 480px) and (max-width: 640px) {
.single-banner {
.banner-img {
2 years ago
height: 12rem;
2 years ago
}
.texts {
2 years ago
bottom: 2rem !important;
left: 2rem !important;
2 years ago
.banner-title {
font-size: 1.5rem;
}
}
}
2 years ago
.tabs {
li {
padding: 1rem .5rem;
font-size: .85rem;
}
}
2 years ago
}
@media (min-width: 640px) and (max-width: 768px) {
.single-banner {
.banner-img {
2 years ago
height: 12rem;
2 years ago
}
.texts {
2 years ago
bottom: 2rem !important;
left: 2rem !important;
2 years ago
.banner-title {
font-size: 1.5rem;
}
}
}
2 years ago
.tabs {
li {
padding: 1rem .5rem;
font-size: .85rem;
}
}
2 years ago
}
@media (min-width: 768px) and (max-width: 980px) {
.single-banner {
.banner-img {
2 years ago
height: 12rem;
2 years ago
}
.texts {
2 years ago
bottom: 2rem !important;
left: 2rem !important;
2 years ago
.banner-title {
font-size: 1.5rem;
}
}
}
2 years ago
.tabs {
li {
padding: 1rem .5rem;
font-size: .85rem;
}
}
2 years ago
}
@media (min-width: 980px) and (max-width: 1200px) {
.single-banner {
.banner-img {
2 years ago
height: 12rem;
2 years ago
}
.texts {
2 years ago
bottom: 2rem !important;
left: 2rem !important;
2 years ago
.banner-title {
font-size: 1.5rem;
}
}
}
2 years ago
.tabs {
li {
padding: 1rem .5rem;
font-size: .85rem;
}
}
2 years ago
}
</style>