| 123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596979899100101102103104105106107108109110111112113114115116117118119120 |
- @charset "UTF-8";
- /* 页面左右间距 */
- /* 文字尺寸 */
- /*文字颜色*/
- /* 边框颜色 */
- /*颜色*/
- /* 图片加载中颜色 */
- /* 行为相关颜色 */
- /* 功能栏字体大小 */
- /*功能栏左侧小图标*/
- page {
- background: #f8f6f6;
- height: 100%;
- }
- page .container {
- width: 100%;
- height: 100%;
- }
- page .container .swiper-box {
- height: 90%;
- padding-top: 25rpx;
- }
- .nodata {
- width: 430rpx;
- margin: 0rpx auto;
- padding-top: 80rpx;
- }
- .nodata image {
- width: 430rpx;
- height: 337rpx;
- }
- .nodata .text {
- text-align: center;
- color: #999999;
- font-size: 26rpx;
- }
- .swiper-box {
- height: calc(100% - 40px);
- }
- .list-scroll-content {
- height: 100%;
- }
- .navbar {
- overflow: hidden;
- white-space: nowrap;
- background: #fff;
- padding: 0rpx 25rpx;
- box-shadow: 0 1px 5px rgba(0, 0, 0, 0.06);
- }
- .navbar .nav-item {
- text-align: center;
- display: inline-block;
- height: 100%;
- font-size: 28rpx;
- color: #303133;
- position: relative;
- width: 25%;
- padding: 25rpx 0rpx;
- }
- .navbar .nav-item.current {
- color: #ff6666;
- }
- .navbar .nav-item.current:after {
- content: '';
- position: absolute;
- left: 50%;
- bottom: 0;
- -webkit-transform: translateX(-50%);
- transform: translateX(-50%);
- width: 35px;
- height: 0;
- border-bottom: 2px solid #ff6666;
- }
- .call-btn image {
- width: 100rpx;
- height: 100rpx;
- }
- .content-box {
- width: 90%;
- margin: 0rpx auto;
- background-color: #ffffff;
- border-radius: 15rpx;
- padding: 47rpx 30rpx;
- font-size: 24rpx;
- line-height: 60rpx;
- color: #666666;
- margin-bottom: 25rpx;
- }
- .item .name {
- font-size: 28rpx;
- color: #333333;
- font-weight: 500;
- }
- .call-btn image {
- width: 100rpx;
- height: 100rpx;
- }
- .box-btn {
- width: 80%;
- margin: 0rpx auto;
- margin-top: 30rpx;
- text-align: center;
- }
- .box-btn .accept {
- background: #ff4f4f;
- color: #ffffff;
- padding: 0rpx 30rpx;
- width: 35%;
- }
- .box-btn .refuse {
- background: #f3f3f3;
- width: 35%;
- padding: 0rpx 30rpx;
- }
- .tpl {
- font-size: 28rpx;
- font-weight: bold;
- color: #ff4f4f;
- }
|