From 6ce34ae097fb2fb1b0fff65be01fa2912a4cbdc6 Mon Sep 17 00:00:00 2001 From: Lee <342694918@qq.com> Date: Thu, 3 Nov 2022 17:21:38 +0800 Subject: [PATCH] =?UTF-8?q?=E5=8F=8D=E9=A6=88=E8=B0=83=E6=95=B4=E5=AE=8C?= =?UTF-8?q?=E6=88=90=EF=BC=8C=E5=A4=A7=E4=BA=8B=E8=AE=B0=E5=A4=84js?= =?UTF-8?q?=E9=9C=80=E8=A6=81=E8=B0=83=E6=95=B4?= MIME-Version: 1.0 Content-Type: text/plain; charset=UTF-8 Content-Transfer-Encoding: 8bit --- public/static/web/css/base.css | 7 + public/static/web/css/style.css | 307 +++++++++++++----- .../web/images/icon/icon-srevices-more.png | Bin 0 -> 1143 bytes public/static/web/images/new/service-a1.jpg | Bin 0 -> 1491 bytes public/static/web/images/new/service-a2.jpg | Bin 0 -> 1490 bytes public/static/web/images/new/service-a3.jpg | Bin 0 -> 1491 bytes public/static/web/images/new/service-a4.jpg | Bin 0 -> 1491 bytes public/static/web/js/script.js | 8 +- view/article/service.html | 4 +- view/index/index.html | 24 +- view/page/activity.html | 2 +- view/page/advice.html | 1 - view/page/business.html | 8 +- view/page/caseslist.html | 13 +- view/public/menu.html | 15 +- 15 files changed, 279 insertions(+), 110 deletions(-) create mode 100644 public/static/web/images/icon/icon-srevices-more.png create mode 100644 public/static/web/images/new/service-a1.jpg create mode 100644 public/static/web/images/new/service-a2.jpg create mode 100644 public/static/web/images/new/service-a3.jpg create mode 100644 public/static/web/images/new/service-a4.jpg diff --git a/public/static/web/css/base.css b/public/static/web/css/base.css index 708ca4b..f13d4a6 100644 --- a/public/static/web/css/base.css +++ b/public/static/web/css/base.css @@ -134,7 +134,14 @@ textarea { color: #0e357f; } +.color-ashen{ + color: #dab277; +} + /* 背景颜色 */ +.bg-col-ashen{ + background-color: #dab277; +} .bg-col-orange{ background-color: #fe8917; } diff --git a/public/static/web/css/style.css b/public/static/web/css/style.css index e0881c6..25ff927 100644 --- a/public/static/web/css/style.css +++ b/public/static/web/css/style.css @@ -1,6 +1,6 @@ /* 头部 */ .header { - border-bottom: 1px solid rgba(255, 255, 255, .1); + box-shadow: 0 0 1px rgba(255, 255, 255, .3); background-image: url(/static/web/images/public/header-bg.jpg); background-size: 100% 100%; position: fixed; @@ -21,11 +21,11 @@ /* logo */ .logo { - height: 68px; + height: 44px; } .logo img { - height: 68px; + height: 100%; filter: grayscale(100%) brightness(100); } @@ -38,27 +38,48 @@ display: none; } -.nav>a { - margin-left: 45px; - font-size: 17px; - font-weight: 600; +.nav>.nav-item{ + position: relative; +} +.nav>.nav-item>a{ + display: inline-block; + padding: 0 24px; + margin: 0 1px; + font-size: 16px; line-height: 88px; color: #ffffff; - border-bottom: 2px solid rgba(254, 137, 23, 0); } -.nav>a.active { - color: #fe8917; - border-bottom: 2px solid rgba(254, 137, 23, 1); +.nav>.nav-item.active>a{ + background-color: #0e357f; + padding: 0 24px !important; } -.nav>a:first-child { +.nav>.nav-item:first-of-type>a{ margin-left: 0; } +.nav>.nav-item:last-of-type>a{ + padding-right: 0; + margin-right: 0; +} + +/* 二级导航 */ +.nav>.nav-item .sub-nav-item{ + display: none; +} + +.nav>.nav-item .sub-nav-item>a{ + color: #ffffff; + line-height: 60px; + padding: 0 25px; + white-space:nowrap; +} + /* 电话 */ .pull-call { align-items: center; + height: 90px; font-size: 17px; font-weight: normal !important; position: fixed; @@ -91,13 +112,12 @@ filter: none; } -.header-white .nav>a { - color: #333333; +.header-white .nav>.nav-item>a{ + color: #262626; } -.header-white .nav>a.active { - color: #fe8917; - border-bottom: 2px solid rgba(254, 137, 23, 1); +.header-white .nav>.nav-item.active>a{ + color: #ffffff; } .header-white .pull-call>span { @@ -400,6 +420,17 @@ padding: 20px; color: #ffffff; transition: all .6s; + overflow: hidden; + position: relative; +} + +.index-service .right-service>a img{ + width: 100%; + min-height: 100%; + position: absolute; + left: 0; + top: 0; + z-index: -1; } .index-service .left-service p, @@ -417,22 +448,6 @@ margin-top: 6px; } -.index-service .right-service>a:nth-of-type(1) { - background-color: #1e89d0; -} - -.index-service .right-service>a:nth-of-type(2) { - background-color: #5cbaa0; -} - -.index-service .right-service>a:nth-of-type(3) { - background-color: #ff8916; -} - -.index-service .right-service>a:nth-of-type(4) { - background-color: #2cc5f1; -} - /* 首页案例 */ .project-case-bg { background-color: #f5f5f5; @@ -668,8 +683,8 @@ } .management-team-nav>span.active { - color: #fe8917; - border-right: 1px solid #fe8917; + color: #0e357f; + border-right: 1px solid #0e357f; } .management-team-item { @@ -1119,6 +1134,19 @@ padding: 30px; } +.more-btn-other{ + box-sizing: border-box; + display: flex; + justify-content: center; + align-items: center; + width: 130px; + height: 36px; + font-size: 14px; + border: 1px solid #d6d6d6; + margin: 0 auto; + transition: all .6s; +} + .activities-list .activities-item>.txt>h2 { font-size: 20px; transition: all .6s; @@ -1167,7 +1195,7 @@ } .preview-swiper .swiper-slide { - width: 1100px; + width: 1280px; opacity: .3; margin: 0 20px; } @@ -1229,7 +1257,7 @@ height: 66px; overflow: hidden; border-radius: 100%; - left: calc(50% - 650px); + left: calc(50% - 766px); } .preview-swiper .swiper-button-next { @@ -1237,7 +1265,7 @@ height: 66px; overflow: hidden; border-radius: 100%; - right: calc(50% - 650px); + right: calc(50% - 766px); } .preview-swiper .swiper-button-prev>img, @@ -1273,6 +1301,20 @@ color: #ffffff; font-size: 24px; text-align: right; + bottom: 14px !important; +} +.detail-swiper .swiper-pagination-bullet{ + width: 11px; + height: 11px; + background-color: #ffffff; + margin: 0 9px !important; + opacity: 1; +} +.detail-swiper .swiper-pagination-bullet-active{ + background-color: #0e357f; +} +.detail-swiper .swiper-pagination-bullet:last-of-type{ + margin-right: 40px !important; } .detail-swiper .swiper-pagination>em { @@ -1289,6 +1331,7 @@ .detail-swiper .swiper-button-prev, .detail-swiper .swiper-button-next { + display: none; top: auto; left: auto; bottom: 13px; @@ -1433,7 +1476,7 @@ } .news-nav>a.active { - background-color: #fe8917; + background-color: #0e357f; } /* 推荐新闻 */ @@ -1443,7 +1486,7 @@ .news-first { justify-content: space-between; - padding: 30px; + padding: 24px; } .news-first .img { @@ -1491,7 +1534,7 @@ } .news-list { - padding-top: 10px; + padding: 10px 24px 0; } .news-item { @@ -1684,6 +1727,16 @@ position: relative; } +.srevices-more-btn{ + display: block; + width: 42px; + margin-top: 40px; + transition: all .6s; +} +.srevices-more-btn>img{ + width: 100%; +} + .services-list .item .img { width: 70%; height: 100%; @@ -1883,7 +1936,7 @@ } .market-activity .swiper-pagination-bullet-active { - background-color: #fe8917; + background-color: #0e357f; } .market-banner .swiper-pagination-bullet-active { @@ -2004,11 +2057,13 @@ } .red-property-case>a .txt { + justify-content: center; padding: 0; height: auto; font-size: 18px; font-weight: bold; transition: all .6s; + color: #ffffff; } .red-property-case>a .txt>span { @@ -2016,7 +2071,8 @@ } .red-property-case>a .txt>p { - max-width: calc(100% - 40px); + max-width: 100%; + text-align: center; } .red-property-case>a .info>p { @@ -2245,11 +2301,12 @@ .business-map { justify-content: space-between; align-items: center; - padding: 32px 0 50px; + padding: 32px 0 90px; } .business-map .txt { - width: calc(48% - 40px); + width: 100%; + text-align: right; } .business-map .txt>h2 { @@ -2263,7 +2320,7 @@ margin-bottom: 6px; } -.business-map .txt>p { +.business-map .txt p { font-size: 16px; margin-top: 14px; } @@ -2291,9 +2348,7 @@ } .complaint-phone { - justify-content: center; align-items: center; - padding-top: 30px; } .complaint-phone>img { @@ -2342,15 +2397,40 @@ .wap-img { display: none !important; } + + .nav>.nav-item:hover>a{ + background-color: #0e357f; + padding: 0 24px !important; + } + + .nav>.nav-item:hover .sub-nav-item{ + display: flex; + height: 60px; + padding: 0 25px; + background-color: rgba(14, 53, 127, .7); + position: absolute; + left: 50%; + top: 88px; + transform: translateX(-50%); + } + .header-white .nav>.nav-item:hover>a{ + color: #ffffff; + } /* 鼠标移入效果 */ .news-service .new-list>.swiper .swiper-slide:hover .info { color: rgba(14, 53, 127, .68); } - + + .more-btn-other:hover{ + background-color: #0e357f; + color: #ffffff; + border: 1px solid #0e357f; + } + .index-service .left-service:hover em { - background-color: #fe8917; - border: 1px solid #fe8917; + background-color: #0e357f; + border: 1px solid #0e357f; opacity: 1; } @@ -2363,9 +2443,9 @@ } .project-case-title .more:hover { - background-color: #fe8917; + background-color: #0e357f; color: #ffffff; - border: 1px solid #fe8917; + border: 1px solid #0e357f; } .project-case-list>a:hover img { @@ -2394,7 +2474,7 @@ } .history-swiper .swiper-slide:hover .history-time>p { - background-color: #fe8917; + background-color: #0e357f; } .activities-list .activities-item:hover .img>img { @@ -2406,8 +2486,8 @@ } .load-more:hover { - background-color: #fe8917; - border: 1px solid #fe8917; + background-color: #0e357f; + border: 1px solid #0e357f; color: #ffffff; } @@ -2431,13 +2511,17 @@ } .load-more-news:hover { - color: #fe8917; + color: #0e357f; cursor: pointer; } .services-list .item:hover .img>img { transform: scale(1.1); } + + .services-list .item:hover .srevices-more-btn{ + margin-left: 20px; + } .market-item:hover img { transform: scale(1.1); @@ -2699,7 +2783,7 @@ /* logo */ .logo { - height: .66rem; + height: .55rem; } .logo img { @@ -2779,21 +2863,34 @@ } .nav>span>img { - height: .66rem; + height: .55rem; } - .head .nav>a { + .head .nav>.nav-item { display: block; width: 100%; - font-size: .32rem; - line-height: 1rem; - margin: 0; font-weight: normal; border-bottom: 1px solid #ececec; } + + .head .nav>.nav-item>a{ + font-size: .32rem; + line-height: 1rem; + margin: 0; + padding: 0; + } + .nav>.nav-item.active{ + border-bottom: 1px solid #09357f; + } - .header-white .nav>a.active { - border-bottom: 1px solid #ececec; + .nav>.nav-item.active>a{ + width: 100%; + background-color: rgba(0, 0, 0, 0); + color: #09357f !important; + padding: 0 !important; + } + .nav>a{ + margin-left: 0; } .pull-call { @@ -2802,6 +2899,7 @@ transform: none; border-bottom: 0 !important; padding-top: 30px; + font-size: 0.32rem; } .head .nav.active { @@ -2961,6 +3059,12 @@ .pull-section { padding: .4rem 0; } + + .more-btn-other{ + width: 1.3rem; + height: .36rem; + font-size: .16rem; + } /* 走进中正 */ .index-about { @@ -3151,8 +3255,12 @@ } .news-service .new-list .swiper-slide { - width: 5.3rem; - margin: 0 .2rem; + width: 6rem; + margin: 0 .12rem; + opacity: .6; + } + .news-service .new-list .swiper-slide-active{ + opacity: 1; } .news-service .new-list .swiper-slide>div { @@ -3187,6 +3295,17 @@ font-size: .18rem; margin-top: .12rem; } + + .project-case-list>a>.img{ + height: 2.24rem; + } + .project-case-list>a .txt{ + height: .6rem; + font-size: .24rem; + } + .project-case-list>a>.txt span{ + font-size: .24rem; + } /* 分页样式 */ .new-list .swiper-pagination-bullet { @@ -3232,16 +3351,30 @@ height: 0; opacity: 0; } + + .position-nav-bg { + background-color: #ffffff !important; + padding-top: .24rem; + } + + .pull-section-wap{ + padding-top: .24rem; + } .sub-nav>a { - margin-left: .6rem; + margin-left: .09rem; font-size: .26rem; - line-height: .87rem; - border-bottom: .03rem solid rgba(14, 53, 127, 0); + line-height: .8rem; + padding: 0 .25rem; + color: #333333; + background-color: #e7dab7; + text-align: center; + font-weight: normal; } .sub-nav>a.active { - border-bottom: .03rem solid #0e357f; + background-color: #dab277; + color: #ffffff; } .company-profile { @@ -3318,6 +3451,14 @@ margin-bottom: 1px; border-right: 0 !important; } + .management-team-nav>span::after { + content: ""; + display: block; + width: .18rem; + height: .1rem; + background-image: url(/static/web/images/icon/icon-foot-arrow.png); + background-size: 100%; + } .management-team-nav>span.active { color: #ffffff; @@ -3331,6 +3472,7 @@ height: .1rem; background-image: url(/static/web/images/icon/icon-foot-arrow.png); background-size: 100%; + transform: rotateZ(180deg); } .management-team-item { @@ -3572,7 +3714,7 @@ /* 品牌活动 */ .activities-list .activities-item { width: 100%; - height: 2.3rem; + height: 2.4rem; } .activities-list .activities-item:nth-of-type(even) { @@ -3601,7 +3743,7 @@ } .activities-list .activities-item>.img>img { - min-height: 2.3rem; + min-height: 100%; } .article-more-btn { @@ -3633,12 +3775,14 @@ } .preview-item .txt { + width: 55%; padding: .15rem .2rem; } .preview-item .txt h2 { font-size: .26rem; -webkit-line-clamp: 2; + line-height: 1.3; } .preview-item .txt p { @@ -3650,11 +3794,12 @@ } .preview-item .img { - height: 2.4rem; + height: 2.3rem; + width: 45%; } .preview-item .img>img { - min-height: 2.4rem; + min-height: 100%; } .preview-swiper .swiper-button-prev { @@ -3789,6 +3934,9 @@ flex-wrap: wrap; padding: .26rem 0; } + .srevices-more-btn{ + width: .42rem; + } .news-nav>a { display: flex; @@ -3802,6 +3950,14 @@ color: #333333; margin-right: 0; } + .news-nav>a::after { + content: ""; + display: block; + width: .18rem; + height: .1rem; + background-image: url(/static/web/images/icon/icon-foot-arrow.png); + background-size: 100%; + } .news-nav>a.active { color: #ffffff; @@ -3815,6 +3971,7 @@ height: .1rem; background-image: url(/static/web/images/icon/icon-foot-arrow.png); background-size: 100%; + transform: rotateZ(180deg); } .news-first-bg { diff --git a/public/static/web/images/icon/icon-srevices-more.png b/public/static/web/images/icon/icon-srevices-more.png new file mode 100644 index 0000000000000000000000000000000000000000..0ce8437a9bf0f5fbd6077361a46c3bbe6b3c82cf GIT binary patch literal 1143 zcmaJ>TWHfz7!F$0ZEg(3hbhA>6H!^4q)WFYuI|#bwqR%Nst!doOU~A~B_}3lww%AJ_C}gk z7Us{-CkUc26cnR)T!!C;vu5CL8g2IDp#=F`P%~^p3CRRRg92Lt8PcS75CxKw+I9=n z62$byYODpdgjWeN)LfE{aV0eavk9WME@?<|2S8*iXjgSF_2Kdric}RZwcZnE!iEpT z)nK;?n!B4~a(9Q!D^%SIvNkDT0SzFDOlqCFB_zGngsy<+_BKtC6A;wlrG6*X5{{5Q zXadsXs&dLK=OL?k7h6@y@q7j8X4o2YlMjWXnM#`w6$6v8@XAZY z5i$gtP9zepM5POw?KI2tJk7Xix7&#kPAjD&De2U$@~nagEZI~Iq(Ysv6{S|#g}fBb z^mhrGF(s>8lWoEcqmzlYgX4b{BI&9jW3s|m1NmMcQJO9MK}a+N<^HYeA%gJ$5!A~4nM zKna*oBPYrh)SS79{+xP~TqS2NVjw4%#>vq3;r?~l*)8lKdpc!ZyqGdS(6Qr9Z0&u) z^m%+O-h{-4Sn}E3r_Q45^~Jp}E}VKfCw|c}W9KVJkQ=y>d0Q5|dad*vd2!mIo&yIR z4+f8_?lJ9SU!OkMc~2Sp(RP@3ejUB@&3v)zNM^ya4b@AIW)_YFp1i))y8Cu_=ES^r zd8NBQ_5PIU`JImOJ)6{XYa*ViIj64&dM8>)!QC_|2$nt72Q9+A0rkm7@2#^@!mgNKQoQ_3dfa{4y=J-n3;u3O&`f(a@ zFewT8Ep8|73SVdkuuVJ+CB9KHgt`PbWnO61>azR@idCVBs!b%+Dndi4R~1o&Bjac{ z&pc5M)%{T~8nw95p@zdDKdkY@J4J#l%cv?MQLNC4ihu3|dRTG%jWL6YeZ#Zdz#j#H;I`6H-e)rtP=n(s4;2D^fZ^U3% zX?s`?h}R|LY`n#T9tnuwBQ9*WCP zXsS|El6HknLD*B9n>#yuQbSTzQEcotn`5j>jDd}vV2m}V*v3q3EC<`AomK2vuduoA z5gR7QR;<~x)MoOHu;%Pp>NBy34uj&$y>{8-6je~{PNYkNiTJTY74K1LM_<80B3NKv z(kH}3pTTR8O{deDbT*U8-p$f)E}zZj=Zb~GT%k}b6%#8J7Zyv43&nDIX{lUZUt3#S zzc(=^m&?r;=T}OlmDOc-d3EyRZ=L88uz3)I?9f@dt9oCUpP+ literal 0 HcmV?d00001 diff --git a/public/static/web/images/new/service-a2.jpg b/public/static/web/images/new/service-a2.jpg new file mode 100644 index 0000000000000000000000000000000000000000..42a6ee4139bf01f57a2706cea589e471bfc745c5 GIT binary patch literal 1490 zcmeHGO;6iE5M7gyq#;18fP?^vmASN4Y*I^Bl>aTSgC67y|`;P9|%a*OK%;?(#&|?o7vg7(Z}cptTaRG6o6LiDae6|Mc)9c z^^M*IU_hFtcL9iQQm7jQu8NT3^SVh+FmDhWg}RGGUO-@XFLZUIhXZ(m&n&0L{do7D zgO*w2j^(z{b{n{By}0!7>&sV1#%0e?Om6Qv+zr*xc5NK!FtpDdUkz(qLatIjP9qK` zB|)#o)#I-4P5Tfwh=-xfZ|jiZzPK7#FzX&>Cxt-^Nu&!x5Far2iv8cHSAe$v3cMT z8z#qAt?9E!Q~8EibNVcmsaQmZLGk6@y6jPkDkyfx(xt&z{Mez2_o%d^?_ePjEHJO> z6Jnw-;0k2Y>GW(mGdr7kl%d~TE|ba474rGHe7;aDBvvdeEEX3R3Z>H0QmM4Qwzjsu zF*YWf&CVC*SBk}z)n#^hb^PORo#+~{IS_)MDTW0zER$lH=mU5O7-sVN6K{sOm&z9J h76JBNCi)BtDTY#~Sg;4KzIN{L{ty4n1~#HkzW})NClLSu literal 0 HcmV?d00001 diff --git a/public/static/web/images/new/service-a3.jpg b/public/static/web/images/new/service-a3.jpg new file mode 100644 index 0000000000000000000000000000000000000000..4754312de055ccc7c773bb9b24d57dd38c49fe42 GIT binary patch literal 1491 zcmeHG%}(1u5MDPSNrQn{0SN(8SLV`Ijn@wO!4@e>Z4f!QLKKN!jlB>n*lXENV>tH} z`UHJ~o_i>VK16>`+^hE9i@SF711+g~>8&GKnidEbm122>_kWLr?${ zi@yL)>zloEzw<0BSJO_scjGQw!P@)!}k}K3t z(ujv?N!V-g?W8MwuJ1#Y_!!oOM#YqBb=Z^zsj*R$w{;M@(3sNx3eBL)ozrf++p zO@$ zo`5|?^|28W|B#Tg(H8f+BqTwXcu-Z7t;z8Ik?mS!5IjgRx~_EGAT(SPceEBySp?g* z6jiM5s#;C1KarY}w4=4K1*{d-w%ZrQU^4jX^ z>e{`rG5LIcj-6XBm6lhQxTTfxkH2-|OTZOC1ioh&4&33G49CRpfesjE^7>OR&rrLW l%jHYIWB}lP%fz1mn_(z-h6CH+^_y3FH(CBi|7Zj8#~&!@CaeGe literal 0 HcmV?d00001 diff --git a/public/static/web/images/new/service-a4.jpg b/public/static/web/images/new/service-a4.jpg new file mode 100644 index 0000000000000000000000000000000000000000..d863ea160f2c4052b85c5c09d82bbe530342ab2e GIT binary patch literal 1491 zcmeHGO>fgc5M7hh2}#<HcOuU)`#6Nh_|$e={I|F7 zcxYQK{-~~ty4S`%``Lw$UtBytG%xz5V(~kV;dZ1(j_2UefRS_N25QveQ*xF1NgDAm zEeZQAemCg~U+Vj?O?(XNLZfO*n|0V!1gTNmRFp?h7NspDZXu~wl^W`%sLC=N8Be?U z)`@zcbw<5t)Z#~n8V-lTuqF`y6iJGrAW=rLT%{G&;M@(3sOknAV+IWerf++pO@$k$^q5 z?PDV({vjb}<1Oy@NJxSn@nE~1Y)ygpk8IZ>!{9-R(RH=!2BG1axU02z$|BgdrM8v2 z)RDKO`ctVXNqgF^))4pPhE{JXoqDI%7-KbJ4jk-;W2`mB$}_Qv92}2!*068C!dAy8 z4or`&+B0Wqc4qR8u-5EZ#FX?mzyumuawIxtIOQ->g31YI`Jjo@*o1=GYkjra7>0{;`cxY3^RTGsmC(ZZsyor j`Iig;+;5rq6DVaE%AMiB4tQf0pWI~mAN`vRF!9G9Bf=&> literal 0 HcmV?d00001 diff --git a/public/static/web/js/script.js b/public/static/web/js/script.js index cce070e..d217acc 100644 --- a/public/static/web/js/script.js +++ b/public/static/web/js/script.js @@ -25,7 +25,6 @@ $(function(){ }); } - // 轮播动画 if($('.banner-swiper').length){ var bannerSwiper = new Swiper('.banner-swiper',{ @@ -184,12 +183,7 @@ $(function(){ }, pagination: { el: '.detail-swiper .swiper-pagination', - type: 'fraction', - renderFraction: function (currentClass, totalClass) { - return '' + - '/' + - ''; - }, + clickable :true, }, navigation: { nextEl: '.detail-swiper .swiper-button-next', diff --git a/view/article/service.html b/view/article/service.html index a5a6d4a..d2ffe77 100755 --- a/view/article/service.html +++ b/view/article/service.html @@ -16,7 +16,7 @@ if (!$topNews->isEmpty()) { {include file="public/about_second" /} -
+
{foreach $items as $item} @@ -25,7 +25,7 @@ if (!$topNews->isEmpty()) {

{$item.title}

{$item.title_en}

- 查看详情查看详情 + 查看详情
{/foreach} diff --git a/view/index/index.html b/view/index/index.html index 939a94a..71e7eee 100755 --- a/view/index/index.html +++ b/view/index/index.html @@ -6,8 +6,8 @@ {foreach $slide as $slideItem} -{if $isMobile} +{if $isMobile&&1==2} {/if} @@ -69,7 +69,7 @@
{foreach $news as $n}
-
{$n.title ?? ''}
+
{$n.title ?? ''}
{:date('Y.m.d', $n.create_time)}
{$n.title}
@@ -86,7 +86,7 @@
- {$blocks['home_service_img']['alt'] ?? ''} + {$blocks['home_service_img']['alt'] ?? ''}

{$blocks['home_service_img']['summary'] ?? ''}

{$blocks['home_service_img']['title'] ?? ''} @@ -95,18 +95,22 @@
-
+
{foreach $casesList as $case} -
{$case.title}
+
{$case.title}

{$case.title}

+ diff --git a/view/page/activity.html b/view/page/activity.html index a65d315..d9342dc 100755 --- a/view/page/activity.html +++ b/view/page/activity.html @@ -27,7 +27,7 @@ $previewList = Article::getList(Category::CATEGORY_BRAND_ACTIVITY, 10, null, ['i

{$item.title}

{$item.summary}

- 查看详情查看详情 + 查看更多
{/foreach} diff --git a/view/page/advice.html b/view/page/advice.html index 7374911..d0787cc 100755 --- a/view/page/advice.html +++ b/view/page/advice.html @@ -20,7 +20,6 @@ $childrenMenu = Category::getChildrenByParentId($topCategoryId); - - --> diff --git a/view/page/caseslist.html b/view/page/caseslist.html index 87dabf3..eb2780e 100755 --- a/view/page/caseslist.html +++ b/view/page/caseslist.html @@ -13,7 +13,7 @@ $items = CasesModel::getByParentId($category['id'],true,$category['number'] ?: 6