123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596979899100101102103104105106107108109110111112113114115116117118119120121122123124125126127128129130131132133134135136137138139140141142143144145146147148149150151152153154155156157158159160161162163164165166167168 |
- @charset "UTF-8";
- /**
- * 这里是uni-app内置的常用样式变量
- *
- * uni-app 官方扩展插件及插件市场(https://ext.dcloud.net.cn)上很多三方插件均使用了这些样式变量
- * 如果你是插件开发者,建议你使用scss预处理,并在插件代码中直接使用这些变量(无需 import 这个文件),方便用户通过搭积木的方式开发整体风格一致的App
- *
- */
- /* uni.scss */
- /* 页面左右间距 */
- /* 文字尺寸 */
- /* 文字尺寸 */
- /*文字颜色*/
- /* 边框颜色 */
- /* 图片加载中颜色 */
- /* 行为相关颜色 */
- /* 颜色变量 */
- /* 项目主色 */
- /* 文字基本颜色 */
- .red {
- color: #f60808;
- }
- .green {
- color: #15ab54;
- }
- .yellow {
- color: #f0ad4e;
- }
- .blue {
- color: #1f96f6;
- }
- .blank {
- color: #000;
- }
- .white {
- color: #fff;
- }
- .promain {
- color: #025b58;
- }
- .prosecond {
- color: #ed742f;
- }
- .textmain {
- color: #333;
- }
- .textgrey {
- color: #999;
- }
- .fuColor {
- color: #c6cadb;
- }
- .fontssm {
- font-size: 22rpx;
- }
- .fontsm {
- font-size: 24rpx;
- }
- .fontmid {
- font-size: 28rpx;
- }
- .fontbase {
- font-size: 30rpx;
- }
- /* 背景颜色 */
- /* 边框颜色 */
- /* input 样式 */
- .input-placeholder {
- color: #999999;
- }
- .navigator-hover {
- background: transparent !important;
- opacity: 1;
- }
- .uni-page-head-transparent .uni-page-head-btn {
- background: transparent !important;
- }
- uni-toast {
- z-index: 99999;
- }
- button {
- background: transparent;
- }
- button::after {
- border: 0;
- }
- .content {
- min-height: 100vh;
- padding: 32rpx 30rpx 120rpx;
- background-color: #fff;
- }
- .content .newshead {
- font-size: 36rpx;
- font-family: PingFangSC-Medium, PingFang SC;
- font-weight: 600;
- line-height: 58rpx;
- margin-bottom: 8rpx;
- }
- .content .time {
- line-height: 40rpx;
- }
- .content .newsCon {
- margin-top: 30rpx;
- line-height: 42rpx;
- font-size: 30rpx;
- }
- .content .talkBox {
- border-top: 1rpx solid #ececec;
- margin-top: 30rpx;
- padding: 30rpx 0 0;
- }
- .content .talkBox .title {
- font-size: 28rpx;
- }
- .content .talkBox .leRiBox .left {
- width: 76rpx;
- height: 76rpx;
- margin-right: 24rpx;
- border-radius: 50%;
- }
- .content .talkBox .leRiBox .right {
- padding: 30rpx 0;
- flex: 1;
- }
- .content .talkBox .leRiBox .right .tigTop {
- font-family: PingFangSC-Semibold, PingFang SC;
- font-weight: 600;
- line-height: 44rpx;
- }
- .content .talkBox .leRiBox .right .tigTop text {
- font-size: 26rpx;
- color: #999999;
- line-height: 36rpx;
- flex: 1;
- font-weight: 400;
- margin: 0 20rpx;
- }
- .content .talkBox .leRiBox .right .tigTop image {
- width: 44rpx;
- height: 44rpx;
- }
- .content .talkBox .leRiBox .right .cont {
- margin-top: 12rpx;
- font-size: 28rpx;
- color: #333333;
- line-height: 40rpx;
- }
- .content .fixBox .editicon {
- position: absolute;
- left: 60rpx;
- width: 40rpx;
- height: 40rpx;
- padding: 3rpx;
- }
- .content .fixBox input {
- flex: 1;
- font-size: 28rpx;
- height: 76rpx;
- background: #f6f6f6;
- border-radius: 38rpx;
- padding: 0 30rpx 0 78rpx;
- }
- .content .fixBox .share {
- margin-left: 30rpx;
- width: 40rpx;
- height: 40rpx;
- }
|