| 12345678910111213141516171819202122232425262728293031323334353637383940414243444546474849505152535455565758596061626364656667686970717273747576777879808182838485868788899091 |
- .sageContainer::-webkit-scrollbar {
- display: none; /* Chrome Safari */
- }
- .sageContainer {
- width: 100%;
- overflow: hidden;
- overflow-x: auto;
- display: flex;
- padding: 0 16px;
- box-sizing: border-box;
- flex-wrap: nowrap;
- .sage {
- position: relative;
- margin-right: 12px;
- width: 110px;
- padding: 15px 0;
- flex-shrink: 0;
- background-color: #fff;
- box-shadow: 0px 2px 10px 0px rgba(229, 229, 229, 0.1);
- border-radius: 10px;
- text-align: center;
- .animation {
- position: absolute;
- width: 13px;
- height: 12px;
- top: 9px;
- right: 8px;
- }
- .header {
- position: relative;
- border: 2px solid var(--van-primary);
- width: 58px;
- height: 58px;
- border-radius: 50%;
- margin: 0 auto;
- .living {
- position: absolute;
- bottom: -6px;
- left: 5px;
- background: linear-gradient(216deg, #ff8b39 0%, #ff4046 100%);
- border-radius: 7px;
- border: 1px solid #ffffff;
- font-size: 12px;
- padding: 2px 0;
- width: 48px;
- color: #ffffff;
- border-radius: 10px;
- }
- }
- .img {
- width: 58px;
- height: 58px;
- position: relative;
- > img,
- > div {
- position: absolute;
- border-radius: 50%;
- overflow: hidden;
- }
- }
- .username {
- font-size: 14px;
- font-weight: 600;
- padding-top: 12px;
- color: #333333;
- line-height: 20px;
- max-width: 88px;
- white-space: nowrap;
- overflow: hidden;
- text-overflow: ellipsis;
- margin: 0 auto;
- }
- .cert {
- font-size: 12px;
- color: #999999;
- line-height: 17px;
- padding: 4px 0 8px;
- }
- .btn {
- padding: 12px 0;
- width: 60px;
- font-size: 13px;
- &.van-button--disabled {
- opacity: 1;
- }
- }
- }
- }
|