| 123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596979899100101102103104105106107108109110111112113114115116117118119120121122123124125126127128129130131132133134135136137138139140141142143144145146147148149150151152153154155156157158159160161162163164165166167168169170171172173174175176177178179180181182183184185186187188189190191192193194195196197198199200201202203204205206207208209210211212213214215216217218219220221222223224225226227228229230231232233234235236237238239240241242243244245246247248249250251252253254255256257258259260261262263264265266267268269270271272273274275276277278279280281282283284285286287288289290291292293294295296297298299300301302303304305306307308309310311312313314315316317318319320321322323324325326327328329330331332333334335336337338339340341342343344345346347348349350351352353354355356357358359360361362363364365366367368369370371372373374375376377378379380381382383384385386387388389390391392393394395396397398399400401402403404405406407408409410411412413414415416 |
- :root {
- --theme: #4153ff;
- --radius-1: 4px;
- --radius-2: 6px;
- }
- button {
- border-radius: var(--radius-1);
- border: none;
- }
- body {
- position: relative;
- background-color: #F6F6F6;
- }
- .mounted {
- background-color: #F6F6F6;
- display: flex;
- align-items: center;
- justify-content: center;
- flex-direction: column;
- margin-bottom: 17px;
- }
- .header {
- display: flex;
- flex-direction: row;
- background-color: #F6F6F6;
- padding: 14px 39px;
- }
- .mounted-box {
- display: flex;
- width: 940px;
- /*min-height: 611px;*/
- background-color: white;
- padding: 15px 30px 24px;
- flex-direction: column;
- align-items: center;
- border-radius: 8px;
- box-shadow: 3px 2px 20px rgba(0, 0, 0, 0.02);
- }
- .mounted-title {
- font-size: 18px;
- color: #222222;
- font-weight: Bold;
- }
- .mounted-container {
- width: 940px;
- display: flex;
- flex-direction: column;
- justify-content: center;
- }
- .mounted-nav-container {
- display: flex;
- justify-content: center;
- }
- .mounted-nav {
- display: flex;
- margin-top: 15px;
- padding: 4px;
- background-color: #f6f6f6;
- border-radius: var(--radius-2);
- }
- .mounted-nav li {
- width: 140px;
- height: 36px;
- cursor: pointer;
- display: flex;
- justify-content: center;
- align-items: center;
- font-size: 14px;
- font-family: PingFang SC;
- }
- .mounted-nav .active {
- color: white;
- background-color: var(--theme);
- border-radius: var(--radius-2);
- }
- .mounted-content-item {
- margin-top: 15px;
- /* border:1px solid #E9E9E9; */
- display: none;
- }
- .content-header {
- background-color: #E9E9E9;
- padding: 8px 16px;
- font-family: PingFang SC;
- border-radius: 4px 4px 0 0;
- }
- .content {
- padding: 16px;
- height: 392px;
- border: 1px solid #E9E9E9;
- overflow-y: auto;
- border-radius: 0 0 4px 4px;
- }
- .content h2 {
- font-size: 20px;
- }
- .content p {
- font-size: 14px;
- line-height: 1.7;
- }
- .content h3 {
- font-size: 16px;
- }
- .mt6 {
- margin-top: 6px;
- }
- .mt16 {
- margin-top: 16px;
- }
- .content-form {
- padding: 23px 60px;
- border: 1px solid #E9E9E9;
- border-radius: 0 0 4px 4px;
- }
- .form-box-item {
- display: flex;
- align-items: center;
- height: 40px;
- }
- .form-box-item:not(:nth-of-type(1)) {
- display: flex;
- align-items: center;
- height: 40px;
- margin-top: 16px;
- }
- .form-desc {
- width: 60px;
- font-size: 12px;
- margin-right: 16px;
- text-align: right;
- }
- .form-box-item div input {
- width: 328px;
- height: 32px;
- padding-left: 20px;
- border: 1px solid #e2e2e2;
- border-radius: var(--radius-1);
- }
- .form-box-item div input:focus {
- border: 1px solid var(--theme);
- box-shadow: 0 0 0 2px rgba(65, 83, 255, 0.2);
- transition: all 0.1s ease-in-out;
- }
- .cancel-btn {
- padding: 7px 28px;
- background-color: white;
- border: 1px solid #D7D7D7;
- cursor: pointer;
- }
- .accept-btn {
- padding: 7px 28px;
- color: white;
- background-color: var(--theme);
- flex: none;
- cursor: pointer;
- }
- .disabled-btn {
- padding: 7px 28px;
- color: #222222;
- background-color: #D7D7D7;
- flex: none;
- display: flex;
- align-items: center;
- border: 1px solid #D7D7D7;
- }
- .item-btn-group {
- display: none;
- margin-top: 20px;
- }
- .show {
- display: block !important;
- }
- .hidden {
- display: none !important;
- }
- .form-box-check {
- display: flex;
- align-items: center;
- margin-top: 12px;
- }
- footer {
- font-size: 12px;
- margin-bottom: 20px;
- color: #707070;
- font-weight: 400;
- display: flex;
- justify-content: center;
- background-color: #F6F6F6;
- }
- .layui-table {
- margin: 0;
- }
- .layui-table tr {
- background-color: white !important;
- }
- .layui-table tr td {
- font-size: 12px;
- font-family: PingFang SC;
- line-height: 20px;
- background-color: white !important;
- }
- .layui-table tr th {
- font-size: 14px;
- font-family: PingFang SC;
- font-weight: bold;
- line-height: 20px;
- }
- .mounted-env-container {
- height: 440px;
- padding-bottom: 20px;
- overflow-y: auto;
- }
- .mounted-tips {
- padding: 12px 20px;
- color: var(--theme);
- background-color: #eef4ff;
- border-radius: var(--radius-1);
- }
- .mounting-container {
- padding: 16px;
- height: 479px;
- max-height: 479px;
- border: 1px solid #E9E9E9;
- overflow-y: auto;
- }
- .item-cell {
- padding: 4px 16px;
- display: flex;
- justify-content: space-between;
- align-items: center;
- flex-wrap: wrap;
- }
- .green {
- color: #11d55c;
- }
- .wrong {
- color: #FC4D4D;
- }
- .layui-icon {
- font-size: 18px !important;
- }
- .success-content {
- display: flex;
- flex-direction: column;
- align-items: center;
- justify-content: center;
- height: 392px;
- border: 1px solid #E9E9E9;
- border-radius: 0 0 4px 4px;
- }
- img {
- width: 100%;
- height: 100%;
- }
- .success-content .tips {
- width: 400px;
- /*height: 80px;*/
- padding: 18px;
- border-radius: 8px;
- background-color: #F8F8F8;
- font-size: 12px;
- margin-top: 20px;
- }
- .success-content .btn-group {
- display: flex;
- align-items: center;
- margin-top: 40px;
- }
- .success-content .result {
- font-size: 20px;
- font-family: PingFang SC;
- font-weight: bold;
- line-height: 28px;
- }
- .success-content .btn-group .store-btn {
- padding: 7px 35px;
- border: 1px solid var(--theme);
- background-color: white;
- color: var(--theme);
- cursor: pointer;
- }
- .success-content .btn-group .btn {
- padding: 7px 35px;
- border: 1px solid var(--theme);
- background-color: var(--theme);
- color: white;
- cursor: pointer;
- border-radius: var(--radius-2);
- }
- .mounted-footer {
- width: 940px;
- background-color: white;
- padding: 16px 30px 23px;
- margin-top: 16px;
- box-shadow: 3px 2px 20px rgba(0, 0, 0, 0.08);
- display: none;
- }
- .mounted-footer-title {
- font-size: 18px;
- line-height: 25px;
- margin-bottom: 16px;
- }
- .mounted-recommend-box {
- display: flex;
- flex-direction: row;
- justify-content: space-between;
- flex-wrap: wrap;
- }
- .mounted-recommend-item {
- display: flex;
- justify-content: center;
- align-items: center;
- width: 224px;
- height: 140px;
- border: 1px solid #D7D7D7;
- cursor: pointer;
- }
- .mounted-recommend-item .icon {
- width: 128px;
- height: 36px;
- }
- .mounted-recommend-item:hover {
- background-color: #F6F9FF;
- display: flex;
- flex-direction: column;
- align-items: flex-start;
- justify-content: flex-start;
- width: 224px;
- height: 140px;
- }
- .mounted-recommend-item:hover .icon {
- display: none;
- }
- .recommend-content {
- display: none;
- }
- .mounted-recommend-item:hover .recommend-content {
- display: block;
- padding: 6px 10px 10px;
- }
- .mounted-recommend-item:hover .recommend-content .title {
- font-size: 16px;
- line-height: 22px;
- font-weight: bold;
- }
- .mounted-recommend-item:hover .recommend-content ul {
- list-style-type: disc;
- margin-left: 20px;
- }
- .mounted-recommend-item:hover .recommend-content li {
- list-style-type: disc;
- }
|