123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596979899100101102103104105106107108109110111112113114115116117118119120121122123124125126127128129130131132133134135136137138139140 |
- <template>
- <div class="camera-content-1-1">
- <button
- class="return"
- @click="emit('close')"
- />
- <h1>{{ title }}</h1>
- <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>
- 大都的著名女演员,有珠帘秀、顺时秀、天然秀、赛帘秀、燕山秀(均为艺名)等。珠帘秀本姓朱,她的“杂剧为当今独步”,名震一时。赛帘秀、燕山秀等,都是她的门徒,后辈都尊称她为朱娘娘。顺时秀原名郭顺卿,元代中期也很有名,“教坊女乐顺时秀,岂独歌博天下名!意态由来看不足,揭帘半面已倾城”。
- </p>
- <p>
- 大都著名的男演员有魏、武、刘三人,“魏长于念诵,武长于筋斗,刘长于科泛(表演动作之意——引者),后代乐人“皆宗之”。可惜他们的名字都没有流传下来。
- </p>
- </div>
- </div>
- </div>
- </div>
- </div>
- </template>
- <script setup>
- const {
- windowSizeInCssForRef,
- windowSizeWhenDesignForRef,
- } = useSizeAdapt(1920, 968)
- const emit = defineEmits(['close'])
- const title = '表演元曲的著名演员'
- </script>
- <style lang="less" scoped>
- @page-height-design-px: 970;
- .camera-content-1-1 {
- position: absolute;
- left: 0;
- top: 0;
- width: 100%;
- height: 100%;
- background: rgba(0, 0, 0, 0.45);
- backdrop-filter: blur(60px);
- >button.return {
- position: absolute;
- width: 58px;
- height: 58px;
- left: 42px;
- top: 68px;
- background-image: url(@/assets/images/btn-return.png);
- background-size: contain;
- background-repeat: no-repeat;
- background-position: center center;
- z-index: 10;
- }
- >h1 {
- position: absolute;
- left: 0;
- top: calc(93 / @page-height-design-px * 100vh);
- width: 100%;
- height: calc(120 / @page-height-design-px * 100vh);
- background-image: url(@/assets/images/camera-content-3-1-3-title-bg.png);
- background-size: auto 100%;
- background-repeat: no-repeat;
- background-position: center center;
- font-size: calc(32 / @page-height-design-px * 100vh);
- font-family: "SourceHanSerifCN-SemiBold";
- color: #FFEEC0;
- line-height: calc(38 / @page-height-design-px * 100vh);
- display: flex;
- justify-content: center;
- align-items: center;
- z-index: 1;
- }
- .wrap-1 {
- position: absolute;
- left: 50%;
- top: 54%;
- width: 100%;
- height: calc(723 / v-bind('windowSizeWhenDesignForRef') * v-bind('windowSizeInCssForRef'));
- transform: translate(-50%, -50%);
- >.wrap-2 {
- 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;
- >.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;
- }
- }
- >.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;
- }
- }
- }
- }
- }
- </style>
|