作者 jinglong
1 个管道 的构建 通过 耗费 2 秒

渲染页面

@@ -175,42 +175,64 @@ class RegionController extends HomeBaseController @@ -175,42 +175,64 @@ class RegionController extends HomeBaseController
175 175
176 //星球故事更多 176 //星球故事更多
177 public function getMoreStory(){ 177 public function getMoreStory(){
178 - $page = $this->request->param('page',1,'intval');  
179 $position['category_id'] = CityCategoryModel::xqgs; 178 $position['category_id'] = CityCategoryModel::xqgs;
180 $field = 'id,thumbnail,post_excerpt,more,create_time'; 179 $field = 'id,thumbnail,post_excerpt,more,create_time';
181 - $res = $this->getChildArticlePage($position,$field,$page); 180 + $res = $this->getChildArticlePage($position,$field);
182 foreach($res as &$value){ 181 foreach($res as &$value){
183 $more = json_decode($value['more'],true); 182 $more = json_decode($value['more'],true);
184 $value['audio'] = $more['audio']; 183 $value['audio'] = $more['audio'];
185 } 184 }
186 - $this->assign('res',$res); 185 + $this->assign('res',$res['data']);
  186 + $this->assign('page',$res['page']);
  187 + return $this->fetch();
187 } 188 }
188 189
189 //星域画廊更多 190 //星域画廊更多
190 public function getMoreGallery(){ 191 public function getMoreGallery(){
191 - $page = $this->request->param('page',1,'intval');  
192 $position['category_id'] = CityCategoryModel::xyhl; 192 $position['category_id'] = CityCategoryModel::xyhl;
193 $field = 'id,thumbnail'; 193 $field = 'id,thumbnail';
194 - $res = $this->getChildArticlePage($position,$field,$page,16); 194 + $res = $this->getChildArticlePage($position,$field,16);
  195 + $this->assign('res',$res['data']);
  196 + $this->assign('page',$res['page']);
  197 + return $this->fetch();
  198 + }
  199 +
  200 + //星域画廊详情
  201 + public function getGalleryDetail(){
  202 + $id = $this->request->param('id',0,'intval');
  203 + $field = 'id,thumbnail,post_title,post_content,more';
  204 + $starModel = new StarController();
  205 + $res = $starModel->getDetail($id,$field);
  206 + if($res){
  207 + $more = json_decode($res['more'],true);
  208 + $res['image_url'] = isset($more['photos']) && !empty($more['photos'])?$more['photos']:'';
  209 + }
195 $this->assign('res',$res); 210 $this->assign('res',$res);
  211 + return $this->fetch();
196 } 212 }
197 213
198 //独角快报更多 214 //独角快报更多
199 public function getMoreNews(){ 215 public function getMoreNews(){
200 - $page = $this->request->param('page',1,'intval');  
201 $position['category_id'] = CityCategoryModel::djkb; 216 $position['category_id'] = CityCategoryModel::djkb;
202 $field = 'id,thumbnail,post_title,post_excerpt,create_time'; 217 $field = 'id,thumbnail,post_title,post_excerpt,create_time';
203 - $res = $this->getChildArticlePage($position,$field,$page,6);  
204 - $this->assign('res',$res); 218 + $res = $this->getChildArticlePage($position,$field,6);
  219 + $this->assign('res',$res['data']);
  220 + $this->assign('page',$res['page']);
  221 + return $this->fetch();
205 } 222 }
206 223
207 //独角快报详情 224 //独角快报详情
208 public function getNewsDetail(){ 225 public function getNewsDetail(){
209 $id = $this->request->param('id',0,'intval'); 226 $id = $this->request->param('id',0,'intval');
210 - $field = 'id,thumbnail,post_title,post_excerpt,create_time,post_content'; 227 + $field = 'id,thumbnail,post_title,post_excerpt,create_time,post_content,more';
211 $starModel = new StarController(); 228 $starModel = new StarController();
212 $res = $starModel->getDetail($id,$field); 229 $res = $starModel->getDetail($id,$field);
  230 + if($res){
  231 + $more = json_decode($res['more'],true);
  232 + $res['image_url'] = isset($more['photos']) && !empty($more['photos'])?$more['photos'][0]['url']:'';
  233 + }
213 $this->assign('res',$res); 234 $this->assign('res',$res);
  235 + return $this->fetch();
214 } 236 }
215 237
216 //独角日志详情 238 //独角日志详情
@@ -135,11 +135,18 @@ class StarController extends HomeBaseController @@ -135,11 +135,18 @@ class StarController extends HomeBaseController
135 135
136 //网红美景更多 136 //网红美景更多
137 public function getMoreScenery(){ 137 public function getMoreScenery(){
138 - $page = $this->request->param('page',1,'intval'); 138 + $city_id = $this->request->param('city_id',0,'intval');
  139 + //查询城市名称
  140 + $city_name = $this->getCityName($city_id);
  141 + $this->assign('city_name',$city_name);
  142 +
139 $position['category_id'] = CityCategoryModel::whmj; 143 $position['category_id'] = CityCategoryModel::whmj;
  144 + $position['city_id'] = $city_id;
140 $field = 'id,thumbnail,post_title,post_hits,post_favorites'; 145 $field = 'id,thumbnail,post_title,post_hits,post_favorites';
141 - $res = $this->getChildArticlePage($position,$field,$page);  
142 - $this->assign('res',$res); 146 + $res = $this->getChildArticlePage($position,$field);
  147 + $this->assign('res',$res['data']);
  148 + $this->assign('page',$res['page']);
  149 + return $this->fetch();
143 } 150 }
144 151
145 //网红美景详情 152 //网红美景详情
@@ -149,21 +156,26 @@ class StarController extends HomeBaseController @@ -149,21 +156,26 @@ class StarController extends HomeBaseController
149 $res = $this->getDetail($id,$field); 156 $res = $this->getDetail($id,$field);
150 if($res){ 157 if($res){
151 $more = json_decode($res['more'],true); 158 $more = json_decode($res['more'],true);
152 - $res['audio'] = isset($more['audio']) && !empty($more['audio'])?$more['audio']:'';  
153 $res['image_url'] = isset($more['photos']) && !empty($more['photos'])?$more['photos'][0]['url']:''; 159 $res['image_url'] = isset($more['photos']) && !empty($more['photos'])?$more['photos'][0]['url']:'';
154 } 160 }
155 $this->assign('res',$res); 161 $this->assign('res',$res);
  162 + return $this->fetch();
156 } 163 }
157 164
158 //异域珍馐更多 165 //异域珍馐更多
159 public function getMoreFood(){ 166 public function getMoreFood(){
160 - $page = $this->request->param('page',1,'intval'); 167 + $city_id = $this->request->param('city_id',0,'intval');
  168 + //查询城市名称
  169 + $city_name = $this->getCityName($city_id);
  170 + $this->assign('city_name',$city_name);
  171 +
161 $position['category_id'] = CityCategoryModel::yyzx; 172 $position['category_id'] = CityCategoryModel::yyzx;
  173 + $position['city_id'] = $city_id;
162 $field = 'id,thumbnail,post_title,post_hits,post_favorites'; 174 $field = 'id,thumbnail,post_title,post_hits,post_favorites';
163 - $res_top = $this->getChildArticle($position,$field,2);  
164 - $res = $this->getChildArticlePage($position,$field,$page);  
165 - $this->assign('res_top',$res_top);  
166 - $this->assign('res',$res); 175 + $res = $this->getChildArticlePage($position,$field,10);
  176 + $this->assign('res',$res['data']);
  177 + $this->assign('page',$res['page']);
  178 + return $this->fetch();
167 } 179 }
168 180
169 //异域珍馐详情 181 //异域珍馐详情
@@ -176,6 +188,7 @@ class StarController extends HomeBaseController @@ -176,6 +188,7 @@ class StarController extends HomeBaseController
176 $res['image_url'] = isset($more['photos']) && !empty($more['photos'])?$more['photos'][0]['url']:''; 188 $res['image_url'] = isset($more['photos']) && !empty($more['photos'])?$more['photos'][0]['url']:'';
177 } 189 }
178 $this->assign('res',$res); 190 $this->assign('res',$res);
  191 + return $this->fetch();
179 } 192 }
180 193
181 //良宿美寝更多 194 //良宿美寝更多
@@ -187,31 +200,41 @@ class StarController extends HomeBaseController @@ -187,31 +200,41 @@ class StarController extends HomeBaseController
187 200
188 $position['category_id'] = CityCategoryModel::lsmq; 201 $position['category_id'] = CityCategoryModel::lsmq;
189 $position['city_id'] = $city_id; 202 $position['city_id'] = $city_id;
190 - $field = 'id,thumbnail,post_title'; 203 + $field = 'id,thumbnail,post_title,post_excerpt';
191 $res = $this->getChildArticlePage($position,$field); 204 $res = $this->getChildArticlePage($position,$field);
192 - $this->assign('res',$res); 205 + $this->assign('res',$res['data']);
  206 + $this->assign('page',$res['page']);
193 return $this->fetch(); 207 return $this->fetch();
194 } 208 }
195 209
196 //良宿美寝详情 210 //良宿美寝详情
197 public function getHotelDetail(){ 211 public function getHotelDetail(){
198 $id = $this->request->param('id',0,'intval'); 212 $id = $this->request->param('id',0,'intval');
199 - $field = 'id,thumbnail,post_title,post_excerpt,create_time,post_content,more'; 213 + $field = 'id,thumbnail,post_title,tel,url,address,post_excerpt,create_time,post_content,more';
200 $res = $this->getDetail($id,$field); 214 $res = $this->getDetail($id,$field);
201 if($res){ 215 if($res){
202 $more = json_decode($res['more'],true); 216 $more = json_decode($res['more'],true);
203 - $res['image_url'] = isset($more['photos']) && !empty($more['photos'])?$more['photos'][0]['url']:''; 217 + $res['image_one'] = isset($more['photos']) && !empty($more['photos'])?$more['photos'][0]['url']:'';
  218 + $res['image_url'] = isset($more['photos']) && !empty($more['photos'])?$more['photos']:'';
204 } 219 }
205 $this->assign('res',$res); 220 $this->assign('res',$res);
  221 + return $this->fetch();
206 } 222 }
207 223
208 //活力生态更多 224 //活力生态更多
209 public function getMoreEcology(){ 225 public function getMoreEcology(){
210 - $page = $this->request->param('page',1,'intval'); 226 + $city_id = $this->request->param('city_id',0,'intval');
  227 + //查询城市名称
  228 + $city_name = $this->getCityName($city_id);
  229 + $this->assign('city_name',$city_name);
  230 +
211 $position['category_id'] = CityCategoryModel::hlst; 231 $position['category_id'] = CityCategoryModel::hlst;
  232 + $position['city_id'] = $city_id;
212 $field = 'id,thumbnail,post_title,post_excerpt'; 233 $field = 'id,thumbnail,post_title,post_excerpt';
213 - $res = $this->getChildArticlePage($position,$field,$page);  
214 - $this->assign('res',$res); 234 + $res = $this->getChildArticlePage($position,$field);
  235 + $this->assign('res',$res['data']);
  236 + $this->assign('page',$res['page']);
  237 + return $this->fetch();
215 } 238 }
216 239
217 //活力生态详情 240 //活力生态详情
@@ -224,6 +247,7 @@ class StarController extends HomeBaseController @@ -224,6 +247,7 @@ class StarController extends HomeBaseController
224 $res['image_url'] = isset($more['photos']) && !empty($more['photos'])?$more['photos'][0]['url']:''; 247 $res['image_url'] = isset($more['photos']) && !empty($more['photos'])?$more['photos'][0]['url']:'';
225 } 248 }
226 $this->assign('res',$res); 249 $this->assign('res',$res);
  250 + return $this->fetch();
227 } 251 }
228 252
229 //便利出行更多 253 //便利出行更多
@@ -661,15 +661,14 @@ @@ -661,15 +661,14 @@
661 <ul class="swiper-wrapper"> 661 <ul class="swiper-wrapper">
662 <volist name="res_xttj" id="vo"> 662 <volist name="res_xttj" id="vo">
663 <li class="swiper-slide scout_box"> 663 <li class="swiper-slide scout_box">
  664 + <div class="scout_image">
  665 + <img src="{:cmf_get_image_url($vo.thumbnail)}" alt="">
  666 + </div>
664 <empty name="vo.place"> 667 <empty name="vo.place">
665 <a href="/portal/scout/getSceneryDetail?id={$vo.id}"> 668 <a href="/portal/scout/getSceneryDetail?id={$vo.id}">
666 <else /> 669 <else />
667 <a href="/portal/scout/getTravelDetail?id={$vo.id}"> 670 <a href="/portal/scout/getTravelDetail?id={$vo.id}">
668 </empty> 671 </empty>
669 -  
670 - <div class="scout_image">  
671 - <img src="{:cmf_get_image_url($vo.thumbnail)}" alt="">  
672 - </div>  
673 <h1> 672 <h1>
674 {$vo.post_title} 673 {$vo.post_title}
675 </h1> 674 </h1>
  1 +<!DOCTYPE html>
  2 +<html lang="en">
  3 +
  4 +<head>
  5 + <meta charset="UTF-8">
  6 + <meta name="viewport" content="width=device-width, initial-scale=1.0">
  7 + <meta http-equiv="X-UA-Compatible" content="ie=edge">
  8 + <title>星球画廊详情</title>
  9 + <link rel="stylesheet" href="__TMPL__/public/assets/js/swiper4/swiper.min.css">
  10 + <link rel="stylesheet" href="__TMPL__/public/assets/css/show.css">
  11 +</head>
  12 +
  13 +<body>
  14 + <include file="public@header"/>
  15 + <div class="show_8">
  16 + <div class="show_8_box">
  17 + <div class="gallery-top">
  18 + <ul class="swiper-wrapper">
  19 + <volist name="res['image_url']" id="vo">
  20 + <li class="swiper-slide">
  21 + <img src="{:cmf_get_image_url($vo.url)}" alt="">
  22 + </li>
  23 + </volist>
  24 + </ul>
  25 + </div>
  26 + <h1 class="show_8_name">{$res.post_title}</h1>
  27 + <div class="gallery-thumbs_box">
  28 + <div class="gallery-thumbs">
  29 + <ul class="swiper-wrapper">
  30 + <volist name="res['image_url']" id="vo">
  31 + <li class="swiper-slide">
  32 + <img src="{:cmf_get_image_url($vo.url)}" alt="">
  33 + </li>
  34 + </volist>
  35 + </li>
  36 + </ul>
  37 + <span class="swiper-notification"></span>
  38 + </div>
  39 + <div class="swiper-button-prev8"></div>
  40 + <div class="swiper-button-next8"></div>
  41 + </div>
  42 +
  43 + </div>
  44 + </div>
  45 + <include file="public@footer"/>
  46 + <script src="__TMPL__/public/assets/js/jquery-3.2.1.min.js"></script>
  47 + <script src="__TMPL__/public/assets/js/swiper4/swiper.min.js"></script>
  48 + <script src="__TMPL__/public/assets/js/public.js"></script>
  49 + <script>
  50 + var galleryThumbs = new Swiper('.gallery-thumbs', {
  51 + spaceBetween: 10,
  52 + slidesPerView: 4,
  53 + freeMode: true,
  54 + watchSlidesVisibility: true,
  55 + watchSlidesProgress: true,
  56 + });
  57 + var galleryTop = new Swiper('.gallery-top', {
  58 + spaceBetween: 10,
  59 + navigation: {
  60 + nextEl: '.swiper-button-next8',
  61 + prevEl: '.swiper-button-prev8',
  62 + },
  63 + thumbs: {
  64 + swiper: galleryThumbs
  65 + }
  66 + });
  67 + </script>
  68 +</body>
  69 +
  70 +</html>
  1 +<!DOCTYPE html>
  2 +<html lang="en">
  3 +
  4 +<head>
  5 + <meta charset="UTF-8">
  6 + <meta name="viewport" content="width=device-width, initial-scale=1.0">
  7 + <meta http-equiv="X-UA-Compatible" content="ie=edge">
  8 + <title>星球画廊更多</title>
  9 + <link rel="stylesheet" href="__TMPL__/public/assets/css/layui.css">
  10 + <link rel="stylesheet" href="__TMPL__/public/assets/css/bootstrap4.0.css">
  11 + <link rel="stylesheet" href="__TMPL__/public/assets/css/happy.css">
  12 +</head>
  13 +
  14 +<body>
  15 + <include file="public@header"/>
  16 + <div class="happy_gallery">
  17 + <!-- banner -->
  18 + <div class="happy_gallery_banner">
  19 + <img src="__TMPL__/public/assets/starImg/aicon_01.png" alt="">
  20 + </div>
  21 + <!-- 内容 -->
  22 + <div class="happy_gallery_con">
  23 + <!-- 顶部标题 -->
  24 + <div class="show_INMain_tit clearfix">
  25 + <div class="show_IN1 clearfix">
  26 + <img src="__TMPL__/public/assets/starImg/aicon_50.png" alt="">
  27 + <p>星球<span>画廊</span></p>
  28 + <h2>Star Gallery</h2>
  29 + </div>
  30 + </div>
  31 + <div class="happy_gallery_con2">
  32 + <ul class="clearfix">
  33 + <volist name="res['data']" id="vo">
  34 + <a href="/portal/region/getGalleryDetail?id={$vo.id}">
  35 + <li>
  36 + <img src="{:cmf_get_image_url($vo.thumbnail)}" alt="">
  37 + </li>
  38 + </a>
  39 + </volist>
  40 + </ul>
  41 + <!--分页-->
  42 + <div class="pagination">
  43 + {$page|default=''}
  44 + </div>
  45 + </div>
  46 + </div>
  47 + </div>
  48 + <include file="public@footer"/>
  49 + <script src="__TMPL__/public/assets/js/jquery-3.2.1.min.js"></script>
  50 + <script src="__TMPL__/public/assets/js/layui.js"></script>
  51 + <script src="__TMPL__/public/assets/js/public.js"></script>
  52 +</body>
  53 +
  54 +</html>
  1 +<!DOCTYPE html>
  2 +<html lang="en">
  3 +
  4 +<head>
  5 + <meta charset="UTF-8">
  6 + <meta name="viewport" content="width=device-width, initial-scale=1.0">
  7 + <meta http-equiv="X-UA-Compatible" content="ie=edge">
  8 + <title>独角快报更多</title>
  9 + <link rel="stylesheet" href="__TMPL__/public/assets/css/bootstrap4.0.css">
  10 + <link rel="stylesheet" href="__TMPL__/public/assets/css/layui.css">
  11 + <link rel="stylesheet" href="__TMPL__/public/assets/css/show.css">
  12 +</head>
  13 +
  14 +<body>
  15 + <include file="public@header"/>
  16 + <div class="show_7">
  17 + <!-- 顶部标题 -->
  18 + <div class="show_INMain_tit clearfix">
  19 + <div class="show_IN1 clearfix">
  20 + <img src="__TMPL__/public/assets/starImg/aicon_51.png" alt="" style="margin-top:5px;width: 30px;">
  21 + <p>独角<span>快报</span></p>
  22 + <h2>Planet Express</h2>
  23 + </div>
  24 + </div>
  25 + <!-- 内容 -->
  26 + <div class="show_7_con">
  27 + <!-- 内容模块1 -->
  28 + <volist name="res['data']" id="vo" offset="0" length="1">
  29 + <a href="/portal/region/getNewsDetail?id={$vo.id}">
  30 + <div class="show_7_con1 clearfix">
  31 + <img src="{:cmf_get_image_url($vo.thumbnail)}" alt="">
  32 + <div class="show_7_con1_txt">
  33 + <h1>{$vo.post_title}</h1>
  34 + <p>
  35 + {$vo.post_excerpt}
  36 + </p>
  37 + <span>{$vo.create_time|date="Y-m-d",###}</span>
  38 + </div>
  39 + </div>
  40 + </a>
  41 + </volist>
  42 + <!-- 内容模块2 -->
  43 + <volist name="res['data']" id="vo" offset="1" length="2">
  44 + <a href="/portal/region/getNewsDetail?id={$vo.id}">
  45 + <div class="show_7_con2 clearfix">
  46 + <img src="{:cmf_get_image_url($vo.thumbnail)}" alt="">
  47 + <div class="show_7_con2_txt">
  48 + <h1>{$vo.post_title}</h1>
  49 + <p>
  50 + {$vo.post_excerpt}
  51 + </p>
  52 + <span>{$vo.create_time|date="Y-m-d",###}</span>
  53 + </div>
  54 + </div>
  55 + </a>
  56 + </volist>
  57 + <!-- 内容模块3 -->
  58 + <volist name="res['data']" id="vo" offset="3" length="1">
  59 + <a href="/portal/region/getNewsDetail?id={$vo.id}">
  60 + <div class="show_7_con3 clearfix">
  61 + <div class="show_7_con3_txt">
  62 + <h1>{$vo.post_title}</h1>
  63 + <p>
  64 + {$vo.post_excerpt}
  65 + </p>
  66 + <span>{$vo.create_time|date="Y-m-d",###}</span>
  67 + </div>
  68 + <img src="{:cmf_get_image_url($vo.thumbnail)}" alt="">
  69 + </div>
  70 + </a>
  71 + </volist>
  72 +
  73 + <!-- 内容模块2 -->
  74 + <volist name="res['data']" id="vo" offset="4" length="2">
  75 + <a href="/portal/region/getNewsDetail?id={$vo.id}">
  76 + <div class="show_7_con2 clearfix">
  77 + <img src="{:cmf_get_image_url($vo.thumbnail)}" alt="">
  78 + <div class="show_7_con2_txt">
  79 + <h1>{$vo.post_title}</h1>
  80 + <p>
  81 + {$vo.post_excerpt}
  82 + </p>
  83 + <span>{$vo.create_time|date="Y-m-d",###}</span>
  84 + </div>
  85 + </div>
  86 + </a>
  87 + </volist>
  88 + <!--分页-->
  89 + <div class="pagination">
  90 + {$page|default=''}
  91 + </div>
  92 +
  93 + </div>
  94 + </div>
  95 + <include file="public@footer"/>
  96 + <script src="__TMPL__/public/assets/js/jquery-3.2.1.min.js"></script>
  97 + <script src="__TMPL__/public/assets/js/layui.js"></script>
  98 + <script src="__TMPL__/public/assets/js/public.js"></script>
  99 +</body>
  100 +
  101 +</html>
  1 +<!DOCTYPE html>
  2 +<html lang="en">
  3 +
  4 +<head>
  5 + <meta charset="UTF-8">
  6 + <meta name="viewport" content="width=device-width, initial-scale=1.0">
  7 + <meta http-equiv="X-UA-Compatible" content="ie=edge">
  8 + <title>独角快报详情</title>
  9 + <link rel="stylesheet" href="__TMPL__/public/assets/css/show.css">
  10 + <link rel="stylesheet" href="__TMPL__/public/assets/css/mask.css">
  11 +</head>
  12 +
  13 +<body>
  14 + <include file="public@header"/>
  15 + <div class="mask">
  16 + </div>
  17 + <!-- 侧边栏 -->
  18 + <div class="sidebar">
  19 + <!-- 收藏 -->
  20 + <div class="collections">
  21 + <img src="__TMPL__/public/assets/starImg/bicon_02.png" alt="">
  22 + </div>
  23 + <!-- 喜欢 -->
  24 + <div class="likes">
  25 + <img src="__TMPL__/public/assets/starImg/bicon_03.png" alt="">
  26 + </div>
  27 + <!-- wx分享 -->
  28 + <div class="wx_go">
  29 + <img src="__TMPL__/public/assets/starImg/bicon_04.png" alt="">
  30 + <p>168</p>
  31 + </div>
  32 + <!-- wb分享 -->
  33 + <div class="wb_go">
  34 + <img src="__TMPL__/public/assets/starImg/bicon_05.png" alt="">
  35 + <p>168</p>
  36 + </div>
  37 + </div>
  38 + <!-- 主体内容 -->
  39 + <div class="show_4 clearfix">
  40 + <!-- 内容一 -->
  41 + <div class="show_4_con1">
  42 + <h1>{$res.post_title}</h1>
  43 + <span>{$res.create_time|date="Y-m-d",###}</span>
  44 + <img src="{:cmf_get_image_url($res.image_url)}" alt="">
  45 + <div class="show_4_txt">
  46 + {$res.post_content}
  47 + </div>
  48 + </div>
  49 +
  50 + <div class="show_4_con2">
  51 + <!-- 评论 -->
  52 + <include file="public@comment"/>
  53 + </div>
  54 + </div>
  55 + <!-- 底部 -->
  56 + <include file="public@footer"/>
  57 + <script src="__TMPL__/public/assets/js/jquery-3.2.1.min.js"></script>
  58 + <script src="__TMPL__/public/assets/js/public.js"></script>
  59 +</body>
  60 +
  61 +</html>
@@ -119,18 +119,17 @@ @@ -119,18 +119,17 @@
119 </div> 119 </div>
120 <!-- 更多 --> 120 <!-- 更多 -->
121 <div class="show_IN2"> 121 <div class="show_IN2">
122 - <a href=""> MORE+ </a> 122 + <a href="/portal/region/getMoreGallery"> MORE+ </a>
123 </div> 123 </div>
124 </div> 124 </div>
125 <!-- 内容 --> 125 <!-- 内容 -->
126 <div class="show_INMain_con3_3 swiper-container"> 126 <div class="show_INMain_con3_3 swiper-container">
127 <ul class="swiper-wrapper"> 127 <ul class="swiper-wrapper">
128 - <li class="swiper-slide">  
129 - <img class="swiper-slide" src="__TMPL__/public/assets/starImg/aicon_47.png" alt="">  
130 - </li>  
131 <volist name="res_xyhl" id="vo"> 128 <volist name="res_xyhl" id="vo">
132 <li class="swiper-slide"> 129 <li class="swiper-slide">
  130 + <a href="/portal/region/getGalleryDetail?id={$vo.id}">
133 <img class="swiper-slide slide-image" src="{:cmf_get_image_url($vo.thumbnail)}" alt=""> 131 <img class="swiper-slide slide-image" src="{:cmf_get_image_url($vo.thumbnail)}" alt="">
  132 + </a>
134 </li> 133 </li>
135 </volist> 134 </volist>
136 </ul> 135 </ul>
@@ -154,7 +153,7 @@ @@ -154,7 +153,7 @@
154 </div> 153 </div>
155 <!-- 更多 --> 154 <!-- 更多 -->
156 <div class="show_IN2"> 155 <div class="show_IN2">
157 - <a href=""> MORE+ </a> 156 + <a href="/portal/region/getMoreNews"> MORE+ </a>
158 </div> 157 </div>
159 </div> 158 </div>
160 <!-- 内容 --> 159 <!-- 内容 -->
@@ -162,7 +161,7 @@ @@ -162,7 +161,7 @@
162 <ul> 161 <ul>
163 <volist name="res_djkb" id="vo"> 162 <volist name="res_djkb" id="vo">
164 <li class="clearfix"> 163 <li class="clearfix">
165 - <a href="show_4.html"> 164 + <a href="/portal/region/getNewsDetail?id={$vo.id}">
166 <img src="{:cmf_get_image_url($vo.thumbnail)}" alt=""> 165 <img src="{:cmf_get_image_url($vo.thumbnail)}" alt="">
167 <div class="show_INMain_con4_txt"> 166 <div class="show_INMain_con4_txt">
168 <h2>{$vo.post_title}</h2> 167 <h2>{$vo.post_title}</h2>
  1 +<!DOCTYPE html>
  2 +<html lang="en">
  3 +
  4 +<head>
  5 + <meta charset="UTF-8">
  6 + <meta name="viewport" content="width=device-width, initial-scale=1.0">
  7 + <meta http-equiv="X-UA-Compatible" content="ie=edge">
  8 + <title>活力生态详情</title>
  9 + <link rel="stylesheet" href="__TMPL__/public/assets/css/show.css">
  10 + <link rel="stylesheet" href="__TMPL__/public/assets/css/mask.css">
  11 +</head>
  12 +
  13 +<body>
  14 + <include file="public@header"/>
  15 + <div class="mask">
  16 + </div>
  17 + <!-- 侧边栏 -->
  18 + <div class="sidebar">
  19 + <!-- 收藏 -->
  20 + <div class="collections">
  21 + <img src="__TMPL__/public/assets/starImg/bicon_02.png" alt="">
  22 + </div>
  23 + <!-- 喜欢 -->
  24 + <div class="likes">
  25 + <img src="__TMPL__/public/assets/starImg/bicon_03.png" alt="">
  26 + </div>
  27 + <!-- wx分享 -->
  28 + <div class="wx_go">
  29 + <img src="__TMPL__/public/assets/starImg/bicon_04.png" alt="">
  30 + <p>168</p>
  31 + </div>
  32 + <!-- wb分享 -->
  33 + <div class="wb_go">
  34 + <img src="__TMPL__/public/assets/starImg/bicon_05.png" alt="">
  35 + <p>168</p>
  36 + </div>
  37 + </div>
  38 + <!--主体内容-->
  39 + <div class="show_2">
  40 + <!--banner-->
  41 + <div class="show_banner">
  42 + <img src="{:cmf_get_image_url($res.image_url)}" alt="">
  43 + </div>
  44 + <!--main-->
  45 + <div class="show_main">
  46 + <!-- 头部 -->
  47 + <div class="show_main_Tit1 clearfix">
  48 + <h1>{$res.post_title}</h1>
  49 + <!--<p>2019-02-04</p>-->
  50 + </div>
  51 + <!-- 文字内容 -->
  52 + <div class="show_main_txt">
  53 + {$res.post_content}
  54 + </div>
  55 + </div>
  56 + <!-- 评论 -->
  57 + <include file="public@comment"/>
  58 + </div>
  59 +
  60 + <include file="public@footer"/>
  61 + <script src="__TMPL__/public/assets/js/jquery-3.2.1.min.js"></script>
  62 + <script src="__TMPL__/public/assets/js/public.js"></script>
  63 +</body>
  64 +
  65 +</html>
  1 +<!DOCTYPE html>
  2 +<html lang="en">
  3 +
  4 +<head>
  5 + <meta charset="UTF-8">
  6 + <meta name="viewport" content="width=device-width, initial-scale=1.0">
  7 + <meta http-equiv="X-UA-Compatible" content="ie=edge">
  8 + <title>异域珍馐详情</title>
  9 + <link rel="stylesheet" href="__TMPL__/public/assets/css/show.css">
  10 + <link rel="stylesheet" href="__TMPL__/public/assets/css/mask.css">
  11 +</head>
  12 +
  13 +<body>
  14 + <include file="public@header"/>
  15 + <div class="mask">
  16 + </div>
  17 + <!-- 侧边栏 -->
  18 + <div class="sidebar">
  19 + <!-- 收藏 -->
  20 + <div class="collections">
  21 + <img src="__TMPL__/public/assets/starImg/bicon_02.png" alt="">
  22 + </div>
  23 + <!-- 喜欢 -->
  24 + <div class="likes">
  25 + <img src="__TMPL__/public/assets/starImg/bicon_03.png" alt="">
  26 + </div>
  27 + <!-- wx分享 -->
  28 + <div class="wx_go">
  29 + <img src="__TMPL__/public/assets/starImg/bicon_04.png" alt="">
  30 + <p>168</p>
  31 + </div>
  32 + <!-- wb分享 -->
  33 + <div class="wb_go">
  34 + <img src="__TMPL__/public/assets/starImg/bicon_05.png" alt="">
  35 + <p>168</p>
  36 + </div>
  37 + </div>
  38 + <!--主体内容-->
  39 + <div class="show_2">
  40 + <!--banner-->
  41 + <div class="show_banner">
  42 + <img src="{:cmf_get_image_url($res.image_url)}" alt="">
  43 + </div>
  44 + <!--main-->
  45 + <div class="show_main">
  46 + <!-- 头部 -->
  47 + <div class="show_main_Tit clearfix">
  48 + <h1>{$res.post_title}</h1>
  49 + <p>{$res.create_time|date="Y-m-d",###}</p>
  50 + </div>
  51 + <!-- 文字内容 -->
  52 + <div class="show_main_txt">
  53 + {$res.post_content}
  54 + </div>
  55 + </div>
  56 + <!-- 评论 -->
  57 + <include file="public@comment"/>
  58 + </div>
  59 +
  60 + <include file="public@footer"/>
  61 +</body>
  62 +<script src="__TMPL__/public/assets/js/jquery-3.2.1.min.js"></script>
  63 +<script src="__TMPL__/public/assets/js/public.js"></script>
  64 +
  65 +</html>
  1 +<!DOCTYPE html>
  2 +<html lang="en">
  3 +
  4 +<head>
  5 + <meta charset="UTF-8">
  6 + <meta name="viewport" content="width=device-width, initial-scale=1.0">
  7 + <meta http-equiv="X-UA-Compatible" content="ie=edge">
  8 + <title>良宿美寝详情</title>
  9 + <link rel="stylesheet" href="__TMPL__/public/assets/css/happy.css">
  10 + <link rel="stylesheet" href="__TMPL__/public/assets/css/mask.css">
  11 +</head>
  12 +
  13 +<body>
  14 + <include file="public@header"/>
  15 +
  16 + <!--弹窗-->
  17 + <div class="mask">
  18 + </div>
  19 +
  20 + <div class="happy_house clearfix">
  21 + <!-- 标题 -->
  22 + <h1>{$res.post_title}</h1>
  23 + <!-- 左侧内容 -->
  24 + <div class="happy_house_left">
  25 + <div class="happy_house_leftImg1">
  26 + <notempty name="res.image_one">
  27 + <img src="{:cmf_get_image_url($res.image_one)}" alt="">
  28 + </notempty>
  29 + </div>
  30 +
  31 + <div class="happy_house_leftImg2">
  32 + <volist name="res.image_url" id="vo">
  33 + <div>
  34 + <img src="{:cmf_get_image_url($vo.url)}" alt="">
  35 + </div>
  36 + </volist>
  37 + </div>
  38 + </div>
  39 + <!-- 右侧内容 -->
  40 + <div class="happy_house_right">
  41 + <ul>
  42 + <!-- 电话 -->
  43 + <li class="clearfix">
  44 + <div class="happy_house_right1">
  45 + <img src="__TMPL__/public/assets/starImg/aicon_42.png" alt="">
  46 + <span>电话:</span>
  47 + </div>
  48 + <p>{$res.tel}</p>
  49 + </li>
  50 + <!-- 网址 -->
  51 + <li class="clearfix">
  52 + <div class="happy_house_right1">
  53 + <img src="__TMPL__/public/assets/starImg/aicon_42.png" alt="">
  54 + <span>网址:</span>
  55 + </div>
  56 + <p>{$res.url}</p>
  57 + </li>
  58 + <!-- 地址 -->
  59 + <li class="clearfix">
  60 + <div class="happy_house_right1">
  61 + <img src="__TMPL__/public/assets/starImg/aicon_42.png" alt="">
  62 + <span>地址:</span>
  63 + </div>
  64 + <p>{$res.address}</p>
  65 + </li>
  66 + </ul>
  67 + <!-- 文字介绍 -->
  68 + <p class="happy_house_rightTxt">{$res.post_excerpt}</p>
  69 + </div>
  70 + </div>
  71 + <!-- 评论 -->
  72 + <include file="public@comment"/>
  73 + <include file="public@footer"/>
  74 + <script src="__TMPL__/public/assets/js/jquery-3.2.1.min.js"></script>
  75 + <script src="__TMPL__/public/assets/js/public.js"></script>
  76 + <script>
  77 + $('.happy_house_leftImg2 div').mouseover(function() {
  78 + var img = $(this).find('img').attr('src');
  79 + $('.happy_house_leftImg1 img').attr('src', img)
  80 + })
  81 + </script>
  82 +</body>
  83 +
  84 +</html>
  1 +<!DOCTYPE html>
  2 +<html lang="en">
  3 +
  4 +<head>
  5 + <meta charset="UTF-8">
  6 + <meta name="viewport" content="width=device-width, initial-scale=1.0">
  7 + <meta http-equiv="X-UA-Compatible" content="ie=edge">
  8 + <title>活力生态更多</title>
  9 + <link rel="stylesheet" href="__TMPL__/public/assets/css/bootstrap4.0.css">
  10 + <link rel="stylesheet" href="__TMPL__/public/assets/css/layui.css">
  11 + <link rel="stylesheet" href="__TMPL__/public/assets/css/happy.css">
  12 +</head>
  13 +
  14 +<body>
  15 + <include file="public@header"/>
  16 + <div class="happy_ecological">
  17 + <!-- 选择区域 -->
  18 + <div class="happy_select clearfix">
  19 + <img src="__TMPL__/public/assets/starImg/aicon_42.png" alt="">
  20 + <p>{$city_name}</p>
  21 + </div>
  22 + <!-- 顶部标题 -->
  23 + <div class="show_INMain_tit clearfix">
  24 + <div class="show_IN1 clearfix">
  25 + <img src="__TMPL__/public/assets/starImg/aicon_18.png" alt="">
  26 + <p>活力<span>生态</span></p>
  27 + <h2>Responsible Tourism</h2>
  28 + </div>
  29 + </div>
  30 + <!-- 内容 -->
  31 + <div class="happy_ecological_con">
  32 + <!-- 内容2 -->
  33 + <div class="happy_ecological_con2">
  34 + <!-- 第一部分 -->
  35 + <div class="happy_ecological_con2_1">
  36 + <ul class="clearfix">
  37 + <volist name="res.data" id="vo" offset="0" length="3">
  38 + <a href="/portal/star/getEcologyDetail?id={$vo.id}">
  39 + <li>
  40 + <div class="happy_ecological_con2_1Img">
  41 + <img src="{:cmf_get_image_url($vo.thumbnail)}" alt="">
  42 + </div>
  43 + <div class="happy_ecological_con2_1Txt">
  44 + <h1>{$vo.post_title}</h1>
  45 + <p>
  46 + {$vo.post_excerpt}
  47 + </p>
  48 + </div>
  49 + </li>
  50 + </a>
  51 + </volist>
  52 + </ul>
  53 + </div>
  54 + <!-- 第二部分 -->
  55 + <div class="happy_ecological_con2_2">
  56 + <ul class="clearfix">
  57 + <volist name="res.data" id="vo" offset="3" length="2">
  58 + <a href="/portal/star/getEcologyDetail?id={$vo.id}">
  59 + <li>
  60 + <div class="happy_ecological_con2_2Img">
  61 + <img src="{:cmf_get_image_url($vo.thumbnail)}" alt="">
  62 + </div>
  63 + <div class="happy_ecological_con2_1Txt">
  64 + <h1>{$vo.post_title}</h1>
  65 + <p>
  66 + {$vo.post_excerpt}
  67 + </p>
  68 + </div>
  69 + </li>
  70 + </a>
  71 + </volist>
  72 + </ul>
  73 + </div>
  74 + <!-- 第三部分 -->
  75 + <div class="happy_ecological_con2_1">
  76 + <ul class="clearfix">
  77 + <volist name="res.data" id="vo" offset="5" length="3">
  78 + <a href="/portal/star/getEcologyDetail?id={$vo.id}">
  79 + <li>
  80 + <div class="happy_ecological_con2_1Img">
  81 + <img src="{:cmf_get_image_url($vo.thumbnail)}" alt="">
  82 + </div>
  83 + <div class="happy_ecological_con2_1Txt">
  84 + <h1>{$vo.post_title}</h1>
  85 + <p>
  86 + {$vo.post_excerpt}
  87 + </p>
  88 + </div>
  89 + </li>
  90 + </a>
  91 + </volist>
  92 + </ul>
  93 + </div>
  94 + </div>
  95 + <!--分页-->
  96 + <div class="pagination">
  97 + {$page|default=''}
  98 + </div>
  99 + </div>
  100 + </div>
  101 +
  102 + <include file="public@footer"/>
  103 + <script src="__TMPL__/public/assets/js/jquery-3.2.1.min.js"></script>
  104 + <script src="__TMPL__/public/assets/js/layui.js"></script>
  105 + <script src="__TMPL__/public/assets/js/public.js"></script>
  106 +</body>
  107 +
  108 +</html>
  1 +<!DOCTYPE html>
  2 +<html lang="en">
  3 +
  4 +<head>
  5 + <meta charset="UTF-8">
  6 + <meta name="viewport" content="width=device-width, initial-scale=1.0">
  7 + <meta http-equiv="X-UA-Compatible" content="ie=edge">
  8 + <title>异域珍馐更多</title>
  9 + <link rel="stylesheet" href="__TMPL__/public/assets/css/bootstrap4.0.css">
  10 + <link rel="stylesheet" href="__TMPL__/public/assets/css/layui.css">
  11 + <link rel="stylesheet" href="__TMPL__/public/assets/css/happy.css">
  12 +</head>
  13 +
  14 +<body>
  15 + <include file="public@header"/>
  16 + <div class="happy_food">
  17 + <!-- 选择区域 -->
  18 + <div class="happy_select clearfix">
  19 + <img src="__TMPL__/public/assets/starImg/aicon_42.png" alt="">
  20 + <p>{$city_name}</p>
  21 + </div>
  22 + <!-- 顶部标题 -->
  23 + <div class="show_INMain_tit clearfix">
  24 + <div class="show_IN1 clearfix">
  25 + <img src="__TMPL__/public/assets/starImg/aicon_11.png" alt="" style="margin-top:8px">
  26 + <p>异域<span>珍馐</span></p>
  27 + <h2>Gastronomy</h2>
  28 + </div>
  29 + </div>
  30 + <!-- 盒子 -->
  31 + <div class="happy_food_box">
  32 + <!-- 内容 -->
  33 + <div class="happy_food_con">
  34 + <!-- 内容2 -->
  35 + <div class="happy_food_con2">
  36 + <!-- 第一部分 -->
  37 + <div class="happy_food_con2_1">
  38 + <ul class="clearfix">
  39 + <volist name="res['data']" id="vo" offset="0" length="2">
  40 + <a href="/portal/star/getFoodDetail?id={$vo.id}">
  41 + <li>
  42 + <div class="happy_food_con2_1Img">
  43 + <img src="{:cmf_get_image_url($vo.thumbnail)}" alt="">
  44 + </div>
  45 + <div class="happy_food_con2_1Txt clearfix">
  46 + <h2>{$vo.post_title}</h2>
  47 + <div class="happy_food_con2_1Txt2 clearfix">
  48 + <div>
  49 + <img src="__TMPL__/public/assets/starImg/bicon_14.png" alt="">
  50 + <p>{$vo.post_hits}</p>
  51 + </div>
  52 + <div>
  53 + <img src="__TMPL__/public/assets/starImg/bicon_13.png" alt="">
  54 + <p>{$vo.post_favorites}</p>
  55 + </div>
  56 + </div>
  57 + </div>
  58 + </li>
  59 + </a>
  60 + </volist>
  61 + </ul>
  62 + </div>
  63 + <!-- 第二部分 -->
  64 + <div class="happy_food_con2_2 clearfix">
  65 + <ul>
  66 + <volist name="res['data']" id="vo" offset="2" length="8">
  67 + <a href="/portal/star/getFoodDetail?id={$vo.id}">
  68 + <li>
  69 + <div class="happy_food_con2_2Img">
  70 + <img src="{:cmf_get_image_url($vo.thumbnail)}" alt="">
  71 + </div>
  72 + <div class="happy_food_con2_2Txt2 clearfix">
  73 + <h2>{$vo.post_title}</h2>
  74 + <div>
  75 + <img src="__TMPL__/public/assets/starImg/bicon_14.png" alt="">
  76 + <p>{$vo.post_hits}</p>
  77 + </div>
  78 + <div>
  79 + <img src="__TMPL__/public/assets/starImg/bicon_13.png" alt="">
  80 + <p>{$vo.post_favorites}</p>
  81 + </div>
  82 + </div>
  83 + </li>
  84 + </a>
  85 + </volist>
  86 + </ul>
  87 + </div>
  88 + </div>
  89 + </div>
  90 + <!--分页-->
  91 + <div class="pagination">
  92 + {$page|default=''}
  93 + </div>
  94 + </div>
  95 + </div>
  96 +
  97 + <include file="public@footer"/>
  98 + <script src="__TMPL__/public/assets/js/jquery-3.2.1.min.js"></script>
  99 + <script src="__TMPL__/public/assets/js/layui.js"></script>
  100 + <script src="__TMPL__/public/assets/js/public.js"></script>
  101 +</body>
  102 +
  103 +</html>
@@ -6,8 +6,14 @@ @@ -6,8 +6,14 @@
6 <meta name="viewport" content="width=device-width, initial-scale=1.0"> 6 <meta name="viewport" content="width=device-width, initial-scale=1.0">
7 <meta http-equiv="X-UA-Compatible" content="ie=edge"> 7 <meta http-equiv="X-UA-Compatible" content="ie=edge">
8 <title>良宿美寝更多</title> 8 <title>良宿美寝更多</title>
  9 + <link rel="stylesheet" href="__TMPL__/public/assets/css/bootstrap4.0.css">
9 <link rel="stylesheet" href="__TMPL__/public/assets/css/layui.css"> 10 <link rel="stylesheet" href="__TMPL__/public/assets/css/layui.css">
10 <link rel="stylesheet" href="__TMPL__/public/assets/css/happy.css"> 11 <link rel="stylesheet" href="__TMPL__/public/assets/css/happy.css">
  12 + <style>
  13 + a:hover{
  14 + text-decoration: none;
  15 + }
  16 + </style>
11 </head> 17 </head>
12 18
13 <body> 19 <body>
@@ -16,7 +22,7 @@ @@ -16,7 +22,7 @@
16 <!-- 选择区域 --> 22 <!-- 选择区域 -->
17 <div class="happy_select clearfix"> 23 <div class="happy_select clearfix">
18 <img src="__TMPL__/public/assets/starImg/aicon_42.png" alt=""> 24 <img src="__TMPL__/public/assets/starImg/aicon_42.png" alt="">
19 - <p>澳大利亚</p> 25 + <p>{$city_name}</p>
20 </div> 26 </div>
21 <!-- 顶部标题 --> 27 <!-- 顶部标题 -->
22 <div class="show_INMain_tit clearfix"> 28 <div class="show_INMain_tit clearfix">
@@ -31,93 +37,126 @@ @@ -31,93 +37,126 @@
31 <!-- 内容 --> 37 <!-- 内容 -->
32 <div class="happy_live_con"> 38 <div class="happy_live_con">
33 <!-- 第一部分 --> 39 <!-- 第一部分 -->
  40 + <notempty name="res['data'][0]">
  41 + <a href="/portal/star/getHotelDetail?id={$res['data'][0]['id']}">
34 <div class="happy_live_con_1"> 42 <div class="happy_live_con_1">
35 <div class="happy_live_con_1Img"> 43 <div class="happy_live_con_1Img">
36 - <img src="__TMPL__/public/assets/starImg/aicon_13.png" alt=""> 44 + <img src="{:cmf_get_image_url($res['data'][0]['thumbnail'])}" alt="">
37 </div> 45 </div>
38 - <p>全球唯一漂浮在海上的梦幻酒店,此生必打卡!</p> 46 + <p>{$res['data'][0]['post_title']}</p>
39 <div class="happy_live_con_1_introduce"> 47 <div class="happy_live_con_1_introduce">
40 - 酒店功能完善,设有包括总统套房、豪华商务套房等各色客房297间,酒店拥有中餐厅、西餐厅、韩国餐厅、火锅餐厅四个不同风味的餐饮场所,就餐总座位数1600余位,另设有可接待500人的宴会厅、可容纳400人的国际会议中心以及夜总会. 48 + {$res['data'][0]['post_excerpt']}
41 </div> 49 </div>
42 </div> 50 </div>
  51 + </a>
  52 + </notempty>
43 <!-- 第二部分 --> 53 <!-- 第二部分 -->
44 <div class="happy_live_con_2"> 54 <div class="happy_live_con_2">
45 <ul class="clearfix"> 55 <ul class="clearfix">
  56 + <notempty name="res['data'][1]">
  57 + <a href="/portal/star/getHotelDetail?id={$res['data'][1]['id']}">
46 <li> 58 <li>
47 <div class="happy_live_con_2Img"> 59 <div class="happy_live_con_2Img">
48 - <img src="__TMPL__/public/assets/starImg/aicon_13.png" alt=""> 60 + <img src="{:cmf_get_image_url($res['data'][1]['thumbnail'])}" alt="">
49 </div> 61 </div>
50 <div class="happy_live_con_2Txt"> 62 <div class="happy_live_con_2Txt">
51 - <h1>广州圣丰索菲特大酒店</h1>  
52 - <p>作为经济文化中心,不乏豪华特色酒店。或坐落庭院之中,亭台楼阁,竹影婆娑__TMPL__/public/assets.</p> 63 + <h1>{$res['data'][1]['post_title']}</h1>
  64 + <p>{$res['data'][1]['post_excerpt']}</p>
53 </div> 65 </div>
54 </li> 66 </li>
  67 + </a>
  68 + </notempty>
  69 + <notempty name="res['data'][2]">
  70 + <a href="/portal/star/getHotelDetail?id={$res['data'][2]['id']}">
55 <li> 71 <li>
56 <div class="happy_live_con_2Img"> 72 <div class="happy_live_con_2Img">
57 - <img src="__TMPL__/public/assets/starImg/aicon_13.png" alt=""> 73 + <img src="{:cmf_get_image_url($res['data'][2]['thumbnail'])}" alt="">
58 </div> 74 </div>
59 <div class="happy_live_con_2Txt"> 75 <div class="happy_live_con_2Txt">
60 - <h1>广州圣丰索菲特大酒店</h1>  
61 - <p>作为经济文化中心,不乏豪华特色酒店。或坐落庭院之中,亭台楼阁,竹影婆娑__TMPL__/public/assets.</p> 76 + <h1>{$res['data'][2]['post_title']}</h1>
  77 + <p>{$res['data'][2]['post_excerpt']}</p>
62 </div> 78 </div>
63 </li> 79 </li>
  80 + </a>
  81 + </notempty>
  82 + <notempty name="res['data'][3]">
  83 + <a href="/portal/star/getHotelDetail?id={$res['data'][3]['id']}">
64 <li> 84 <li>
65 <div class="happy_live_con_2Img"> 85 <div class="happy_live_con_2Img">
66 - <img src="__TMPL__/public/assets/starImg/aicon_13.png" alt=""> 86 + <img src="{:cmf_get_image_url($res['data'][3]['thumbnail'])}" alt="">
67 </div> 87 </div>
68 <div class="happy_live_con_2Txt"> 88 <div class="happy_live_con_2Txt">
69 - <h1>广州圣丰索菲特大酒店</h1>  
70 - <p>作为经济文化中心,不乏豪华特色酒店。或坐落庭院之中,亭台楼阁,竹影婆娑__TMPL__/public/assets.</p> 89 + <h1>{$res['data'][3]['post_title']}</h1>
  90 + <p>{$res['data'][3]['post_excerpt']}</p>
71 </div> 91 </div>
72 </li> 92 </li>
  93 + </a>
  94 + </notempty>
73 </ul> 95 </ul>
74 </div> 96 </div>
75 <!-- 第一部分 --> 97 <!-- 第一部分 -->
  98 + <notempty name="res['data'][4]">
  99 + <a href="/portal/star/getHotelDetail?id={$res['data'][4]['id']}">
76 <div class="happy_live_con_1"> 100 <div class="happy_live_con_1">
77 <div class="happy_live_con_1Img"> 101 <div class="happy_live_con_1Img">
78 - <img src="__TMPL__/public/assets/starImg/aicon_13.png" alt=""> 102 + <img src="{:cmf_get_image_url($res['data'][4]['thumbnail'])}" alt="">
79 </div> 103 </div>
80 - <p>全球唯一漂浮在海上的梦幻酒店,此生必打卡!</p> 104 + <p>{$res['data'][4]['post_title']}</p>
81 <div class="happy_live_con_1_introduce"> 105 <div class="happy_live_con_1_introduce">
82 - 酒店功能完善,设有包括总统套房、豪华商务套房等各色客房297间,酒店拥有中餐厅、西餐厅、韩国餐厅、火锅餐厅四个不同风味的餐饮场所,就餐总座位数1600余位,另设有可接待500人的宴会厅、可容纳400人的国际会议中心以及夜总会. 106 + {$res['data'][4]['post_excerpt']}
83 </div> 107 </div>
84 </div> 108 </div>
  109 + </a>
  110 + </notempty>
85 <!-- 第二部分 --> 111 <!-- 第二部分 -->
86 <div class="happy_live_con_2"> 112 <div class="happy_live_con_2">
87 <ul class="clearfix"> 113 <ul class="clearfix">
  114 + <notempty name="res['data'][5]">
  115 + <a href="/portal/star/getHotelDetail?id={$res['data'][5]['id']}">
88 <li> 116 <li>
89 <div class="happy_live_con_2Img"> 117 <div class="happy_live_con_2Img">
90 - <img src="__TMPL__/public/assets/starImg/aicon_13.png" alt=""> 118 + <img src="{:cmf_get_image_url($res['data'][5]['thumbnail'])}" alt="">
91 </div> 119 </div>
92 <div class="happy_live_con_2Txt"> 120 <div class="happy_live_con_2Txt">
93 - <h1>广州圣丰索菲特大酒店</h1>  
94 - <p>作为经济文化中心,不乏豪华特色酒店。或坐落庭院之中,亭台楼阁,竹影婆娑__TMPL__/public/assets.</p> 121 + <h1>{$res['data'][5]['post_title']}</h1>
  122 + <p>{$res['data'][5]['post_excerpt']}</p>
95 </div> 123 </div>
96 </li> 124 </li>
  125 + </a>
  126 + </notempty>
  127 + <notempty name="res['data'][6]">
  128 + <a href="/portal/star/getHotelDetail?id={$res['data'][6]['id']}">
97 <li> 129 <li>
98 <div class="happy_live_con_2Img"> 130 <div class="happy_live_con_2Img">
99 - <img src="__TMPL__/public/assets/starImg/aicon_13.png" alt=""> 131 + <img src="{:cmf_get_image_url($res['data'][6]['thumbnail'])}" alt="">
100 </div> 132 </div>
101 <div class="happy_live_con_2Txt"> 133 <div class="happy_live_con_2Txt">
102 - <h1>广州圣丰索菲特大酒店</h1>  
103 - <p>作为经济文化中心,不乏豪华特色酒店。或坐落庭院之中,亭台楼阁,竹影婆娑__TMPL__/public/assets.</p> 134 + <h1>{$res['data'][6]['post_title']}</h1>
  135 + <p>{$res['data'][6]['post_excerpt']}</p>
104 </div> 136 </div>
105 </li> 137 </li>
  138 + </a>
  139 + </notempty>
  140 + <notempty name="res['data'][7]">
  141 + <a href="/portal/star/getHotelDetail?id={$res['data'][7]['id']}">
106 <li> 142 <li>
107 <div class="happy_live_con_2Img"> 143 <div class="happy_live_con_2Img">
108 - <img src="__TMPL__/public/assets/starImg/aicon_13.png" alt=""> 144 + <img src="{:cmf_get_image_url($res['data'][7]['thumbnail'])}" alt="">
109 </div> 145 </div>
110 <div class="happy_live_con_2Txt"> 146 <div class="happy_live_con_2Txt">
111 - <h1>广州圣丰索菲特大酒店</h1>  
112 - <p>作为经济文化中心,不乏豪华特色酒店。或坐落庭院之中,亭台楼阁,竹影婆娑__TMPL__/public/assets.</p> 147 + <h1>{$res['data'][7]['post_title']}</h1>
  148 + <p>{$res['data'][7]['post_excerpt']}</p>
113 </div> 149 </div>
114 </li> 150 </li>
  151 + </a>
  152 + </notempty>
115 </ul> 153 </ul>
116 </div> 154 </div>
117 </div> 155 </div>
118 - <!-- 分页 -->  
119 - <div id="page">  
120 - 123456 156 +
  157 + <!--分页-->
  158 + <div class="pagination">
  159 + {$page|default=''}
121 </div> 160 </div>
122 </div> 161 </div>
123 </div> 162 </div>
  1 +<!DOCTYPE html>
  2 +<html lang="en">
  3 +
  4 +<head>
  5 + <meta charset="UTF-8">
  6 + <meta name="viewport" content="width=device-width, initial-scale=1.0">
  7 + <meta http-equiv="X-UA-Compatible" content="ie=edge">
  8 + <title>网红美景更多</title>
  9 + <link rel="stylesheet" href="__TMPL__/public/assets/css/bootstrap4.0.css">
  10 + <link rel="stylesheet" href="__TMPL__/public/assets/css/happy.css">
  11 +</head>
  12 +
  13 +<body>
  14 + <include file="public@header"/>
  15 + <div class="happy_beauty">
  16 + <!-- 选择区域 -->
  17 + <div class="happy_select clearfix">
  18 + <img src="__TMPL__/public/assets/starImg/aicon_42.png" alt="">
  19 + <p>{$city_name}</p>
  20 + </div>
  21 + <!-- 顶部标题 -->
  22 + <div class="show_INMain_tit clearfix">
  23 + <div class="show_IN1 clearfix">
  24 + <img src="__TMPL__/public/assets/starImg/aicon_06.png" alt="" style="width:28px">
  25 + <p>网红<span>美景</span></p>
  26 + <h2>Top Attraction</h2>
  27 + </div>
  28 + </div>
  29 + <!-- 盒子 -->
  30 + <div class="happy_beauty_box">
  31 + <!-- 内容 -->
  32 + <div class="happy_beauty_con">
  33 + <!-- 第一部分 -->
  34 + <div class="happy_beauty_con_1">
  35 + <div class="happy_beauty_con_1_box">
  36 + <volist name="res['data']" id="vo" offset="0" lengt="4">
  37 + <div class="happy_beauty_con_1top">
  38 + <div class="happy_beauty_con_1topimg1">
  39 + <img src="{:cmf_get_image_url($vo.thumbnail)}" alt="">
  40 + </div>
  41 + <div class="happy_beauty_con_1topTxt clearfix">
  42 + <h1>{$vo.post_title}</h1>
  43 + <div class="happy_food_con2_1Txt2 clearfix">
  44 + <div>
  45 + <img src="__TMPL__/public/assets/starImg/bicon_12.png" alt="">
  46 + <p>{$vo.post_hits}</p>
  47 + </div>
  48 + <div>
  49 + <img src="__TMPL__/public/assets/starImg/bicon_11.png" alt="">
  50 + <p>{$vo.post_favorites}</p>
  51 + </div>
  52 + </div>
  53 + </div>
  54 + </div>
  55 + </volist>
  56 + </div>
  57 + <div class="happy_beauty_conTab">
  58 + <ul class="clearfix">
  59 + <volist name="res['data']" id="vo" offset="0" lengt="4">
  60 + <li>
  61 + <div class="happy_beauty_conTabImg">
  62 + <img src="{:cmf_get_image_url($vo.thumbnail)}" alt="">
  63 + <span></span>
  64 + </div>
  65 + <p>{$vo.post_title}</p>
  66 + </li>
  67 + </volist>
  68 + </ul>
  69 + </div>
  70 + </div>
  71 + <!-- 第二部分 -->
  72 + <div class="happy_food_con2_2 clearfix">
  73 + <ul>
  74 + <volist name="res['data']" id="vo">
  75 + <a href="/portal/star/getSceneryDetail?id={$vo.id}">
  76 + <li>
  77 + <div class="happy_food_con2_2Img">
  78 + <img src="{:cmf_get_image_url($vo.thumbnail)}" alt="">
  79 + </div>
  80 + <div class="happy_food_con2_2Txt2 clearfix">
  81 + <h2>{$vo.post_title}</h2>
  82 + <div>
  83 + <img src="__TMPL__/public/assets/starImg/bicon_14.png" alt="">
  84 + <p>{$vo.post_hits}</p>
  85 + </div>
  86 + <div>
  87 + <img src="__TMPL__/public/assets/starImg/bicon_13.png" alt="">
  88 + <p>{$vo.post_favorites}</p>
  89 + </div>
  90 + </div>
  91 + </li>
  92 + </a>
  93 + </volist>
  94 + </ul>
  95 + </div>
  96 + </div>
  97 + <!--分页-->
  98 + <div class="pagination">
  99 + {$page|default=''}
  100 + </div>
  101 + </div>
  102 + </div>
  103 +
  104 + <include file="public@footer"/>
  105 + <script src="__TMPL__/public/assets/js/jquery-3.2.1.min.js"></script>
  106 + <script src="__TMPL__/public/assets/js/public.js"></script>
  107 + <script>
  108 + $('.happy_beauty_con_1top').eq(0).addClass('happy_beauty_active');
  109 + $('.happy_beauty_conTab ul li').mouseover(function() {
  110 + var index = $(this).index();
  111 + $('.happy_beauty_con_1top').eq(index).addClass('happy_beauty_active').siblings().removeClass('happy_beauty_active');
  112 + })
  113 + </script>
  114 +</body>
  115 +
  116 +</html>
@@ -60,13 +60,12 @@ @@ -60,13 +60,12 @@
60 </ul> 60 </ul>
61 </div> 61 </div>
62 </div> 62 </div>
63 - </div>  
64 -  
65 <!--分页--> 63 <!--分页-->
66 <div class="pagination"> 64 <div class="pagination">
67 {$page|default=''} 65 {$page|default=''}
68 </div> 66 </div>
69 </div> 67 </div>
  68 + </div>
70 <include file="public@footer"/> 69 <include file="public@footer"/>
71 <script src="__TMPL__/public/assets/js/jquery-3.2.1.min.js"></script> 70 <script src="__TMPL__/public/assets/js/jquery-3.2.1.min.js"></script>
72 <script src="__TMPL__/public/assets/js/public.js"></script> 71 <script src="__TMPL__/public/assets/js/public.js"></script>
  1 +<!DOCTYPE html>
  2 +<html lang="en">
  3 +
  4 +<head>
  5 + <meta charset="UTF-8">
  6 + <meta name="viewport" content="width=device-width, initial-scale=1.0">
  7 + <meta http-equiv="X-UA-Compatible" content="ie=edge">
  8 + <title>网红美景详情</title>
  9 + <link rel="stylesheet" href="__TMPL__/public/assets/css/show.css">
  10 + <link rel="stylesheet" href="__TMPL__/public/assets/css/mask.css">
  11 +</head>
  12 +
  13 +<body>
  14 + <include file="public@header"/>
  15 + <div class="mask">
  16 + </div>
  17 + <!-- 侧边栏 -->
  18 + <div class="sidebar">
  19 + <!-- 收藏 -->
  20 + <div class="collections">
  21 + <img src="__TMPL__/public/assets/starImg/bicon_02.png" alt="">
  22 + </div>
  23 + <!-- 喜欢 -->
  24 + <div class="likes">
  25 + <img src="__TMPL__/public/assets/starImg/bicon_03.png" alt="">
  26 + </div>
  27 + <!-- wx分享 -->
  28 + <div class="wx_go">
  29 + <img src="__TMPL__/public/assets/starImg/bicon_04.png" alt="">
  30 + <p>168</p>
  31 + </div>
  32 + <!-- wb分享 -->
  33 + <div class="wb_go">
  34 + <img src="__TMPL__/public/assets/starImg/bicon_05.png" alt="">
  35 + <p>168</p>
  36 + </div>
  37 + </div>
  38 + <!--主体内容-->
  39 + <div class="show_2">
  40 + <!--banner-->
  41 + <div class="show_banner">
  42 + <img src="{:cmf_get_image_url($res.image_url)}" alt="">
  43 + </div>
  44 + <!--main-->
  45 + <div class="show_main">
  46 + <!-- 头部 -->
  47 + <div class="show_main_Tit clearfix">
  48 + <h1>{$res.post_title}</h1>
  49 + <p>{$res.create_time|date="Y-m-d",###}</p>
  50 + </div>
  51 + <!-- 文字内容 -->
  52 + <div class="show_main_txt">
  53 + {$res.post_content}
  54 + </div>
  55 + </div>
  56 + <!-- 评论 -->
  57 + <include file="public@comment"/>
  58 + </div>
  59 +
  60 + <include file="public@footer"/>
  61 + <script src="__TMPL__/public/assets/js/jquery-3.2.1.min.js"></script>
  62 + <script src="__TMPL__/public/assets/js/public.js"></script>
  63 +</body>
  64 +
  65 +</html>
@@ -46,6 +46,7 @@ @@ -46,6 +46,7 @@
46 <div class="show_INMain_con2_2"> 46 <div class="show_INMain_con2_2">
47 <notempty name="res_xqgs"> 47 <notempty name="res_xqgs">
48 <div class="swiper-slide"> 48 <div class="swiper-slide">
  49 + <a href="/portal/star/getStoryDetail?id={$res_xqgs.id}">
49 <div class="show_index_con2Txt clearfix"> 50 <div class="show_index_con2Txt clearfix">
50 <!-- 左侧图片 --> 51 <!-- 左侧图片 -->
51 <img class="show_indexImg1" src="{:cmf_get_image_url($res_xqgs.thumbnail)}" alt=""> 52 <img class="show_indexImg1" src="{:cmf_get_image_url($res_xqgs.thumbnail)}" alt="">
@@ -73,13 +74,14 @@ @@ -73,13 +74,14 @@
73 </div> 74 </div>
74 <!-- 更多 --> 75 <!-- 更多 -->
75 <div class="happy_IN2"> 76 <div class="happy_IN2">
76 - <a href=""> MORE+ </a> 77 + <a href="/portal/star/getMoreScenery?city_id={$city_id}"> MORE+ </a>
77 </div> 78 </div>
78 </div> 79 </div>
79 <!-- 第二部分 --> 80 <!-- 第二部分 -->
80 <div class="happy_food_con2_2 clearfix swiper-container2"> 81 <div class="happy_food_con2_2 clearfix swiper-container2">
81 <ul class="swiper-wrapper"> 82 <ul class="swiper-wrapper">
82 <volist name="res_whmj" id="vo"> 83 <volist name="res_whmj" id="vo">
  84 + <a href="/portal/star/getSceneryDetail?id={$vo.id}">
83 <li class="swiper-slide "> 85 <li class="swiper-slide ">
84 <div class="happy_food_con2_2Img"> 86 <div class="happy_food_con2_2Img">
85 <img src="{:cmf_get_image_url($vo.thumbnail)}" alt=""> 87 <img src="{:cmf_get_image_url($vo.thumbnail)}" alt="">
@@ -96,6 +98,7 @@ @@ -96,6 +98,7 @@
96 </div> 98 </div>
97 </div> 99 </div>
98 </li> 100 </li>
  101 + </a>
99 </volist> 102 </volist>
100 </ul> 103 </ul>
101 <div class="show_swiper2_btn clearfix"> 104 <div class="show_swiper2_btn clearfix">
@@ -119,13 +122,14 @@ @@ -119,13 +122,14 @@
119 </div> 122 </div>
120 <!-- 更多 --> 123 <!-- 更多 -->
121 <div class="happy_IN2"> 124 <div class="happy_IN2">
122 - <a href=""> MORE+ </a> 125 + <a href="/portal/star/getMoreFood?city_id={$city_id}"> MORE+ </a>
123 </div> 126 </div>
124 </div> 127 </div>
125 <!-- 第一部分 --> 128 <!-- 第一部分 -->
126 <div class="happy_food_con2_1 swiper-container3"> 129 <div class="happy_food_con2_1 swiper-container3">
127 <ul class="clearfix swiper-wrapper"> 130 <ul class="clearfix swiper-wrapper">
128 <volist name="res_yyzx" id="vo"> 131 <volist name="res_yyzx" id="vo">
  132 + <a href="/portal/star/getFoodDetail?id={$vo.id}">
129 <li class="swiper-slide"> 133 <li class="swiper-slide">
130 <div class="happy_food_con2_1Img"> 134 <div class="happy_food_con2_1Img">
131 <img src="{:cmf_get_image_url($vo.thumbnail)}" alt=""> 135 <img src="{:cmf_get_image_url($vo.thumbnail)}" alt="">
@@ -134,6 +138,7 @@ @@ -134,6 +138,7 @@
134 <h2>{$vo.post_title}</h2> 138 <h2>{$vo.post_title}</h2>
135 </div> 139 </div>
136 </li> 140 </li>
  141 + </a>
137 </volist> 142 </volist>
138 </ul> 143 </ul>
139 <div class="show_swiper2_btn clearfix"> 144 <div class="show_swiper2_btn clearfix">
@@ -164,12 +169,14 @@ @@ -164,12 +169,14 @@
164 <div class="happy_live_con_1 swiper-container4"> 169 <div class="happy_live_con_1 swiper-container4">
165 <div class="swiper-wrapper"> 170 <div class="swiper-wrapper">
166 <volist name="res_lsmq" id="vo"> 171 <volist name="res_lsmq" id="vo">
  172 + <a href="/portal/star/getHotelDetail?id={$vo.id}">
167 <div class="swiper-slide"> 173 <div class="swiper-slide">
168 <div class="happy_live_con_1Img"> 174 <div class="happy_live_con_1Img">
169 <img src="{:cmf_get_image_url($vo.thumbnail)}" alt=""> 175 <img src="{:cmf_get_image_url($vo.thumbnail)}" alt="">
170 </div> 176 </div>
171 <p>{$vo.post_title}</p> 177 <p>{$vo.post_title}</p>
172 </div> 178 </div>
  179 + </a>
173 </volist> 180 </volist>
174 </div> 181 </div>
175 <div class="show_swiper2_btn clearfix"> 182 <div class="show_swiper2_btn clearfix">
@@ -193,13 +200,14 @@ @@ -193,13 +200,14 @@
193 </div> 200 </div>
194 <!-- 更多 --> 201 <!-- 更多 -->
195 <div class="happy_IN2"> 202 <div class="happy_IN2">
196 - <a href=""> MORE+ </a> 203 + <a href="/portal/star/getMoreEcology?city_id={$city_id}"> MORE+ </a>
197 </div> 204 </div>
198 </div> 205 </div>
199 <!-- 第一部分 --> 206 <!-- 第一部分 -->
200 <div class="happy_ecological_con2_1"> 207 <div class="happy_ecological_con2_1">
201 <ul class="clearfix"> 208 <ul class="clearfix">
202 <volist name="res_hlst" id="vo"> 209 <volist name="res_hlst" id="vo">
  210 + <a href="/portal/star/getEcologyDetail?id={$vo.id}">
203 <li> 211 <li>
204 <div class="happy_ecological_con2_1Img"> 212 <div class="happy_ecological_con2_1Img">
205 <img src="{:cmf_get_image_url($vo.thumbnail)}" alt=""> 213 <img src="{:cmf_get_image_url($vo.thumbnail)}" alt="">
@@ -211,6 +219,7 @@ @@ -211,6 +219,7 @@
211 </p> 219 </p>
212 </div> 220 </div>
213 </li> 221 </li>
  222 + </a>
214 </volist> 223 </volist>
215 </ul> 224 </ul>
216 </div> 225 </div>
@@ -159,7 +159,7 @@ body { @@ -159,7 +159,7 @@ body {
159 159
160 .happy_gallery_con { 160 .happy_gallery_con {
161 width: 1200px; 161 width: 1200px;
162 - margin: 142px auto 100px; 162 + margin: 142px auto 150px;
163 } 163 }
164 164
165 .show_IN1 { 165 .show_IN1 {
@@ -207,6 +207,7 @@ body { @@ -207,6 +207,7 @@ body {
207 207
208 .happy_gallery_con2 ul li img { 208 .happy_gallery_con2 ul li img {
209 width: 260px; 209 width: 260px;
  210 + height:374px;
210 } 211 }
211 212
212 213
@@ -610,7 +611,7 @@ body { @@ -610,7 +611,7 @@ body {
610 611
611 .happy_food { 612 .happy_food {
612 width: 1200px; 613 width: 1200px;
613 - margin: 30px auto 100px; 614 + margin: 30px auto 150px;
614 } 615 }
615 616
616 .show_INMain_tit { 617 .show_INMain_tit {
@@ -742,7 +743,7 @@ body { @@ -742,7 +743,7 @@ body {
742 743
743 .happy_live { 744 .happy_live {
744 width: 1200px; 745 width: 1200px;
745 - margin: 30px auto 100px; 746 + margin: 30px auto 150px;
746 } 747 }
747 748
748 .happy_live_con { 749 .happy_live_con {
@@ -773,6 +774,11 @@ body { @@ -773,6 +774,11 @@ body {
773 font-size: 14px; 774 font-size: 14px;
774 color: rgba(255, 255, 255, 1); 775 color: rgba(255, 255, 255, 1);
775 line-height: 24px; 776 line-height: 24px;
  777 + overflow: hidden;
  778 + text-overflow: ellipsis;
  779 + display: -webkit-box;
  780 + -webkit-line-clamp: 5;
  781 + -webkit-box-orient: vertical;
776 } 782 }
777 783
778 .happy_live_con_1Img { 784 .happy_live_con_1Img {
@@ -833,6 +839,12 @@ body { @@ -833,6 +839,12 @@ body {
833 color: rgba(153, 153, 153, 1); 839 color: rgba(153, 153, 153, 1);
834 line-height: 22px; 840 line-height: 22px;
835 margin-top: 12px; 841 margin-top: 12px;
  842 + height:43px;
  843 + overflow: hidden;
  844 + text-overflow: ellipsis;
  845 + display: -webkit-box;
  846 + -webkit-line-clamp: 2;
  847 + -webkit-box-orient: vertical;
836 } 848 }
837 849
838 850
@@ -840,7 +852,7 @@ body { @@ -840,7 +852,7 @@ body {
840 852
841 .happy_beauty { 853 .happy_beauty {
842 width: 1200px; 854 width: 1200px;
843 - margin: 30px auto 100px; 855 + margin: 30px auto 150px;
844 } 856 }
845 857
846 .happy_beauty_con { 858 .happy_beauty_con {
@@ -632,6 +632,17 @@ body { @@ -632,6 +632,17 @@ body {
632 color: rgba(26, 26, 26, 1); 632 color: rgba(26, 26, 26, 1);
633 } 633 }
634 634
  635 +.show_main_Tit1 {
  636 + padding-top: 54px;
  637 +}
  638 +
  639 +.show_main_Tit1 h1 {
  640 + cursor: pointer;
  641 + font-size: 32px;
  642 + color: rgba(26, 26, 26, 1);
  643 + text-align:center;
  644 +}
  645 +
635 .show_main_Tit p { 646 .show_main_Tit p {
636 float: right; 647 float: right;
637 cursor: pointer; 648 cursor: pointer;
@@ -1216,3 +1227,534 @@ body { @@ -1216,3 +1227,534 @@ body {
1216 font-size: 18px; 1227 font-size: 18px;
1217 color: rgba(255, 255, 255, 1); 1228 color: rgba(255, 255, 255, 1);
1218 } 1229 }
  1230 +
  1231 +/* 更多快报页 */
  1232 +
  1233 +.show_7 {
  1234 + width: 1200px;
  1235 + margin: 140px auto 150px;
  1236 +}
  1237 +
  1238 +.show_7_con {
  1239 + margin-top: 40px;
  1240 +}
  1241 +
  1242 +.show_7_con1,
  1243 +.show_7_con3 {
  1244 + width: 100%;
  1245 + height: 365px;
  1246 + background-color: white;
  1247 +}
  1248 +
  1249 +.show_7_con1 img {
  1250 + width: 550px;
  1251 + height: 100%;
  1252 + float: left;
  1253 +}
  1254 +
  1255 +.show_7_con1_txt {
  1256 + float: left;
  1257 + width: 528px;
  1258 + padding-top: 100px;
  1259 + padding-left: 59px;
  1260 +}
  1261 +
  1262 +.show_7_con1_txt h1,
  1263 +.show_7_con2_txt h1,
  1264 +.show_7_con3_txt h1 {
  1265 + cursor: pointer;
  1266 + font-size: 18px;
  1267 + font-weight: 400;
  1268 + color: rgba(26, 26, 26, 1);
  1269 + overflow: hidden;
  1270 + text-overflow: ellipsis;
  1271 + display: -webkit-box;
  1272 + -webkit-line-clamp: 2;
  1273 + -webkit-box-orient: vertical;
  1274 +}
  1275 +
  1276 +.show_7_con1_txt p,
  1277 +.show_7_con3_txt p {
  1278 + font-size: 14px;
  1279 + margin: 30px 0 36px 0;
  1280 + color: rgba(153, 153, 153, 1);
  1281 + line-height: 22px;
  1282 + overflow: hidden;
  1283 + text-overflow: ellipsis;
  1284 + display: -webkit-box;
  1285 + -webkit-line-clamp: 4;
  1286 + -webkit-box-orient: vertical;
  1287 +}
  1288 +
  1289 +.show_7_con1_txt span,
  1290 +.show_7_con2_txt span,
  1291 +.show_7_con3_txt span {
  1292 + cursor: pointer;
  1293 + font-size: 14px;
  1294 + color: rgba(102, 102, 102, 1);
  1295 +}
  1296 +
  1297 +.show_7_con2 {
  1298 + width: 100%;
  1299 + padding: 30px;
  1300 + margin-top: 14px;
  1301 + background-color: white;
  1302 + box-sizing: border-box;
  1303 +}
  1304 +
  1305 +.show_7_con2 img {
  1306 + width: 230px;
  1307 + height: 100%;
  1308 + float: left;
  1309 +}
  1310 +
  1311 +.show_7_con2_txt {
  1312 + width: 878px;
  1313 + float: left;
  1314 + margin-left: 29px;
  1315 + padding-top: 20px;
  1316 +}
  1317 +
  1318 +.show_7_con2_txt p {
  1319 + font-size: 14px;
  1320 + margin: 12px 0 18px 0;
  1321 + color: rgba(153, 153, 153, 1);
  1322 + line-height: 22px;
  1323 + overflow: hidden;
  1324 + text-overflow: ellipsis;
  1325 + display: -webkit-box;
  1326 + -webkit-line-clamp: 2;
  1327 + -webkit-box-orient: vertical;
  1328 +}
  1329 +
  1330 +.show_7_con3 {
  1331 + margin-top: 14px;
  1332 +}
  1333 +
  1334 +.show_7_con3 img {
  1335 + width: 550px;
  1336 + height: 100%;
  1337 + float: right;
  1338 +}
  1339 +
  1340 +.show_7_con3_txt {
  1341 + float: left;
  1342 + width: 528px;
  1343 + padding-top: 100px;
  1344 + padding-left: 59px;
  1345 +}
  1346 +
  1347 +/* 相册详情 */
  1348 +
  1349 +.show_8 {
  1350 + margin: 89px auto 100px;
  1351 +}
  1352 +
  1353 +.show_8_box {
  1354 + width: 1200px;
  1355 + margin: auto;
  1356 + background-color: #50509F;
  1357 + padding-bottom: 27px;
  1358 +}
  1359 +
  1360 +.gallery-top {
  1361 + width: 1200px;
  1362 + height: 675px;
  1363 + margin: auto;
  1364 + overflow: hidden;
  1365 +}
  1366 +
  1367 +.gallery-top ul li img {
  1368 + width: 100%;
  1369 + height: 100%;
  1370 +}
  1371 +
  1372 +.gallery-thumbs {
  1373 + width: 1055px;
  1374 + margin: auto;
  1375 + overflow: hidden;
  1376 +}
  1377 +
  1378 +.gallery-thumbs ul li {
  1379 + width: 256px !important;
  1380 +}
  1381 +
  1382 +.gallery-thumbs ul li img {
  1383 + width: 100%;
  1384 + height: 144px;
  1385 +}
  1386 +
  1387 +.gallery-thumbs .swiper-slide {
  1388 + box-sizing: border-box;
  1389 +}
  1390 +
  1391 +.gallery-thumbs .swiper-slide-thumb-active {
  1392 + border: 2px solid white;
  1393 +}
  1394 +
  1395 +.gallery-thumbs_box {
  1396 + width: 1200px;
  1397 + position: relative;
  1398 +}
  1399 +
  1400 +.show_8_name {
  1401 + text-align: center;
  1402 + font-size: 24px;
  1403 + font-weight: bold;
  1404 + margin: 23px 0;
  1405 + color: rgba(255, 255, 255, 1);
  1406 +}
  1407 +
  1408 +.swiper-button-prev8,
  1409 +.swiper-button-next8 {
  1410 + width: 34px;
  1411 + height: 34px;
  1412 + outline: none;
  1413 + background: rgba(255, 255, 255, 1);
  1414 + border-radius: 50%;
  1415 +}
  1416 +
  1417 +.swiper-button-prev8,
  1418 +.swiper-button-next8 {
  1419 + cursor: pointer;
  1420 + position: absolute;
  1421 + background-color: #09FF8E;
  1422 + background-size: 14px 14px;
  1423 + background-repeat: no-repeat;
  1424 + background-position: center;
  1425 + background-image: url(../starImg/left.png);
  1426 +}
  1427 +
  1428 +.swiper-button-prev8 {
  1429 + top: 39%;
  1430 + left: 16px;
  1431 +}
  1432 +
  1433 +.swiper-button-next8 {
  1434 + top: 39%;
  1435 + right: 16px;
  1436 + background-image: url(../starImg/right.png);
  1437 +}
  1438 +
  1439 +.swiper-button-next8.swiper-button-disabled,
  1440 +.swiper-button-prev8.swiper-button-disabled {
  1441 + background-color: rgba(255, 255, 255, 1);
  1442 +}
  1443 +
  1444 +
  1445 +/* 星球影院页 */
  1446 +
  1447 +.show_9 {
  1448 + width: 1200px;
  1449 + margin: 75px auto 100px;
  1450 +}
  1451 +
  1452 +.show_9_video {
  1453 + float: left;
  1454 + position: relative;
  1455 + width: 955px;
  1456 + height: 426px;
  1457 + background-color: black;
  1458 +}
  1459 +
  1460 +.video_poster {
  1461 + position: absolute;
  1462 + top: 0;
  1463 + width: 100%;
  1464 + height: 426px;
  1465 +}
  1466 +
  1467 +.show_9_video .play_button {
  1468 + position: absolute;
  1469 + left: 0;
  1470 + right: 0;
  1471 + margin: auto;
  1472 + top: 35%;
  1473 +}
  1474 +
  1475 +.show_9_video_aside {
  1476 + width: 245px;
  1477 + height: 426px;
  1478 + overflow-y: scroll;
  1479 + padding: 24px 10px 0;
  1480 + box-sizing: border-box;
  1481 + background: rgba(49, 49, 49, 1);
  1482 +}
  1483 +
  1484 +.show_9_video_aside::-webkit-scrollbar {
  1485 + width: 6px;
  1486 + background: rgba(73, 73, 73, 1);
  1487 +}
  1488 +
  1489 +.show_9_video_aside::-webkit-scrollbar-thumb {
  1490 + width: 6px;
  1491 + background: rgba(107, 107, 107, 1);
  1492 +}
  1493 +
  1494 +.show_9_video_asideTie {
  1495 + height: 32px;
  1496 + line-height: 32px;
  1497 + box-sizing: border-box;
  1498 +}
  1499 +
  1500 +.select {
  1501 + position: relative;
  1502 +}
  1503 +
  1504 +.select ul {
  1505 + display: none;
  1506 + position: absolute;
  1507 + width: 142px;
  1508 + top: 32px;
  1509 + left: 52px;
  1510 + z-index: 1;
  1511 +}
  1512 +
  1513 +.select ul li {
  1514 + cursor: pointer;
  1515 + border-bottom: 1px solid #EBEBEB;
  1516 + padding-left: 16px;
  1517 + background-color: white;
  1518 +}
  1519 +
  1520 +.select ul li:last-child {
  1521 + border-bottom: 0;
  1522 +}
  1523 +
  1524 +.select ul li:hover {
  1525 + background: #09FF8E;
  1526 +}
  1527 +
  1528 +.show_9_video_asideTie .select input {
  1529 + cursor: pointer;
  1530 + width: 169px;
  1531 + height: 32px;
  1532 + outline: none;
  1533 + border: 0;
  1534 + color: #1A1A1A;
  1535 + padding-left: 20px;
  1536 + box-sizing: border-box;
  1537 + margin-left: 11px;
  1538 + background-color: rgba(255, 255, 255, 1);
  1539 + box-shadow: -18px 18px 54px 0px rgba(0, 0, 0, 0.1);
  1540 + opacity: 0.9;
  1541 + border-radius: 16px;
  1542 +}
  1543 +
  1544 +.select img {
  1545 + position: absolute;
  1546 + top: 11px;
  1547 + right: 24px;
  1548 + width: 14px;
  1549 + height: 14px;
  1550 +}
  1551 +
  1552 +.curren {
  1553 + display: none;
  1554 +}
  1555 +
  1556 +.video_active {
  1557 + display: block !important;
  1558 +}
  1559 +
  1560 +.show_9_video_asideTie p {
  1561 + float: left;
  1562 + font-size: 14px;
  1563 + color: rgba(255, 255, 255, 1);
  1564 +}
  1565 +
  1566 +.show_9_video_asideCon {
  1567 + margin-top: 19px;
  1568 +}
  1569 +
  1570 +.show_9_video_asideCon ul {
  1571 + display: none;
  1572 +}
  1573 +
  1574 +.show_9_video_asideCon ul li {
  1575 + cursor: pointer;
  1576 + margin-bottom: 30px;
  1577 +}
  1578 +
  1579 +.show_9_video_asideCon ul li img {
  1580 + float: left;
  1581 + width: 128px;
  1582 + opacity: 0.3;
  1583 +}
  1584 +
  1585 +.show_9_video_asideCon ul li p {
  1586 + width: 70px;
  1587 + float: left;
  1588 + margin-left: 10px;
  1589 + font-size: 14px;
  1590 + color: rgba(153, 153, 153, 1);
  1591 + line-height: 22px;
  1592 +}
  1593 +
  1594 +.show_9_video_asideTxt {
  1595 + padding: 24px 32px;
  1596 + box-sizing: border-box;
  1597 + width: 100%;
  1598 + background: rgba(255, 255, 255, 1);
  1599 +}
  1600 +
  1601 +.show_9_video_asideTxt h1 {
  1602 + font-size: 16px;
  1603 + font-weight: 400;
  1604 + cursor: pointer;
  1605 + color: rgba(0, 0, 0, 1);
  1606 +}
  1607 +
  1608 +.show_9_video_asideTxt2 {
  1609 + float: left;
  1610 +}
  1611 +
  1612 +.show_9_video_asideTxt2 p {
  1613 + font-size: 14px;
  1614 + color: #858585;
  1615 + margin-top: 20px;
  1616 + display: inline-block;
  1617 + margin-right: 80px;
  1618 +}
  1619 +
  1620 +.show_9_video_asideTxt3 {
  1621 + float: left;
  1622 + margin-left: 334px;
  1623 +}
  1624 +
  1625 +.show_9_video_asideTxt3 p {
  1626 + font-size: 16px;
  1627 + float: left;
  1628 + line-height: 42px;
  1629 + margin-right: 15px;
  1630 + color: rgba(26, 26, 26, 1);
  1631 +}
  1632 +
  1633 +.show_9_video_asideTxt3 img {
  1634 + width: 40px;
  1635 + cursor: pointer;
  1636 + border-radius: 50%;
  1637 + margin-right: 8px;
  1638 + display: inline-block;
  1639 +}
  1640 +
  1641 +.show_9_video_asideCon ul li:hover img {
  1642 + opacity: 1;
  1643 +}
  1644 +
  1645 +.show_9_video_asideCon ul li:hover p {
  1646 + color: #09FF8E;
  1647 +}
  1648 +
  1649 +
  1650 +/* 搜索结果页 */
  1651 +
  1652 +.index_search {
  1653 + width: 1200px;
  1654 + margin: 53px auto 100px;
  1655 +}
  1656 +
  1657 +.index_search_tit img {
  1658 + width: 40px;
  1659 + float: left;
  1660 +}
  1661 +
  1662 +.index_search_tit h1 {
  1663 + float: left;
  1664 + cursor: pointer;
  1665 + font-size: 32px;
  1666 + margin-left: 23px;
  1667 + color: rgba(58, 255, 165, 1);
  1668 +}
  1669 +
  1670 +.index_search_tit2 {
  1671 + float: left;
  1672 + height: 40px;
  1673 + margin-left: 18px;
  1674 + border-left: 1px solid #D0D2E6;
  1675 +}
  1676 +
  1677 +.index_search_tit2 p {
  1678 + line-height: 57px;
  1679 + font-size: 16px;
  1680 + color: #D0D2E6;
  1681 + padding-left: 16px;
  1682 +}
  1683 +
  1684 +.index_search_con {
  1685 + padding: 0 30px 30px;
  1686 + box-sizing: border-box;
  1687 + width: 100%;
  1688 + background-color: white;
  1689 + margin-top: 52px;
  1690 +}
  1691 +
  1692 +.index_search_con ul {
  1693 + overflow: hidden;
  1694 +}
  1695 +
  1696 +.index_search_con ul li {
  1697 + padding-bottom: 26px;
  1698 + margin-top: 30px;
  1699 + border-bottom: 1px solid #EBEBEB;
  1700 +}
  1701 +
  1702 +.index_search_con ul li:last-child {
  1703 + border: 0;
  1704 + padding-bottom: 0px;
  1705 +}
  1706 +
  1707 +.index_search_con ul li h1 {
  1708 + font-size: 18px;
  1709 +}
  1710 +
  1711 +.index_search_con ul li h2 {
  1712 + font-size: 14px;
  1713 + margin-top: 14px;
  1714 + font-weight: normal;
  1715 + color: rgba(153, 153, 153, 1);
  1716 + line-height: 22px;
  1717 +}
  1718 +
  1719 +.index_search_con_list {
  1720 + margin-top: 18px;
  1721 +}
  1722 +
  1723 +.index_search_con_list p {
  1724 + display: inline-block;
  1725 + line-height: 1;
  1726 + font-size: 12px;
  1727 + color: rgba(102, 102, 102, 1);
  1728 +}
  1729 +
  1730 +.index_search_con_list p:last-child:after {
  1731 + display: none;
  1732 +}
  1733 +
  1734 +.index_search_con_list p:after {
  1735 + content: '';
  1736 + width: 1px;
  1737 + height: 12px;
  1738 + vertical-align: middle;
  1739 + margin-left: 10px;
  1740 + margin-right: 9px;
  1741 + display: inline-block;
  1742 + background: rgba(235, 235, 235, 1);
  1743 +}
  1744 +
  1745 +.video_mask {
  1746 + position: fixed;
  1747 + top: 44%;
  1748 + left: 50%;
  1749 + transform: translate(-50%, -50%);
  1750 + -webkit-transform: translate(-50%, -50%);
  1751 + -moz-transform: translate(-50%, -50%);
  1752 + -ms-transform: translate(-50%, -50%);
  1753 + -o-transform: translate(-50%, -50%);
  1754 + padding: 24px 33px;
  1755 + background: rgba(0, 0, 0, 1);
  1756 + border-radius: 10px;
  1757 + z-index: 1;
  1758 + font-size: 18px;
  1759 + color: rgba(255, 255, 255, 1);
  1760 +}