123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596 |
- /* pages/taxDisputes/taxDisputesPages/zxtj/zxtj.wxss */
- page {
- width: 100%;
- min-height: 100vh;
- background: linear-gradient(179deg, #d4e6ff 0%, #ffffff 53%, #f9fbff 78%, #f8fbff 100%);
- }
- .containers {
- padding: 40rpx 26rpx 66rpx 26rpx;
- margin: 24rpx;
- width: calc(100% - 48rpx);
- height: fit-content;
- background: #ffffff;
- border-radius: 20rpx;
- box-shadow: 0px 6rpx 12rpx 0px #f1f1f1;
- box-sizing: border-box;
- }
- .item {
- margin-bottom: 20rpx;
- padding: 20rpx 24rpx;
- width: 100%;
- min-height: 40rpx;
- border-radius: 10rpx;
- background: #f1f6fd;
- display: flex;
- align-items: center;
- box-sizing: border-box;
- }
- .label {
- width: 160rpx;
- font-size: 28rpx;
- color: #000000;
- font-family: "苹方M";
- }
- .value {
- width: 0;
- flex: 1;
- font-size: 26rpx;
- color: #000000;
- font-family: "苹方R";
- }
- .phone-list {
- width: 100%;
- height: fit-content;
- display: flex;
- flex-wrap: wrap;
- }
- .phone {
- margin: 10rpx 0;
- padding-left: 15rpx;
- width: fit-content;
- height: 40rpx;
- line-height: 40rpx;
- font-size: 26rpx;
- color: #4686F6;
- font-family: "苹方R";
- text-align: right;
- box-sizing: border-box;
- }
- .phone:nth-child(2n-1) {
- padding-left: 0;
- padding-right: 15rpx;
- text-align: left;
- border-right: 1px solid #000000;
- }
- .item-tip {
- margin-top: 60rpx;
- width: 100%;
- font-size: 26rpx;
- color: #FF9200;
- font-family: "苹方R";
- }
- .button {
- margin-top: 120rpx;
- width: 100%;
- height: 80rpx;
- font-size: 36rpx;
- text-align: center;
- line-height: 80rpx;
- color: #FFFFFF;
- font-family: "苹方R";
- border-radius: 40rpx;
- background: #FF9200;
- }
- .active {
- opacity: 0.6;
- }
|