| 123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596979899100101102103104105106107108109110111112113114115116117118119120121122123124125126127128129130131132133134135136137138139140141142143144145146147148149150151152153154155156157158159160161162163164165166167168169170171172173174175176177178179180181182183184185186187188189190191192193194195196197198199200201202203204205206207208209210211212213214215216217218219220221222223224225226227228229230231232233234235236237238239240241242243244245246247248249250251252253254255256257258259260261262263264265266267268269270271272273274275276277278279280281282283284285286287288289290291292293294295296297298299300301302303304305306307308309310311312313314315316317318319320321322323324325326327328329330331332333334335336337338339340341342343344345346347348349350351352353354355356357358359360361362363364365366367368369370371372373374375376377378379380381382383384385386387388389390391392393394395396397398399400401402403404405406407408409410411412413414415416417418419420421422423424425426427428429430431432433434435436437438439440441442443444445446447448449450451452453454455456457458459460461462463464465466467468469470471472473474475476477478479480481482483484485486487488489490491492493494495496497498499500501502503504505506507508509510511512513514515516517518519520521522523524525526527528529530531532533534535536537538539540541542543544545546547548549550551552553554555556557558559560561562563564565566567568569570571572573574575576577578579580581582583584585586587588589590591592593594595596597598599600601602603604605606607608609610611612613614615616617618619620621622623624625626627628629630631632633634635636637638639640641642643644645646647648649650651652653654655656657658659660661662663664665666667668669670671672673674675676677678679680681682683684685686687688689690691692693694695696697698699700701702703704705706707708709710711712713714715716717718719720721722723724725726727728729730731732733734735736737738739740741742743744745746747748749750751752753754755756757758759760761762763764765766767768769770771772773774775776777778779780781782783784785786787788789790791792793794795796797798799800801802803804805806807808809810811812813814815816817818819820821822823824825826827828829830831832833834835836837838839840841842843844845846847848849850851852853854855856857858859860861862863864865866867868869870871872873874875876877878879880881882883884885886887888889890891892893894895896897898899900901902903904905906907908909910911912913914915916917918919920921922923924925926927928929930931932933934935936937938939940941942943944945946947948949950951952953954955956957958959960961962963964965966967968969970971972973974975976977978979980981982983984985986987988989990991992993994995996997998999100010011002 |
- @charset "UTF-8";
- /**
- * 这里是uni-app内置的常用样式变量
- *
- * uni-app 官方扩展插件及插件市场(https://ext.dcloud.net.cn)上很多三方插件均使用了这些样式变量
- * 如果你是插件开发者,建议你使用scss预处理,并在插件代码中直接使用这些变量(无需 import 这个文件),方便用户通过搭积木的方式开发整体风格一致的App
- *
- */
- /**
- * 如果你是App开发者(插件使用者),你可以通过修改这些变量来定制自己的插件主题,实现自定义主题功能
- *
- * 如果你的项目同样使用了scss预处理,你也可以直接在你的 scss 代码中使用如下变量,同时无需 import 这个文件
- */
- /* 颜色变量 */
- /* 行为相关颜色 */
- /* 文字基本颜色 */
- /* 背景颜色 */
- /* 边框颜色 */
- /* 尺寸变量 */
- /* 文字尺寸 */
- /* 图片尺寸 */
- /* Border Radius */
- /* 水平间距 */
- /* 垂直间距 */
- /* 透明度 */
- /* 文章场景相关 */
- .fixed-top-box {
- width: 100%;
- position: fixed;
- top: 0;
- left: 0;
- z-index: 1000;
- transition: all 0.5s;
- background-color: #2bc7b9;
- }
- .fixed-top-box .status_bar {
- width: 100%;
- }
- .content {
- width: 100%;
- position: relative;
- }
- .content .bg {
- width: 100%;
- height: 380rpx;
- position: absolute;
- top: 0;
- left: 0;
- }
- .content .top-inner {
- width: 100%;
- position: absolute;
- top: 0;
- left: 0;
- z-index: 5;
- }
- .content .top-inner .top-title {
- height: 88rpx;
- line-height: 88rpx;
- display: flex;
- align-items: center;
- justify-content: flex-start;
- }
- .content .top-inner .top-title .name {
- margin-left: 15rpx;
- width: 183rpx;
- height: 75rpx;
- }
- .content .top-inner .top-title .name image {
- width: 100%;
- height: 100%;
- }
- .content .top-inner .top-title .dot {
- margin: 0rpx 10rpx;
- font-size: 28rpx;
- color: #FFFFFF;
- opacity: 0.5;
- }
- .content .top-inner .top-title .sub-name {
- font-size: 30rpx;
- font-family: Source Han Sans CN;
- color: #FFFFFF;
- }
- .content .top-inner .func-cont {
- box-sizing: border-box;
- display: flex;
- align-items: center;
- padding: 30rpx 20rpx 30rpx 20rpx;
- }
- .content .top-inner .func-cont .search-cont {
- box-sizing: border-box;
- display: flex;
- align-items: center;
- flex: 1;
- height: 72rpx;
- background: #FFFFFF;
- border-radius: 36rpx;
- padding: 0 30rpx;
- }
- .content .top-inner .func-cont .search-cont .icon-search {
- width: 28rpx;
- height: 28rpx;
- margin-right: 20rpx;
- }
- .content .top-inner .func-cont .search-cont input {
- height: 60rpx;
- line-height: 60rpx;
- flex: 1;
- }
- .content .top-inner .func-cont .uni-badge {
- border: none;
- background-color: #FF3636;
- font-family: Roboto;
- }
- .content .top-inner .func-cont .img-item {
- width: 44rpx;
- height: 44rpx;
- margin-left: 30rpx;
- }
- .content .top-inner .func-cont .img-item image {
- width: 100%;
- height: 100%;
- }
- .content .top-inner .tips {
- margin: 0rpx 20rpx 30rpx;
- height: 40rpx;
- line-height: 40rpx;
- display: flex;
- justify-content: space-between;
- align-items: center;
- }
- .content .top-inner .tips .left {
- font-size: 30rpx;
- color: #FFFFFF;
- }
- .content .top-inner .tips .right {
- padding: 5rpx 20rpx;
- font-size: 24rpx;
- color: #FFFFFF;
- background-color: #2bc7b9;
- border-radius: 50rpx;
- }
- .content .banner-box {
- padding: 0 20rpx;
- }
- .content .banner-box .inner {
- width: 100%;
- height: 236rpx;
- border-radius: 10rpx;
- overflow: hidden;
- }
- .content .banner-box .inner .swiper,
- .content .banner-box .inner .swiper-item,
- .content .banner-box .inner .swiper-item image {
- width: 100%;
- height: 100%;
- }
- .content .menu-content {
- background-color: #fff;
- overflow: hidden;
- padding: 20rpx 20rpx 0;
- }
- .content .menu-box {
- display: flex;
- align-items: center;
- background-color: #FFFFFF;
- }
- .content .online-inquiry {
- box-sizing: border-box;
- width: 100%;
- height: 170rpx;
- padding: 0 20rpx;
- background: linear-gradient(180deg, rgba(255, 255, 255, 0.38) 62%, rgba(255, 255, 255, 0) 100%);
- display: flex;
- justify-content: space-between;
- }
- .content .online-inquiry .item {
- width: 346rpx;
- height: 150rpx;
- position: relative;
- }
- .content .online-inquiry .item .bg-img,
- .content .online-inquiry .item .inner {
- border-radius: 15rpx;
- width: 100%;
- height: 100%;
- position: absolute;
- top: 0;
- left: 0;
- z-index: 1;
- }
- .content .online-inquiry .item .inner {
- box-sizing: border-box;
- z-index: 2;
- display: flex;
- flex-direction: column;
- justify-content: center;
- padding-left: 32rpx;
- }
- .content .online-inquiry .item .inner .title {
- font-size: 30rpx;
- line-height: 1;
- font-family: PingFang SC;
- font-weight: 500;
- color: #111111;
- margin-bottom: 20rpx;
- }
- .content .online-inquiry .item .inner .sub-title {
- font-size: 24rpx;
- font-family: PingFang SC;
- font-weight: 500;
- color: #666666;
- }
- .content .online-inquiry .item .inner image {
- width: 80rpx;
- height: 90rpx;
- position: absolute;
- right: 7rpx;
- bottom: 7rpx;
- }
- .content .index-cont {
- box-sizing: border-box;
- padding: 0 20rpx 120rpx;
- }
- .content .index-cont .pub-item {
- background: #FFFFFF;
- border-radius: 16rpx;
- margin-bottom: 20rpx;
- }
- .content .index-cont .pub-item .tabs {
- width: 100%;
- display: flex;
- align-items: center;
- justify-content: flex-start;
- height: 110rpx;
- background-color: #F0F3F4;
- }
- .content .index-cont .pub-item .tabs .tab {
- height: 110rpx;
- display: flex;
- align-items: center;
- justify-content: center;
- position: relative;
- flex: 1;
- }
- .content .index-cont .pub-item .tabs .tab .img {
- z-index: 1;
- position: absolute;
- top: 0rpx;
- left: 0rpx;
- width: 100%;
- height: 100%;
- }
- .content .index-cont .pub-item .tabs .tab .inner {
- z-index: 2;
- }
- .content .index-cont .pub-item .tabs .tab .inner .title {
- font-size: 32rpx;
- font-family: PingFang SC;
- font-weight: bold;
- color: #666666;
- }
- .content .index-cont .pub-item .tabs .tab .inner .active {
- color: #2BC7B9;
- }
- .content .index-cont .pub-item .pub-title-box {
- box-sizing: border-box;
- padding: 36rpx 30rpx;
- display: flex;
- align-items: center;
- justify-content: space-between;
- }
- .content .index-cont .pub-item .pub-title-box .left {
- font-size: 32rpx;
- line-height: 1;
- font-family: PingFang SC;
- font-weight: bold;
- color: #111111;
- }
- .content .index-cont .pub-item .pub-title-box .right {
- display: flex;
- align-items: center;
- justify-content: center;
- }
- .content .index-cont .pub-item .pub-title-box .right .text {
- font-size: 24rpx;
- line-height: 1;
- font-family: PingFang SC;
- font-weight: 500;
- color: #999999;
- margin-right: 10rpx;
- }
- .content .index-cont .pub-item .pub-title-box .right image {
- width: 14rpx;
- height: 24rpx;
- }
- .content .index-cont .pub-item .doc-tab-box {
- padding: 14rpx 30rpx 0rpx 30rpx;
- position: relative;
- }
- .content .index-cont .pub-item .doc-tab-box .tab-inner {
- padding: 14rpx 0 30rpx;
- display: flex;
- overflow-x: auto;
- }
- .content .index-cont .pub-item .doc-tab-box .item {
- font-size: 28rpx;
- white-space: nowrap;
- line-height: 1;
- font-family: PingFang SC;
- font-weight: 500;
- color: #666666;
- margin-right: 40rpx;
- position: relative;
- }
- .content .index-cont .pub-item .doc-tab-box .item:last-child {
- margin-right: 0;
- }
- .content .index-cont .pub-item .doc-tab-box .item.active {
- font-weight: bold;
- color: #333333;
- }
- .content .index-cont .pub-item .doc-tab-box .item.cases {
- margin-right: 60rpx;
- }
- .content .index-cont .pub-item .doc-tab-box .item .text {
- position: relative;
- z-index: 1;
- }
- .content .index-cont .pub-item .doc-tab-box .item .tab-bg {
- width: 72rpx;
- height: 28rpx;
- position: absolute;
- top: 17rpx;
- left: 50%;
- -webkit-transform: translateX(-36rpx);
- transform: translateX(-36rpx);
- z-index: -1;
- }
- .content .index-cont .pub-item .doc-tab-box .right-mask {
- width: 56rpx;
- height: 34rpx;
- position: absolute;
- top: 25rpx;
- right: 0rpx;
- z-index: 1;
- }
- .content .index-cont .pub-item .doc-list {
- padding: 20rpx;
- }
- .content .index-cont .pub-item .doc-list .item {
- box-sizing: border-box;
- background: #FFFFFF;
- display: flex;
- border-bottom: 1px solid #F0F0F0;
- margin-bottom: 30rpx;
- }
- .content .index-cont .pub-item .doc-list .item .head-box {
- width: 120rpx;
- height: 120rpx;
- background: #EDF1F4;
- border-radius: 50%;
- overflow: hidden;
- margin-right: 30rpx;
- }
- .content .index-cont .pub-item .doc-list .item .head-box image {
- width: 100%;
- height: 100%;
- }
- .content .index-cont .pub-item .doc-list .item .info {
- width: calc(100% - 150rpx);
- }
- .content .index-cont .pub-item .doc-list .item .info .top {
- display: flex;
- align-items: center;
- font-family: PingFang SC;
- line-height: 1;
- }
- .content .index-cont .pub-item .doc-list .item .info .top .name {
- font-size: 34rpx;
- font-weight: bold;
- color: #111111;
- }
- .content .index-cont .pub-item .doc-list .item .info .top .line {
- width: 1px;
- height: 26rpx;
- background: #DDDDDD;
- margin: 0 20rpx;
- }
- .content .index-cont .pub-item .doc-list .item .info .top .other {
- font-size: 28rpx;
- font-weight: 500;
- color: #333333;
- }
- .content .index-cont .pub-item .doc-list .item .info .unit-box {
- display: flex;
- margin-top: 24rpx;
- }
- .content .index-cont .pub-item .doc-list .item .info .unit-box .level {
- padding: 0 10rpx;
- height: 30rpx;
- line-height: 30rpx;
- font-size: 22rpx;
- font-family: PingFang SC;
- font-weight: 500;
- color: #FFFFFF;
- background: #2BC7B9;
- border-radius: 10rpx 4rpx 10rpx 4rpx;
- margin-right: 12rpx;
- }
- .content .index-cont .pub-item .doc-list .item .info .unit-box .name {
- font-size: 28rpx;
- font-family: PingFang SC;
- font-weight: 500;
- color: #333333;
- line-height: 30rpx;
- }
- .content .index-cont .pub-item .doc-list .item .info .expertise {
- font-size: 26rpx;
- font-family: PingFang SC;
- font-weight: 500;
- color: #666666;
- line-height: 42rpx;
- margin: 22rpx 0 26rpx;
- }
- .content .index-cont .pub-item .doc-list .item .info .rate-box {
- display: flex;
- align-items: center;
- }
- .content .index-cont .pub-item .doc-list .item .info .rate-box .star {
- display: flex;
- align-items: center;
- }
- .content .index-cont .pub-item .doc-list .item .info .rate-box .star image {
- width: 22rpx;
- height: 22rpx;
- margin-right: 10rpx;
- }
- .content .index-cont .pub-item .doc-list .item .info .rate-box .star text {
- font-size: 26rpx;
- font-family: PingFang SC;
- font-weight: bold;
- color: #CEA764;
- line-height: 1;
- }
- .content .index-cont .pub-item .doc-list .item .info .rate-box .line {
- width: 1px;
- height: 20rpx;
- background: #DDDDDD;
- margin: 0 20rpx;
- }
- .content .index-cont .pub-item .doc-list .item .info .rate-box .num-box {
- display: flex;
- align-items: center;
- font-family: PingFang SC;
- }
- .content .index-cont .pub-item .doc-list .item .info .rate-box .num-box .label {
- font-size: 24rpx;
- font-weight: 500;
- color: #999999;
- line-height: 1;
- margin-right: 7px;
- }
- .content .index-cont .pub-item .doc-list .item .info .rate-box .num-box .num {
- font-size: 26rpx;
- font-weight: bold;
- color: #CEA764;
- line-height: 1;
- }
- .content .index-cont .pub-item .doc-list .item .info .price-box {
- display: flex;
- align-items: center;
- margin-top: 38rpx;
- }
- .content .index-cont .pub-item .doc-list .item .info .price-box .btn-item {
- display: flex;
- align-items: center;
- justify-content: center;
- width: 164rpx;
- height: 56rpx;
- line-height: 56rpx;
- border: 1px solid rgba(43, 199, 185, 0.5);
- border-radius: 28rpx;
- font-family: PingFang SC;
- margin-right: 30rpx;
- }
- .content .index-cont .pub-item .doc-list .item .info .price-box .btn-item:last-child {
- margin-right: 0;
- }
- .content .index-cont .pub-item .doc-list .item .info .price-box .btn-item .label {
- font-size: 26rpx;
- font-weight: 500;
- color: #2BC7B9;
- margin-right: 5rpx;
- }
- .content .index-cont .pub-item .doc-list .item .info .price-box .btn-item .num {
- font-size: 28rpx;
- font-weight: bold;
- color: #2BC7B9;
- }
- .content .index-cont .pub-item .doc-list .item:last-child {
- border-bottom: none;
- margin-bottom: 0rpx;
- }
- .content .index-cont .pub-item .doc-list .bottom-title {
- height: 50rpx;
- display: flex;
- align-items: center;
- justify-content: center;
- font-size: 26rpx;
- font-family: PingFang SC;
- font-weight: bold;
- color: #2BC7B9;
- }
- .content .index-cont .pub-item .doc-list .bottom-title image {
- margin-left: 8rpx;
- width: 14rpx;
- height: 24rpx;
- }
- .content .index-cont .pub-item .doc-cont {
- box-sizing: border-box;
- padding: 0 30rpx;
- }
- .content .index-cont .pub-item .doc-cont .inner {
- padding: 4rpx 0 40rpx;
- display: flex;
- overflow-x: auto;
- }
- .content .index-cont .pub-item .doc-cont .item {
- display: flex;
- align-items: center;
- flex-direction: column;
- margin-right: 40rpx;
- }
- .content .index-cont .pub-item .doc-cont .item:last-child {
- margin-right: 0;
- }
- .content .index-cont .pub-item .doc-cont .item .head-box {
- width: 120rpx;
- height: 120rpx;
- background: #F2F5F9;
- border-radius: 50%;
- margin-bottom: 20rpx;
- overflow: hidden;
- }
- .content .index-cont .pub-item .doc-cont .item .head-box image {
- width: 100%;
- height: 100%;
- }
- .content .index-cont .pub-item .doc-cont .item .name {
- max-width: 120rpx;
- font-size: 28rpx;
- line-height: 1;
- font-family: PingFang SC;
- font-weight: 500;
- color: #111111;
- margin-bottom: 16rpx;
- text-align: center;
- }
- .content .index-cont .pub-item .doc-cont .item .position {
- max-width: 120rpx;
- font-size: 24rpx;
- line-height: 1;
- font-family: PingFang SC;
- font-weight: 500;
- color: #999999;
- text-align: center;
- }
- .content .index-cont .pub-item .inner {
- padding: 0 30rpx;
- }
- .content .index-cont .pub-item .pub-tab-box {
- position: relative;
- }
- .content .index-cont .pub-item .pub-tab-box .tab-inner {
- padding: 14rpx 0 30rpx;
- display: flex;
- overflow-x: auto;
- }
- .content .index-cont .pub-item .pub-tab-box .item {
- font-size: 28rpx;
- white-space: nowrap;
- line-height: 1;
- font-family: PingFang SC;
- font-weight: 500;
- color: #666666;
- margin-right: 40rpx;
- position: relative;
- }
- .content .index-cont .pub-item .pub-tab-box .item:last-child {
- margin-right: 0;
- }
- .content .index-cont .pub-item .pub-tab-box .item.active {
- font-weight: bold;
- color: #333333;
- }
- .content .index-cont .pub-item .pub-tab-box .item.cases {
- margin-right: 60rpx;
- }
- .content .index-cont .pub-item .pub-tab-box .item .text {
- position: relative;
- z-index: 1;
- }
- .content .index-cont .pub-item .pub-tab-box .item .tab-bg {
- width: 72rpx;
- height: 28rpx;
- position: absolute;
- top: 17rpx;
- left: 50%;
- -webkit-transform: translateX(-36rpx);
- transform: translateX(-36rpx);
- z-index: -1;
- }
- .content .index-cont .pub-item .pub-tab-box .right-mask {
- width: 56rpx;
- height: 34rpx;
- position: absolute;
- top: 14rpx;
- right: -30rpx;
- z-index: 1;
- }
- .content .index-cont .pub-item .know-list {
- padding-right: 10rpx;
- }
- .content .index-cont .pub-item .know-list .item {
- padding: 30rpx 0;
- display: flex;
- align-items: center;
- justify-content: space-between;
- border-bottom: 1px solid #F0F0F0;
- }
- .content .index-cont .pub-item .know-list .item:last-child {
- border-bottom: none;
- }
- .content .index-cont .pub-item .know-list .item .left {
- flex: 1;
- padding-right: 40rpx;
- height: 190rpx;
- display: flex;
- flex-direction: column;
- justify-content: space-between;
- }
- .content .index-cont .pub-item .know-list .item .left .title {
- font-size: 32rpx;
- font-family: PingFang SC;
- font-weight: 500;
- color: #111111;
- line-height: 48rpx;
- }
- .content .index-cont .pub-item .know-list .item .left .info-box {
- width: 100%;
- display: flex;
- align-items: center;
- justify-content: space-between;
- }
- .content .index-cont .pub-item .know-list .item .left .info-box .readers {
- display: flex;
- align-items: center;
- }
- .content .index-cont .pub-item .know-list .item .left .info-box .readers .head-box {
- margin-right: 27rpx;
- display: flex;
- align-items: center;
- }
- .content .index-cont .pub-item .know-list .item .left .info-box .readers .head-box .head {
- width: 48rpx;
- height: 48rpx;
- border-radius: 50%;
- overflow: hidden;
- box-shadow: 0 0 0 1px #fff;
- margin-right: -10rpx;
- }
- .content .index-cont .pub-item .know-list .item .left .info-box .readers .head-box .head image {
- width: 100%;
- height: 100%;
- }
- .content .index-cont .pub-item .know-list .item .left .info-box .readers .readings {
- display: flex;
- align-items: center;
- }
- .content .index-cont .pub-item .know-list .item .left .info-box .readers .readings .eye {
- width: 26rpx;
- height: 20rpx;
- margin-right: 9rpx;
- }
- .content .index-cont .pub-item .know-list .item .left .info-box .readers .readings .num {
- font-size: 24rpx;
- font-family: PingFang SC;
- font-weight: 500;
- color: #999999;
- line-height: 1;
- }
- .content .index-cont .pub-item .know-list .item .left .info-box .time {
- font-size: 24rpx;
- line-height: 1;
- font-family: PingFang SC;
- font-weight: 500;
- color: #999999;
- }
- .content .index-cont .pub-item .know-list .item .right {
- width: 250rpx;
- height: 190rpx;
- border-radius: 8rpx;
- overflow: hidden;
- }
- .content .index-cont .pub-item .know-list .item .right image {
- width: 100%;
- height: 100%;
- }
- .content .index-cont .pub-item .cases-list {
- padding-bottom: 10rpx;
- }
- .content .index-cont .pub-item .cases-list .item {
- padding: 30rpx 0;
- border-bottom: 1px solid #F0F0F0;
- }
- .content .index-cont .pub-item .cases-list .item:last-child {
- border-bottom: none;
- }
- .content .index-cont .pub-item .cases-list .item .dec-text {
- font-size: 32rpx;
- font-family: PingFang SC;
- font-weight: bold;
- color: #111111;
- line-height: 48rpx;
- }
- .content .index-cont .pub-item .cases-list .item .images-box {
- margin-top: 10rpx;
- display: flex;
- flex-wrap: wrap;
- }
- .content .index-cont .pub-item .cases-list .item .images-box .img-item {
- width: 155rpx;
- height: 155rpx;
- background: #F5F5F5;
- border-radius: 8rpx;
- margin: 0 10rpx 10rpx 0;
- overflow: hidden;
- }
- .content .index-cont .pub-item .cases-list .item .images-box .img-item image {
- width: 100%;
- height: 100%;
- }
- .content .index-cont .pub-item .cases-list .item .images-box .img-item:nth-child(4n) {
- margin-right: 0;
- }
- .content .index-cont .pub-item .cases-list .item .doc-info {
- display: flex;
- align-items: center;
- margin: 30rpx 0 20rpx;
- }
- .content .index-cont .pub-item .cases-list .item .doc-info .head {
- width: 60rpx;
- height: 60rpx;
- background: #F2F5F9;
- border-radius: 50%;
- margin-right: 20rpx;
- overflow: hidden;
- }
- .content .index-cont .pub-item .cases-list .item .doc-info .head image {
- width: 100%;
- height: 100%;
- }
- .content .index-cont .pub-item .cases-list .item .doc-info .name {
- font-size: 28rpx;
- line-height: 1;
- font-family: PingFang SC;
- font-weight: 500;
- color: #111111;
- }
- .content .index-cont .pub-item .cases-list .item .doc-info .line {
- width: 1px;
- height: 22rpx;
- background: #DDDDDD;
- margin: 0 16rpx;
- }
- .content .index-cont .pub-item .cases-list .item .doc-info .posit,
- .content .index-cont .pub-item .cases-list .item .doc-info .address {
- font-size: 26rpx;
- font-family: PingFang SC;
- font-weight: 500;
- color: #999999;
- }
- .content .index-cont .pub-item .cases-list .item .answer-box {
- width: 100%;
- background: #F5F7F7;
- border-radius: 10rpx;
- display: flex;
- flex-direction: column;
- justify-content: center;
- }
- .content .index-cont .pub-item .cases-list .item .answer-box .text-inner {
- font-size: 28rpx;
- font-family: PingFang SC;
- font-weight: 500;
- color: #666666;
- line-height: 42rpx;
- padding: 15rpx;
- }
- .content .index-cont .pub-item .cases-list .item .read-box {
- margin-top: 30rpx;
- display: flex;
- align-items: center;
- justify-content: flex-end;
- }
- .content .index-cont .pub-item .cases-list .item .read-box image {
- width: 24rpx;
- height: 19rpx;
- margin-right: 10rpx;
- }
- .content .index-cont .pub-item .cases-list .item .read-box .text {
- font-size: 24rpx;
- font-family: PingFang SC;
- font-weight: 500;
- color: #999999;
- }
- .content .index-cont .feat-title {
- margin-top: 30rpx;
- padding: 10rpx 0 33rpx;
- display: flex;
- align-items: center;
- justify-content: center;
- }
- .content .index-cont .feat-title image {
- width: 37rpx;
- height: 37rpx;
- margin: 0rpx 20rpx;
- }
- .content .index-cont .feat-title text {
- font-size: 36rpx;
- line-height: 1;
- font-family: PingFang SC;
- font-weight: bold;
- color: #111111;
- }
- .content .index-cont .drug-list {
- display: flex;
- flex-wrap: wrap;
- }
- .content .index-cont .drug-list .item {
- margin-right: 20rpx;
- margin-bottom: 20rpx;
- width: 345rpx;
- background: #FFFFFF;
- box-shadow: 0px 0px 10rpx 4rpx rgba(199, 199, 199, 0.22);
- border-radius: 20rpx;
- overflow: hidden;
- }
- .content .index-cont .drug-list .item:nth-child(2n) {
- margin-right: 0;
- }
- .content .index-cont .drug-list .item .img-box {
- width: 100%;
- height: 334rpx;
- }
- .content .index-cont .drug-list .item .img-box image {
- width: 100%;
- height: 100%;
- }
- .content .index-cont .drug-list .item .info-box {
- box-sizing: border-box;
- height: 182rpx;
- padding: 20rpx;
- }
- .content .index-cont .drug-list .item .info-box .title {
- height: 80rpx;
- font-size: 26rpx;
- font-family: PingFang SC;
- font-weight: 500;
- color: #111111;
- line-height: 40rpx;
- }
- .content .index-cont .drug-list .item .info-box .price-box {
- display: flex;
- align-items: center;
- margin-top: 20rpx;
- }
- .content .index-cont .drug-list .item .info-box .price-box .now {
- color: #FF6633;
- display: flex;
- align-items: flex-end;
- margin-right: 20rpx;
- font-family: PingFang SC;
- }
- .content .index-cont .drug-list .item .info-box .price-box .now .unit {
- font-size: 24rpx;
- line-height: 1.4;
- margin-right: 4rpx;
- }
- .content .index-cont .drug-list .item .info-box .price-box .now .num {
- font-size: 36rpx;
- font-weight: bold;
- line-height: 1;
- }
- .content .index-cont .drug-list .item .info-box .price-box .old {
- font-size: 26rpx;
- font-family: PingFang SC;
- text-decoration: line-through;
- color: #BBBBBB;
- line-height: 1;
- }
- .official-account {
- box-sizing: border-box;
- width: 100%;
- height: 100rpx;
- position: fixed;
- bottom: 30rpx;
- z-index: 99;
- padding: 0 20rpx 180rpx 20rpx;
- }
- .message-box {
- box-sizing: border-box;
- width: 100%;
- height: 84rpx;
- background: #F3FFFD;
- border: 1px solid #C7E9E5;
- box-shadow: 0px 4rpx 12rpx 0px rgba(90, 203, 138, 0.16);
- border-radius: 16rpx;
- position: fixed;
- left: 50%;
- -webkit-transform: translateX(-50%);
- transform: translateX(-50%);
- bottom: 30rpx;
- z-index: 99;
- display: flex;
- align-items: center;
- justify-content: space-between;
- padding: 0 20rpx 0 30rpx;
- }
- .message-box .left {
- flex: 1;
- display: flex;
- align-items: center;
- }
- .message-box .left image {
- width: 24rpx;
- height: 24rpx;
- margin-right: 18rpx;
- }
- .message-box .left .text {
- width: 90%;
- font-size: 28rpx;
- font-family: PingFang SC;
- font-weight: 500;
- color: #2BC7B9;
- }
- .message-box .btn {
- width: 100rpx;
- height: 48rpx;
- line-height: 48rpx;
- text-align: center;
- font-size: 24rpx;
- font-family: PingFang SC;
- font-weight: 500;
- color: #FFFFFF;
- border: 1px solid #D2E6FF;
- background: linear-gradient(135deg, #2BC7B9 0%, #60CDC3 100%);
- border-radius: 24rpx;
- margin-left: 30rpx;
- }
- .contact-btn {
- display: inline-block;
- position: absolute;
- top: 0;
- left: 0;
- width: 100%;
- height: 100%;
- opacity: 0;
- }
- .popup-box {
- position: fixed;
- top: 0;
- right: 0;
- left: 0;
- bottom: 0;
- z-index: 999;
- display: flex;
- justify-content: center;
- align-items: center;
- }
- .popup-box .info-mask {
- position: fixed;
- top: 0;
- right: 0;
- bottom: 0;
- left: 0;
- background-color: rgba(0, 0, 0, 0.5);
- z-index: 999;
- }
- .popup-box .info-form {
- z-index: 1000;
- width: 450rpx;
- display: flex;
- flex-direction: column;
- justify-content: center;
- align-items: center;
- position: relative;
- }
- .popup-box .info-form image {
- width: 100%;
- }
|