123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081 |
- .collection-detail {
- --el-dialog-margin-top: 8vh;
- --el-dialog-bg-color: transparent;
- --el-dialog-box-shadow: none;
- .el-dialog__body {
- display: flex;
- align-items: flex-start;
- gap: 30px;
- }
- .el-dialog__close {
- --el-color-info: white;
- width: 40px;
- height: 40px;
- border-radius: 50%;
- background: var(--van-primary-color);
- svg {
- width: 22px;
- height: 22px;
- }
- }
- .el-dialog__headerbtn {
- top: 26px;
- right: -40px;
- &:hover .el-dialog__close {
- color: white;
- }
- }
- &-preview,
- &-info {
- padding: 20px;
- background: var(--white-bg);
- box-shadow: 0 0 10px #000;
- }
- &-preview {
- width: 540px;
- color: var(--black-text-color);
- h3 {
- font-weight: 700;
- font-size: 36px;
- line-height: 100%;
- }
- .el-image {
- margin: 20px 0;
- width: 100%;
- }
- &__btn {
- margin: 0 auto;
- width: 160px;
- height: 40px;
- font-size: 16px;
- line-height: 40px;
- text-align: center;
- border: 1px solid var(--black-text-color);
- cursor: pointer;
- }
- }
- &-info {
- flex: 1;
- padding: 20px 20px 0px;
- width: 440px;
- p {
- margin-bottom: 24px;
- font-size: 14px;
- color: var(--black-text-color);
- line-height: 160%;
- }
- }
- &__mask {
- position: absolute;
- top: 0;
- left: 0;
- width: 64px;
- height: 133px;
- background: url("../../images/mark.png") no-repeat center / contain;
- }
- }
|