123456789101112131415161718192021222324252627282930313233343536373839404142434445464748 |
- .main {
- position: relative;
- width: 100%;
- }
- .main .one {
- float: left;
- width: 100%;
- }
- .main .one .content {
- float: left;
- width: 95%;
- padding: 10px;
- background-color: #ffffff;
- border-bottom: 1px solid #ccc;
- }
- .main .one .content .label {
- float: left;
- width: 30%;
- font-size: 14px;
- }
- .main .one .content .value {
- float: left;
- width: 70%;
- text-align: right;
- font-size: 12px;
- color: #666;
- }
- .main .one .btn {
- float: left;
- width: 100%;
- text-align: center;
- margin: 10px 0 0 0;
- }
- .main .one .btn .button {
- width: 300px !important;
- border-radius: 30px;
- color: #ffffff;
- text-align: center;
- background-image: linear-gradient(to right, #fd3c1e, #c74df0);
- }
|