|
@@ -6,13 +6,16 @@
|
|
|
@click="emit('close')"
|
|
|
/>
|
|
|
<h1>{{ title }}</h1>
|
|
|
- <div class="content-wrap">
|
|
|
- <div class="design-wrap">
|
|
|
- <img
|
|
|
- class="content-wrap__left"
|
|
|
- src="@/assets/images/CameraContent-3-2-3-left-bg.png"
|
|
|
- >
|
|
|
-
|
|
|
+ <div class="wrap-1">
|
|
|
+ <div class="wrap-2">
|
|
|
+ <div class="content-wrap__left">
|
|
|
+ <img
|
|
|
+ src="@/assets/images/CameraContent-3-2-3-left-bg.png"
|
|
|
+ >
|
|
|
+ <div class="img-title">
|
|
|
+ 元墓戏曲壁画
|
|
|
+ </div>
|
|
|
+ </div>
|
|
|
<div class="content-wrap__right text-indent">
|
|
|
<div>
|
|
|
<p>
|
|
@@ -85,41 +88,55 @@ const title = '表演元曲的著名演员'
|
|
|
z-index: 1;
|
|
|
}
|
|
|
|
|
|
- .content-wrap {
|
|
|
+ .wrap-1 {
|
|
|
position: absolute;
|
|
|
left: 50%;
|
|
|
top: 54%;
|
|
|
width: 100%;
|
|
|
height: calc(723 / v-bind('windowSizeWhenDesignForRef') * v-bind('windowSizeInCssForRef'));
|
|
|
transform: translate(-50%, -50%);
|
|
|
-
|
|
|
- &__right {
|
|
|
+ >.wrap-2 {
|
|
|
+ position: absolute;
|
|
|
+ left: 0;
|
|
|
+ top: 0;
|
|
|
display: flex;
|
|
|
align-items: center;
|
|
|
- justify-content: center;
|
|
|
- width: 956px;
|
|
|
- height: 475px;
|
|
|
- background: url('@/assets/images/CameraContent-3-2-3-right-bg.png') no-repeat center / contain;
|
|
|
+ justify-content: space-between;
|
|
|
+ padding: 0 97px 0 195px;
|
|
|
+ width: 100%;
|
|
|
+ height: 100%;
|
|
|
+ box-sizing: border-box;
|
|
|
+ background: url(@/assets/images/camera-content-3-1-3-design-bg.png) no-repeat center / cover;
|
|
|
+ >.content-wrap__left{
|
|
|
+ display: flex;
|
|
|
+ flex-direction: column;
|
|
|
+ justify-content: center;
|
|
|
+ align-items: center;
|
|
|
+ height: 100%;
|
|
|
+ >img{
|
|
|
+ flex: 0 0 auto;
|
|
|
+ height: 75%;
|
|
|
+ }
|
|
|
+ >.img-title{
|
|
|
+ margin-top: 0.5em;
|
|
|
+ font-size: calc(20 / v-bind('windowSizeWhenDesignForRef') * v-bind('windowSizeInCssForRef'));
|
|
|
+ font-family: "Source Han Sans SC light";
|
|
|
+ }
|
|
|
+ }
|
|
|
+ >.content-wrap__right {
|
|
|
+ display: flex;
|
|
|
+ align-items: center;
|
|
|
+ justify-content: center;
|
|
|
+ width: 956px;
|
|
|
+ height: 475px;
|
|
|
+ background: url('@/assets/images/CameraContent-3-2-3-right-bg.png') no-repeat center / contain;
|
|
|
|
|
|
- > div {
|
|
|
- width: 716px;
|
|
|
- font-size: 20px;
|
|
|
+ > div {
|
|
|
+ width: 716px;
|
|
|
+ font-size: 20px;
|
|
|
+ }
|
|
|
}
|
|
|
}
|
|
|
}
|
|
|
-
|
|
|
- .design-wrap {
|
|
|
- position: absolute;
|
|
|
- left: 0;
|
|
|
- top: 0;
|
|
|
- display: flex;
|
|
|
- align-items: center;
|
|
|
- justify-content: space-between;
|
|
|
- padding: 0 97px 0 195px;
|
|
|
- width: 100%;
|
|
|
- height: 100%;
|
|
|
- box-sizing: border-box;
|
|
|
- background: url(@/assets/images/camera-content-3-1-3-design-bg.png) no-repeat center / cover;
|
|
|
- }
|
|
|
}
|
|
|
</style>
|