123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596979899100101102103104105106107108109110111112113114115116117118119120121122123124125126127128129130131132133134135136137138139140141142143144145146147148149150151152153154155156157158159160161162163164165166167168169170171172173174175176177178179180181182183184185186187188189190191192193194195196197198199200201202203204205206207208 |
- /* pages/publics/publics.wxss */
- .limit-text-1 {
- display: -webkit-box;
- -webkit-line-clamp: 1;
- overflow: hidden;
- text-overflow: ellipsis;
- -webkit-box-orient: vertical;
- word-break: break-all;
- /*强制英文单词自动换行*/
- }
- .limit-text-3 {
- display: -webkit-box;
- -webkit-line-clamp: 3;
- overflow: hidden;
- text-overflow: ellipsis;
- -webkit-box-orient: vertical;
- word-break: break-all;
- /*强制英文单词自动换行*/
- }
- /* 顶部栏 */
- .top {
- position: relative;
- }
- /* 顶部栏 logo */
- .top-logo {
- z-index: 99;
- position: absolute;
- left: 50%;
- transform: translate(-50%, 0);
- width: 426rpx;
- height: 150rpx;
- }
- /* 顶部栏 搜索 */
- .top-serach {
- z-index: 99;
- position: absolute;
- left: 50%;
- bottom: 160rpx;
- transform: translate(-50%, 0);
- display: flex;
- }
- /* 顶部栏 搜索 */
- .search-input {
- padding: 0 30rpx;
- width: 434rpx;
- height: 72rpx;
- line-height: 72rpx;
- border-radius: 10rpx 0 0 10rpx;
- background-color: rgba(255, 255, 255, 0.6);
- }
- /* 顶部栏 搜索 */
- .search-button {
- border: none;
- width: 103rpx !important;
- height: 72rpx !important;
- line-height: 72rpx;
- padding: 0;
- background-color: rgba(80, 143, 244, 0.6);
- border-radius: 0 10px 10px 0;
- }
- /* 顶部栏 搜索 */
- .search-button image {
- width: 32rpx;
- height: 33rpx;
- text-align: center;
- margin-top: 19rpx;
- }
- /* 区政府领导 */
- .learder {
- position: relative;
- margin-top: -130rpx;
- background-color: #FFFFFF;
- border-radius: 6px;
- padding-bottom: 44rpx;
- }
- /* 区政府领导 */
- .learder image {
- width: 100px;
- height: 120px;
- }
- .swiper-name {
- font-size: 28rpx;
- color: #333333;
- }
- .swiper-item {
- font-size: 20rpx;
- color: #999999;
- margin-left: 10rpx;
- overflow: hidden;
- text-overflow: ellipsis;
- white-space: nowrap;
- }
- /* 标题栏 */
- .content-top {
- padding: 30rpx 34rpx 20rpx 41rpx;
- height: 32rpx;
- }
- /* 标题栏 */
- .content-title {
- line-height: 32rpx;
- font-size: 32rpx;
- font-weight: bold;
- color: #333333;
- margin-right: auto;
- }
- /* 标题栏 */
- .content-line {
- border-left: 6rpx solid #508FF4;
- height: 32rpx;
- margin-right: 20rpx;
- }
- /* 标题栏 */
- .content-more {
- color: #999999;
- font-size: 24rpx;
- height: 32rpx;
- }
- /* 政策文件 */
- .tab-item {
- font-size: 30rpx;
- text-align: center;
- line-height: 60rpx;
- color: #333333;
- height: 54rpx;
- display: flex;
- justify-content: center;
- flex-direction: row;
- }
- .tab-item.active {
- font-size: 30rpx;
- border-bottom: 7rpx solid #508FF4;
- position: relative;
- }
- /* 政策解读 */
- .policy-interpretation {
- background-color: #FFFFFF;
- border-radius: 12rpx;
- box-shadow: 0rpx 2rpx 5rpx 0rpx rgba(153, 153, 153, 0.17);
- margin: 0 20rpx;
- }
- scroll-view ::-webkit-scrollbar {
- display: none;
- width: 0;
- height: 0;
- color: transparent;
- }
- /* 滑动 */
- .scroll-wrapper {
- white-space: nowrap;
- -webkit-overflow-scrolling: touch;
- background: #FFF;
- height: 90rpx;
- padding: 0 32rpx;
- box-sizing: border-box;
- }
- /* 滑动块 */
- .navigate-item {
- display: inline-block;
- text-align: center;
- height: 80rpx;
- line-height: 90rpx;
- margin: 0 30rpx;
- position: relative;
- }
- /* 滑动块 */
- .names {
- font-size: 28rpx;
- color: #333333;
- height: 100%;
- }
- /* 滑动块 */
- .currtline {
- margin: -8rpx auto 0 auto;
- width: 100rpx;
- height: 6rpx;
- border-radius: 4rpx;
- }
- /* 滑动块 */
- .currtline.active {
- background: #508FF4;
- height: 7rpx;
- transition: all .3s;
- }
|