123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051 |
- /* pages/patentDetails/patentDetails.wxss */
- .line{
- border-top: 2rpx solid var(--themeColor) !important;
- color: var(--themeColor) !important;
- font-weight: bold !important;
- font-size: 15px !important;
- }
- .line::before{
- width: 0px !important;
- }
- .line>.wux-divider__text{
- padding-left: 0px !important;
- }
- .form{
- padding: 0 10px;
- }
- .swiper{
- height: 200rpx;
- }
- .slide-image {
- width: 100%;
- height: 100%;
- background-size:contain; /* 图片覆盖整个容器,可能部分图片不可见 */
- background-position: center; /* 图片居中显示 */
- background-repeat: no-repeat; /* 图片不重复 */
- }
- .patentDetail{
- padding: 10px 25rpx;
- }
- .patentNo{
- border-radius: 10rpx;
- background-color: var(--themeColor);
- width: fit-content;
- padding: 8px;
- margin-left: 10px;
- color: #ffffff;
- }
- .title{
- margin-top: 10px;
- margin-left: 10px;
- font-weight: bold;
- }
- .form_item{
- padding:0 10rpx;
- font-size: 14px;
- font-weight: normal;
- color: var(--themeColor);
- /* width: fit-content;
- border-radius: 10rpx;
- border: 1px solid var(--themeColor); */
- }
|