| 123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596979899100101102103104105106107108109110111112113114115116 |
- @charset "UTF-8";
- /* 页面左右间距 */
- /* 文字尺寸 */
- /*文字颜色*/
- /* 边框颜色 */
- /*颜色*/
- /* 图片加载中颜色 */
- /* 行为相关颜色 */
- /* 功能栏字体大小 */
- /*功能栏左侧小图标*/
- page,
- .content {
- min-height: 100%;
- height: auto;
- background: #f8f8f8;
- }
- .box {
- width: 730rpx;
- margin: 20rpx auto 0;
- border-radius: 20rpx;
- background: #ffffff;
- padding: 20rpx;
- }
- .box .title .title-font {
- font-size: 32rpx;
- font-family: PingFang SC;
- font-weight: 800;
- color: #303030;
- }
- .box .title .title-font text {
- display: inline-block;
- margin-left: 10rpx;
- color: #999999;
- font-size: 28rpx;
- font-family: PingFang SC;
- font-weight: 500;
- }
- .box .title .title-btn {
- width: 150rpx;
- height: 50rpx;
- display: flex;
- justify-content: center;
- align-items: center;
- border: 1px solid #e66f6f;
- border-radius: 30rpx;
- color: #e66f6f;
- }
- .box .box-info {
- background: #f6f6f6;
- width: 700rpx;
- padding: 20rpx;
- margin: 20rpx auto 0;
- }
- .box .box-info .info-title {
- font-size: 28rpx;
- font-family: PingFang SC;
- font-weight: 800;
- color: #303030;
- }
- .box .box-info .info-tip {
- font-size: 26rpx;
- font-family: PingFang SC;
- font-weight: 500;
- color: #303030;
- }
- .box .box-info .info-url {
- margin-top: 20rpx;
- font-size: 26rpx;
- font-family: PingFang SC;
- font-weight: 500;
- color: #666666;
- }
- .box .image-box {
- margin-top: 20rpx;
- display: flex;
- align-items: center;
- flex-wrap: wrap;
- }
- .box .image-box .image-item {
- margin: 10rpx;
- position: relative;
- width: 32%;
- height: 300rpx;
- }
- .box .image-box .image-item .isxuan {
- position: absolute;
- top: 20rpx;
- right: 20rpx;
- width: 30rpx;
- height: 30rpx;
- border-radius: 50%;
- background: #e04b4b;
- }
- .box .image-box .image-item image {
- width: 100%;
- height: 100%;
- }
- .btn {
- margin: 0 auto;
- position: fixed;
- bottom: 20rpx;
- left: 0;
- right: 0;
- width: 710rpx;
- height: 80rpx;
- display: flex;
- justify-content: center;
- align-items: center;
- background: #e04b4b;
- color: #ffffff;
- font-size: 26rpx;
- font-family: PingFang SC;
- font-weight: 500;
- border-radius: 50rpx;
- }
|