123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596979899100101102103104105106107108109110111112113114115116117118119120121122123124125126127128129130131132133134135136137138139140141142143144145146147148149150151152153154155156157158159160161162163164165166167168169170171172173174175176177178179180181182183184 |
- @import "@assets/css/public-style.scss";
- .buttons {
- text-align: right;
- background: white;
- padding: 0 20px 20px 0;
- }
- .top-title {
- padding: 20px;
- background: white;
- margin-bottom: 20px;
- position: relative;
- h1 {
- font-size: 30px;
- line-height: 30px;
- color: $defaultColor;
- .titleType {
- font-size: 14px;
- width: 68px;
- height: 30px;
- border-radius: 2px;
- text-align: center;
- line-height: 30px;
- vertical-align: middle;
- color: $mainTextColor;
- border: 1px solid $mainTextColor;
- font-weight: normal;
- margin-left: 20px;
- display: inline-block;
- }
- }
- .right {
- position: absolute;
- right: 20px;
- top: 20px;
- }
- .text {
- margin-top: 10px;
- font-size: 12px;
- color: #747d87;
- span {
- margin-right: 40px;
- }
- }
- }
- .contentDetail {
- background: white;
- .tages {
- display: flex;
- padding: 15px 20px;
- border-bottom: 1px solid #ddd;
- .tages-list {
- margin-right: 40px;
- position: relative;
- cursor: pointer;
- &.active {
- color: $mainTextColor;
- &::before {
- position: absolute;
- left: 0px;
- bottom: -15px;
- width: 100%;
- height: 2px;
- background: $mainTextColor;
- content: " ";
- }
- }
- }
- }
- .content-item {
- padding: 30px 20px 20px 20px;
- .widthFlex {
- display: flex;
- margin-bottom: 20px;
- .item-table {
- width: 100%;
- border: 1px solid #e0e1e3;
- &:first-of-type {
- border-right: none;
- }
- .table-list {
- display: flex;
- line-height: 40px;
- border-bottom: 1px solid #e0e1e3;
- &:last-of-type {
- border-bottom: none;
- }
- .lable {
- width: 200px;
- background: #f8fcff;
- padding-left: 20px;
- box-sizing: border-box;
- border-right: 1px solid #e0e1e3;
- }
- .text {
- flex: 1;
- padding-left: 20px;
- box-sizing: border-box;
- }
- }
- }
- }
- }
- }
- .clickUpload {
- width: 130px;
- height: 182px;
- background: #f8fcff;
- border-radius: 4px;
- border: 1px solid #e0e1e3;
- position: relative;
- z-index: 1000;
- text-align: center;
- overflow: hidden;
- font-size: 12px;
- cursor: pointer;
- color: #e0e1e3;
- .mini-upload {
- position: absolute;
- z-index: 0;
- }
- }
- .clickUpText {
- height: 100%;
- width: 100%;
- pointer-events: none;
- position: absolute;
- background: #f8fcff;
- z-index: 1;
- img.bg-img {
- width: 52px;
- margin-top: 46px;
- margin-bottom: 12px;
- }
- img.dataImg {
- width: 100%;
- height: 100%;
- object-fit: cover;
- }
- }
- .show-required-icon-star {
- &:before {
- content: "*";
- color: #f56c6c;
- }
- }
- .buttonSelect {
- padding: 0 rem(15);
- text-align: center;
- font-size: rem(14);
- height: rem(30);
- box-sizing: border-box;
- border-radius: rem(2);
- border: 1px solid #e0e1e3;
- color: #535766;
- display: inline-block;
- cursor: pointer;
- &.is-active,
- &.is-checked {
- color: #0eaeff;
- border-color: #0eaeff;
- }
- &:not(:last-child) {
- margin-right: rem(20);
- }
- }
- /deep/ .el-radio-button .el-radio-button__inner,
- /deep/ .el-checkbox-button .el-checkbox-button__inner {
- border: none;
- box-sizing: border-box;
- padding: 0;
- line-height: rem(24);
- margin-top: rem(2);
- display: block;
- }
- /deep/ .el-radio-button__orig-radio:checked + .el-radio-button__inner,
- /deep/ .el-checkbox-button.is-checked .el-checkbox-button__inner {
- color: #0eaeff;
- background-color: white;
- box-shadow: none;
- }
|