反馈整体样式优化,新增国籍,旅行日期

master
candice 10 months ago
parent 3e9fbd3fce
commit 4423ce7030

@ -1,6 +1,6 @@
<h2 style="text-align: center; position: relative; display: inline-block; width: 100%;">
Travelers <span style="color: #ad1818; margin: 0 8px;font-size: 22px;"></span> Japan
Travelers <span class="review_heart"></span> Japan
Highlights<span class="review-aggregate__info" aria-label="Open"><svg version="1.1"
class="icon icon--vertical icon--size-1-5 icon--primary" role="presentation"
width="20" height="20" viewBox="0 0 24 24">
@ -36,8 +36,8 @@
</td>
<?php foreach ($feedback_list as $index => $feedback) {?>
<td class="tour_feedback feedback_content">
<div class="review_name" style="font-weight: 600; font-size: 1.3rem; margin-bottom: 3px;"><!--客人名字--></div>
<div class="review_nationality" style="color: #777; margin-bottom: 15px;"><!--客人国籍--></div>
<div class="review_name"><?php echo $feedback['customer'] ?></div>
<div class="review_nationality"><?php echo $feedback['nationality'] ?></div>
<strong>
<?php echo $feedback['title'] ?>
</strong>
@ -47,8 +47,8 @@
</p>
<a href="<?php echo $feedback['url'] ?>" target="_blank" rel="nofollow">More</a>
<div class="customer_name">
<strong style="color: #000;float: left; margin: 0;margin-right: 5px;">Date of Experience:</strong>: <?php echo $feedback['createdOn'] ?>
</div>
<strong>Date of Experience:</strong>: <?php echo $feedback['entranceDate'] ?>
</div>
</td>
<?php }?>
</tr>
@ -65,47 +65,5 @@
style="height: 15px; width: auto; margin: 0 3px; filter: brightness(170%);"
alt="Tour Review">.</p>
<style>
.popper__tooltip {
position: absolute;
top: -70px;
right: 0;
background-color: #fff;
color: #000;
padding: 5px;
border-radius: 5px;
font-size: 1rem;
border: #999;
width: 300px;
height: auto;
line-height: 22px;
font-family: Calibri;
font-weight: 300;
display: none;
text-align: left;
padding: 10px 15px;
box-shadow: 0 2px 8px #00000024;
}
.popper__tooltip[data-show] {
display: none;
}
.review-aggregate__info {
margin-left: 10px;
cursor: pointer;
}
.review-aggregate__info:hover .popper__tooltip {
display: block;
}
.review_close { position: absolute;
right: 0px;
top: 0px;
font-size: 1.5rem;
cursor: pointer;
font-weight: 600;
background: #ececec;
padding: 2px 5px;
border-radius: 0 6px;}
.review_close:hover { color: #ad1818; }
</style>
Loading…
Cancel
Save