123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596979899100101102103104105106107108109110111112113114115116117118119120121122123124125126127128129130131132133134135136137138139140141142143144145146147148149150151152153154155156157158159160161 |
- /* pages/item/item.wxss */
- page{
- background: #000;
- color: #ffffff;
- margin-top: 30px;
- }
- ec-canvas {
- width: 100%;
- height: 100%;
- }
- .title{
- background:#1C1C1C;
- padding: 10px;
- }
- .title .title-button{
- text-align: right;
- }
- .title .title-button button{
- background: none;
- border: 1px solid slategrey;
- width: 80px;
- height: 25px;
- font-size: 12px;
- color: #ffffff;
- }
- .title .title-name{
- border-bottom: 1px solid slategrey;
- height: 50px;
- margin-top: -20px;
- }
- .title .title-name .title-name-Big{
- font-size: 28px;
- }
- .title .title-name .title-name-small{
- font-size: 18px;
- color: #d6d1d1;
- margin-left: 10px;
- }
- .title .tile-number{
- margin-top: 10px;
- }
- .title .tile-number .tile-number-Volume{
-
- }
- .title .tile-number .tile-number-float{
- color: crimson;
- margin-left: 20px;
- }
- .swiper-tab {
- width: 100%;
- text-align: center;
- line-height: 80rpx;
- }
- .swiper-tab-list {
- font-size: 30rpx;
- display: inline-block;
- width: 30%;
- color: #777;
- }
- .on {
- color: #D81E06;
- border-bottom: 5rpx solid #D81E06;
- }
- .swiper-box {
- display: block;
- height: 100%;
- width: 100%;
- overflow: hidden;
- color: #fff;
- }
- .swiper-box .swiper-box-view {
- display: flex;
- justify-content: space-between;
- align-items: center;
- margin: 10rpx;
- border-bottom: 1rpx slategray solid;
- }
- .map{
- background:#1C1C1C;
- padding: 10px;
- margin-top: 10px;
- }
- .map .map-line {
- float: right;
- display: flex;
- align-items: center;
- }
- .map .map-line text{
- margin-left: 5px;
- }
- .map .map-line .map-line-red{
- display: inline-block;
- width: 30px;
- height: 2px;
- background: #D81E06;
- }
- .map .map-line .map-line-blue{
- display: inline-block;
- width: 30px;
- height: 2px;
- background:#80CDF8;
- }
- .news{
- width:90%;
- margin: 10px 0 20px 10px;
- }
- .news-today{
- color: #fff;
- font-size: 40rpx;
- }
- .content-item {
- /* height: 50rpx; */
- /* border-bottom: 1rpx solid #ede1d4; */
- width: 100%;
- display: flex;
- flex-direction: column;
- background: #1C1C1C;
- /* margin-bottom: 10rpx; */
- }
- .from{
- font-size: 24rpx;
- margin-left: 20rpx;
- color: #999;
- margin-top:10rpx;
- }
- .name {
- font-size: 30rpx;
- /* line-height: 100rpx; */
- color: #fff;
- margin:10rpx 20rpx;
- /* width: 100%; */
- height:100%;
- overflow: hidden;
- /* border: 1rpx solid red; */
- }
- .wawa {
- font-size: 26rpx;
- margin-left:20rpx;
- /* float: right; */
- /* line-height: 100rpx; */
- /* margin-right: 20rpx; */
- color: #999;
- }
- .time{
- font-size: 24rpx;
- margin-left:20rpx;
- color: #999;
- margin-top:10rpx;
- margin-bottom: 10rpx;
- }
|