反馈修改-1017

master
Lee 2022-10-17 15:07:42 +08:00
parent 4ea0fd60a2
commit f031f555aa
5 changed files with 29 additions and 24 deletions

View File

@ -1,8 +0,0 @@
<IfModule mod_rewrite.c>
Options +FollowSymlinks -Multiviews
RewriteEngine On
RewriteCond %{REQUEST_FILENAME} !-d
RewriteCond %{REQUEST_FILENAME} !-f
RewriteRule ^(.*)$ index.php?/$1 [QSA,PT,L]
</IfModule>

View File

@ -325,6 +325,7 @@
line-height: 1.8;
margin-top: 10px;
transition: all .6s;
text-align: justify;
}
/* 指示点 */
@ -338,7 +339,7 @@
}
.new-list .swiper-pagination-bullet:nth-of-type(1) {
margin-top: 0;
margin-top: 0 !important;
}
.new-list .swiper-pagination-bullet-active {
@ -1682,13 +1683,14 @@
}
.services-list .item .img {
max-width: 70%;
width: 70%;
height: 100%;
overflow: hidden;
}
.services-list .item .img>img {
height: 100%;
width: 100%;
min-height: 100%;
transition: all .6s;
}
@ -2016,6 +2018,7 @@
}
.red-property-case>a .info>p {
height: 48px;
font-size: 14px;
line-height: 1.7;
margin-top: 7px;
@ -2660,7 +2663,7 @@
}
/* 手机端样式 */
@media screen and (max-width:960px) {
@media screen and (max-width:980px) {
body {
padding-top: .9rem;
}
@ -2780,8 +2783,8 @@
.head .nav>a {
display: block;
width: 100%;
font-size: 16px;
line-height: 50px;
font-size: .32rem;
line-height: 1rem;
margin: 0;
font-weight: normal;
border-bottom: 1px solid #ececec;
@ -2820,6 +2823,14 @@
opacity: 1;
transition: all .6s;
}
.pull-call > span:first-child{
width: .52rem;
height: .52rem;
}
.pull-call > span img{
width: .3rem;
height: .3rem;
}
/* 尾部 */
.footer {
@ -3952,7 +3963,7 @@
}
.services-list .item .img {
max-width: 80%;
mwidth: 80%;
}
.services-list .item-mask {
@ -4204,6 +4215,7 @@
}
.red-property-case>a .info>p {
height: .81rem;
font-size: .24rem;
margin-top: .06rem;
}

View File

@ -1,6 +1,6 @@
$(function(){
// 滑动页面更改头部效果
if(window.innerWidth <= 960){
if(window.innerWidth <= 980){
$('.header').addClass('header-white');
}else{
$(window).scroll(function(){
@ -57,7 +57,7 @@ $(function(){
window.location.href = $(this).data('url');
}
})
if(window.innerWidth <= 960){
if(window.innerWidth <= 980){
// 公司新闻切换
var newsSwiper = new Swiper('.new-list>.swiper',{
loop:true,//开启循环播放
@ -110,7 +110,7 @@ $(function(){
}
// 尾部导航
if(window.innerWidth <= 960){
if(window.innerWidth <= 980){
$(document).on('click','.foot-left>.item>a',function() {
if(!$(this).parent().hasClass('active')){
$('.foot-left>.item').removeClass('active');
@ -204,7 +204,7 @@ $(function(){
// 友邻市集活动切换
if($('.market-swiper').length){
if(window.innerWidth > 960){
if(window.innerWidth > 980){
var marketSwiper = new Swiper('.market-swiper',{
loop:true,//开启循环播放
autoplay: {//开启自动播放
@ -245,7 +245,7 @@ $(function(){
};
// 手机导航按钮
if(window.innerWidth <= 960){
if(window.innerWidth <= 980){
$(document).on('click','.head .head-btn',function() {
if ($('.head .head-btn').attr('class') == 'head-btn cur') {
$('.head .head-btn').removeClass('cur');
@ -266,7 +266,7 @@ $(function(){
}
// 手机端二级导航
if(window.innerWidth <= 960){
if(window.innerWidth <= 980){
if($('.sub-nav-bg').length){
let parentWidth = $('.sub-nav-bg').width();
let offsetLeft = $('.sub-nav>.active').offset().left;

View File

@ -9,7 +9,7 @@ $childrenMenu = Category::getChildrenByParentId($topCategoryId);
<!-- 活动详情 -->
<div class="pull-section pull-content-bg content-bg-white">
<div class="activities-detail w1360 wow fadeInUp" data-wow-duration="0.8s" data-wow-delay="0">
<div class="detail-top detail-top-cloumn">
<div class="detail-top">
<!-- 轮播 -->
<div class="detail-swiper swiper">
<div class="swiper-wrapper">
@ -33,6 +33,7 @@ $childrenMenu = Category::getChildrenByParentId($topCategoryId);
<div class="detai-title detai-title-cloumn">
<h1 class="color-blue wow fadeInUp" data-wow-duration="0.8s" data-wow-delay="0">{$item.title}</h1>
<div class="sub-bid wow fadeInUp" data-wow-duration="0.8s" data-wow-delay="0.2s">{$item.sub_title}</div>
<a href="{$category['url'] ?: $category['route']}" class="back-btn wap-show flex">返回列表</a>
</div>
</div>
<!-- 详情 -->

View File

@ -72,8 +72,8 @@
<div class="wap-show"><img src="{$n.src_mobile ?? ''}" alt="{$n.title ?? ''}"></div>
<a href="/news/{$n.id}.html">
<em class="color-blue wap-show">{:date('Y.m.d', $n.create_time)}</em>
<div class="title color-blue clips3">{$n.title}</div>
<p class="info color-66 clips4">{$n.summary}</p>
<div class="title color-blue clips2">{$n.title}</div>
<p class="info color-66 clips3">{$n.summary}</p>
</a>
</div>
{/foreach}