分享實現地鐵車輛側面圖

簡介

通過偽類和關鍵幀動畫實現地鐵車輛側面圖

在線演示

偽元素和關鍵幀動畫

實現代碼

<!DOCTYPE html><html><head>
<meta http-equiv="Content-Type" content="text/html; charset=utf-8" />
<meta http-equiv="X-UA-Compatible" content="IE=edge,chrome=1">
<meta name="viewport" content="width=device-width, initial-scale=1" />
<meta content="always" name="referrer"><meta name="theme-color" content="#ffffff">
<meta name="description" content="">
<title>偽元素和關鍵幀動畫</title>
<style>
.loading{--ballSize: 10px;--containerSize: 150px;--duration: 2s;--barderWidth: 3px;width: var(--containerSize);height: var(--containerSize);border: 1px solid #12332100;margin: 50px auto;position: relative;border-radius:50%;
}
.loading:before{content: '';position: absolute;left: calc( 50% - var(--ballSize) / 2 - var(--barderWidth) );top: calc( 40% - var(--ballSize) / 2 - var(--barderWidth)  );width: var(--ballSize);height: var(--ballSize);border-radius: 50%;background: transparent;border-top: 0 solid gray;border-left: var(--barderWidth) solid gray;border-right:  var(--barderWidth) solid gray;border-bottom:  0 solid gray;animation: run 3s ease-in infinite;
}
.loading:after{content: '';position: absolute;left: calc( 50% - var(--ballSize) / 2 - var(--barderWidth) / 10 );top: calc( 50% - var(--ballSize) / 2 - 4*var(--barderWidth) );width: calc( var(--ballSize) / 2 );height: calc( var(--ballSize) / 2 );border-radius: 50%;background: transparent;border-top: 0 solid gray;border-left: var(--barderWidth) solid gray;border-right: var(--barderWidth) solid gray;border-bottom: 0 solid gray;animation: run 2s ease-out infinite;
}
@keyframes run {0%{border-color: #00ff0022;}25%{border-color: #00ff0044;}50%{border-color: #00ff0088;}75%{border-color: #00ff00aa;}100%{border-color: #00ff00;}
}
.dot{position: absolute;left: 50%;top: 0;width: var(--ballSize);height: var(--ballSize);margin-left: calc( var(--ballSize) / (-2) );margin-top: calc( var(--ballSize) / (-2) );background: #65432123;transform-origin: center calc( var(--containerSize) / 2 +  var(--ballSize) / 2 );perspective: 70px;transform-style: preserve-3d;
}.dot:nth-child(1){transform: rotate(0deg);
}
.dot:nth-child(1)::before,.dot:nth-child(1)::after{animation-delay: calc( var(--duration) / 36 * ( 1 - 1)*6*-1 );
}.dot:nth-child(2){transform: rotate(10deg);
}
.dot:nth-child(2)::before,.dot:nth-child(2)::after{animation-delay: calc( var(--duration) / 36 * ( 2 - 1 )*6*-1 );
}
.dot:nth-child(3){transform: rotate(20deg);
}
.dot:nth-child(3)::before,.dot:nth-child(3)::after{animation-delay: calc( var(--duration) / 36 * ( 3 - 1 )*6*-1 );
}
.dot:nth-child(4){transform: rotate(30deg);
}
.dot:nth-child(4)::before,.dot:nth-child(4)::after{animation-delay: calc( var(--duration) / 36 * ( 4 - 1 )*6*-1 );
}
.dot:nth-child(5){transform: rotate(40deg);
}
.dot:nth-child(5)::before,.dot:nth-child(5)::after{animation-delay: calc( var(--duration) / 36 * ( 5 - 1 )*6*-1 );
}
.dot:nth-child(6){transform: rotate(50deg);
}
.dot:nth-child(6)::before,.dot:nth-child(6)::after{animation-delay: calc( var(--duration) / 36 * ( 6 - 1 )*6*-1 );
}
.dot:nth-child(7){transform: rotate(60deg);
}
.dot:nth-child(7)::before,.dot:nth-child(7)::after{animation-delay: calc( var(--duration) / 36 * ( 7 - 1 )*6*-1 );
}
.dot:nth-child(8){transform: rotate(70deg);
}
.dot:nth-child(8)::before,.dot:nth-child(8)::after{animation-delay: calc( var(--duration) / 36 * ( 8 - 1 )*6*-1 );
}
.dot:nth-child(9){transform: rotate(80deg);
}
.dot:nth-child(9)::before,.dot:nth-child(9)::after{animation-delay: calc( var(--duration) / 36 * ( 9 - 1 )*6*-1 );
}
.dot:nth-child(10){transform: rotate(90deg);
}
.dot:nth-child(10)::before,.dot:nth-child(10)::after{animation-delay: calc( var(--duration) / 36 * ( 10 - 1 )*6*-1 );
}
.dot:nth-child(11){transform: rotate(100deg);
}
.dot:nth-child(11)::before,.dot:nth-child(11)::after{animation-delay: calc( var(--duration) / 36 * ( 11 - 1 )*6*-1 );
}
.dot:nth-child(12){transform: rotate(110deg);
}
.dot:nth-child(12)::before,.dot:nth-child(12)::after{animation-delay: calc( var(--duration) / 36 * ( 12 - 1 )*6*-1 );
}
.dot:nth-child(13){transform: rotate(120deg);
}
.dot:nth-child(13)::before,.dot:nth-child(13)::after{animation-delay: calc( var(--duration) / 36 * ( 13 - 1 )*6*-1 );
}
.dot:nth-child(14){transform: rotate(130deg);
}
.dot:nth-child(14)::before,.dot:nth-child(14)::after{animation-delay: calc( var(--duration) / 36 * ( 14 - 1 )*6*-1 );
}
.dot:nth-child(15){transform: rotate(140deg);
}
.dot:nth-child(15)::before,.dot:nth-child(15)::after{animation-delay: calc( var(--duration) / 36 * ( 15 - 1 )*6*-1 );
}
.dot:nth-child(16){transform: rotate(150deg);
}
.dot:nth-child(16)::before,.dot:nth-child(16)::after{animation-delay: calc( var(--duration) / 36 * ( 16 - 1 )*6*-1 );
}
.dot:nth-child(17){transform: rotate(160deg);
}
.dot:nth-child(17)::before,.dot:nth-child(17)::after{animation-delay: calc( var(--duration) / 36 * ( 17 - 1 )*6*-1 );
}
.dot:nth-child(18){transform: rotate(170deg);
}
.dot:nth-child(18)::before,.dot:nth-child(18)::after{animation-delay: calc( var(--duration) / 36 * ( 18 - 1 )*6*-1 );
}
.dot:nth-child(19){transform: rotate(180deg);
}
.dot:nth-child(19)::before,.dot:nth-child(19)::after{animation-delay: calc( var(--duration) / 36 * ( 19 - 1 )*6*-1 );
}
.dot:nth-child(20){transform: rotate(190deg);
}
.dot:nth-child(20)::before,.dot:nth-child(20)::after{animation-delay: calc( var(--duration) / 36 * ( 20 - 1 )*6*-1 );
}
.dot:nth-child(21){transform: rotate(200deg);
}
.dot:nth-child(21)::before,.dot:nth-child(21)::after{animation-delay: calc( var(--duration) / 36 * ( 21 - 1 )*6*-1 );
}
.dot:nth-child(22){transform: rotate(210deg);
}
.dot:nth-child(22)::before,.dot:nth-child(22)::after{animation-delay: calc( var(--duration) / 36 * ( 22 - 1 )*6*-1 );
}
.dot:nth-child(23){transform: rotate(220deg);
}
.dot:nth-child(23)::before,.dot:nth-child(23)::after{animation-delay: calc( var(--duration) / 36 * ( 23 - 1 )*6*-1 );
}
.dot:nth-child(24){transform: rotate(230deg);
}
.dot:nth-child(24)::before,.dot:nth-child(24)::after{animation-delay: calc( var(--duration) / 36 * ( 24 - 1 )*6*-1 );
}
.dot:nth-child(25){transform: rotate(240deg);
}
.dot:nth-child(25)::before,.dot:nth-child(25)::after{animation-delay: calc( var(--duration) / 36 * ( 25 - 1 )*6*-1 );
}
.dot:nth-child(26){transform: rotate(250deg);
}
.dot:nth-child(26)::before,.dot:nth-child(26)::after{animation-delay: calc( var(--duration) / 36 * ( 26 - 1 )*6*-1 );
}
.dot:nth-child(27){transform: rotate(260deg);
}
.dot:nth-child(27)::before,.dot:nth-child(27)::after{animation-delay: calc( var(--duration) / 36 * ( 27 - 1 )*6*-1 );
}
.dot:nth-child(28){transform: rotate(270deg);
}
.dot:nth-child(28)::before,.dot:nth-child(28)::after{animation-delay: calc( var(--duration) / 36 * ( 28 - 1 )*6*-1 );
}
.dot:nth-child(29){transform: rotate(280deg);
}
.dot:nth-child(29)::before,.dot:nth-child(29)::after{animation-delay: calc( var(--duration) / 36 * ( 29 - 1 )*6*-1 );
}
.dot:nth-child(30){transform: rotate(290deg);
}
.dot:nth-child(30)::before,.dot:nth-child(30)::after{animation-delay: calc( var(--duration) / 36 * ( 30 - 1 )*6*-1 );
}
.dot:nth-child(31){transform: rotate(300deg);
}
.dot:nth-child(31)::before,.dot:nth-child(31)::after{animation-delay: calc( var(--duration) / 36 * ( 31 - 1 )*6*-1 );
}
.dot:nth-child(32){transform: rotate(310deg);
}
.dot:nth-child(32)::before,.dot:nth-child(32)::after{animation-delay: calc( var(--duration) / 36 * ( 32 - 1 )*6*-1 );
}
.dot:nth-child(33){transform: rotate(320deg);
}
.dot:nth-child(33)::before,.dot:nth-child(33)::after{animation-delay: calc( var(--duration) / 36 * ( 33 - 1 )*6*-1 );
}
.dot:nth-child(34){transform: rotate(330deg);
}
.dot:nth-child(34)::before,.dot:nth-child(34)::after{animation-delay: calc( var(--duration) / 36 * ( 34 - 1 )*6*-1 );
}
.dot:nth-child(35){transform: rotate(340deg);
}
.dot:nth-child(35)::before,.dot:nth-child(35)::after{animation-delay: calc( var(--duration) / 36 * ( 35 - 1 )*6*-1 );
}
.dot:nth-child(36){transform: rotate(350deg);
}
.dot:nth-child(36)::before,.dot:nth-child(36)::after{animation-delay: calc( var(--duration) / 36 * ( 36 - 1 )*6*-1 );
}.dot::before,.dot::after{content: '';position: absolute;left: 0;top: 0;width: var(--ballSize);height: var(--ballSize);border-radius: 50%;
}
.dot::before{background: #123456;top: -100%;animation: rotate-black var(--duration) infinite;}
@keyframes rotate-black{0%{animation-timing-function: ease-in;}25%{transform: translate3d(0,100%,10px);animation-timing-function: ease-out;}50%{transform: translate3d(0,200%,0);animation-timing-function: ease-in;}75%{transform: translate3d(0,100%,-10px);animation-timing-function: ease-out;}}.dot::after{background: red;top: 100%;animation: rotate-red var(--duration) infinite;
}
@keyframes rotate-red{0%{animation-timing-function: ease-in;}25%{transform: translate3d(0,-100%,-10px);animation-timing-function: ease-out;}50%{transform: translate3d(0,-200%,0);animation-timing-function: ease-in;}75%{transform: translate3d(0,-100%,10px);animation-timing-function: ease-out;}}.train {--speed: 1s;display: black;align-items: center;box-sizing: border-box;flex: 1;height: 100px;padding: 0 60px;padding-top: 20px;flex-wrap: wrap;
}
.content_item {display: flex;align-items: center;justify-content: space-between;flex: 1;padding: 0 8px;
}
.carriageUp {background: #eaeaeb;box-shadow: 0px 20px 20px 5px #01071788;height: 100%;display: flex;align-items: center;justify-content: space-around;color: #a2a7b5;font-size: 14px;font-weight: bold;border-top-left-radius: 5px;border-top-right-radius: 5px;width: calc( ( 100% - (8 - 1) * 8px) / 8);cursor: pointer;
}
.carriageUp::before{content: "";position: relative;z-index: 1;width: 40px;height: 20px;border-radius: 2px;background-color: #dbdbe6;box-shadow: 1px -1px 1px 1px #0000004d;top: 0px;left: 0px;
}
.carriageUp::after{content: "";position: relative;z-index: 1;width: 40px;height: 20px;border-radius: 2px;background-color: #dbdbe6;box-shadow: 1px -1px 1px 1px #0000004d;top: 0px;right: 0px;
}
.carriageUp:first-child{border-top-left-radius: 80px;
}
.carriageUp:last-child{border-top-right-radius: 80px;
}
.carriageUp:first-child::before{left: -5px;border-top-left-radius: 20px;border-bottom-left-radius: 5px;width: 40px;
}
.carriageUp.openmc1:first-child::before{background: #4ebe11;
}
.carriageUp:last-child::after{right: -5px;border-top-right-radius: 20px;border-bottom-right-radius: 5px;width: 40px;
}
.carriageUp.openmc2:last-child::after{background: #4ebe11;
}
.carriageDown {background: #eaeaeb;height: 100%;display: flex;align-items: center;justify-content: center;color: #a2a7b5;font-size: 20px;font-weight: bold;border-radius: 1px;border-top: 10px solid #dbdbe6;width: calc( ( 100% - (8 - 1) * 8px) / 8);
}
.carriageDown::before{content: "";position: relative;z-index: 1;width: 40px;height: 40px;border-radius: 20px;background-color: #dbdbe6;box-shadow: 0px -1px 1px 1px #0000004f;top: 0px;left: -20px;animation: runRight calc( var(--speed)/24 ) linear infinite;
}
.carriageDown::after{content: "";position: relative;z-index: 1;width: 40px;height: 40px;border-radius: 20px;background-color: #dbdbe6;box-shadow: 0px -1px 1px 1px #0000004f;top: 0px;right: -20px;animation: runRight calc( var(--speed)/24 ) linear infinite;
}
.carriageDown:first-child{border-bottom-left-radius: 80px;
}
.carriageDown:last-child{border-bottom-right-radius: 80px;
}.content_item:first-child{height: 80%;
}
.content_item:last-child{height: 20%;
}@keyframes runRight{0%{transform: rotate(0deg) scale(0.96);}25%{transform: rotate(-90deg) scale(0.98);}50%{transform: rotate(-180deg) scale(1);}75%{transform: rotate(-270deg) scale(0.98);}100%{transform: rotate(-360deg) scale(0.96);}
}@keyframes runLeft{0%{transform: rotate(0deg) scale(0.96);}25%{transform: rotate(90deg) scale(0.98);}50%{transform: rotate(180deg) scale(1);}75%{transform: rotate(270deg) scale(0.98);}100%{transform: rotate(360deg) scale(0.96);}
}</style>
</head><body><div class="loading"><div class="dot"></div><div class="dot"></div><div class="dot"></div><div class="dot"></div><div class="dot"></div><div class="dot"></div><div class="dot"></div><div class="dot"></div><div class="dot"></div><div class="dot"></div><div class="dot"></div><div class="dot"></div><div class="dot"></div><div class="dot"></div><div class="dot"></div><div class="dot"></div><div class="dot"></div><div class="dot"></div><div class="dot"></div><div class="dot"></div><div class="dot"></div><div class="dot"></div><div class="dot"></div><div class="dot"></div><div class="dot"></div><div class="dot"></div><div class="dot"></div><div class="dot"></div><div class="dot"></div><div class="dot"></div><div class="dot"></div><div class="dot"></div><div class="dot"></div><div class="dot"></div><div class="dot"></div><div class="dot"></div>
</div><div class="train"><div class="content_item"><div class="carriageUp openmc1"></div><div class="carriageUp"></div><div class="carriageUp"></div><div class="carriageUp"></div><div class="carriageUp"></div><div class="carriageUp"></div><div class="carriageUp"></div><div class="carriageUp"></div></div><div class="content_item"><div class="carriageDown"></div><div class="carriageDown"></div><div class="carriageDown"></div><div class="carriageDown"></div><div class="carriageDown"></div><div class="carriageDown"></div><div class="carriageDown"></div><div class="carriageDown"></div></div>
</div><div style="width: 100%;height: 30px;background:#123456;"></div><script></script></body></html>

本文來自互聯網用戶投稿,該文觀點僅代表作者本人,不代表本站立場。本站僅提供信息存儲空間服務,不擁有所有權,不承擔相關法律責任。
如若轉載,請注明出處:http://www.pswp.cn/diannao/42124.shtml
繁體地址,請注明出處:http://hk.pswp.cn/diannao/42124.shtml
英文地址,請注明出處:http://en.pswp.cn/diannao/42124.shtml

如若內容造成侵權/違法違規/事實不符,請聯系多彩編程網進行投訴反饋email:809451989@qq.com,一經查實,立即刪除!

相關文章

設計模式之單例模式(Java)

單例模式實現方式&#xff1a;懶漢式、餓漢式、雙重檢查、枚舉、靜態內部類&#xff1b; 懶漢式&#xff1a; /*** 懶漢式單例模式* author: 小手WA涼* create: 2024-07-06*/ public class LazySingleton implements Serializable {private static LazySingleton lazySinglet…

對BSV區塊鏈的曼達拉網絡通俗易懂的解釋

??發表時間&#xff1a;2023年6月15日 BSV區塊鏈正在引入“曼達拉”升級&#xff0c;使BSV區塊鏈網絡的拓撲結構能夠適配Teranode&#xff0c;適配這個可以大幅擴容的節點軟件。BSV區塊鏈上曼達拉網絡的概念并不會改變整個系統的核心規則&#xff1b;相反&#xff0c;它能夠引…

為什么https比http更安全

讀完本文&#xff0c;希望你能明白&#xff1a; HTTP通信存在什么問題HTTPS如何改進HTTP存在那些問題HTTPS工作原理是什么 一、什么是HTTPS HTTPS是在HTTP上建立SSL加密層&#xff0c;并對傳輸數據進行加密&#xff0c;是HTTP協議的安全版。現在它被廣泛用于萬維網上安全敏感…

【qt】如何獲取本機的IP地址?

需要用到這個類QHostInfo和pro里面添加network模塊 用這個類的靜態函數forName()來獲取該主機名的信息 返回的就是這個類 這個QHostInfo類就包括主機的IP地址信息 用靜態函數addresses()來獲取 返回的是一個QHostAddress的容器 QList<QHostAddress>addrList hostIn…

Laravel隊列機制深度解析:異步任務處理的高效之道

Laravel隊列機制深度解析&#xff1a;異步任務處理的高效之道 Laravel的隊列系統是一個強大的工具&#xff0c;用于執行后臺任務和異步處理。它允許開發者將耗時的任務&#xff0c;如發送郵件、處理圖片等&#xff0c;放入隊列中&#xff0c;然后由后臺工作進程異步執行。本文…

Docker 鏡像移動或復制到另一臺服務器

在實際的開發和部署過程中&#xff0c;我們可能需要將 Docker 鏡像從一臺服務器移動或復制到另一臺服務器。本文將詳細介紹如何實現這一操作&#xff0c;幫助你更好地管理和遷移 Docker 鏡像。 一、使用 docker save 和 docker load 命令 docker save 和 docker load 是 Dock…

課題申報書中要用的思路圖(技術路線圖)30張,超高清!

最近在弄課題申報書的時候&#xff0c;需要畫“技術路線圖”&#xff1b;和小伙伴們探討才發現很多人居然不會畫這種圖&#xff0c;還有很多人在Word里面一點一點拼湊…… 我給大家收集了網上非常熱門的30張“技術路線圖”&#xff0c;但網上流傳的都太模糊了&#xff0c;想看…

KBPC3506-ASEMI儲能專用整流橋KBPC3506

編輯&#xff1a;ll KBPC3506-ASEMI儲能專用整流橋KBPC3506 型號&#xff1a;KBPC3506 品牌&#xff1a;ASEMI 封裝&#xff1a;KBPC-4 正向電流&#xff08;Id&#xff09;&#xff1a;35A 反向耐壓&#xff08;VRRM&#xff09;&#xff1a;600V 正向浪涌電流&#xf…

基于RK3588的8路攝像頭實時全景拼接

基于RK3588的8路攝像頭實時全景拼接 輸入&#xff1a;2路csi轉8路mpi的ahd攝像頭&#xff0c;分辨率1920 * 1080 8路拼接結果&#xff1a; 6路拼接結果&#xff1a; UI界面&#xff1a; UI節目設計原理

SpringBoot新手快速入門系列教程一:window上編程環境安裝和配置

首先編譯器&#xff0c;建議各位不要去嘗試AndroidStudio和VisualStudio來做SpringBoot項目。乖乖的直接下載最新版即可 https://www.jetbrains.com.cn/idea/ 當然這是一個收費的IDE&#xff0c;想要便宜可以想辦法去某寶買授權&#xff0c;僅供學習參考用&#xff01;賺了錢…

Spring Boot中的多租戶架構實現

Spring Boot中的多租戶架構實現 大家好&#xff0c;我是免費搭建查券返利機器人省錢賺傭金就用微賺淘客系統3.0的小編&#xff0c;也是冬天不穿秋褲&#xff0c;天冷也要風度的程序猿&#xff01; 一、引言 隨著云計算和SaaS&#xff08;軟件即服務&#xff09;模式的流行&a…

Matlab中collectPlaneWave函數的應用

查看文檔如下&#xff1a; 可以看出最多5個參數&#xff0c;分別是陣列對象&#xff0c;信號幅度&#xff0c;入射角度&#xff0c;信號頻率&#xff0c;光速。 在下面的代碼中&#xff0c;我們先創建一個3陣元的陣列&#xff0c;位置為&#xff1a;&#xff08;-1,0,0&#x…

52-3 權限維持 - IFEO注入(鏡像劫持)

IFEO注入(映像劫持)介紹 IFEO(Image File Execution Options)位于Windows注冊表中的路徑為: HKEY_LOCAL_MACHINE\SOFTWARE\Microsoft\Windows NT\CurrentVersion\Image File Execution Options IFEO最初設計用于為在默認系統環境下可能出現錯誤的程序提供特殊的調試和執…

MySQL 常見錯誤及解決方案

1. Too many connections 運行環境&#xff1a;Winows11、Phpstudy V8.1.1.3、MySQL 5.7.26 同一時間 MySQL 的連接數量有限制&#xff0c;當超過上限時將提示下面錯誤信息&#xff1a; 1040 - Too many connections 查看當前最大連接數 mysql> show variables like %max_…

Android實現獲取本機手機號碼

和上次獲取設備序列號一樣&#xff0c;仍然是通過無障礙服務實現&#xff0c;在之前的代碼基礎上做了更新。代碼和demo如下&#xff1a; package com.zwxuf.lib.devicehelper;import android.accessibilityservice.AccessibilityService; import android.app.Activity; import…

css 選擇器匯總

目錄 所有選擇器偽類選擇器 所有選擇器 選擇器用法id選擇器#myid類選擇器.myclassname標簽選擇器div,h1,p相鄰選擇器h1p子選擇器ul > li后代選擇器li a通配符選擇器*屬性選擇器a[rel“external”]偽類選擇器a:hover, li:nth-child 偽類選擇器 在CSS3中新增了一個結構偽類選…

Bpuzzle V1.2 支持任意圖片!BlueLife Puzzle (bPuzzle) 是一款簡單的游戲,通過按正確的順序滑動拼圖塊來玩

BlueLife Puzzle (bPuzzle) 是一款簡單的游戲&#xff0c;通過按正確的順序滑動拼圖塊來玩。將您選擇的圖像拖放到主窗口或使用文件菜單選擇默認圖像。如果圖片格式是 JPG&#xff0c;大小無關緊要&#xff0c;但如果是 Png&#xff0c;則應為 800600 像素&#xff0c;然后 bPu…

nginx配置嘗試

from fastapi import FastAPI, File, UploadFile, HTTPException from fastapi.responses import JSONResponse, FileResponse, HTMLResponse import logging import os from datetime import datetime import uvicorn# 初始化日志 logging.basicConfig(filenamefile_server.lo…

詳細的講解一下網絡變壓器應用POE ,AT BT AF BF的概念,做電路連接指導分析

網絡變壓器在應用POE&#xff08;Power over Ethernet&#xff09;技術時&#xff0c;承擔著重要的角色。它不僅負責數據的傳輸&#xff0c;同時也為網絡設備提供電力。在IEEE 802.3標準中&#xff0c;定義了幾個與POE相關的標準&#xff0c;包括802.3af、802.3at、802.3bt等&a…

智慧景區解決方案PPT(89頁)

智慧景區解決方案摘要 解決方案概述智慧景區解決方案旨在利用現代信息技術解決景區管理機構面臨的保護與發展矛盾&#xff0c;推動服務職能轉變&#xff0c;促進旅游產業跨越式發展&#xff0c;實現旅游經營增長和管理成本優化。 宏觀政策背景國家旅游局發布的《“十三五”全國…