|
@@ -0,0 +1,151 @@
|
|
|
+<template>
|
|
|
+ <div class="AboutPres">
|
|
|
+ <div class="ban">
|
|
|
+ <img src="@/assets/img/bannerA.png" alt="" />
|
|
|
+ <h3 @click="$router.push('/Layout/About/1')">About</h3>
|
|
|
+ </div>
|
|
|
+ <div class="main">
|
|
|
+ <div class="box1">
|
|
|
+ <h3>From the President</h3>
|
|
|
+ <div class="info">
|
|
|
+ <span class="info_1">z</span>
|
|
|
+ <span class="info_3">c</span>
|
|
|
+ </div>
|
|
|
+ </div>
|
|
|
+ <div class="box2">
|
|
|
+ <h3>Exhibition Overview</h3>
|
|
|
+ <p>
|
|
|
+ The Capital Museum of Chinais a comprehensive museum affiliated with
|
|
|
+ the municipal government of Beijing. It is committed to displaying
|
|
|
+ Beijing's 500,000years of history of human settlement, 3,000 years of
|
|
|
+ urban history and 800 years of history as the capital of China. What
|
|
|
+ is more, the museumis responsible for the collection, collation,
|
|
|
+ restoration, research and preservation of the historical and cultural
|
|
|
+ heritage of the Beijing region. Furthermore, it stands asan important
|
|
|
+ site ofcultural exchange between the new Beijing and the larger world.
|
|
|
+ </p>
|
|
|
+ <p>
|
|
|
+ In the Capital Museum's eleven core exhibition rooms lie collections
|
|
|
+ of cultural relicscomprising more than one million tangible and
|
|
|
+ documentary artifacts, including numerous exquisite works of art and
|
|
|
+ precious historical objects. These invaluable relicsserve as
|
|
|
+ collective evidences ofthe robustcreativity and lasting vitalityof the
|
|
|
+ great and ancient nation of China.
|
|
|
+ </p>
|
|
|
+ <p>
|
|
|
+ The three temporary exhibition rooms of the Capital Museum are often
|
|
|
+ used to housefirst-classexhibits from around China and the world.
|
|
|
+ These exhibitions epitomizethe city of Beijing'sreadinessto
|
|
|
+ embracedifferent cultures and peoples from around the globe.At the
|
|
|
+ same time, theyreflect boththe uniformity and the diversity of
|
|
|
+ humanity's historical and cultural development.
|
|
|
+ </p>
|
|
|
+ <p>
|
|
|
+ Friends from home and abroad, we invite you allto visit the website of
|
|
|
+ the Capital Museum and get to know Beijing and China a little better.
|
|
|
+ You are also welcome to visit the Capital Museum to see into the past
|
|
|
+ and present of Beijing and China — and perhaps to seeinto yourselfa
|
|
|
+ little better as well.
|
|
|
+ </p>
|
|
|
+ </div>
|
|
|
+ </div>
|
|
|
+ </div>
|
|
|
+</template>
|
|
|
+
|
|
|
+<script>
|
|
|
+export default {
|
|
|
+ name: "AboutPres",
|
|
|
+ components: {},
|
|
|
+ data() {
|
|
|
+ //这里存放数据
|
|
|
+ return {};
|
|
|
+ },
|
|
|
+ //监听属性 类似于data概念
|
|
|
+ computed: {},
|
|
|
+ //监控data中的数据变化
|
|
|
+ watch: {},
|
|
|
+ //方法集合
|
|
|
+ methods: {},
|
|
|
+ //生命周期 - 创建完成(可以访问当前this实例)
|
|
|
+ created() {},
|
|
|
+ //生命周期 - 挂载完成(可以访问DOM元素)
|
|
|
+ mounted() {},
|
|
|
+ beforeCreate() {}, //生命周期 - 创建之前
|
|
|
+ beforeMount() {}, //生命周期 - 挂载之前
|
|
|
+ beforeUpdate() {}, //生命周期 - 更新之前
|
|
|
+ updated() {}, //生命周期 - 更新之后
|
|
|
+ beforeDestroy() {}, //生命周期 - 销毁之前
|
|
|
+ destroyed() {}, //生命周期 - 销毁完成
|
|
|
+ activated() {}, //如果页面有keep-alive缓存功能,这个函数会触发
|
|
|
+};
|
|
|
+</script>
|
|
|
+<style lang='less' scoped>
|
|
|
+.AboutPres {
|
|
|
+ width: 100%;
|
|
|
+ .ban {
|
|
|
+ position: relative;
|
|
|
+ width: 100%;
|
|
|
+ & > img {
|
|
|
+ width: 100%;
|
|
|
+ }
|
|
|
+ & > h3 {
|
|
|
+ position: absolute;
|
|
|
+ font-size: 24px;
|
|
|
+ color: #fff;
|
|
|
+ left: 20px;
|
|
|
+ bottom: 20px;
|
|
|
+ border-bottom: 1px solid #fff;
|
|
|
+ }
|
|
|
+ }
|
|
|
+ .main {
|
|
|
+ background: url("../../assets/img/bgAD.png");
|
|
|
+ background-size: 100% 100%;
|
|
|
+ padding: 20px 20px 40px;
|
|
|
+ .box1 {
|
|
|
+ padding: 0 15px 5px;
|
|
|
+ border-bottom: 1px solid #ccc;
|
|
|
+ & > h3 {
|
|
|
+ font-size: 22px;
|
|
|
+ font-weight: 700;
|
|
|
+ padding-left: 30px;
|
|
|
+ background: url("../../assets/img/Layout/chosen.png") left center
|
|
|
+ no-repeat;
|
|
|
+ background-size: 22px 18px;
|
|
|
+ margin-bottom: 5px;
|
|
|
+ }
|
|
|
+ .info {
|
|
|
+ font-size: 14px;
|
|
|
+ line-height: 30px;
|
|
|
+ color: #666;
|
|
|
+ overflow: hidden;
|
|
|
+ zoom: 1;
|
|
|
+ margin-bottom: 20px;
|
|
|
+ & > span {
|
|
|
+ padding: 0 0px 0 30px;
|
|
|
+ display: block;
|
|
|
+ }
|
|
|
+ .info_1 {
|
|
|
+ background: url("../../assets/img/bg_5.png") left 5px no-repeat;
|
|
|
+ }
|
|
|
+ .info_3 {
|
|
|
+ background: url("../../assets/img/bg_7.png") left 5px no-repeat;
|
|
|
+ }
|
|
|
+ }
|
|
|
+ }
|
|
|
+ .box2 {
|
|
|
+ padding: 20px 15px 0;
|
|
|
+ & > h3 {
|
|
|
+ font-size: 20px;
|
|
|
+ font-weight: 700;
|
|
|
+ margin-bottom: 15px;
|
|
|
+ }
|
|
|
+ & > p {
|
|
|
+ font-size: 14px;
|
|
|
+ line-height: 18px;
|
|
|
+ color: #6a6a6a;
|
|
|
+ margin-bottom: 15px;
|
|
|
+ }
|
|
|
+ }
|
|
|
+ }
|
|
|
+}
|
|
|
+</style>
|